/* Drain Slayers — DS12 shared stylesheet (homepage + inner pages).
   Flow: base → ribbon → header → hero → badges → signals → urgent CTA → sections →
   stats / reviews / FAQ / finale → footer → sticky CTA → legacy .section / forms. */

@font-face {
  font-family: "Old Scotch";
  src: url("fonts/OldScotch.woff2") format("woff2"),
       url("fonts/OldScotch.woff") format("woff"),
       url("fonts/OldScotch.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ds12-orange: #f7941d;
  --ds12-orange-deep: #d97706;
  --ds12-navy: #0c1222;
  --ds12-navy-mid: #151d33;
  --ds12-slate: #334155;
  --ds12-muted: #64748b;
  --ds12-cream: #fdf6e3;
  --ds12-white: #ffffff;
  --ds12-page-orange: #f7931d;
  --ds12-ribbon-black: #0a0a0a;
  --ds12-red-phone: #c41e3a;
  --ds12-green-check: #059669;
  /* Page wash — matches hero gradient end for seamless blend */
  --ds12-services-bg: #fdf6e3;
  --ds12-radius: 14px;
  --ds12-shadow: 0 22px 50px rgba(12, 18, 34, 0.14);
  --ds12-max: 1120px;
  --ds12-focus-ring: var(--ds12-orange-deep);
  --ds12-focus-width: 3px;
  --ds12-focus-offset: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ds12-navy);
  background: var(--ds12-services-bg);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ds12-orange);
}

a:hover {
  color: #fdba74;
}

/* Keyboard focus — ring on :focus-visible only (skip mouse outline clutter) */
@supports selector(:focus-visible) {
  :focus:not(:focus-visible) {
    outline: none;
  }
  :focus-visible {
    outline: var(--ds12-focus-width) solid var(--ds12-focus-ring);
    outline-offset: var(--ds12-focus-offset);
  }
}

.ds12-btn-call:focus-visible,
.btn--call:focus-visible,
.ds12-head-phone:focus-visible,
.ds12-sticky a:focus-visible {
  outline-color: var(--ds12-navy);
}

.ds12-skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ds12-orange);
  color: var(--ds12-white);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}
.ds12-skip:focus {
  left: 12px;
}

/* ---------- Emergency ribbon ---------- */
.ds12-ribbon {
  background: var(--ds12-ribbon-black);
  color: var(--ds12-white);
  text-align: center;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-bottom: 2px solid rgba(247, 148, 29, 0.35);
}
.ds12-ribbon a {
  color: var(--ds12-orange);
  text-decoration: none;
  border-bottom: 2px solid rgba(247, 148, 29, 0.55);
  font-weight: 800;
}
.ds12-ribbon a:hover {
  color: #fdba74;
  border-bottom-color: #fdba74;
}

/* ---------- Header ---------- */
.ds12-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12, 18, 34, 0.08);
}
.ds12-head__inner {
  max-width: var(--ds12-max);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ds12-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ds12-navy);
}
.ds12-brand img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
}
.ds12-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.ds12-brand__text strong {
  font-family: "Old Scotch", "Arial Black", Impact, sans-serif;
  font-size: clamp(1.48rem, 3.5vw, 1.92rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ds12-brand__text span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ds12-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ds12-navbtn {
  display: none;
  touch-action: manipulation;
}
.ds12-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ds12-nav a {
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ds12-navy);
  text-decoration: none;
  border-radius: 8px;
}
.ds12-nav a:hover {
  background: rgba(247, 148, 29, 0.12);
  color: var(--ds12-orange-deep);
}

.ds12-head-phone {
  touch-action: manipulation;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--ds12-red-phone);
  color: var(--ds12-white) !important;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
}
.ds12-head-phone:hover {
  background: #a01830;
  color: var(--ds12-white) !important;
}
.ds12-head-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ds12-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(7, 11, 20, 0.5);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
body.ds12-nav-open .ds12-overlay {
  display: block;
}

