/* ============================================================================
   Restore Hand Therapy — Build v2B "The Restore Lookbook" (18 Jun 2026)
   Massimo / Pipeline WebDesign — IMAGE-LED / EDITORIAL concept (Option B).
   Same brand tokens as Option A (brand_profile.yaml §3/§4); different visual
   treatment: full-bleed cinematic photography, immersive image bands, generous
   negative space, refined large display type, scroll-driven reveals + parallax
   + tasteful hover-zoom. Aēsop / high-end wellness lookbook, calm for a clinic.
   AA-safe teal for text/buttons (#246B64 / #2A7E76) carried over from Option A.
   NZ English. WCAG 2.1 AA target.
   ============================================================================ */

/* ── 1. TOKENS ───────────────────────────────────────────────────────────── */
:root {
  /* Brand palette (brand_profile.yaml §3 — seven-colour system) */
  --teal:      #379B91;  /* signature teal — large fills/surfaces/decorative only */
  --teal-text: #246B64;  /* AA-compliant teal for TEXT + small UI (white 6.25:1) */
  --teal-deep: #2A7E76;  /* AA button fill / hover companion (white text 4.83:1) */
  --mint:      #00FFB3;  /* accent — focus, fine rules, sparingly */
  --charcoal:  #4E4D52;  /* body text */
  --navy:      #273353;  /* H1, dark surfaces, footer */
  --orange:    #FB8E28;  /* star glyphs ONLY */
  --white:     #FFFFFF;
  --grey:      #F4F3F0;  /* warm off-white — editorial paper tone (within neutral-light spirit) */
  --grey-2:    #ECEAE5;  /* slightly deeper warm neutral for alt sections */
  --grey-line: #E2E0DA;  /* hairlines */
  --ink-soft:  #6B6A70;  /* secondary muted text (AA on white 5.0:1) */

  /* Type families (brand_profile.yaml §4) */
  --font-heading: 'Nunito', system-ui, sans-serif;
  --font-body:    'Mulish', system-ui, sans-serif;

  /* Editorial type scale — larger display end than Option A; body identical to Bible */
  --t-display: clamp(40px, 6vw, 76px);   /* oversized editorial hero */
  --t-h1:    clamp(34px, 4.4vw, 54px);
  --t-h2:    clamp(28px, 3.2vw, 40px);
  --t-h3:    clamp(20px, 1.6vw, 24px);
  --t-h4:    18px;
  --t-body:  17px;  --t-body-m: 15px;
  --t-lead:  clamp(18px, 1.5vw, 22px);
  --t-cap:   13px;

  /* 8px spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px; --s-11: 168px;

  /* Radii — editorial uses minimal rounding; imagery mostly square-edged */
  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-pill: 999px;

  /* Elevation — soft, layered */
  --shadow-sm:   0 1px 3px rgba(39,51,83,0.05);
  --shadow-card: 0 10px 34px rgba(39,51,83,0.09);
  --shadow-hover:0 22px 56px rgba(39,51,83,0.16);
  --shadow-cta:  0 10px 26px rgba(42,126,118,0.28);

  /* Motion — slow, cinematic settle */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.45s;

  --container: 1280px;
  --container-narrow: 760px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ── 2. RESET ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
svg { display: block; }

/* ── 3. TYPOGRAPHY ───────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.12; }
h1 { font-size: var(--t-h1); font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
h2 { font-size: var(--t-h2); font-weight: 700; color: var(--navy); letter-spacing: -0.015em; line-height: 1.16; }
h3 { font-size: var(--t-h3); font-weight: 600; color: var(--navy); line-height: 1.3; }
h4 { font-size: var(--t-h4); font-weight: 600; color: var(--navy); line-height: 1.5; letter-spacing: 0.2px; }
p  { line-height: 1.7; }
a  { color: var(--teal-text); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--navy); }
strong { font-weight: 700; color: var(--navy); }
.lead { font-size: var(--t-lead); line-height: 1.6; color: var(--charcoal); font-weight: 400; }
.muted { color: var(--ink-soft); }

/* Eyebrow — editorial small-caps label */
.eyebrow {
  display: inline-block; color: var(--teal-text);
  font-family: var(--font-heading); font-weight: 700;
  font-size: var(--t-cap); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: var(--s-4); position: relative;
}
.eyebrow.with-rule { padding-left: 46px; }
.eyebrow.with-rule::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 32px; height: 1px;
  background: var(--teal); transform: translateY(-50%);
}

