/* =====================================================================
   TD Exterior Cleaning, "Grime to Gleam"
   Wet-slate charcoal + cool white + purified-water aqua.
   Mobile-first. Built around the TD water-droplet mark.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* === BLACK + METALLIC SILVER - from the TD logo (silver #a5a4a5 on black) === */
  /* Text (light silvers on the dark world) */
  --ink:        oklch(0.950 0.002 250);   /* primary text, near-white silver */
  --ink-2:      oklch(0.820 0.003 250);   /* softer label / heading silver */
  --slate:      oklch(0.725 0.004 250);   /* secondary body text */
  --slate-lite: oklch(0.630 0.005 250);   /* muted captions */

  /* Metallic black world (backgrounds) */
  --paper:      oklch(0.205 0.004 250);   /* page / section base (gunmetal) */
  --surface:    oklch(0.258 0.005 250);   /* raised panels, chips */
  --surface-2:  oklch(0.305 0.006 250);   /* higher panels */
  --ink-deep:   oklch(0.135 0.004 250);   /* deepest black - hero, footer, dark fills */
  --ink-2b:     oklch(0.170 0.004 250);   /* near-black fill */
  --line:       oklch(1 0 0 / 0.13);      /* hairline on dark */
  --line-soft:  oklch(1 0 0 / 0.07);

  /* Brushed-chrome silver accent (replaces the old aqua, same names for cascade) */
  --aqua:       oklch(0.825 0.004 250);   /* bright silver accent (icons, underline) */
  --aqua-lo:    oklch(0.745 0.005 250);
  --aqua-deep:  oklch(0.805 0.004 250);   /* accent text / eyebrow on dark */
  --aqua-hi:    oklch(0.935 0.003 250);   /* chrome highlight */
  --aqua-glow:  oklch(0.860 0.012 250);

  /* His exact logo silver + a polished-chrome ramp for shine */
  --silver:     oklch(0.825 0.004 250);
  --silver-hi:  oklch(0.945 0.003 250);
  --silver-mid: oklch(0.700 0.003 300);   /* ~ #a5a4a5, his logo silver */
  --silver-lo:  oklch(0.560 0.006 250);
  --chrome: linear-gradient(180deg, #f7f8fa 0%, #d0d2d6 20%, #93969d 46%, #babdc2 52%, #71747a 74%, #eceef1 100%);

  /* Rating stars only (kept warm on purpose so ratings read instantly) */
  --gold:       oklch(0.815 0.130 84);

  --white:      oklch(0.995 0 0);

  /* Type */
  --disp: "Archivo Expanded", "Archivo", system-ui, sans-serif;
  --font: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, "Cascadia Code", monospace;

  /* Motion */
  --e-out: cubic-bezier(0.22, 1, 0.36, 1);        /* quint-ish out */
  --e-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --e-inout: cubic-bezier(0.65, 0, 0.35, 1);

  /* Rhythm */
  --wrap: 1240px;
  --navh: 64px;
  --gutter: clamp(1.15rem, 5vw, 3.25rem);
  --radius: 18px;
  --radius-lg: 26px;

  /* z-scale (semantic) */
  --z-base: 1;
  --z-raised: 10;
  --z-nav: 100;
  --z-drawer: 200;
  --z-cursor: 300;
  --z-bar: 250;
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.075rem);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
figure { margin: 0; }  /* reset UA default figure margin (1em 40px) that offset the sliders on mobile */
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.02; letter-spacing: -0.025em; font-weight: 800; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
::selection { background: var(--aqua); color: var(--ink-deep); }

:focus-visible { outline: 3px solid var(--aqua-deep); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink-deep); color: var(--white); padding: 12px 18px; border-radius: 0 0 12px 0; font-weight: 600;
}
.skip:focus { left: 0; }