@media (max-width: 1180px) {
  .ds12-navbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(247, 148, 29, 0.7);
    border-radius: 10px;
    background: var(--ds12-ribbon-black);
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  }
  .ds12-navbtn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ds12-white);
    position: relative;
  }
  .ds12-navbtn span::before,
  .ds12-navbtn span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--ds12-white);
  }
  .ds12-navbtn span::before {
    top: -6px;
  }
  .ds12-navbtn span::after {
    top: 6px;
  }

  .ds12-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 86vw);
    height: 100dvh;
    z-index: 55;
    background: #000000;
    flex-direction: column;
    align-items: stretch;
    padding: 96px 20px 24px;
    box-shadow: -16px 0 42px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  @supports not (height: 100dvh) {
    .ds12-nav {
      height: 100vh;
    }
  }
  .ds12-nav.is-open {
    transform: translateX(0);
  }
  .ds12-nav a {
    padding: 15px 12px;
    color: var(--ds12-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
  }
  .ds12-nav a:hover {
    background: rgba(247, 148, 29, 0.18);
    color: #ffd9ac;
  }
  body.ds12-nav-open {
    overflow: hidden;
  }
  .ds12-head-phone {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ds12-nav {
    transition: none !important;
  }
}

/* ---------- Hero (orange into warm cream / page background) ---------- */
.ds12-hero {
  position: relative;
  overflow: hidden;
  color: var(--ds12-navy);
  padding: 48px 20px clamp(4rem, 8vw, 7rem);
  background: linear-gradient(
    180deg,
    rgba(247, 148, 29, 0.95) 0%,
    rgba(247, 148, 29, 0.45) 45%,
    var(--ds12-services-bg) 100%
  );
  box-shadow: none;
}

.ds12-hero__grid {
  position: relative;
  z-index: 1;
  max-width: var(--ds12-max);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 960px) {
  .ds12-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }
}

.ds12-hero__tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(12, 18, 34, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--ds12-orange-deep);
}

.ds12-hero h1 {
  margin: 0 0 16px;
  font-family: "Fraunces", "Oswald", system-ui, sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ds12-navy);
  text-wrap: balance;
}

.ds12-hero__lead {
  margin: 0 0 20px;
  font-size: 1.05rem;
  color: var(--ds12-slate);
  max-width: 34em;
}

.ds12-hero__urgent {
  margin: 0 0 24px;
  padding: 12px 16px;
  border-left: 4px solid var(--ds12-orange-deep);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 4px 18px rgba(12, 18, 34, 0.06);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: var(--ds12-navy);
}
.ds12-hero__urgent a {
  color: inherit;
  text-decoration: none;
}
.ds12-hero__urgent a:hover {
  color: var(--ds12-orange-deep);
  text-decoration: underline;
}

.ds12-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ds12-btn-call {
  touch-action: manipulation;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--ds12-orange);
  color: var(--ds12-navy) !important;
  font-weight: 900;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(247, 148, 29, 0.45);
}
.ds12-btn-call:hover {
  background: #ffb040;
  color: var(--ds12-navy) !important;
}

/* Hero primary call — red for urgency */
.ds12-hero .ds12-btn-call {
  background: var(--ds12-red-phone);
  color: var(--ds12-white) !important;
  box-shadow: 0 8px 28px rgba(196, 30, 58, 0.38);
}
.ds12-hero .ds12-btn-call:hover {
  background: #a01830;
  color: var(--ds12-white) !important;
}

.ds12-hero .ds12-btn-ghost {
  padding: 12px 18px;
  font-size: 0.94rem;
  font-weight: 600;
  border-width: 1px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}
.ds12-hero .ds12-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.45);
}

.ds12-btn-ghost {
  touch-action: manipulation;
  padding: 14px 22px;
  border: 2px solid var(--ds12-navy);
  color: var(--ds12-navy) !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.35);
}
.ds12-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.65);
}

.ds12-phone-card {
  background: var(--ds12-white);
  border: 1px solid rgba(12, 18, 34, 0.1);
  border-radius: var(--ds12-radius);
  padding: 28px 24px;
  box-shadow: var(--ds12-shadow);
}
.ds12-phone-card__label {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ds12-muted);
}
.ds12-phone-card__num {
  margin: 0 0 12px;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ds12-phone-card__num a {
  color: var(--ds12-navy);
  text-decoration: none;
}
.ds12-phone-card__num a:hover {
  color: var(--ds12-orange-deep);
}

.ds12-live-call {
  display: block;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ds12-navy);
  margin-top: 6px;
  margin-bottom: 4px;
}