/* Accessible focus — visible mint ring */
a:focus-visible, button:focus-visible, .btn:focus-visible,
summary:focus-visible, input:focus-visible {
  outline: 3px solid var(--mint); outline-offset: 3px; border-radius: var(--r-sm);
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--navy); color: var(--white); padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0; font-family: var(--font-heading); font-weight: 700;
}
.skip-link:focus { left: 0; color: var(--white); }

/* ── 4. LAYOUT ───────────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: clamp(64px, 11vw, 168px) 0; }
.section--grey  { background: var(--grey); }
.section--grey2 { background: var(--grey-2); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); color: rgba(255,255,255,0.9); }
.section--tight { padding: clamp(48px, 8vw, 112px) 0; }

.section-head { max-width: 720px; margin: 0 0 var(--s-9); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: var(--s-5); }
.section-head p  { color: var(--ink-soft); font-size: var(--t-lead); }
.section--navy .eyebrow { color: var(--mint); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy .section-head p { color: rgba(255,255,255,0.78); }

/* ── 5. BUTTONS ──────────────────────────────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2); padding: 15px 32px;
  font-family: var(--font-heading); font-weight: 700; font-size: 16px;
  border-radius: var(--r-pill); border: none; cursor: pointer; letter-spacing: 0.2px;
  overflow: hidden; isolation: isolate;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn .arrow { display: inline-block; transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary { background: var(--teal-deep); color: var(--white); box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(39,51,83,0.30); }
.btn-secondary { background: transparent; color: var(--teal-text); box-shadow: inset 0 0 0 1.5px var(--teal-deep); }
.btn-secondary:hover { background: var(--teal-deep); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.6); }
.btn-ghost:hover { background: var(--white); color: var(--teal-text); transform: translateY(-2px); }
.btn-on-photo { background: rgba(255,255,255,0.96); color: var(--navy); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-on-photo:hover { background: var(--white); color: var(--teal-text); transform: translateY(-2px); }
.btn-large { padding: 18px 40px; font-size: 17px; }
.btn-block { width: 100%; }

/* ── 6. HEADER + TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy); color: rgba(255,255,255,0.9);
  font-size: var(--t-cap); padding: 9px 0; text-align: center; letter-spacing: 0.3px;
}
.trust-bar strong { color: var(--mint); }
.trust-bar .sep { opacity: 0.4; margin: 0 8px; }

header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
/* Transparent-over-hero variant (home) */
header.over-hero { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: rgba(255,255,255,0.16); }
header.over-hero .main-nav a, header.over-hero .rating-badge { color: rgba(255,255,255,0.92); }
header.over-hero .rating-badge strong { color: #fff; }
header.over-hero .logo img.logo-dark { display: none; }
header.over-hero .logo img.logo-light { display: block; }
header.scrolled { background: rgba(255,255,255,0.92); border-bottom-color: var(--grey-line); box-shadow: var(--shadow-sm); }
header.scrolled.over-hero .main-nav a, header.scrolled.over-hero .rating-badge { color: var(--charcoal); }
header.scrolled.over-hero .rating-badge strong { color: var(--navy); }
header.scrolled.over-hero .logo img.logo-dark { display: block; }
header.scrolled.over-hero .logo img.logo-light { display: none; }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.logo { display: flex; align-items: center; }
.logo img { height: 56px; width: auto; }
.logo img.logo-light { display: none; }

nav.main-nav ul { list-style: none; display: flex; gap: 30px; align-items: center; }
nav.main-nav a { color: var(--charcoal); font-weight: 600; font-size: 15px; position: relative; padding: 4px 0; letter-spacing: 0.2px; }
nav.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: currentColor; transition: width var(--dur) var(--ease); }
nav.main-nav a:hover::after, nav.main-nav a[aria-current="page"]::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 20px; }
.rating-badge { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--charcoal); white-space: nowrap; }
.rating-badge .stars { color: var(--orange); font-size: 16px; letter-spacing: 1px; }
.rating-badge strong { color: var(--navy); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; color: var(--navy); margin: 5px 0; transition: var(--dur); border-radius: 2px; }
header.over-hero:not(.scrolled) .nav-toggle span { background: #fff; }

/* ── 7. CINEMATIC HERO (full-bleed) ──────────────────────────────────────── */
.hero-cine {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  margin-top: calc(-1 * (16px + 56px + 33px)); /* pull under transparent header+trust */
  padding-top: 140px;
  overflow: hidden; color: #fff; background: var(--navy);
}
.hero-cine__media { position: absolute; inset: 0; z-index: 0; }
.hero-cine__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-cine__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(39,51,83,0.42) 0%, rgba(39,51,83,0.05) 30%, rgba(39,51,83,0.18) 62%, rgba(39,51,83,0.86) 100%),
    linear-gradient(90deg, rgba(39,51,83,0.55) 0%, rgba(39,51,83,0.10) 55%, transparent 100%);
}
.hero-cine__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vw, 104px); }
.hero-cine .urgency {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(0,255,179,0.14); border: 1px solid rgba(0,255,179,0.55); color: #fff;
  padding: 8px 16px; border-radius: var(--r-pill); font-size: var(--t-cap); font-weight: 700;
  margin-bottom: var(--s-6); backdrop-filter: blur(4px); letter-spacing: 0.3px;
}
.urgency-dot { width: 8px; height: 8px; background: var(--mint); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.35;} }
.hero-cine h1 { font-size: var(--t-display); color: #fff; max-width: 16ch; margin-bottom: var(--s-5); letter-spacing: -0.025em; line-height: 1.04; text-shadow: 0 2px 30px rgba(20,28,48,0.35); }
.hero-cine h1 .accent { color: var(--mint); }
.hero-cine__lead { font-size: var(--t-lead); color: rgba(255,255,255,0.92); max-width: 52ch; margin-bottom: var(--s-7); }
.hero-cine__lead strong { color: #fff; }
.hero-cine__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-cine__meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: var(--s-7); padding-top: var(--s-6); border-top: 1px solid rgba(255,255,255,0.2); }
.hero-cine__meta .mi { display: flex; flex-direction: column; gap: 3px; }
.hero-cine__meta .mi b { font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: #fff; line-height: 1; }
.hero-cine__meta .mi span { font-size: 13px; color: rgba(255,255,255,0.75); }
.hero-cine__meta .mi .star { color: var(--orange); }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.7); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent); animation: cueDrop 2.2s var(--ease) infinite; }
@keyframes cueDrop { 0%{transform:scaleY(0);transform-origin:top;} 45%{transform:scaleY(1);transform-origin:top;} 55%{transform:scaleY(1);transform-origin:bottom;} 100%{transform:scaleY(0);transform-origin:bottom;} }

