/* ============================================================
   Clear Ripples — shared design system
   One stylesheet for every page. Pure CSS, no build step.

   Palette is the established Clear Ripples navy (#172E4F) with the
   bright pool-sky accent (#7DD3FC) — carried over from the original
   site so the brand colour survives the redesign.
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; image-orientation: from-image; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 3px; }

/* ── TOKENS ── */
:root {
  /* water — the established Clear Ripples navy */
  --deep:        #172E4F;   /* brand navy / primary dark ground */
  --deep-2:      #1F3D67;   /* raised dark surface */
  --teal:        #0D3060;   /* deep water — primary brand on light */
  --teal-bright: #7DD3FC;   /* pool sky — accents, links on dark */
  --teal-pale:   #DBEAFE;   /* washed tint for chips/fills */

  /* sky + sun */
  --sky:         #94A3B8;   /* pale Florida sky */
  --sun:         #C9702A;   /* CTA — terracotta, NOT the shared amber */
  --sun-dark:    #A85A1E;

  /* ink + surface */
  --ink:         #16233A;
  --ink-2:       #374151;
  --muted:       #64748B;
  --line:        #E2E8F0;
  --paper:       #FFFFFF;
  --paper-2:     #F8FAFC;   /* alt section ground */
  --paper-3:     #EFF3F8;

  --focus:       #11A4D4;
  --ok:          #15803D;
  --err:         #B91C1C;

  /* type */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* fluid type scale */
  --t-mega:  clamp(46px, 8.5vw, 118px);
  --t-xl:    clamp(34px, 5.4vw, 68px);
  --t-lg:    clamp(27px, 3.4vw, 42px);
  --t-md:    clamp(21px, 2.2vw, 27px);
  --t-body:  17px;
  --t-sm:    15px;
  --t-xs:    13px;

  /* rhythm — deliberately uneven, set per section */
  --gap-xs: 8px;  --gap-s: 16px;  --gap-m: 28px;
  --gap-l: 48px;  --gap-xl: 80px; --gap-2xl: 132px;

  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 2px 14px rgba(23,46,79,.07);
  --shadow-lg: 0 18px 56px rgba(23,46,79,.17);

  --nav-h: 76px;
  --measure: 62ch;
}