.ds12-live-sub {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ds12-muted);
}

.ds12-price-trust {
  margin: 8px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ds12-slate);
}

.ds12-phone-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ds12-slate);
}
.ds12-phone-card__local {
  margin: 14px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ds12-muted);
  line-height: 1.35;
}

/* ---------- Trust badges (full-width dark bar) ---------- */
.ds12-badges-section {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  margin: 0 0 36px;
  padding: 36px max(20px, calc((100vw - var(--ds12-max)) / 2));
  background: var(--ds12-navy-mid);
  border-top: none;
  border-bottom: 2px solid rgba(247, 148, 29, 0.65);
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.ds12-badge-item {
  flex: 1 1 0;
  max-width: 180px;
  text-align: center;
  padding: 0 14px;
  min-width: 0;
}

.ds12-badge-shield {
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  color: rgba(247, 148, 29, 0.95);
  background: rgba(247, 148, 29, 0.10);
  border: 1px solid rgba(247, 148, 29, 0.35);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ds12-badge-shield svg {
  width: 32px;
  height: 32px;
  display: block;
}

.ds12-badge-title {
  font-family: "Oswald", "Instrument Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1.18;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  margin-bottom: 5px;
}

.ds12-badge-sub {
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
  max-width: 150px;
  margin: 0 auto;
}

.ds12-badge-divider {
  width: 1px;
  flex: 0 0 1px;
  align-self: center;
  height: 4.5rem;
  margin-top: 6px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
}

@media (max-width: 900px) {
  .ds12-badges-section {
    padding: 24px 20px;
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .ds12-badge-item {
    flex: 1 1 30%;
    max-width: none;
  }

  .ds12-badge-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .ds12-badges-section {
    padding: 18px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ds12-badge-item {
    max-width: none;
    width: 100%;
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-areas:
      "icon title"
      "icon sub";
    column-gap: 14px;
    align-items: center;
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ds12-badge-item:last-of-type {
    border-bottom: none;
  }

  .ds12-badge-shield {
    grid-area: icon;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .ds12-badge-shield svg {
    width: 28px;
    height: 28px;
  }

  .ds12-badge-title {
    grid-area: title;
    margin-bottom: 4px;
  }

  .ds12-badge-sub {
    grid-area: sub;
    max-width: none;
    margin: 0;
  }
}

/* ---------- Signal strip ---------- */
.ds12-signals {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0 auto 0;
  padding: 0 20px 48px;
  background: var(--ds12-services-bg);
}
.ds12-signals__intro {
  max-width: 680px;
  margin: 0 auto 22px;
  padding: 0 20px;
  text-align: center;
}
.ds12-signals__intro h2 {
  margin: 0 0 8px;
  font-family: "Fraunces", "Oswald", system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ds12-navy);
}
.ds12-signals__intro p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ds12-slate);
}
.ds12-signals__inner {
  max-width: var(--ds12-max);
  margin: 0 auto;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.ds12-signal {
  background: var(--ds12-white);
  border-radius: var(--ds12-radius);
  padding: 16px 18px;
  box-shadow: var(--ds12-shadow);
  border: 1px solid rgba(12, 18, 34, 0.06);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ds12-signal__ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(247, 148, 29, 0.15);
  color: var(--ds12-orange-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds12-signal__ic svg {
  width: 22px;
  height: 22px;
}
.ds12-signal strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.ds12-signal span {
  font-size: 0.82rem;
  color: var(--ds12-muted);
  line-height: 1.35;
}

/* ---------- Mid-page urgent CTA ---------- */
.ds12-urgent-cta {
  background: var(--ds12-navy);
  color: var(--ds12-white);
  border-top: 4px solid var(--ds12-orange);
  padding: 22px 20px;
}
.ds12-urgent-cta__inner {
  max-width: var(--ds12-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.ds12-urgent-cta__inner h2 {
  margin: 0 0 8px;
  font-family: "Fraunces", "Oswald", system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ds12-white);
}
.ds12-urgent-cta__inner p {
  margin: 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}
.ds12-urgent-cta .ds12-btn-call {
  flex-shrink: 0;
  background: var(--ds12-red-phone);
  color: var(--ds12-white) !important;
  border: none;
  box-shadow: 0 8px 28px rgba(196, 30, 58, 0.38);
}
.ds12-urgent-cta .ds12-btn-call:hover {
  background: #a01830;
  color: var(--ds12-white) !important;
}

/* ---------- Sections ---------- */
.ds12-section {
  padding: 56px 20px;
}
.ds12-section--alt {
  background: var(--ds12-white);
  box-shadow: 0 0 0 1px rgba(12, 18, 34, 0.04);
}
.ds12-section__head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
/* Light-surface sections (cream or --alt white): always dark headings.
   For a dark band later, use e.g. .ds12-section--inverse on the section. */
.ds12-section__head h2 {
  color: var(--ds12-navy);
}
.ds12-section__head > p:not(.ds12-eyebrow) {
  margin: 0;
  color: var(--ds12-slate);
}
.ds12-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ds12-orange-deep);
}
.ds12-section h2 {
  margin: 0 0 12px;
  font-family: "Fraunces", "Oswald", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
  text-wrap: balance;
}

/* ---------- Service timeline ---------- */
.ds12-flow {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}
.ds12-flow::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(var(--ds12-orange), var(--ds12-orange-deep));
  border-radius: 3px;
  opacity: 0.35;
}
@media (min-width: 640px) {
  .ds12-flow::before {
    left: 23px;
  }
}

.ds12-flow__step {
  position: relative;
  padding-left: 56px;
  margin-bottom: 28px;
}
.ds12-flow__step:last-child {
  margin-bottom: 0;
}
.ds12-flow__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ds12-navy);
  color: var(--ds12-white);
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ds12-orange);
  box-shadow: 0 4px 14px rgba(12, 18, 34, 0.15);
}

.ds12-flow__card {
  background: var(--ds12-white);
  border-radius: var(--ds12-radius);
  padding: 22px 22px 20px;
  border: 1px solid rgba(12, 18, 34, 0.08);
  box-shadow: 0 10px 30px rgba(12, 18, 34, 0.06);
}
.ds12-flow__card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}
.ds12-flow__card h3 a {
  color: var(--ds12-navy);
  text-decoration: none;
}
.ds12-flow__card h3 a:hover {
  color: var(--ds12-orange-deep);
}
.ds12-flow__card p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--ds12-slate);
}
.ds12-flow__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.ds12-flow__links a:first-child {
  font-weight: 700;
  font-size: 0.88rem;
}
.ds12-mini-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--ds12-red-phone);
  color: var(--ds12-white) !important;
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
  border-radius: 8px;
}
.ds12-mini-call:hover {
  background: #a01830;
  color: var(--ds12-white) !important;
}