/* Sub-page editorial hero (text-led, generous space) */
.page-hero { padding: clamp(96px, 14vw, 168px) 0 clamp(48px, 7vw, 88px); background: var(--grey); position: relative; }
.page-hero .container { max-width: 900px; }
.page-hero h1 { font-size: var(--t-h1); margin-bottom: var(--s-5); max-width: 18ch; }
.page-hero .lead { max-width: 60ch; }
.breadcrumb { font-size: var(--t-cap); color: var(--ink-soft); margin-bottom: var(--s-5); letter-spacing: 0.5px; }
.breadcrumb a { color: var(--teal-text); font-weight: 600; }
.breadcrumb span { opacity: 0.5; margin: 0 8px; }

/* ── 8. FULL-WIDTH IMAGE BAND (immersive, parallax) ──────────────────────── */
.band {
  position: relative; min-height: clamp(420px, 60vh, 660px);
  display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--navy);
}
.band__media { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(39,51,83,0.80) 0%, rgba(39,51,83,0.42) 48%, rgba(39,51,83,0.12) 100%); }
.band.right .band__scrim { background: linear-gradient(270deg, rgba(39,51,83,0.80) 0%, rgba(39,51,83,0.42) 48%, rgba(39,51,83,0.12) 100%); }
.band__inner { position: relative; z-index: 2; width: 100%; }
.band__content { max-width: 540px; }
.band.right .band__content { margin-left: auto; text-align: left; }
.band h2 { color: #fff; margin-bottom: var(--s-5); }
.band p { color: rgba(255,255,255,0.9); font-size: var(--t-lead); margin-bottom: var(--s-6); }
.band .eyebrow { color: var(--mint); }
.band__stats { display: flex; gap: 40px; margin-bottom: var(--s-6); flex-wrap: wrap; }
.band__stats .bs b { font-family: var(--font-heading); font-weight: 700; font-size: 34px; color: #fff; line-height: 1; display: block; }
.band__stats .bs b .star { color: var(--orange); font-size: 26px; }
.band__stats .bs span { font-size: 13px; color: rgba(255,255,255,0.8); }

/* ── 9. EDITORIAL SPLIT (asymmetric image + text) ────────────────────────── */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 88px); align-items: center; }
.split.flip .split__media { order: 2; }
.split__media { position: relative; overflow: hidden; border-radius: var(--r-lg); aspect-ratio: 4/5; box-shadow: var(--shadow-card); }
.split__media.wide { aspect-ratio: 5/4; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.split__media:hover img { transform: scale(1.04); }
.split__media .tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(255,255,255,0.94); color: var(--navy); border-radius: var(--r-pill);
  padding: 8px 16px; font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: 8px;
}
.split__media .tag .star { color: var(--orange); }
.split__body h2 { margin-bottom: var(--s-5); }
.split__body .lead { margin-bottom: var(--s-5); }
.feature-list { list-style: none; margin: var(--s-6) 0; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: var(--s-5); font-size: 16px; }
.feature-list .check { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(55,155,145,0.12); color: var(--teal-text); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.feature-list .check svg { width: 14px; height: 14px; }
.link-arrow { color: var(--teal-text); font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; gap: 8px; }
.link-arrow::after { content: "→"; transition: transform var(--dur) var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ── 10. PROCESS / STEPS (editorial numbered, minimal) ───────────────────── */
.steps-ed { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); counter-reset: step; }
.step-ed { position: relative; padding-top: var(--s-6); border-top: 1px solid var(--grey-line); }
.step-ed .idx { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--teal-text); letter-spacing: 2px; display: block; margin-bottom: var(--s-4); }
.step-ed h3 { margin-bottom: var(--s-3); }
.step-ed p { color: var(--ink-soft); font-size: 16px; margin: 0; }