body {
  font-family: var(--sans);
  font-size: var(--t-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-feature-settings: 'cv05' 1, 'ss01' 1;
  -webkit-font-smoothing: antialiased;
}

/* NOTE: never put overflow-x on <html> or <body>. Either one promotes that
   element to the scrolling box, which silently breaks window.scrollY listeners
   AND the IntersectionObserver viewport root (nav state, scroll reveal, CTA
   bar all stop firing). Intentional off-grid bleeds are clipped on their own
   section instead — see .band / .bleed-r below. */

/* ── LAYOUT ── */
.wrap      { max-width: 1200px; margin: 0 auto; padding: 0 26px; }
.wrap-tight{ max-width: 860px;  margin: 0 auto; padding: 0 26px; }
.wrap-wide { max-width: 1480px; margin: 0 auto; padding: 0 26px; }

/* Uneven vertical rhythm — the fix for metronomic 80px everywhere.
   clip contains the off-grid .bleed-* photos without making any ancestor a
   scroll container (overflow:hidden on html/body breaks scroll listeners). */
.band, .band-tall, .band-short { position: relative; overflow-x: clip; }
.band       { padding: var(--gap-xl) 0; }
.band-tall  { padding: var(--gap-2xl) 0; }
.band-short { padding: var(--gap-l) 0; }
.band-dark  { background: var(--deep); color: #fff; }
.band-alt   { background: var(--paper-2); }
.band-tint  { background: var(--paper-3); }

/* ── TYPE ──
   Headline patterns are intentionally VARIED. There is no single
   repeating badge→title→sub stack; each section picks a treatment. */
.h-mega {
  font-family: var(--serif); font-weight: 400;
  font-size: var(--t-mega); line-height: .96;
  letter-spacing: -.025em;
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 1;
}
.h-xl {
  font-family: var(--serif); font-weight: 400;
  font-size: var(--t-xl); line-height: 1.04;
  letter-spacing: -.02em;
  font-variation-settings: 'opsz' 96, 'WONK' 1;
}
.h-lg {
  font-family: var(--serif); font-weight: 400;
  font-size: var(--t-lg); line-height: 1.12;
  letter-spacing: -.015em;
  font-variation-settings: 'opsz' 48;
}
.h-md {
  font-family: var(--serif); font-weight: 400;
  font-size: var(--t-md); line-height: 1.25;
  font-variation-settings: 'opsz' 24;
}
/* sans headline — used where a section should NOT look editorial */
.h-sans {
  font-family: var(--sans); font-weight: 800;
  font-size: var(--t-lg); line-height: 1.1; letter-spacing: -.03em;
}
.h-em { font-style: italic; color: var(--teal); }

.lede  { font-size: clamp(18px, 1.9vw, 21px); line-height: 1.6; color: var(--ink-2); max-width: var(--measure); }
.body  { color: var(--muted); max-width: var(--measure); }
.small { font-size: var(--t-sm); color: var(--muted); }

/* Eyebrow — used SPARINGLY (2–3 per page max), not on every section. */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: currentColor; flex: none;
}
.band-dark .eyebrow { color: var(--teal-bright); }

/* Numbered section marker — alternative header treatment */
.marker {
  font-family: var(--serif); font-size: 13px; font-weight: 400;
  color: var(--muted); letter-spacing: .1em; margin-bottom: 14px;
  font-variation-settings: 'opsz' 12;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: var(--t-sm);
  padding: 15px 28px; border-radius: 8px;
  transition: background .18s, color .18s, border-color .18s, transform .14s, box-shadow .18s;
  will-change: transform;
}
.btn-cta      { background: var(--sun); color: #fff; }
.btn-cta:hover{ background: var(--sun-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,112,42,.36); }
.btn-solid      { background: var(--teal); color: #fff; }
.btn-solid:hover{ background: var(--deep-2); transform: translateY(-2px); }
.btn-ghost      { border: 1.5px solid var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover{ border-color: var(--teal); color: var(--teal); }
.btn-on-dark      { border: 1.5px solid rgba(255,255,255,.32); color: #fff; background: transparent; }
.btn-on-dark:hover{ border-color: #fff; background: rgba(255,255,255,.08); }
.btn svg { width: 17px; height: 17px; flex: none; }

/* ── NAV ── */
#nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px) saturate(1.6);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
#nav.scrolled { background: rgba(255,255,255,.97); border-bottom-color: var(--line); box-shadow: 0 1px 20px rgba(23,46,79,.07); }
/* Over a dark full-bleed hero, nav starts transparent+inverted. */
#nav.on-dark:not(.scrolled) { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
#nav.on-dark:not(.scrolled) .nav-link,
#nav.on-dark:not(.scrolled) .nav-phone { color: rgba(255,255,255,.9); }
#nav.on-dark:not(.scrolled) .nav-link:hover { color: #fff; }
#nav.on-dark:not(.scrolled) #nav-toggle span { background: #fff; }
#nav.on-dark:not(.scrolled) .nav-mark { color: #fff; }

.nav-inner { max-width: 1480px; margin: 0 auto; padding: 0 26px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo img { height: 46px; width: auto; border-radius: 5px; }
.nav-mark { font-family: var(--serif); font-size: 19px; color: var(--ink); letter-spacing: -.01em; transition: color .25s; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--ink-2); transition: color .18s; position: relative; }
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -5px; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .25s cubic-bezier(.2,.7,.3,1);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-link:hover, .nav-link.active { color: var(--teal); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; transition: color .18s; }
.nav-phone:hover { color: var(--teal); }
#nav-toggle { display: none; padding: 8px; }
#nav-toggle span { display: block; width: 23px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .22s, opacity .22s, background .25s; }
#nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle.open span:nth-child(2) { opacity: 0; }
#nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none; position: fixed; top: var(--nav-h); inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 18px 26px 26px; flex-direction: column;
  box-shadow: 0 14px 40px rgba(23,46,79,.14);
}
#mobile-menu.open { display: flex; }
#mobile-menu a { font-size: 16px; font-weight: 600; color: var(--ink); padding: 15px 0; border-bottom: 1px solid var(--line); }
#mobile-menu a:last-of-type { border-bottom: none; }
#mobile-menu .mm-cta { margin-top: 16px; }
#mobile-menu .mm-cta .btn { width: 100%; }

/* ── HERO — full-bleed photograph, oversized type ── */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  background: var(--deep); overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* Legibility scrim — dark from the bottom, never a flat wash. */
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(23,46,79,.94) 0%, rgba(23,46,79,.70) 32%, rgba(23,46,79,.22) 62%, rgba(23,46,79,.44) 100%),
    linear-gradient(to right, rgba(23,46,79,.55) 0%, transparent 58%);
}
.hero-body { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(44px, 7vh, 88px); }
.hero-place {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.82); margin-bottom: clamp(20px, 3vh, 34px);
}
.hero-place svg { width: 14px; height: 14px; color: var(--teal-bright); }
.hero-h1 { color: #fff; margin-bottom: 26px; max-width: 16ch; text-wrap: balance; }
.hero-h1 em { font-style: italic; color: var(--teal-bright); }
.hero-sub { color: rgba(255,255,255,.86); font-size: clamp(16px, 1.7vw, 19px); max-width: 52ch; margin-bottom: 34px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* hero footer strip — credentials, sits on the photo */
.hero-strip {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.16);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-stat { padding: 22px 26px 22px 0; }
.hero-stat + .hero-stat { padding-left: 26px; border-left: 1px solid rgba(255,255,255,.12); }
.hero-stat-n {
  font-family: var(--serif); font-size: clamp(26px, 3.1vw, 40px); color: #fff;
  line-height: 1; letter-spacing: -.02em; margin-bottom: 7px;
  font-variation-settings: 'opsz' 48;
}
.hero-stat-n span { color: var(--teal-bright); }
.hero-stat-l { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.62); line-height: 1.4; }

.hero-live {
  position: absolute; z-index: 2; right: 26px; top: calc(var(--nav-h) + 26px);
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(23,46,79,.5); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 100px; padding: 9px 17px;
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em;
}
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; flex: none; animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.78); } }