/* ---------- Buttons ---------- */
.btn {
  --bg: var(--aqua); --fg: var(--ink-deep);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; line-height: 1;
  padding: 1.05em 1.6em; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--bg); color: var(--fg); white-space: nowrap;
  transition: transform 0.35s var(--e-out), box-shadow 0.35s var(--e-out), background 0.25s, color 0.25s;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-primary { background: var(--chrome); color: #16181c; text-shadow: 0 1px 0 rgba(255,255,255,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65), inset 0 -1px 0 rgba(0,0,0,0.28), 0 12px 28px -12px rgba(0,0,0,0.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), inset 0 -1px 0 rgba(0,0,0,0.3), 0 20px 42px -14px rgba(0,0,0,0.8); }
.btn-dark { --bg: var(--ink-deep); --fg: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-dark:hover { transform: translateY(-2px); background: var(--surface); box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.28); }
.btn-ghost { --bg: transparent; --fg: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost-lite { --bg: transparent; --fg: var(--white); border: 1.5px solid oklch(0.99 0 0 / 0.35); }
.btn-ghost-lite:hover { border-color: var(--white); background: oklch(0.99 0 0 / 0.08); }
.btn-lg { font-size: 1.06rem; padding: 1.15em 1.9em; }
.btn-block { width: 100%; }

.mag { will-change: transform; }

/* ---------- Top call strip ---------- */
.strip {
  background: var(--ink-deep); color: oklch(0.9 0.01 220);
  font-size: 0.86rem; text-align: center; position: relative; z-index: var(--z-nav);
}
.strip a { display: flex; align-items: center; justify-content: center; gap: 0.5em; padding: 9px 16px; font-weight: 500; }
.strip strong { color: var(--white); font-weight: 700; }
.strip .drop-i { color: var(--aqua); }
.strip .tail { color: oklch(0.72 0.02 220); }
@media (max-width: 560px) { .strip .tail { display: none; } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  transition: transform 0.4s var(--e-out), background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
  background: transparent; color: var(--nav-fg, var(--ink));
}
.nav.up { transform: translateY(-100%); }
.nav.solid {
  background: oklch(0.135 0.004 250 / 0.82);
  backdrop-filter: saturate(1.2) blur(14px); -webkit-backdrop-filter: saturate(1.2) blur(14px);
  box-shadow: 0 1px 0 var(--line-soft), 0 14px 34px -22px oklch(0 0 0 / 0.7);
}
/* Hero is dark: nav starts in light-on-dark mode */
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.8rem; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
/* His real logo shown in its true colours (silver #a5a4a5 + white), as designed for a dark ground */
.brand-logo {
  display: block; width: 116px; height: 34px; flex: none;
  background: url(../img/brand/td-logo.svg) left center / contain no-repeat;
}
@media (max-width: 560px) { .brand-logo { width: 98px; height: 29px; } }

.nav-links { display: none; list-style: none; margin: 0; padding: 0; gap: 1.6rem; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; position: relative; padding: 4px 0; color: var(--nav-fg, var(--ink)); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: var(--aqua); transform: scaleX(0); transform-origin: left; transition: transform 0.32s var(--e-out); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: none; }

.nav-right { display: flex; align-items: center; gap: 0.7rem; }
.nav-burger {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: oklch(0.99 0 0 / 0.1); border: 1px solid oklch(0.99 0 0 / 0.16); color: var(--nav-fg, var(--ink)); cursor: pointer;
  transition: background 0.2s;
}
.nav-burger svg { width: 22px; height: 22px; }
.nav.solid .nav-burger { background: var(--surface); border-color: var(--line); }

/* nav color modes */
.nav[data-mode="light"] { --nav-fg: var(--white); }
.nav.solid { --nav-fg: var(--ink); }
.nav[data-mode="light"] .nav-logo .logo-txt b { color: var(--aqua); }
.nav.solid .nav-logo .logo-txt b { color: var(--aqua-deep); }

@media (min-width: 940px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 380px); z-index: var(--z-drawer);
  background: var(--ink-deep); color: var(--white);
  transform: translateX(100%); transition: transform 0.5s var(--e-out-expo);
  display: flex; flex-direction: column; padding: 5.2rem 2rem 2rem; gap: 0.35rem;
  box-shadow: -30px 0 60px -30px oklch(0 0 0 / 0.6);
}
.drawer.open { transform: none; }
.drawer a { font-family: var(--disp); font-size: 1.5rem; font-weight: 700; padding: 0.5rem 0; color: var(--white); letter-spacing: -0.02em; }
.drawer a:active { color: var(--aqua); }
.drawer .d-sep { height: 1px; background: oklch(0.99 0 0 / 0.12); margin: 0.8rem 0; }
.drawer .d-foot { margin-top: auto; font-size: 0.9rem; color: oklch(0.8 0.01 220); font-family: var(--font); }
.drawer .d-foot a { font-family: var(--font); font-size: 0.95rem; font-weight: 600; color: var(--aqua); display: inline; }
.drawer-close {
  position: absolute; top: 1.4rem; right: 1.4rem; width: 44px; height: 44px; border-radius: 12px;
  background: oklch(0.99 0 0 / 0.08); border: 1px solid oklch(0.99 0 0 / 0.16); color: var(--white); cursor: pointer;
  display: grid; place-items: center;
}
.drawer-close svg { width: 22px; height: 22px; }
.scrim {
  position: fixed; inset: 0; z-index: var(--z-drawer); background: oklch(0.12 0.02 240 / 0.55);
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; backdrop-filter: blur(2px);
}
.scrim.show { opacity: 1; visibility: visible; }

/* ---------- Section scaffolding ---------- */
section { position: relative; }
.pad { padding-block: clamp(3.6rem, 8vw, 7rem); }
.pad-t { padding-top: clamp(3.6rem, 8vw, 7rem); }
.pad-b { padding-bottom: clamp(3.6rem, 8vw, 7rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--font);
  font-size: 0.92rem; font-weight: 700; letter-spacing: 0; color: var(--aqua-deep); margin-bottom: 1.1rem;
}
.eyebrow .drop-i { width: 1.05em; height: 1.05em; color: var(--aqua); }
.eyebrow.on-dark { color: var(--aqua-hi); }

.h-xl { font-family: var(--disp); font-size: clamp(2.35rem, 1.4rem + 4.6vw, 4.6rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; }
.h-lg { font-family: var(--disp); font-size: clamp(1.95rem, 1.3rem + 2.7vw, 3.25rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.0; }
.h-md { font-family: var(--disp); font-size: clamp(1.45rem, 1.1rem + 1.5vw, 2.1rem); font-weight: 800; letter-spacing: -0.025em; }
.lede { font-size: clamp(1.06rem, 1rem + 0.5vw, 1.28rem); line-height: 1.55; color: var(--slate); max-width: 60ch; }
.lede.on-dark { color: oklch(0.86 0.012 220); }

.sec-head { max-width: 44ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.sec-head .lede { margin-top: 1rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative; background: var(--ink-deep); color: var(--white);
  overflow: hidden; isolation: isolate; margin-top: calc(-1 * var(--navh) - 1px);
}
.hero::before { /* soft aqua light bloom top-right */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 82% 8%, oklch(0.55 0.012 250 / 0.28), transparent 70%),
    radial-gradient(50% 40% at 0% 100%, oklch(0.4 0.015 250 / 0.5), transparent 70%);
}
.hero-grain { position: absolute; inset: 0; z-index: -1; opacity: 0.5; pointer-events: none; }

.hero-in { display: grid; gap: clamp(2rem, 5vw, 3.5rem); padding-top: calc(var(--navh) + clamp(1.6rem, 5vw, 3rem)); padding-bottom: clamp(3rem, 7vw, 5rem); align-items: center; }
.hero-copy { max-width: 40ch; }
.hero h1 { font-family: var(--disp); font-size: clamp(2.7rem, 1.5rem + 6.4vw, 5.4rem); font-weight: 900; letter-spacing: -0.04em; line-height: 0.92; }
.hero h1 .gleam { position: relative; background: var(--chrome); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { margin-top: 1.35rem; color: oklch(0.87 0.012 220); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.1rem 1.5rem; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid oklch(0.99 0 0 / 0.13); }
.hero-trust li { display: flex; align-items: center; gap: 0.5em; font-size: 0.9rem; color: oklch(0.85 0.01 220); font-weight: 500; }
.hero-trust svg { width: 1.15em; height: 1.15em; color: var(--aqua); flex: none; }
.hero-trust ul { display: contents; list-style: none; }
ul.hero-trust { list-style: none; margin: 0; padding: 1.6rem 0 0; }

/* Before/after reveal, the signature */
.reveal-fig {
  position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 40px 90px -40px oklch(0 0 0 / 0.8); user-select: none; touch-action: pan-y; background: var(--ink-2);
  --pos: 50%;
}
.reveal-fig img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reveal-after { z-index: 1; }
.reveal-before { z-index: 2; clip-path: inset(0 0 0 var(--pos)); }
.reveal-tag {
  position: absolute; top: 14px; z-index: 3; font-family: var(--mono); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  background: oklch(0.14 0.01 250 / 0.82); color: var(--white); backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px -4px oklch(0 0 0 / 0.6);
  transition: transform 0.28s var(--e-out), box-shadow 0.28s var(--e-out), background 0.28s, color 0.28s, opacity 0.28s;
}
.reveal-tag.t-before { right: 14px; }
.reveal-tag.t-after { left: 14px; color: var(--ink-deep); background: oklch(0.97 0.004 250 / 0.92); }
/* When an image is 75%+ on show, its label lights up in chrome silver and the other steps back */
.reveal-fig.after-dom .t-after,
.reveal-fig.before-dom .t-before {
  background: var(--chrome); color: #16181c;
  box-shadow: 0 0 0 2px oklch(0.20 0.004 250), 0 0 0 5px oklch(0.86 0.004 250 / 0.55), 0 10px 24px -8px oklch(0 0 0 / 0.72);
  transform: scale(1.09);
}
.reveal-fig.after-dom .t-before,
.reveal-fig.before-dom .t-after { opacity: 0.4; transform: scale(0.95); }
.reveal-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); z-index: 4; width: 3px; margin-left: -1.5px;
  background: var(--white); box-shadow: 0 0 0 1px oklch(0.2 0.02 240 / 0.25);
}
.reveal-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--white); color: var(--aqua-deep);
  display: grid; place-items: center; box-shadow: 0 6px 20px -4px oklch(0 0 0 / 0.6); cursor: ew-resize;
  transition: transform 0.15s var(--e-out);
}
.reveal-knob:hover { transform: translate(-50%, -50%) scale(1.08); }
.reveal-knob svg { width: 22px; height: 22px; }
.reveal-range { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.reveal-hint {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); z-index: 3;
  font-family: var(--mono); font-size: 0.72rem; color: var(--white); background: oklch(0.16 0.02 240 / 0.6);
  padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(6px); pointer-events: none;
  transition: opacity 0.4s; display: flex; align-items: center; gap: 0.4em;
}
.reveal-fig.touched .reveal-hint { opacity: 0; }