/* ---------- Stats band ---------- */
.ds12-stats {
  background: var(--ds12-navy-mid);
  color: var(--ds12-white);
  padding: 40px 20px;
}
.ds12-stats__grid {
  max-width: var(--ds12-max);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}
.ds12-stat__val {
  font-family: "Fraunces", "Oswald", system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ds12-orange);
  line-height: 1;
  margin-bottom: 8px;
}
.ds12-stat__lbl {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

/* ---------- Reviews ---------- */
.ds12-reviews {
  display: grid;
  gap: 20px;
}
@media (min-width: 900px) {
  .ds12-reviews {
    grid-template-columns: 1.4fr 1fr;
    align-items: stretch;
  }
}
.ds12-quote-feature {
  background: linear-gradient(145deg, var(--ds12-white), #fff9f0);
  border-radius: var(--ds12-radius);
  padding: 28px 26px;
  border: 1px solid rgba(247, 148, 29, 0.25);
  box-shadow: var(--ds12-shadow);
}
.ds12-quote-feature .stars {
  color: var(--ds12-orange);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.ds12-quote-feature blockquote {
  margin: 0;
  font-family: "Fraunces", "Oswald", system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1.45;
  font-style: italic;
  color: var(--ds12-navy);
}
.ds12-quote-feature footer {
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 700;
  font-style: normal;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ds12-muted);
}

.ds12-quote-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ds12-quote-small {
  background: var(--ds12-white);
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(12, 18, 34, 0.08);
  font-size: 0.9rem;
  color: var(--ds12-slate);
}
.ds12-quote-small footer {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ds12-muted);
}

.ds12-reviews-cta {
  text-align: center;
  max-width: 36em;
  margin: 24px auto 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ds12-navy);
}
.ds12-reviews-cta a {
  color: var(--ds12-orange-deep);
  font-weight: 800;
  text-decoration: none;
}
.ds12-reviews-cta a:hover {
  text-decoration: underline;
}