/* scroll cue */
.hero-cue {
  position: absolute; z-index: 2; left: 50%; bottom: 14px; transform: translateX(-50%);
  width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.6));
  animation: cue 2.6s ease-in-out infinite;
}
@keyframes cue { 0%,100% { opacity: .25; transform: translateX(-50%) scaleY(.6); } 50% { opacity: 1; transform: translateX(-50%) scaleY(1); } }

/* ── WATER RULE — the signature element ──
   A drawn waterline that separates major sections. Replaces the
   generic marquee. Subtle animation, honours reduced-motion. */
.waterline { display: block; width: 100%; line-height: 0; overflow: hidden; }
.waterline svg { display: block; width: 100%; height: auto; }
.waterline .wl-1 { animation: drift 26s linear infinite; }
.waterline .wl-2 { animation: drift 38s linear infinite reverse; }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── EDITORIAL SPLIT — asymmetric, image bleeds off-grid ── */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(36px, 6vw, 92px); }
.split-7-5 { grid-template-columns: 7fr 5fr; }
.split-5-7 { grid-template-columns: 5fr 7fr; }
.split-media { position: relative; }
/* The IMG_* job photos are portrait 3024x4032 and carry those as width/height
   attributes. Without an explicit aspect-ratio the height attribute wins and the
   photo renders 4032px tall, leaving a near-empty column beside it. Crop to a
   portrait-but-usable ratio instead of letting the source dictate section height. */
.split-media img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-lg);
}
.split-media.bleed-r { margin-right: calc(-1 * clamp(20px, 6vw, 90px)); }
.split-media.bleed-l { margin-left:  calc(-1 * clamp(20px, 6vw, 90px)); }
/* floating caption chip over media */
.media-chip {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-radius: 10px; padding: 11px 16px;
  font-size: 12px; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-lg);
}