@media (min-width: 940px) {
  .hero-in { grid-template-columns: 1.02fr 1fr; gap: clamp(2.5rem, 4vw, 4.5rem); }
  ul.hero-trust { display: flex; }
}

/* ---------- Trust / proof strip ---------- */
.proof { background: var(--ink-deep); color: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: oklch(0.99 0 0 / 0.12); border-radius: var(--radius); overflow: hidden; }
.proof-cell { background: var(--ink-deep); padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.1rem, 2.4vw, 1.8rem); }
.proof-cell .n { font-family: var(--disp); font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--white); font-variant-numeric: tabular-nums; }
.proof-cell .n .u { color: var(--aqua); }
.proof-cell .k { margin-top: 0.5rem; font-size: 0.9rem; color: oklch(0.78 0.012 220); font-weight: 500; }
@media (min-width: 720px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.svc-grid { display: grid; grid-template-columns: 1fr; gap: clamp(0.8rem, 1.6vw, 1.15rem); }
.svc {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 300px; padding: 1.5rem; border-radius: var(--radius); overflow: hidden; color: var(--white);
  isolation: isolate; text-decoration: none;
}
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.9s var(--e-out); }
.svc::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(190deg, oklch(0.15 0.02 240 / 0.05) 20%, oklch(0.14 0.02 240 / 0.55) 62%, oklch(0.12 0.02 240 / 0.9)); }
.svc:hover img { transform: scale(1.06); }
.svc .svc-ic { position: absolute; top: 1.2rem; left: 1.2rem; width: 42px; height: 42px; border-radius: 12px; background: oklch(0.99 0 0 / 0.16); backdrop-filter: blur(8px); display: grid; place-items: center; z-index: 1; border: 1px solid oklch(0.99 0 0 / 0.22); }
.svc .svc-ic svg { width: 22px; height: 22px; color: var(--white); }
.svc h3 { font-family: var(--disp); font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; }
.svc p { margin-top: 0.4rem; font-size: 0.94rem; color: oklch(0.9 0.01 220); line-height: 1.45; }
.svc .svc-price { margin-top: 0.85rem; font-family: var(--mono); font-size: 0.82rem; font-weight: 600; color: var(--aqua-hi); display: inline-flex; align-items: center; gap: 0.4em; }
.svc .svc-price svg { width: 1em; height: 1em; transition: transform 0.3s var(--e-out); }
.svc:hover .svc-price svg { transform: translateX(4px); }
.svc.feat { min-height: 360px; }

@media (min-width: 620px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc.feat { grid-column: span 2; min-height: 300px; flex-direction: row; align-items: flex-end; }
  .svc.feat .svc-txt { max-width: 34ch; }
}
@media (min-width: 1000px) {
  .svc-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 232px; }
  .svc { min-height: 0; }
  .svc.s-wide { grid-column: span 3; }
  .svc.s-tall { grid-column: span 2; grid-row: span 2; }
  .svc.s-reg { grid-column: span 2; }
  .svc.feat { grid-column: span 4; grid-row: span 2; min-height: 0; flex-direction: column; align-items: stretch; }
  .svc.feat h3 { font-size: 1.9rem; }
  .svc.feat .svc-txt { max-width: none; }
}

/* ---------- Gallery reveal ---------- */
.gallery { background: var(--surface); }
.gal-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.1rem, 2.6vw, 1.8rem); }
.gal-item { }
.gal-item .reveal-fig { aspect-ratio: 3 / 2; box-shadow: 0 24px 50px -30px oklch(0.2 0.03 236 / 0.55); }
.gal-cap { margin-top: 0.85rem; display: flex; align-items: baseline; gap: 0.6rem; }
.gal-cap .gc-name { font-family: var(--disp); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.gal-cap .gc-loc { font-family: var(--mono); font-size: 0.78rem; color: var(--slate); }
@media (min-width: 760px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Quote calculator ---------- */
.quote { background: var(--ink-deep); color: var(--white); overflow: hidden; }
.quote .eyebrow { color: var(--aqua-hi); }
.quote .lede { color: oklch(0.85 0.012 220); }

.svc-tabs { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(140px, 45%), 1fr)); gap: 0.6rem; margin: 1.8rem 0 0; }
.svc-tab {
  border: 1.5px solid oklch(0.99 0 0 / 0.18); background: oklch(0.99 0 0 / 0.04); color: var(--white);
  border-radius: 14px; padding: 0.85rem 0.9rem; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: 0.25rem; transition: border-color 0.25s, background 0.25s, transform 0.3s var(--e-out);
}
.svc-tab .st-ic { width: 24px; height: 24px; color: var(--aqua); margin-bottom: 0.15rem; }
.svc-tab .st-ic svg { width: 100%; height: 100%; }
.svc-tab .st-name { font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em; }
.svc-tab .st-from { font-family: var(--mono); font-size: 0.76rem; color: oklch(0.78 0.01 220); }
.svc-tab .st-tick { position: absolute; top: 8px; right: 8px; width: 20px; height: 20px; border-radius: 50%; background: oklch(0.99 0 0 / 0.12); display: grid; place-items: center; opacity: 0; transform: scale(0.6); transition: opacity 0.2s, transform 0.25s var(--e-out); }
.svc-tab .st-tick svg { width: 12px; height: 12px; color: var(--ink-deep); }
.svc-tab { position: relative; }
.svc-tab:hover { border-color: var(--aqua); transform: translateY(-2px); }
.svc-tab[aria-pressed="true"] { background: var(--aqua); border-color: var(--aqua); color: var(--ink-deep); }
.svc-tab[aria-pressed="true"] .st-ic, .svc-tab[aria-pressed="true"] .st-from { color: oklch(0.25 0.05 220); }
.svc-tab[aria-pressed="true"] .st-tick { opacity: 1; transform: scale(1); background: oklch(0.2 0.03 230 / 0.18); }