/* ── 11. LOOKBOOK GALLERY (asymmetric mosaic, hover-zoom) ─────────────────── */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(10px, 1.4vw, 18px); grid-auto-flow: dense; }
.gtile { position: relative; overflow: hidden; border-radius: var(--r-md); background: var(--grey-2); min-height: 200px; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gtile:hover img { transform: scale(1.06); }
.gtile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 28px 20px 16px; color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  background: linear-gradient(180deg, transparent, rgba(39,51,83,0.72));
  opacity: 0; transform: translateY(8px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gtile:hover figcaption, .gtile:focus-within figcaption { opacity: 1; transform: none; }
.g-tall  { grid-column: span 4; grid-row: span 2; }   /* left hero column, full height */
.g-wide  { grid-column: span 8; }                      /* top-right wide */
.g-sq    { grid-column: span 4; }                      /* 2× under the wide (cols 5-8, 9-12) */
.g-half  { grid-column: span 6; }
.gtile.g-tall { min-height: 420px; }
.gtile.g-wide { min-height: 280px; }

/* ── 12. CARD GRIDS (services / conditions — editorial, image-free or iconic) */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 36px); }

.ed-card { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--r-lg); padding: 34px 30px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.ed-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: transparent; }
.ed-card .ico { width: 48px; height: 48px; color: var(--teal-text); margin-bottom: var(--s-5); }
.ed-card .ico svg { width: 100%; height: 100%; }
.ed-card h4 { font-size: 19px; margin-bottom: var(--s-3); }
.ed-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.ed-card .num { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--teal-text); letter-spacing: 2px; display: block; margin-bottom: var(--s-3); }