/* ---------- Areas ---------- */
.ds12-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.ds12-chips span {
  padding: 8px 14px;
  background: var(--ds12-white);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(12, 18, 34, 0.08);
}

/* ---------- FAQ ---------- */
.ds12-faq {
  max-width: 720px;
  margin: 0 auto;
}

.ds12-faq details {
  background: var(--ds12-white);
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(12, 18, 34, 0.08);
  overflow: hidden;
}
.ds12-faq summary {
  padding: 16px 20px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ds12-faq summary::-webkit-details-marker {
  display: none;
}
.ds12-faq summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--ds12-orange-deep);
}
.ds12-faq details[open] summary::after {
  content: "−";
}
.ds12-faq details p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--ds12-slate);
}

/* ---------- CTA finale ---------- */
.ds12-finale {
  background: linear-gradient(135deg, var(--ds12-navy), #1a2744);
  color: var(--ds12-white);
  padding: 56px 20px;
  text-align: center;
}
.ds12-finale h2 {
  font-family: "Fraunces", "Oswald", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ds12-white);
  text-wrap: balance;
}
.ds12-finale .ds12-eyebrow {
  font-family: "Instrument Sans", system-ui, sans-serif;
}
.ds12-finale p {
  margin: 0 auto 24px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}
.ds12-finale__urgency {
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 18px;
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.35;
}

/* ---------- Footer ---------- */
.ds12-foot {
  background: #070b14;
  color: rgba(255, 255, 255, 0.72);
  padding: 48px 20px 28px;
  font-size: 0.9rem;
}
.ds12-foot__grid {
  max-width: var(--ds12-max);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}
@media (min-width: 720px) {
  .ds12-foot__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}
.ds12-foot h4 {
  color: var(--ds12-white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.ds12-foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ds12-foot li {
  margin-bottom: 8px;
}
.ds12-foot a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.ds12-foot a:hover {
  color: var(--ds12-orange);
}
.ds12-foot__brand img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.ds12-social {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.ds12-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.ds12-social img {
  display: block;
  width: 26px !important;
  height: 26px !important;
  max-width: none !important;
}

.ds12-social a:hover,
.ds12-social a:focus-visible {
  background: var(--ds12-orange, #f7941d);
  border-color: var(--ds12-orange, #f7941d);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(247, 148, 29, 0.25);
}

.ds12-social a:focus-visible {
  outline: 3px solid rgba(247, 148, 29, 0.45);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .ds12-social a {
    transition: none;
  }

  .ds12-social a:hover,
  .ds12-social a:focus-visible {
    transform: none;
  }
}

.ds12-foot__bottom {
  max-width: var(--ds12-max);
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
}

.ds12-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(transparent, rgba(7, 11, 20, 0.92));
}
.ds12-sticky a {
  touch-action: manipulation;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--ds12-red-phone);
  color: var(--ds12-white) !important;
  font-weight: 900;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(196, 30, 58, 0.45);
}
.ds12-sticky a:hover {
  background: #a01830;
  color: var(--ds12-white) !important;
}
@media (min-width: 900px) {
  .ds12-sticky {
    display: none;
  }
}
@media (max-width: 899.98px) {
  body {
    padding-bottom: 76px;
  }
}

/* ========= Old Scotch — hero display title + tag only ========= */
.ds12-hero h1,
.ds12-hero__tag {
  font-family: "Old Scotch", "Arial Black", Impact, sans-serif;
}

/* ========= Legacy: service grid, buttons, inner-page + contact patterns ========= */
.section {
  padding: 56px 20px;
}

.section--cream {
  background: var(--ds12-services-bg);
}

.container {
  max-width: var(--ds12-max);
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 40px;
}

.text-center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ds12-orange-deep);
}

.section-head h2 {
  margin: 0 0 12px;
  font-family: "Fraunces", "Oswald", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ds12-navy);
}