.qgrid { display: grid; grid-template-columns: 1fr; gap: clamp(1.2rem, 2.5vw, 2rem); margin-top: 1.6rem; }
.qgrid[hidden] { display: none; }
@media (min-width: 900px) { .qgrid { grid-template-columns: 1.15fr 0.85fr; align-items: start; } }
@media (prefers-reduced-motion: no-preference) { .qgrid.reveal { animation: stepIn 0.55s var(--e-out); } }
@keyframes stepIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.qpanel { background: oklch(0.99 0 0 / 0.045); border: 1px solid oklch(0.99 0 0 / 0.12); border-radius: var(--radius-lg); padding: clamp(1.3rem, 2.6vw, 2rem); }
.qpanel h3 { font-family: var(--disp); font-size: 1.2rem; margin-bottom: 0.3rem; }
.qpanel .q-sub { color: var(--aqua-hi); font-weight: 600; font-size: 0.95rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1.15rem; }
.field > label, .field > .flabel { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.95rem; }
.selwrap { position: relative; }
.field select, .field input[type="number"] {
  width: 100%; padding: 0.9rem 1rem; font: 600 1rem var(--font); color: var(--white);
  background: oklch(0.99 0 0 / 0.06); border: 1.5px solid oklch(0.99 0 0 / 0.2); border-radius: 12px;
  appearance: none; -webkit-appearance: none;
}
.field input[type="number"] { font-family: var(--mono); }
.field select option { color: var(--ink); }
.field select:focus, .field input:focus { border-color: var(--aqua); outline: none; }
.selwrap::after { content: ""; position: absolute; right: 16px; top: 50%; width: 9px; height: 9px; border-right: 2.5px solid var(--aqua); border-bottom: 2.5px solid var(--aqua); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.field[hidden] { display: none !important; }

.check { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.85rem 1rem; border: 1.5px solid oklch(0.99 0 0 / 0.15); border-radius: 12px; cursor: pointer; transition: border-color 0.2s, background 0.2s; margin-bottom: 0.6rem; }
.check[hidden] { display: none !important; }
.check:hover { border-color: var(--aqua); }
.check:has(input:checked) { border-color: var(--aqua); background: oklch(0.72 0.012 250 / 0.14); }
.check input { width: 20px; height: 20px; accent-color: var(--aqua); margin-top: 2px; flex: none; }
.check b { display: block; font-size: 0.95rem; }
.check small { color: oklch(0.76 0.01 220); font-size: 0.84rem; }

.result { background: linear-gradient(180deg, oklch(0.99 0 0 / 0.07), oklch(0.99 0 0 / 0.03)); border: 1px solid oklch(0.72 0.012 250 / 0.35); border-radius: var(--radius-lg); padding: clamp(1.4rem, 2.6vw, 2rem); position: sticky; top: 90px; }
.result .r-lbl { font-family: var(--mono); font-size: 0.8rem; color: var(--aqua-hi); text-transform: uppercase; letter-spacing: 0.05em; }
.result .r-big { font-family: var(--disp); font-size: clamp(3rem, 2rem + 5vw, 4.2rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin: 0.4rem 0 0.1rem; font-variant-numeric: tabular-nums; }
.result .r-big.pop { animation: pricePop 0.5s var(--e-out); }
@keyframes pricePop { 0% { transform: scale(0.85); } 55% { transform: scale(1.05); } 100% { transform: scale(1); } }
.result .r-per { color: oklch(0.82 0.012 220); font-size: 0.95rem; }
.r-break { margin: 1.3rem 0 0; border-top: 1px solid oklch(0.99 0 0 / 0.14); padding-top: 1rem; display: grid; gap: 0.5rem; font-size: 0.92rem; }
.r-break div { display: flex; justify-content: space-between; gap: 1rem; color: oklch(0.8 0.012 220); }
.r-break div b { color: var(--white); font-family: var(--mono); font-weight: 600; }
.r-note { font-size: 0.85rem; color: oklch(0.72 0.012 220); margin-top: 1rem; line-height: 1.5; }
.r-acts { display: grid; gap: 0.6rem; margin-top: 1.4rem; }
.r-disc { margin-top: 0.9rem; font-size: 0.9rem; color: var(--aqua-hi); font-weight: 600; min-height: 1.2em; }

/* Mobile sticky price bar */
.mbar {
  position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: var(--z-bar);
  display: none; align-items: center; justify-content: space-between; gap: 0.8rem;
  background: oklch(0.19 0.02 240 / 0.94); backdrop-filter: blur(14px);
  border: 1px solid oklch(0.72 0.012 250 / 0.4); border-radius: 16px; padding: 0.6rem 0.6rem 0.6rem 1.1rem;
  box-shadow: 0 18px 40px -14px oklch(0 0 0 / 0.7); color: var(--white);
  transition: opacity 0.3s, transform 0.3s var(--e-out);
}
.mbar.off { opacity: 0; transform: translateY(12px); pointer-events: none; }
.mbar .m-l { display: block; font-size: 0.72rem; color: oklch(0.75 0.01 220); max-width: 44vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mbar .m-big { font-family: var(--disp); font-size: 1.5rem; font-weight: 800; line-height: 1.05; font-variant-numeric: tabular-nums; }
.mbar .btn { padding: 0.75em 1.15em; font-size: 0.95rem; }
@media (max-width: 899px) { .mbar.live { display: flex; } body.calc-live { padding-bottom: 82px; } }

/* ---------- Areas ---------- */
.areas { background: var(--paper); }
.areas-in { display: grid; gap: clamp(1.6rem, 4vw, 3rem); }
.area-primary { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.area-hub {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--white); min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate;
  background: var(--ink-deep);
}
.area-hub::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 100% at 100% 0%, oklch(0.5 0.012 250 / 0.4), transparent 60%); }
.area-hub .ah-k { font-family: var(--mono); font-size: 0.78rem; color: var(--aqua-hi); letter-spacing: 0.05em; }
.area-hub h3 { font-family: var(--disp); font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.6rem); font-weight: 800; margin-top: 0.4rem; }
.area-hub p { margin-top: 0.6rem; font-size: 0.96rem; color: oklch(0.86 0.01 220); max-width: 40ch; }
@media (min-width: 720px) { .area-primary { grid-template-columns: 1fr 1fr; } }