/* index-style minimal list rows (conditions) */
.cond-list { border-top: 1px solid var(--grey-line); }
.cond-row { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: baseline; padding: 26px 4px; border-bottom: 1px solid var(--grey-line); transition: background var(--dur) var(--ease), padding var(--dur) var(--ease); }
.cond-row:hover { background: var(--white); padding-left: 16px; padding-right: 16px; }
.cond-row .ci { font-family: var(--font-heading); font-weight: 700; color: var(--teal-text); font-size: 14px; letter-spacing: 1px; width: 2.5ch; }
.cond-row h3 { font-size: clamp(20px, 2.2vw, 26px); color: var(--navy); margin: 0; }
.cond-row p { color: var(--ink-soft); font-size: 15px; margin: 6px 0 0; max-width: 60ch; }
.cond-row .col-main { display: flex; flex-direction: column; }

/* ── 13. TESTIMONIALS (editorial, large pull-quote) ──────────────────────── */
.quote-feature { max-width: 980px; margin: 0 auto; text-align: center; }
.quote-feature .stars { color: var(--orange); font-size: 22px; letter-spacing: 3px; margin-bottom: var(--s-6); }
.quote-feature blockquote { font-family: var(--font-heading); font-weight: 600; font-size: clamp(24px, 3vw, 38px); line-height: 1.35; color: #fff; letter-spacing: -0.01em; margin-bottom: var(--s-6); }
.quote-feature .by { font-size: 15px; color: var(--mint); font-weight: 700; }
.quote-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 32px); margin-top: var(--s-9); }
.q-mini { padding: 28px 26px; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-lg); background: rgba(255,255,255,0.04); }
.q-mini .stars { color: var(--orange); font-size: 15px; letter-spacing: 1.5px; margin-bottom: 12px; }
.q-mini p { color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.q-mini .by { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--mint); }

/* ── 14. FAQ ─────────────────────────────────────────────────────────────── */
.faq-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 32px); }
.faq-item { padding-top: var(--s-5); border-top: 2px solid var(--teal); }
.faq-item h4 { font-size: 17px; margin-bottom: var(--s-3); }
.faq-item p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.7; }

.accordion { max-width: 860px; margin: 0 auto; }
.acc { border-bottom: 1px solid var(--grey-line); }
.acc summary { list-style: none; cursor: pointer; padding: 26px 4px; font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 19px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary .chev { flex-shrink: 0; transition: transform var(--dur) var(--ease); color: var(--teal-text); }
.acc[open] summary .chev { transform: rotate(180deg); }
.acc .acc-body { padding: 0 4px 26px; font-size: 16px; line-height: 1.75; color: var(--charcoal); max-width: 70ch; }

/* ── 15. BOOKING / FINAL CTA (image-backed) ──────────────────────────────── */
.cta-band { position: relative; overflow: hidden; color: #fff; background: var(--teal-deep); }
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(39,51,83,0.88) 0%, rgba(42,126,118,0.78) 100%); }
.cta-band__inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; padding: clamp(72px, 11vw, 148px) 0; }
.cta-band h2 { color: #fff; font-size: var(--t-h1); margin-bottom: var(--s-5); }
.cta-band p { color: rgba(255,255,255,0.92); font-size: var(--t-lead); margin: 0 auto var(--s-7); max-width: 56ch; }
.cta-band .micro { display: block; margin-top: var(--s-5); font-size: 13px; color: rgba(255,255,255,0.85); }
.cta-band .micro .stars { color: var(--orange); letter-spacing: 1px; }

/* slim inline booking strip (sub-pages) */
.book-strip { background: var(--navy); color: #fff; }
.book-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding: clamp(40px, 6vw, 72px) 0; }
.book-strip h3 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 6px; }
.book-strip p { color: rgba(255,255,255,0.85); margin: 0; }
.book-strip .right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.book-strip .micro { font-size: 13px; color: rgba(255,255,255,0.85); }
.book-strip .micro .stars { color: var(--orange); letter-spacing: 1px; }