/* ── SERVICE INDEX — numbered editorial rows, not a card grid ── */
.svc-index { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 78px 1fr auto; align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  transition: background .28s, padding-left .28s;
  position: relative;
}
.svc-row:hover { background: var(--paper-2); padding-left: 16px; }
.svc-n { font-family: var(--serif); font-size: 15px; color: var(--muted); font-variation-settings: 'opsz' 14; }
.svc-main { min-width: 0; }
.svc-t { font-family: var(--serif); font-size: clamp(20px, 2.3vw, 29px); line-height: 1.2; color: var(--ink); margin-bottom: 7px; font-variation-settings: 'opsz' 32; }
.svc-row:hover .svc-t { color: var(--teal); }
.svc-d { font-size: var(--t-sm); color: var(--muted); max-width: 58ch; }
.svc-thumb { width: 132px; height: 88px; border-radius: 8px; overflow: hidden; flex: none; opacity: 0; transform: translateX(14px); transition: opacity .3s, transform .3s; }
.svc-row:hover .svc-thumb { opacity: 1; transform: translateX(0); }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.svc-go { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; flex: none; transition: background .22s, border-color .22s, transform .22s; }
.svc-row:hover .svc-go { background: var(--teal); border-color: var(--teal); transform: translateX(5px); }
.svc-row:hover .svc-go svg { color: #fff; }
.svc-go svg { width: 16px; height: 16px; color: var(--muted); transition: color .22s; }
.svc-end { display: flex; align-items: center; gap: 18px; }

/* ── PROOF STRIP — dark stat band ── */
.proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); }
.proof-cell { background: var(--deep); padding: clamp(28px, 4vw, 48px) clamp(18px, 2.4vw, 30px); }
.proof-n { font-family: var(--serif); font-size: clamp(32px, 4.4vw, 58px); color: #fff; line-height: 1; letter-spacing: -.025em; margin-bottom: 10px; font-variation-settings: 'opsz' 72; }
.proof-n span { color: var(--teal-bright); }
.proof-l { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); }

/* ── QUOTE — oversized pull quote ── */
.pull { max-width: 20ch; }
.pull-mark { font-family: var(--serif); font-size: clamp(80px, 11vw, 150px); line-height: .7; color: var(--teal-pale); display: block; margin-bottom: -6px; }
.pull-text { font-family: var(--serif); font-size: clamp(23px, 3.1vw, 38px); line-height: 1.28; color: var(--ink); letter-spacing: -.015em; max-width: 22ch; font-variation-settings: 'opsz' 48, 'WONK' 1; }
.pull-by { display: flex; align-items: center; gap: 13px; margin-top: 28px; }
.pull-rule { width: 30px; height: 1.5px; background: var(--teal); flex: none; }
.pull-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.pull-role { font-size: 12px; color: var(--muted); }

/* credential ledger */
.ledger { display: flex; flex-direction: column; }
.ledger-row { display: grid; grid-template-columns: 62px 1fr; gap: 20px; align-items: start; padding: 21px 0; border-bottom: 1px solid var(--line); }
.ledger-row:first-child { border-top: 1px solid var(--line); }
.ledger-n { font-family: var(--serif); font-size: 28px; color: var(--teal); line-height: 1; letter-spacing: -.02em; font-variation-settings: 'opsz' 36; }
.ledger-t { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.ledger-d { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── GALLERY — editorial mosaic, varied cell sizes ── */
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.mo { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; background: var(--paper-3); }
.mo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.3,1); }
.mo:hover img { transform: scale(1.055); }
.mo-a { grid-column: span 7; aspect-ratio: 4/3; }
.mo-b { grid-column: span 5; aspect-ratio: 1/1; }
.mo-c { grid-column: span 4; aspect-ratio: 3/4; }
.mo-d { grid-column: span 4; aspect-ratio: 3/4; }
.mo-e { grid-column: span 4; aspect-ratio: 3/4; }
.mo-cap {
  position: absolute; inset: auto 0 0 0; padding: 30px 15px 14px;
  background: linear-gradient(to top, rgba(23,46,79,.9), transparent);
  color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .03em;
  opacity: 0; transform: translateY(6px); transition: opacity .28s, transform .28s;
}
.mo:hover .mo-cap { opacity: 1; transform: translateY(0); }

/* ── LIGHTBOX ── */
#lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(9,18,33,.95); align-items: center; justify-content: center; }
#lightbox.open { display: flex; }
#lightbox img { width: min(92vw, 1180px); max-height: 88vh; object-fit: contain; border-radius: 8px; }
#lb-close { position: absolute; top: 20px; right: 26px; color: #fff; font-size: 34px; line-height: 1; opacity: .75; transition: opacity .15s; }
#lb-close:hover { opacity: 1; }
#lb-prev, #lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.13); width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; color: #fff; transition: background .2s; }
#lb-prev:hover, #lb-next:hover { background: var(--teal); }
#lb-prev { left: 22px; } #lb-next { right: 22px; }
#lb-prev svg, #lb-next svg { width: 20px; height: 20px; }