.area-secondary { }
.area-secondary h4 { font-size: 0.95rem; font-weight: 600; color: var(--slate); margin-bottom: 1rem; }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.area-chips li { list-style: none; }
.area-chip { display: inline-flex; align-items: center; gap: 0.45em; padding: 0.55em 1em; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 0.92rem; font-weight: 500; color: var(--ink-2); }
.area-chip .drop-i { width: 0.85em; height: 0.85em; color: var(--aqua-deep); }
.area-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 24px 50px -34px oklch(0.2 0.03 236 / 0.4); }
.area-map iframe { display: block; width: 100%; height: 340px; border: 0; filter: grayscale(0.15) contrast(1.02); }

/* ---------- Reviews ---------- */
.reviews { background: var(--ink-deep); color: var(--white); }
.rev-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2.4vw, 1.6rem); }
.rev {
  background: oklch(0.99 0 0 / 0.045); border: 1px solid oklch(0.99 0 0 / 0.12); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem); display: flex; flex-direction: column;
}
.rev .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.rev blockquote { margin: 1rem 0 0; font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem); line-height: 1.5; font-weight: 500; color: oklch(0.95 0.008 220); letter-spacing: -0.01em; }
.rev .rev-by { margin-top: auto; padding-top: 1.4rem; display: flex; align-items: center; gap: 0.75rem; }
.rev .rev-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(140deg, var(--aqua), var(--aqua-deep)); display: grid; place-items: center; font-family: var(--disp); font-weight: 800; color: var(--ink-deep); flex: none; }
.rev .rev-n { display: block; font-weight: 700; font-size: 0.98rem; }
.rev .rev-m { display: block; font-size: 0.84rem; color: oklch(0.75 0.01 220); margin-top: 1px; }
@media (min-width: 820px) { .rev-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Contact / CTA ---------- */
.contact { background: var(--paper); }
.contact-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; isolation: isolate;
  background: var(--ink-deep); color: var(--white); padding: clamp(1.8rem, 5vw, 3.6rem);
}
.contact-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 80% at 90% 10%, oklch(0.5 0.012 250 / 0.35), transparent 60%), radial-gradient(60% 70% at 0% 100%, oklch(0.4 0.015 250 / 0.55), transparent 65%); }
.contact-in { display: grid; gap: clamp(1.8rem, 4vw, 3rem); }
.contact-lines { display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.c-line { display: flex; align-items: center; gap: 0.85rem; font-size: 1.05rem; }
.c-line .c-ic { width: 44px; height: 44px; border-radius: 12px; background: oklch(0.99 0 0 / 0.09); border: 1px solid oklch(0.99 0 0 / 0.16); display: grid; place-items: center; flex: none; }
.c-line .c-ic svg { width: 20px; height: 20px; color: var(--aqua); }
.c-line a, .c-line span { font-weight: 600; }
.c-line small { display: block; font-size: 0.78rem; color: oklch(0.72 0.01 220); font-weight: 500; }
.contact-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
@media (min-width: 860px) { .contact-in { grid-template-columns: 1.05fr 0.95fr; align-items: center; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); color: oklch(0.8 0.01 220); padding-top: clamp(3rem, 6vw, 5rem); }
.foot-top { display: grid; grid-template-columns: 1fr; gap: 2.2rem; padding-bottom: 2.6rem; }
.foot-brand .logo-txt { font-family: var(--disp); color: var(--white); font-weight: 800; font-size: 1.15rem; }
.foot-brand .brand-logo { color: var(--white); width: 150px; height: 46px; }
.foot-brand p { margin-top: 0.9rem; font-size: 0.92rem; max-width: 34ch; line-height: 1.55; }
.foot-brand .foot-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.foot-social a { width: 40px; height: 40px; border-radius: 11px; background: oklch(0.99 0 0 / 0.07); border: 1px solid oklch(0.99 0 0 / 0.13); display: grid; place-items: center; transition: background 0.2s, transform 0.3s var(--e-out); }
.foot-social a:hover { background: var(--aqua); color: var(--ink-deep); transform: translateY(-2px); }
.foot-social svg { width: 19px; height: 19px; }
.foot-col h5 { color: var(--white); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin: 0 0 1rem; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.foot-col a { font-size: 0.92rem; transition: color 0.2s; }
.foot-col a:hover { color: var(--aqua); }
.foot-legal { border-top: 1px solid oklch(0.99 0 0 / 0.1); padding: 1.5rem 0 2.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between; font-size: 0.83rem; }
.foot-legal a { color: var(--aqua); font-weight: 600; }
@media (min-width: 720px) { .foot-top { grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; } }
@media (min-width: 980px) { .foot-top { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }

/* ---------- Reveal-on-scroll (content is ALWAYS visible; the reveal only
   animates when JS adds .in, so a headless/no-JS render never ships blank) ---------- */
.rise { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .js .rise.in { animation: riseIn 0.7s var(--e-out) both; }
  .js .rise.in[data-d="1"] { animation-delay: 0.07s; }
  .js .rise.in[data-d="2"] { animation-delay: 0.14s; }
  .js .rise.in[data-d="3"] { animation-delay: 0.21s; }
  .js .rise.in[data-d="4"] { animation-delay: 0.28s; }
}
@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* Droplet glyph helper */
.drop-i { display: inline-block; width: 0.9em; height: 1.12em; flex: none; vertical-align: -0.15em; }
.eyebrow .drop-i { width: 1.05em; height: 1.3em; }
/* Safety: keep any icon that lands in a text/inline context small */
.rel-arrow svg { width: 20px; height: 20px; }
.area-hub p svg, .prose p svg, .fq-body svg { width: 1em; height: 1em; vertical-align: -0.12em; }

/* utility */
.center { text-align: center; margin-inline: auto; }
.mt-cta { margin-top: 2.2rem; }
.nowrap { white-space: nowrap; }

/* =====================================================================
   MULTI-PAGE COMPONENTS (inner pages)
   ===================================================================== */

/* ---------- Page hero (dark band under nav, mirrors home hero top) ---------- */
.page-hero {
  position: relative; background: var(--ink-deep); color: var(--white);
  overflow: hidden; isolation: isolate; margin-top: calc(-1 * var(--navh) - 1px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(58% 60% at 88% 4%, oklch(0.5 0.012 250 / 0.26), transparent 68%),
              radial-gradient(50% 55% at -4% 108%, oklch(0.4 0.015 250 / 0.5), transparent 62%);
}
.page-hero-in { padding-top: calc(var(--navh) + clamp(1.4rem, 5vw, 2.6rem)); padding-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.page-hero.tall .page-hero-in { padding-bottom: clamp(3rem, 7vw, 5rem); }
.page-hero h1 { font-family: var(--disp); font-size: clamp(2.1rem, 1.3rem + 4vw, 4rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; max-width: 18ch; }
.page-hero .lede { margin-top: 1.1rem; color: oklch(0.86 0.012 220); }
.page-hero-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.page-hero-media { position: relative; }
.page-hero-split { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
@media (min-width: 900px) { .page-hero-split { grid-template-columns: 1.05fr 0.95fr; } }
.page-hero-media .reveal-fig, .page-hero-media img { border-radius: var(--radius-lg); box-shadow: 0 30px 70px -34px oklch(0 0 0 / 0.75); }
.page-hero-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Breadcrumb ---------- */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-family: var(--mono); color: oklch(0.72 0.02 220); margin-bottom: 1.1rem; }
.crumbs a { color: var(--aqua-hi); }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { opacity: 0.5; }
.crumbs [aria-current] { color: oklch(0.86 0.01 220); }

/* ---------- Prose (rich text on light) ---------- */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-family: var(--disp); font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); font-weight: 800; letter-spacing: -0.025em; margin-top: 2.6rem; }
.prose h3 { font-family: var(--disp); font-size: 1.28rem; font-weight: 800; letter-spacing: -0.02em; margin-top: 1.9rem; }
.prose p { color: var(--slate); line-height: 1.68; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--aqua-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.prose ul li { position: relative; padding-left: 1.9rem; color: var(--slate); line-height: 1.55; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.15em; width: 1.15rem; height: 1.15rem;
  background: var(--aqua-deep);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- Content section shells ---------- */
.section-lead { max-width: 46ch; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.on-light-eyebrow { color: var(--aqua-deep); }

/* Split image + text (alternating) */
.split { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.flip .split-media { order: 2; }
}
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 54px -34px oklch(0.2 0.03 236 / 0.5); }
.split-media img, .split-media .reveal-fig { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.split-media .reveal-fig { border-radius: 0; }
.split-body h2 { font-family: var(--disp); font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.3rem); font-weight: 800; letter-spacing: -0.028em; }
.split-body p { color: var(--slate); margin-top: 1rem; line-height: 1.65; max-width: 52ch; }

/* Checklist */
.checks { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.7rem; }
.checks li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--ink-2); font-weight: 500; }
.checks svg { width: 1.2rem; height: 1.2rem; color: var(--aqua-deep); flex: none; margin-top: 0.15rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2.4vw, 1.4rem); }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.3rem, 2.5vw, 1.7rem); }
.step .step-n { font-family: var(--mono); font-size: 0.82rem; color: var(--aqua-deep); font-weight: 600; }
.step h3 { font-family: var(--disp); font-size: 1.15rem; font-weight: 800; margin: 0.6rem 0 0.4rem; letter-spacing: -0.02em; }
.step p { color: var(--slate); font-size: 0.94rem; line-height: 1.5; }

/* ---------- Price table ---------- */
.ptable { width: 100%; border-collapse: collapse; margin-top: 1.4rem; font-size: 0.98rem; }
.ptable caption { text-align: left; color: var(--slate); font-size: 0.88rem; margin-bottom: 0.8rem; }
.ptable th, .ptable td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); }
.ptable thead th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--slate); font-weight: 700; }
.ptable td:last-child, .ptable th:last-child { text-align: right; font-family: var(--mono); font-weight: 600; color: var(--ink); white-space: nowrap; }
.ptable tbody tr:hover { background: var(--surface); }
.ptable-wrap { overflow-x: auto; }
.ptable-note { font-size: 0.85rem; color: var(--slate); margin-top: 0.9rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.7rem; max-width: 760px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: var(--paper); overflow: hidden; }
.faq details[open] { border-color: color-mix(in oklch, var(--aqua) 40%, var(--line)); }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 1.2rem; font-weight: 700; font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .fq-ic { width: 22px; height: 22px; flex: none; color: var(--aqua-deep); transition: transform 0.3s var(--e-out); }
.faq details[open] summary .fq-ic { transform: rotate(45deg); }
.faq .fq-body { padding: 0 1.2rem 1.2rem; color: var(--slate); line-height: 1.6; }
.faq .fq-body p + p { margin-top: 0.8rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink-deep); color: var(--white); }
.cta-band-in { position: relative; border-radius: var(--radius-lg); overflow: hidden; isolation: isolate; background: var(--ink-deep); padding: clamp(2rem, 5vw, 3.6rem); text-align: center; }
.cta-band-in::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 90% at 50% -10%, oklch(0.5 0.012 250 / 0.32), transparent 62%); }
.cta-band h2 { font-family: var(--disp); font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; max-width: 20ch; margin-inline: auto; }
.cta-band p { color: oklch(0.85 0.012 220); margin: 1rem auto 0; max-width: 52ch; }
.cta-band .cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.8rem; }