.section-head p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ds12-slate);
}

.services-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
  background: var(--ds12-white);
  border: 1px solid rgba(12, 18, 34, 0.08);
  border-radius: var(--ds12-radius);
  box-shadow: 0 10px 30px rgba(12, 18, 34, 0.06);
}

.service-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--ds12-navy);
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.service-card h3 a:hover {
  color: var(--ds12-orange-deep);
}

.service-card p {
  margin: 0;
  color: var(--ds12-slate);
  font-size: 0.94rem;
  line-height: 1.5;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 148, 29, 0.15);
  color: var(--ds12-orange-deep);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__actions {
  margin-top: auto;
  padding-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-cta {
  margin-top: 24px;
  text-align: center;
}

.btn {
  touch-action: manipulation;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--outline {
  background: var(--ds12-white);
  border-color: rgba(12, 18, 34, 0.2);
  color: var(--ds12-navy) !important;
}

.btn--outline:hover {
  background: rgba(247, 148, 29, 0.12);
  border-color: rgba(247, 148, 29, 0.45);
  color: var(--ds12-orange-deep) !important;
}

.btn--call {
  background: var(--ds12-red-phone);
  color: var(--ds12-white) !important;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
}

.btn--call:hover {
  background: #a01830;
  color: var(--ds12-white) !important;
}

.muted {
  color: var(--ds12-muted);
}

.stretched-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ---------- Inner pages (migrated to match index shell) ---------- */
.container--narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.mt-md {
  margin-top: 1.25rem;
}

.prose {
  color: var(--ds12-slate);
  font-size: 1rem;
  line-height: 1.65;
}

.prose h2 {
  margin: 2rem 0 0.65rem;
  font-family: "Fraunces", "Oswald", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ds12-navy);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--ds12-navy);
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}

.prose li {
  margin-bottom: 0.35rem;
}

.prose a {
  color: var(--ds12-orange);
  font-weight: 700;
  text-decoration: none;
}

.prose a:hover {
  color: var(--ds12-orange-deep);
  text-decoration: underline;
}

.section.section--white {
  background: var(--ds12-services-bg);
  box-shadow: none;
}

/* Commercial services: two-column content */
.commercial-services-layout {
  max-width: min(980px, 100%);
}

.why-us-cta {
  margin-top: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.commercial-services-layout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .commercial-services-layout__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.section.section--orange {
  padding: 52px 20px;
  background: linear-gradient(
    180deg,
    var(--ds12-orange) 0%,
    #ef8c1a 55%,
    #f5a84d 100%
  );
}

.section.section--orange .eyebrow {
  color: rgba(12, 18, 34, 0.55);
}

.section.section--orange h2 {
  margin: 0 0 12px;
  font-family: "Fraunces", "Oswald", system-ui, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ds12-navy);
}

.section.section--orange .final-cta-text {
  margin: 0 auto 22px;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ds12-navy);
}

.section.section--orange-soft {
  padding: 48px 20px;
  background: rgba(247, 148, 29, 0.12);
}

.section.section--orange-soft .section-head h2 {
  color: var(--ds12-navy);
}

.section-intro {
  max-width: 640px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 0.98rem;
  color: var(--ds12-slate);
  line-height: 1.55;
}

.cities {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: grid;
  gap: 10px 14px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.cities li {
  padding: 10px 14px;
  background: var(--ds12-white);
  border-radius: 10px;
  border: 1px solid rgba(12, 18, 34, 0.08);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ds12-navy);
  text-align: center;
}

/* Service areas page: whole card links to drain-sewer-{city}.html; orange city names */
.cities.cities--service-areas li {
  padding: 0;
}

.cities.cities--service-areas li a,
.cities.cities--service-areas li a:visited,
.cities.cities--service-areas li a:hover,
.cities.cities--service-areas li a:active {
  text-decoration: none;
}

.cities.cities--service-areas li a {
  display: block;
  padding: 10px 14px;
  color: var(--ds12-orange);
  border-radius: 10px;
}