/* ── BEFORE / AFTER ── */
.ba {
  position: relative; max-width: 980px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 28px 88px rgba(0,0,0,.45);
  aspect-ratio: 16/9; user-select: none; touch-action: none;
}
.ba-img, .ba-after { position: absolute; inset: 0; }
.ba-img img, .ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); cursor: ew-resize; z-index: 2; will-change: left; }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; background: #fff; border-radius: 50%; box-shadow: 0 6px 24px rgba(0,0,0,.42); display: grid; place-items: center; }
.ba-knob svg { width: 19px; height: 19px; color: var(--teal); }
.ba-tag { position: absolute; bottom: 18px; background: rgba(23,46,79,.84); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 7px 15px; border-radius: 50px; pointer-events: none; }
.ba-tag-b { left: 18px; } .ba-tag-a { right: 18px; }
.ba-hint { text-align: center; margin-top: 17px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ── REVIEWS ── */
.rev-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.rev-score { font-family: var(--serif); font-size: clamp(44px, 6vw, 72px); line-height: 1; color: var(--ink); letter-spacing: -.03em; font-variation-settings: 'opsz' 72; }
.rev-stars { color: var(--sun); font-size: 20px; letter-spacing: 3px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 12px; transition: box-shadow .25s, transform .25s; }
.rev-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.rev-card .rev-stars { font-size: 16px; }
.rev-text { font-size: var(--t-sm); line-height: 1.65; color: var(--ink-2); }
.rev-meta { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-top: auto; }
.rev-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.rev-tags li { background: var(--paper-2); border: 1px solid var(--line); font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 100px; color: var(--ink-2); }

/* ── TIPS ── */
.tips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tip { border-radius: var(--radius); overflow: hidden; background: var(--paper); border: 1px solid var(--line); transition: box-shadow .26s, transform .26s; display: flex; flex-direction: column; }
.tip:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tip-img { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-3); }
.tip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tip:hover .tip-img img { transform: scale(1.06); }
.tip-b { padding: 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.tip-k { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }
.tip-h { font-family: var(--serif); font-size: 19px; line-height: 1.25; color: var(--ink); font-variation-settings: 'opsz' 24; }
.tip-p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.tip-go { font-size: 13px; font-weight: 700; color: var(--teal); display: inline-flex; align-items: center; gap: 7px; margin-top: auto; }
.tip-go svg { width: 14px; height: 14px; transition: transform .18s; }
.tip:hover .tip-go svg { transform: translateX(4px); }

/* ── SERVICE AREA ── */
.area-cities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.area-city { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); border-radius: 8px; padding: 11px 15px; font-size: 14px; font-weight: 600; color: #fff; transition: background .2s, border-color .2s; }
.area-city:hover { background: rgba(255,255,255,.13); border-color: var(--teal-bright); }
.area-city svg { width: 14px; height: 14px; color: var(--teal-bright); flex: none; }
.area-map { border-radius: var(--radius-lg); overflow: hidden; }
.map-facade { position: relative; cursor: pointer; background: linear-gradient(140deg, var(--deep-2), var(--deep)); display: grid; place-items: center; text-align: center; padding: 22px; min-height: 300px; }
.map-facade__hint { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 15px; font-weight: 600; background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.26); border-radius: 100px; padding: 11px 19px; transition: background .2s; }
.map-facade:hover .map-facade__hint { background: rgba(0,0,0,.44); }
.map-facade__hint svg { width: 18px; height: 18px; flex: none; }
.map-facade.facade--loaded { display: block; padding: 0; min-height: 0; }
.map-facade iframe { width: 100%; height: 320px; display: block; border: 0; }