/* ---------- Related / other services ---------- */
.rel-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
@media (min-width: 620px) { .rel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .rel-grid { grid-template-columns: repeat(3, 1fr); } }
.rel-card { display: flex; align-items: center; gap: 0.9rem; padding: 1.1rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); transition: border-color 0.2s, transform 0.3s var(--e-out), box-shadow 0.3s var(--e-out); }
.rel-card:hover { border-color: color-mix(in oklch, var(--aqua) 45%, var(--line)); transform: translateY(-2px); box-shadow: 0 16px 34px -22px oklch(0.2 0.03 236 / 0.4); }
.rel-card .rel-ic { width: 42px; height: 42px; border-radius: 11px; background: var(--surface); display: grid; place-items: center; flex: none; color: var(--aqua-deep); }
.rel-card .rel-ic svg { width: 22px; height: 22px; }
.rel-card b { display: block; font-size: 1rem; letter-spacing: -0.01em; color: var(--ink); }
.rel-card span { font-size: 0.85rem; color: var(--slate); }
.rel-card .rel-arrow { margin-left: auto; color: var(--aqua-deep); transition: transform 0.3s var(--e-out); flex: none; }
.rel-card:hover .rel-arrow { transform: translateX(4px); }

/* ---------- Contact form ---------- */
.cform { display: grid; gap: 1rem; }
.cform .row2 { display: grid; gap: 1rem; }
@media (min-width: 560px) { .cform .row2 { grid-template-columns: 1fr 1fr; } }
.cfield label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.45rem; color: var(--ink); }
.cfield input, .cfield select, .cfield textarea {
  width: 100%; padding: 0.85rem 1rem; font: 500 1rem var(--font); color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px; appearance: none;
}
.cfield textarea { min-height: 130px; resize: vertical; }
.cfield input:focus, .cfield select:focus, .cfield textarea:focus { border-color: var(--aqua-deep); outline: none; box-shadow: 0 0 0 3px oklch(0.72 0.012 250 / 0.16); }
.cfield .selwrap-l { position: relative; }
.cfield .selwrap-l::after { content: ""; position: absolute; right: 16px; top: 50%; width: 9px; height: 9px; border-right: 2.5px solid var(--aqua-deep); border-bottom: 2.5px solid var(--aqua-deep); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.cform-note { font-size: 0.82rem; color: var(--slate); }
.form-ok { display: none; padding: 1.1rem 1.2rem; border-radius: 12px; background: color-mix(in oklch, var(--aqua) 14%, var(--paper)); border: 1px solid color-mix(in oklch, var(--aqua) 45%, var(--line)); color: var(--ink); font-weight: 600; }
.form-ok.show { display: block; }

/* Contact details on light */
.contact-grid { display: grid; gap: clamp(1.6rem, 4vw, 2.6rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.c-lines-light { display: grid; gap: 1rem; }
.c-lines-light .c-line { color: var(--ink); align-items: center; }
.c-lines-light .c-line .c-ic { background: var(--surface); border: 1px solid var(--line); }
.c-lines-light .c-line .c-ic svg { color: var(--aqua-deep); }
.c-lines-light .c-line small { color: var(--slate); }
.c-lines-light .c-line a { color: var(--ink); }

/* Hero stats row */
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid oklch(0.99 0 0 / 0.13); }
.hero-stats .hs b { display: block; font-family: var(--disp); font-size: 1.7rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stats .hs span { font-size: 0.84rem; color: oklch(0.78 0.012 220); }
.hero-stats .hs .gold { color: var(--gold); letter-spacing: 1px; font-size: 1.2rem; }

/* Reviews on light */
.rev-light .rev { background: var(--surface); border-color: var(--line); color: var(--ink); }
.rev-light .rev blockquote { color: var(--ink); }
.rev-light .rev .rev-m { color: var(--slate); }
.rev-light .rev .rev-n { color: var(--ink); }
.rev-masonry { columns: 1; column-gap: clamp(1rem, 2.4vw, 1.6rem); }
@media (min-width: 680px) { .rev-masonry { columns: 2; } }
@media (min-width: 1040px) { .rev-masonry { columns: 3; } }
.rev-masonry .rev { break-inside: avoid; margin-bottom: clamp(1rem, 2.4vw, 1.6rem); display: block; }

/* Trust bar */
.trustbar { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.trustbar .tb { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.9rem; font-weight: 600; color: var(--ink-2); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 0.55em 1em; }
.trustbar .tb svg { width: 1.05em; height: 1.05em; color: var(--aqua-deep); }

.figcap { margin-top: 0.7rem; font-family: var(--mono); font-size: 0.78rem; color: var(--slate); }
.center-narrow { max-width: 640px; margin-inline: auto; text-align: center; }

/* ---------- Nav dropdown (Services) ---------- */
.nav-links .has-drop { position: relative; }
.nav-links .drop-btn { display: inline-flex; align-items: center; gap: 0.3em; background: none; border: 0; color: var(--nav-fg, var(--ink)); font: 500 0.95rem var(--font); cursor: pointer; padding: 4px 0; position: relative; }
.nav-links .drop-btn svg { width: 13px; height: 13px; transition: transform 0.3s var(--e-out); }
.nav-links .has-drop:hover .drop-btn svg, .nav-links .has-drop:focus-within .drop-btn svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 8px;
  box-shadow: 0 24px 50px -20px oklch(0.2 0.03 236 / 0.4); list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transition: opacity 0.25s var(--e-out), transform 0.25s var(--e-out); z-index: var(--z-drawer);
}
.nav-links .has-drop:hover .nav-drop-menu, .nav-links .has-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu a { display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 0.8rem; border-radius: 11px; color: var(--ink) !important; font-weight: 600; font-size: 0.95rem; }
.nav-drop-menu a::after { display: none; }
.nav-drop-menu a:hover { background: var(--surface); }
.nav-drop-menu a svg { width: 20px; height: 20px; color: var(--aqua-deep); flex: none; }
.drawer .d-sub { font-size: 1.05rem !important; font-family: var(--font) !important; font-weight: 600 !important; padding: 0.4rem 0 0.4rem 1rem !important; color: oklch(0.82 0.01 220) !important; }

/* ---------- Prose + sticky aside (fills desktop whitespace on content pages) ---------- */
.prose-layout { display: grid; gap: clamp(1.8rem, 4vw, 3rem); }
.prose-layout .prose { max-width: none; }
@media (min-width: 940px) { .prose-layout { grid-template-columns: minmax(0, 1fr) 340px; align-items: start; } .prose-layout .prose { max-width: 62ch; } }
@media (min-width: 940px) { .prose-aside { position: sticky; top: calc(var(--navh) + 20px); } }
.aside-card { position: relative; background: var(--ink-deep); color: var(--white); border-radius: var(--radius-lg); padding: clamp(1.5rem, 2.6vw, 2rem); overflow: hidden; isolation: isolate; }
.aside-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(80% 70% at 90% 0%, oklch(0.5 0.012 250 / 0.32), transparent 62%); }
.aside-card h3 { font-family: var(--disp); font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }
.aside-card > p { color: oklch(0.85 0.01 220); font-size: 0.95rem; margin-top: 0.55rem; line-height: 1.55; }
.aside-card .btn { margin-top: 1.3rem; }
.aside-facts { list-style: none; padding: 0; margin: 1.3rem 0 0; display: grid; gap: 0.7rem; border-top: 1px solid oklch(0.99 0 0 / 0.13); padding-top: 1.3rem; }
.aside-facts li { display: flex; gap: 0.6rem; align-items: center; font-size: 0.92rem; color: oklch(0.86 0.01 220); font-weight: 500; }
.aside-facts svg { color: var(--aqua); width: 1.15em; height: 1.15em; flex: none; }
.aside-facts .gold { color: var(--gold); }
.aside-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 26px 56px -34px oklch(0.2 0.03 236 / 0.5); }
.aside-img img { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; }
.aside-cap { margin-top: 0.8rem; font-family: var(--mono); font-size: 0.78rem; color: var(--slate); }

/* ---------- Light stat strip ---------- */
.lstats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 720px) { .lstats { grid-template-columns: repeat(4, 1fr); } }
.lstats .c { background: var(--paper); padding: clamp(1.3rem, 2.5vw, 1.9rem); }
.lstats .n { font-family: var(--disp); font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); font-weight: 800; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.lstats .n.gold { color: var(--gold); font-size: 1.55rem; letter-spacing: 2px; }
.lstats .k { margin-top: 0.5rem; font-size: 0.9rem; color: var(--slate); }