/* ── 16. TEAM (editorial portrait grid) ──────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 36px); }
.team-card { }
.team-photo { position: relative; overflow: hidden; border-radius: var(--r-lg); aspect-ratio: 4/5; background: var(--grey-2); margin-bottom: var(--s-4); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); filter: grayscale(0.08); }
.team-card:hover .team-photo img { transform: scale(1.05); filter: grayscale(0); }
.team-info h3 { font-size: 21px; margin-bottom: 2px; }
.team-info .role { color: var(--teal-text); font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: var(--s-3); }
.team-info p { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.65; }
.team-info .confirm-flag { display: inline-block; margin-top: 8px; font-size: 11px; color: var(--orange); font-weight: 700; letter-spacing: 0.3px; }

/* ── 17. LOCATIONS ───────────────────────────────────────────────────────── */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.6vw, 36px); }
.loc-card { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--r-lg); padding: 38px; }
.loc-card h3 { margin-bottom: var(--s-3); }
.loc-addr { color: var(--ink-soft); font-size: 16px; margin-bottom: var(--s-5); line-height: 1.6; }
.loc-meta { display: grid; gap: 12px; font-size: 15px; color: var(--charcoal); margin-bottom: var(--s-5); }
.loc-meta div { display: flex; gap: 12px; align-items: flex-start; }
.loc-meta .ico { color: var(--teal-text); flex-shrink: 0; margin-top: 2px; }
.loc-meta .ico svg { width: 18px; height: 18px; }
.loc-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-text); font-weight: 700; }
.loc-cta:hover { text-decoration: underline; }
.hours-block { margin-top: var(--s-7); background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: 34px 40px; display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center; }
.hours-block .hours-label { font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--mint); }
.hours-block .hours-list { display: flex; gap: 36px; flex-wrap: wrap; font-size: 15px; }
.hours-block .hours-list strong { color: #fff; font-family: var(--font-heading); }

/* ── 18. PRICING ─────────────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 28px); align-items: stretch; }
.price-card { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--r-lg); padding: 42px 34px; text-align: left; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: transparent; }
.price-card.featured { background: var(--navy); border-color: var(--navy); position: relative; }
.price-card.featured h3, .price-card.featured .price-num { color: #fff; }
.price-card.featured .price-sub, .price-card.featured p { color: rgba(255,255,255,0.85); }
.price-card.featured::before { content: "Most patients"; position: absolute; top: 22px; right: 24px; background: var(--mint); color: var(--navy); font-family: var(--font-heading); font-weight: 700; font-size: 11px; letter-spacing: 1px; padding: 6px 14px; border-radius: var(--r-pill); text-transform: uppercase; }
.price-card h3 { font-size: 20px; margin-bottom: var(--s-2); }
.price-num { font-family: var(--font-heading); font-weight: 700; font-size: 52px; color: var(--navy); line-height: 1; margin: var(--s-4) 0 var(--s-1); }
.price-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: var(--s-5); }
.price-card p { font-size: 15px; line-height: 1.65; margin: 0 0 auto; color: var(--ink-soft); }
.price-card .btn { margin-top: var(--s-7); }

/* ── 19. FOOTER ──────────────────────────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,0.82); padding: 0 0 28px; font-size: 15px; }
.footer-accent { height: 3px; background: linear-gradient(90deg, var(--teal), var(--mint)); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-top: var(--s-9); margin-bottom: var(--s-8); }
.footer-logo img { height: 78px; width: auto; margin-bottom: 20px; }
.footer-personality { font-family: var(--font-heading); font-weight: 700; color: var(--mint); font-size: 14px; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-col h4 { color: #fff; font-weight: 700; margin-bottom: 18px; font-size: 15px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.72); }
.footer-col a:hover { color: var(--mint); }
.footer-col p { color: rgba(255,255,255,0.72); margin-bottom: 14px; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.55); }

/* ── 20. MOBILE STICKY CTA ───────────────────────────────────────────────── */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-top: 1px solid var(--grey-line); box-shadow: 0 -4px 16px rgba(39,51,83,0.10); padding: 10px 16px; z-index: 200; }
.mobile-cta-inner { display: flex; align-items: center; gap: 14px; }
.mobile-cta .info { flex: 1; font-size: 13px; line-height: 1.3; color: var(--charcoal); }
.mobile-cta .info .stars { color: var(--orange); }
.mobile-cta .info strong { color: var(--navy); }
.mobile-cta .btn { padding: 13px 20px; font-size: 14px; }