/* ── FAQ ── */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; text-align: left; font-family: var(--serif); font-size: clamp(17px, 1.9vw, 21px); color: var(--ink); line-height: 1.35; transition: color .2s; font-variation-settings: 'opsz' 24; }
.faq-q:hover { color: var(--teal); }
.faq-ico { width: 22px; height: 22px; flex: none; position: relative; }
.faq-ico::before, .faq-ico::after { content: ''; position: absolute; background: var(--teal); border-radius: 2px; transition: transform .28s cubic-bezier(.2,.7,.3,1); }
.faq-ico::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-ico::after  { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-ico::after { transform: translateX(-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .34s ease, opacity .28s; opacity: 0; font-size: var(--t-sm); color: var(--muted); line-height: 1.7; max-width: var(--measure); }
.faq-item.open .faq-a { max-height: 420px; opacity: 1; padding-bottom: 24px; }

/* ── CONTACT ── */
#contact { position: relative; overflow: hidden; background: var(--deep); }
.contact-media { position: absolute; inset: 0; opacity: .16; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: start; }
.contact-left { color: #fff; }
.contact-left .h-xl { color: #fff; margin-bottom: 18px; }
.contact-perks { display: flex; flex-direction: column; gap: 13px; margin: 30px 0 32px; }
.contact-perk { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; }
.contact-perk-i { width: 23px; height: 23px; border-radius: 50%; background: var(--teal); display: grid; place-items: center; flex: none; }
.contact-perk-i svg { width: 12px; height: 12px; color: #fff; }
.contact-phone { color: var(--teal-bright); font-weight: 700; font-size: 19px; display: inline-flex; align-items: center; gap: 9px; }

.form-card { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(26px, 3.4vw, 40px); }
.form-head { margin-bottom: 24px; }
.form-head h3 { font-family: var(--serif); font-size: 24px; color: var(--ink); margin-bottom: 5px; font-variation-settings: 'opsz' 28; }
.form-head p { font-size: 13px; color: var(--muted); }
.form-body { display: flex; flex-direction: column; gap: 15px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-input, .form-textarea {
  border: 1.5px solid var(--line); border-radius: 8px; padding: 13px 15px;
  font-size: 15px; font-family: var(--sans); color: var(--ink);
  background: var(--paper); outline: none; width: 100%;
  transition: border-color .18s, box-shadow .18s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(17,164,212,.18); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; margin-top: 4px; padding: 16px; font-size: 16px; }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
#form-status { font-size: 14px; font-weight: 600; text-align: center; min-height: 20px; }
#form-status.success { color: var(--ok); display: flex; align-items: center; justify-content: center; gap: 8px; animation: pop .4s ease; }
#form-status.error { color: var(--err); }
@keyframes pop { 0% { opacity: 0; transform: scale(.92); } 60% { transform: scale(1.03); } 100% { opacity: 1; transform: scale(1); } }

/* ── FOOTER ── */
#footer { background: var(--deep); color: rgba(255,255,255,.66); padding: 66px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 42px; padding-bottom: 50px; }
.footer-mark { font-family: var(--serif); font-size: 25px; color: #fff; margin-bottom: 14px; font-variation-settings: 'opsz' 32; }
.footer-tag { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.72); max-width: 34ch; }
.footer-h { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; color: #fff; margin-bottom: 17px; }
.footer-col li { padding: 5px 0; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.72); transition: color .16s; }
.footer-col a:hover { color: var(--teal-bright); }
.footer-ci { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.72); }
.footer-ci svg { width: 15px; height: 15px; color: var(--teal-bright); flex: none; margin-top: 4px; }
.footer-ci a:hover { color: var(--teal-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 21px 0; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a, .footer-bottom-links button { color: rgba(255,255,255,.55); font-size: 13px; transition: color .16s; }
.footer-bottom-links a:hover, .footer-bottom-links button:hover { color: var(--teal-bright); }

/* ── FLOATING / STICKY CTAs ── */
#sms-btn {
  position: fixed; bottom: 26px; left: 26px; z-index: 200;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--deep-2); color: #fff; padding: 13px 22px; border-radius: 100px;
  box-shadow: 0 6px 26px rgba(23,46,79,.4); font-size: 14px; font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .2s, box-shadow .2s;
}
#sms-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(23,46,79,.5); }
#sms-btn svg { width: 18px; height: 18px; flex: none; }

#mobile-cta-bar {
  display: none; position: fixed; inset: auto 0 0 0; z-index: 150;
  background: var(--deep); padding: 11px 18px 15px; gap: 10px;
  box-shadow: 0 -4px 26px rgba(23,46,79,.26);
  transform: translateY(100%); transition: transform .34s ease;
}
#mobile-cta-bar.visible { transform: translateY(0); }
#mobile-cta-bar a { flex: 1; padding: 13px 10px; font-size: 14px; }

/* ── SCROLL REVEAL ──
   `.in` is set by site.js. `.revealed` is what the older per-page inline
   observers set; both are honoured so a page can adopt this stylesheet
   before its markup and scripts are migrated. A .reveal element that never
   receives either class stays at opacity:0 forever — that is why the legacy
   class must keep working. Drop `.revealed` only once no page emits it. */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in, .reveal.revealed { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; } .d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; } .d4 { transition-delay: .28s; }
/* legacy delay classes from the pre-migration pages */
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ── SKIP LINK ── */
.skip { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--teal); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0; font-weight: 700; font-size: 14px; }
.skip:focus { left: 0; }

/* ── UTILITIES ── */
.u-center { text-align: center; }
.u-center .lede, .u-center .body { margin-left: auto; margin-right: auto; }
.u-stack-s  { display: flex; flex-direction: column; gap: var(--gap-s); }
.u-stack-m  { display: flex; flex-direction: column; gap: var(--gap-m); }
.u-stack-l  { display: flex; flex-direction: column; gap: var(--gap-l); }
.u-row      { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.u-mt-m { margin-top: var(--gap-m); }
.u-mt-l { margin-top: var(--gap-l); }
.u-mb-l { margin-bottom: var(--gap-l); }
.u-white-72 { color: rgba(255,255,255,.72); }
.u-row-center { justify-content: center; }
.u-layer-front { position: relative; z-index: 2; }
.wrap-flush { padding: 0; }
.video-frame { position: relative; max-width: 820px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; }
.u-poster-drain { background-image: url('/drain-to-clean-poster.jpg'); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* section header block — a variant, NOT the universal pattern */
.head { margin-bottom: var(--gap-l); }
.head-wide { max-width: 30ch; }

/* ── SERVICE TERMS MODAL ── */
.st-overlay { display: none; position: fixed; inset: 0; z-index: 1100; background: rgba(9,18,33,.72); overflow-y: auto; padding: 40px 20px; }
.st-overlay.open { display: block; }
.st-card { background: var(--paper); max-width: 680px; margin: 0 auto; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 46px); position: relative; box-shadow: var(--shadow-lg); }
.st-close { position: absolute; top: 18px; right: 18px; color: var(--muted); padding: 6px; border-radius: 6px; transition: color .16s, background .16s; }
.st-close:hover { color: var(--ink); background: var(--paper-2); }
.st-title { font-family: var(--serif); font-size: clamp(25px, 3vw, 33px); color: var(--ink); margin-bottom: 5px; font-variation-settings: 'opsz' 40; }
.st-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.st-h { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.st-p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.st-fine { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.st-fine a { color: var(--teal); font-weight: 700; }
.u-stack-20 { display: flex; flex-direction: column; gap: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .split, .split-7-5, .split-5-7, .contact-grid { grid-template-columns: 1fr; }
  .split-media.bleed-r, .split-media.bleed-l { margin: 0; }
  .proof { grid-template-columns: repeat(2, 1fr); }
  .rev-grid, .tips { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(3) { border-left: none; padding-left: 0; }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .mo-a { grid-column: span 12; } .mo-b { grid-column: span 12; }
  .mo-c, .mo-d, .mo-e { grid-column: span 4; }
}
@media (max-width: 760px) {
  :root { --nav-h: 66px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-phone { display: none; }
  #nav-toggle { display: block; }
  #mobile-cta-bar { display: flex; }
  #sms-btn { bottom: 82px; left: 14px; padding: 11px 18px; font-size: 13px; }
  .band { padding: var(--gap-l) 0; }
  .band-tall { padding: var(--gap-xl) 0; }
  .rev-grid, .tips { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .area-cities { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 34px 1fr auto; gap: 14px; }
  .svc-thumb { display: none; }
  .svc-row:hover { padding-left: 0; }
  .mo-c, .mo-d, .mo-e { grid-column: span 6; }
  .hero-live { display: none; }
  .hero-cue { display: none; }
  #hero { min-height: 92svh; }
}
@media (max-width: 460px) {
  .proof { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .mo-c, .mo-d, .mo-e { grid-column: span 12; aspect-ratio: 4/3; }
}

/* ── MOTION / CONTRAST PREFERENCES ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
@media print {
  #nav, #mobile-menu, #sms-btn, #mobile-cta-bar, .hero-cue, #lightbox { display: none !important; }
  body { color: #000; background: #fff; }
}