/* ---------- Scrollable reviews list (shows a set, scroll for all) ---------- */
.rev-scroll-wrap { position: relative; }
.rev-scroll {
  max-height: min(72vh, 660px); overflow-y: auto; overscroll-behavior: contain;
  padding: 4px 14px 8px 4px; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: color-mix(in oklch, var(--aqua) 60%, var(--line)) transparent;
}
.rev-scroll::-webkit-scrollbar { width: 10px; }
.rev-scroll::-webkit-scrollbar-track { background: transparent; }
.rev-scroll::-webkit-scrollbar-thumb { background: color-mix(in oklch, var(--aqua) 55%, var(--line)); border-radius: 99px; border: 2px solid var(--paper); }
.rev-scroll::-webkit-scrollbar-thumb:hover { background: var(--aqua-deep); }
.rev-grid2 { display: grid; grid-template-columns: 1fr; gap: clamp(0.9rem, 2vw, 1.4rem); }
@media (min-width: 720px) { .rev-grid2 { grid-template-columns: 1fr 1fr; } }
.rev-scroll-wrap::after { content: ""; position: absolute; left: 0; right: 10px; bottom: 0; height: 66px; background: linear-gradient(transparent, var(--paper)); pointer-events: none; border-radius: 0 0 var(--radius) var(--radius); }
.rev-scroll-hint { display: flex; align-items: center; justify-content: center; gap: 0.5em; margin-top: 1.1rem; font-family: var(--mono); font-size: 0.8rem; color: var(--slate); }
.rev-scroll-hint svg { width: 1.15em; height: 1.15em; color: var(--aqua-deep); animation: bobDown 1.6s var(--e-inout) infinite; }
@keyframes bobDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
@media (prefers-reduced-motion: reduce) { .rev-scroll-hint svg { animation: none; } }
/* review emphasis stays clean */
.rev blockquote strong { font-weight: 800; color: inherit; }
.rev blockquote em { font-style: italic; }