/* ── 21. SCROLL REVEAL ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
/* image clip-reveal for editorial media */
.img-reveal img { transform: scale(1.08); transition: transform 1.3s var(--ease), opacity 0.9s var(--ease); }
.img-reveal { opacity: 0; transition: opacity 0.9s var(--ease); }
.img-reveal.in { opacity: 1; }
.img-reveal.in img { transform: scale(1); }

/* ── 22. RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .g-wide { grid-column: span 12; }
  .g-tall { grid-column: span 6; grid-row: span 1; }
  .g-sq, .g-half { grid-column: span 6; }
}
@media (max-width: 860px) {
  :root { --t-body: var(--t-body-m); }
  nav.main-nav { position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px); background: var(--white); flex-direction: column; padding: 92px 32px 32px; box-shadow: -10px 0 40px rgba(39,51,83,0.18); transform: translateX(100%); transition: transform var(--dur) var(--ease); z-index: 150; }
  nav.main-nav.open { transform: none; }
  nav.main-nav ul { flex-direction: column; align-items: flex-start; gap: 22px; width: 100%; }
  nav.main-nav a { font-size: 19px; color: var(--charcoal) !important; }
  .nav-toggle { display: block; z-index: 160; }
  header.over-hero:not(.scrolled) .nav-toggle span { background: #fff; }
  .header-cta .rating-badge { display: none; }
  .hero-cine { min-height: 86vh; }
  .hero-cine__media img { object-position: 65% center; }
  .split, .split.flip { grid-template-columns: 1fr; gap: 32px; }
  .split.flip .split__media { order: 0; }
  .split__media { aspect-ratio: 5/4; max-width: 560px; }
  .steps-ed, .grid-3, .grid-2, .faq-3, .quote-row, .price-grid, .loc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .book-strip__inner { flex-direction: column; align-items: flex-start; }
  .book-strip .right { align-items: flex-start; }
  .hours-block { grid-template-columns: 1fr; gap: 16px; padding: 26px; }
  .hours-block .hours-list { flex-direction: column; gap: 10px; }
  .cond-row { grid-template-columns: auto 1fr; }
  .cond-row .ci { width: auto; }
  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }
  .nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(39,51,83,0.45); z-index: 140; }
  .nav-backdrop.show { display: block; }
  .band { min-height: 460px; }
  .band__scrim, .band.right .band__scrim { background: linear-gradient(180deg, rgba(39,51,83,0.45) 0%, rgba(39,51,83,0.82) 100%); }
  .band__content, .band.right .band__content { max-width: none; margin: 0; }
}
@media (max-width: 540px) {
  .grid-4, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .g-tall, .g-sq, .g-half, .g-wide { grid-column: span 12; grid-row: span 1; }
  .hero-cine h1 { font-size: clamp(34px, 9vw, 44px); }
}

/* ── 23. REDUCED MOTION ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal, .img-reveal { opacity: 1 !important; transform: none !important; }
  .img-reveal img, .split__media img, .gtile img, .team-photo img { transform: none !important; }
  .band__media { transform: none !important; }
}