.cities.cities--service-areas li a:hover {
  background: rgba(247, 148, 29, 0.14);
  color: var(--ds12-orange-deep);
}

.cities.cities--service-areas li a:focus-visible {
  outline: 2px solid var(--ds12-orange);
  outline-offset: 2px;
}

/* Nearby drain-sewer pages: single link per cell fills the card */
.commercial-services-layout .cities li {
  padding: 0;
}

.commercial-services-layout .cities li a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--ds12-orange);
  border-radius: 10px;
}

.commercial-services-layout .cities li a:hover {
  background: rgba(247, 148, 29, 0.14);
  color: var(--ds12-orange-deep);
}

.commercial-services-layout .cities li a:focus-visible {
  outline: 2px solid var(--ds12-orange);
  outline-offset: 2px;
}

.cities-note {
  margin: 22px auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ds12-slate);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--ds12-white);
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(12, 18, 34, 0.08);
  box-shadow: 0 6px 18px rgba(12, 18, 34, 0.05);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--ds12-navy);
}

.faq-item p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ds12-slate);
  line-height: 1.5;
}

.help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto 8px;
}

.help-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ds12-white);
  border: 1px solid rgba(12, 18, 34, 0.12);
  font-weight: 800;
  font-size: 0.86rem;
  text-decoration: none;
  color: var(--ds12-navy);
}

.help-links a:hover {
  background: rgba(247, 148, 29, 0.14);
  border-color: rgba(247, 148, 29, 0.45);
  color: var(--ds12-orange-deep);
}

.reviews-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.review-card {
  background: var(--ds12-white);
  border-radius: var(--ds12-radius);
  padding: 22px 20px;
  border: 1px solid rgba(12, 18, 34, 0.08);
  box-shadow: var(--ds12-shadow);
}

.review-card .stars {
  color: var(--ds12-orange);
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.review-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ds12-slate);
}

.review-card cite {
  display: block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  font-style: normal;
  color: var(--ds12-muted);
}

.reviews-cta {
  text-align: center;
  margin: 24px auto 0;
  font-size: 0.95rem;
  color: var(--ds12-slate);
  max-width: 640px;
}

.contact-split {
  display: grid;
  gap: 24px;
  align-items: start;
}

@media (min-width: 960px) {
  .contact-split {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-form-panel,
.contact-info-panel {
  background: var(--ds12-white);
  border-radius: var(--ds12-radius);
  padding: 24px 22px;
  border: 1px solid rgba(12, 18, 34, 0.08);
  box-shadow: var(--ds12-shadow);
}

.contact-form-panel h3,
.contact-info-panel h2 {
  margin: 0 0 10px;
  color: var(--ds12-navy);
}

.form-note,
.form-callout {
  font-size: 0.92rem;
  color: var(--ds12-slate);
  margin: 0 0 12px;
}

.form-callout {
  font-weight: 700;
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field span {
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--ds12-navy);
}

.form-field input,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(12, 18, 34, 0.14);
  font: inherit;
  color: var(--ds12-navy);
  background: #fff;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-turnstile {
  margin-top: 6px;
  margin-bottom: 20px;
  min-height: 72px;
  box-sizing: border-box;
}

.contact-form .btn--with-spinner + .form-note {
  margin-top: 22px;
}

.btn--with-spinner {
  position: relative;
}

.btn__label {
  display: inline-block;
}

.btn__spinner {
  display: none;
}

.contact-info-divider {
  height: 1px;
  background: rgba(12, 18, 34, 0.1);
  margin: 16px 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 148, 29, 0.14);
  color: var(--ds12-orange-deep);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ds12-muted);
  margin-bottom: 2px;
}

.contact-info-text a {
  font-weight: 800;
  color: var(--ds12-navy);
  text-decoration: none;
}

.contact-info-text a:hover {
  color: var(--ds12-orange-deep);
}

.contact-trust {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ds12-slate);
}

.contact-trust li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(12, 18, 34, 0.06);
}

.contact-trust li:last-child {
  border-bottom: none;
}

.icon-phone {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.ds12-btn-call .icon-phone {
  margin-right: 2px;
}

.ds12-urgent-cta__inner > div > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.45;
}