/* =====================================================================
   TD instant-quote WIZARD (unique stepped flow: Service > Details > Price)
   ===================================================================== */
.wiz { position: relative; background: oklch(0.99 0 0 / 0.045); border: 1px solid oklch(0.99 0 0 / 0.12); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3.2vw, 2.6rem); overflow: hidden; }
.wiz::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(70% 60% at 100% 0%, oklch(0.5 0.012 250 / 0.16), transparent 60%); pointer-events: none; }
.wiz > * { position: relative; z-index: 1; }

/* Progress tracker */
.wiz-track { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; margin: 0 auto clamp(1.6rem, 3.4vw, 2.6rem); max-width: 520px; }
.wiz-track::before { content: ""; position: absolute; top: 20px; left: 16.67%; right: 16.67%; height: 3px; background: oklch(0.99 0 0 / 0.15); border-radius: 99px; }
.wiz-track::after { content: ""; position: absolute; top: 20px; left: 16.67%; width: 66.66%; height: 3px; background: var(--aqua); border-radius: 99px; box-shadow: 0 0 14px var(--aqua-glow); transform: scaleX(var(--fill, 0)); transform-origin: left; transition: transform 0.55s var(--e-out); }
.wt { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; position: relative; z-index: 1; }
.wt-dot { width: 42px; height: 42px; border-radius: 50%; background: var(--ink-deep); border: 2px solid oklch(0.99 0 0 / 0.22); display: grid; place-items: center; color: oklch(0.72 0.01 220); font-family: var(--disp); font-weight: 800; font-size: 1.05rem; transition: background 0.4s var(--e-out), border-color 0.4s var(--e-out), color 0.4s var(--e-out), box-shadow 0.4s var(--e-out); }
.wt-dot svg { width: 20px; height: 20px; }
.wt.active .wt-dot { border-color: var(--aqua); color: var(--aqua); box-shadow: 0 0 0 5px oklch(0.72 0.012 250 / 0.18); }
.wt.done .wt-dot { background: var(--aqua); border-color: var(--aqua); color: var(--ink-deep); }
.wt-lbl { font-size: 0.78rem; font-weight: 600; color: oklch(0.74 0.01 220); letter-spacing: 0.01em; }
.wt.active .wt-lbl, .wt.done .wt-lbl { color: var(--white); }
@media (max-width: 460px) { .wt-lbl { font-size: 0.72rem; } .wt-dot { width: 38px; height: 38px; } }

/* Steps */
.wiz-step[hidden] { display: none; }
@media (prefers-reduced-motion: no-preference) { .wiz-step.is-in { animation: wizIn 0.45s var(--e-out); } }
@keyframes wizIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
.wiz-h { font-family: var(--disp); font-size: clamp(1.3rem, 1rem + 1.5vw, 1.9rem); font-weight: 800; letter-spacing: -0.025em; color: var(--white); }
.wiz-sub { color: var(--aqua-hi); margin: 0.45rem 0 1.5rem; font-weight: 600; font-size: 0.98rem; }
.wiz-fields { max-width: 560px; }
.wiz-nav { display: flex; gap: 0.7rem; margin-top: 1.7rem; flex-wrap: wrap; }
.wiz-nav .btn { flex: 1 1 auto; min-width: 140px; }
.wiz-nav .wiz-restart { flex: 0 1 auto; }
.wiz .svc-tabs { margin: 0; }
.wiz .result { position: static; }
.wiz-acts { display: grid; gap: 0.7rem; margin-top: 1.6rem; }
@media (min-width: 560px) { .wiz-acts { grid-template-columns: 1fr 1fr; } }

/* Clickable wizard tracker: steps already reached can be jumped to */
.wt.reachable { cursor: pointer; }
.wt[aria-disabled="true"] { cursor: default; }
.wt.reachable:hover .wt-dot { box-shadow: 0 0 0 5px oklch(0.72 0.012 250 / 0.18); transform: translateY(-1px); }
.wt.reachable:hover .wt-lbl { color: var(--white); }
.wt:focus-visible { outline: 3px solid var(--aqua); outline-offset: 5px; border-radius: 12px; }
.wt:focus:not(:focus-visible) { outline: none; }

/* Three primary area hubs (Shrewsbury, Newport, Church Stretton) */
.area-primary.three { grid-template-columns: 1fr; }
@media (min-width: 760px) { .area-primary.three { grid-template-columns: repeat(3, 1fr); } }

/* Clearer disabled buttons + the multi-select pick hint */
.btn:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; transform: none !important; }
.wiz-pick-hint { text-align: center; margin-top: 0.85rem; font-size: 0.92rem; font-weight: 500; color: oklch(0.78 0.012 220); }
.wiz-pick-hint.ready { color: var(--aqua-hi); font-weight: 600; }
