/* ============================================================================
   Restore Hand Therapy — Build v2 (18 Jun 2026) — Massimo / Pipeline WebDesign
   Design system: Brand Bible canonical (Polish_Plan_v2) + pipeline-design craft.
   Tokens are the single source of truth — re-skins cleanly per client.
   NZ English throughout. WCAG 2.1 AA target.
   ============================================================================ */

/* ── 1. TOKENS ───────────────────────────────────────────────────────────── */
:root {
  /* Brand palette (brand_profile.yaml §3 — the seven-colour system) */
  --teal:      #379B91;  /* signature brand teal — LARGE fills/surfaces/decorative only */
  --teal-text: #246B64;  /* WCAG-AA-compliant teal for TEXT + small UI (white 6.25:1, grey 5.73:1).
                            Brand Bible floor is AA and its forbidden-pairings list anticipates the
                            #379B91 contrast shortfall — this token resolves it without losing the brand. */
  --teal-deep: #2A7E76;  /* hover/gradient companion */
  --mint:      #00FFB3;  /* accent — hover glow, focus, sparingly */
  --charcoal:  #4E4D52;  /* body text, H2/H3 */
  --navy:      #273353;  /* H1, footer, dark surfaces */
  --orange:    #FB8E28;  /* star glyphs ONLY */
  --white:     #FFFFFF;
  --grey:      #F5F5F5;  /* section bg, fields */
  --grey-line: #E7E8EC;  /* hairlines (darker than grey for visible borders) */

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

  /* Type scale — Brand Bible canonical (Polish_Plan_v2 §4.1) */
  --t-h1:    48px;  --t-h1-m:    32px;
  --t-h2:    36px;  --t-h2-m:    24px;
  --t-h3:    24px;  --t-h3-m:    18px;
  --t-h4:    18px;  --t-h4-m:    16px;
  --t-body:  16px;  --t-body-m:  15px;
  --t-lead:  19px;
  --t-cap:   13px;

  /* 8px spacing scale (pipeline-design — vertical rhythm) */
  --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;

  /* Radii */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-pill: 999px;

  /* Elevation — layered depth, never flat */
  --shadow-sm:   0 1px 3px rgba(39,51,83,0.06);
  --shadow-card: 0 6px 20px rgba(39,51,83,0.08);
  --shadow-hover:0 14px 34px rgba(39,51,83,0.14);
  --shadow-cta:  0 8px 22px rgba(55,155,145,0.30);

  /* Motion — gentle, reassuring (Polish_Plan_v2 §5) */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:  0.3s;

  --container: 1180px;
}

/* ── 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.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
svg { display: block; }

/* ── 3. TYPOGRAPHY ───────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: var(--t-h1); font-weight: 700; color: var(--navy); letter-spacing: -0.5px; }
h2 { font-size: var(--t-h2); font-weight: 700; color: var(--charcoal); line-height: 1.3; }
h3 { font-size: var(--t-h3); font-weight: 600; color: var(--charcoal); line-height: 1.4; }
h4 { font-size: var(--t-h4); font-weight: 600; color: var(--navy); line-height: 1.5; letter-spacing: 0.3px; }
p  { line-height: 1.6; }
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); }

/* Accessible focus — visible mint ring, never removed */
a:focus-visible, button:focus-visible, .btn:focus-visible,
summary:focus-visible, input:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* Skip link */
.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 24px; }
.section { padding: var(--s-9) 0; }
.section--grey  { background: var(--grey); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); color: rgba(255,255,255,0.88); }

.section-head { max-width: 760px; margin: 0 auto var(--s-8); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-block;
  color: var(--teal-text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--t-cap);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.section-head h2 { margin-bottom: var(--s-4); }
.section-head p  { color: var(--charcoal); }
.section--navy .eyebrow { color: var(--mint); }
.section--navy h2 { color: var(--white); }
.section--navy .section-head p { color: rgba(255,255,255,0.82); }

/* ── 5. BUTTONS ──────────────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  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(4px); }
/* sheen sweep */
.btn::before {
  content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: skewX(-20deg); transition: left 0.6s var(--ease); pointer-events: none; z-index: 1;
}
.btn:hover::before { left: 130%; }

.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 12px 26px rgba(39,51,83,0.30); }
.btn-secondary { background: var(--white); color: var(--teal-text); box-shadow: inset 0 0 0 2px var(--teal-deep); }
.btn-secondary:hover { background: var(--teal-deep); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(55,155,145,0.22); }
.btn-ghost { background: transparent; color: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.55); }
.btn-ghost:hover { background: var(--white); color: var(--teal); transform: translateY(-2px); }
.btn-large { padding: 18px 38px; font-size: 18px; }
.btn-block { width: 100%; }

/* Hero/Final CTA gentle pulse */
@keyframes ctaPulse {
  0%,100% { box-shadow: var(--shadow-cta), 0 0 0 0 rgba(55,155,145,0.40); }
  50%     { box-shadow: var(--shadow-cta), 0 0 0 14px rgba(55,155,145,0); }
}
.pulse { animation: ctaPulse 2.6s var(--ease) infinite; }
.pulse:hover { animation-play-state: paused; }

/* ── 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;
}
.trust-bar strong { color: var(--mint); }
.trust-bar .sep { opacity: 0.4; margin: 0 8px; }

header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--grey-line);
  transition: box-shadow var(--dur) var(--ease);
}
header.scrolled { box-shadow: var(--shadow-card); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.logo { display: flex; align-items: center; }
.logo img { height: 58px; width: auto; }

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

.header-cta { display: flex; align-items: center; gap: 18px; }
.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: 17px; letter-spacing: 1px; }
.rating-badge strong { color: var(--navy); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--dur); border-radius: 2px; }

/* ── 7. HERO ─────────────────────────────────────────────────────────────── */
.hero { position: relative; background: linear-gradient(135deg, var(--white) 0%, var(--grey) 100%); padding: 84px 0 96px; overflow: hidden; }
.hero::before { /* mint radial accent behind H1 */
  content: ""; position: absolute; top: -120px; left: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0,255,179,0.14) 0%, transparent 70%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero h1 { margin-bottom: var(--s-5); }
.hero h1 .accent { color: var(--teal); }
.hero-lead { margin-bottom: var(--s-6); max-width: 540px; }
.urgency {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,255,179,0.12); border: 1px solid var(--mint); color: var(--navy);
  padding: 7px 14px; border-radius: var(--r-pill); font-size: var(--t-cap); font-weight: 700;
  margin-bottom: var(--s-5);
}
.urgency-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.35;} }

.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--s-7); }
.hero-point {
  background: var(--white); border: 1px solid var(--grey-line); border-left: 3px solid var(--teal);
  padding: 9px 16px; font-size: 14px; font-weight: 700; color: var(--navy);
  border-radius: var(--r-sm); box-shadow: var(--shadow-sm);
}
.hero-point { border-left-color: var(--teal-text); }
.hero-point .star { color: var(--orange); }
.hero-ctas { display: flex; flex-direction: column; gap: 6px; max-width: 400px; }
.hero-ctas .btn { width: 100%; }
.cta-helper { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--navy); }
.cta-helper.sec { margin-top: 14px; color: var(--charcoal); }

.hero-visual {
  position: relative; border-radius: var(--r-lg); aspect-ratio: 4/5; overflow: hidden;
  box-shadow: var(--shadow-hover); background: var(--teal);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(39,51,83,0) 60%, rgba(39,51,83,0.30) 100%); pointer-events: none;
}
.hero-photo-tag {
  position: absolute; left: 16px; bottom: 16px; 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-card); display: flex; align-items: center; gap: 8px;
}
.hero-photo-tag .star { color: var(--orange); }

/* Page hero (sub-pages) */
.page-hero { position: relative; background: linear-gradient(135deg, var(--white) 0%, var(--grey) 100%); padding: 72px 0 64px; overflow: hidden; }
.page-hero::before { content:""; position:absolute; top:-100px; right:-100px; width:380px; height:380px; background: radial-gradient(circle, rgba(55,155,145,0.10) 0%, transparent 70%); pointer-events:none; }
.page-hero .container { position: relative; max-width: 820px; }
.page-hero h1 { margin-bottom: var(--s-4); }
.page-hero .lead { max-width: 680px; }
.breadcrumb { font-size: var(--t-cap); color: var(--charcoal); margin-bottom: var(--s-4); }
.breadcrumb a { color: var(--teal); font-weight: 600; }
.breadcrumb span { opacity: 0.5; margin: 0 6px; }

/* ── 8. STAT STRIP ───────────────────────────────────────────────────────── */
.stat-strip { background: var(--white); border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: var(--s-7) 0; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content:""; position:absolute; right:-12px; top:10%; height:80%; width:1px; background: var(--grey-line); }
.stat .num { font-family: var(--font-heading); font-weight: 700; font-size: 40px; color: var(--teal); line-height: 1; }
.stat .num .star { color: var(--orange); }
.stat .label { font-size: 14px; color: var(--charcoal); margin-top: 6px; }

/* ── 9. STEPS (How it works) ─────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { background: var(--white); padding: 36px 28px; border-radius: var(--r-md); text-align: left; box-shadow: var(--shadow-card); border-top: 3px solid var(--teal); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-ico { width: 56px; height: 56px; border-radius: var(--r-md); background: rgba(55,155,145,0.12); color: var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: var(--s-4); }
.step-ico svg { width: 28px; height: 28px; }
.step .num-tag { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--teal-text); letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 6px; }
.step h3 { margin-bottom: 8px; color: var(--navy); }
.step p { font-size: 15px; margin: 0; }

/* ── 10. CARD GRIDS (services / conditions / why) ────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: var(--white); border-radius: var(--r-md); padding: 30px 26px;
  box-shadow: var(--shadow-card); border-top: 3px solid var(--teal);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-top-color: var(--mint); }
.card-ico { width: 52px; height: 52px; border-radius: var(--r-md); background: rgba(55,155,145,0.12); color: var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: var(--s-4); }
.card-ico svg { width: 26px; height: 26px; }
.card h4 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--charcoal); line-height: 1.55; margin: 0; }

/* compact condition tiles */
.tile {
  background: var(--white); border-radius: var(--r-md); padding: 24px 20px; text-align: center;
  box-shadow: var(--shadow-card); border-top: 3px solid var(--teal);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-top-color: var(--mint); }
.tile-ico { width: 48px; height: 48px; margin: 0 auto var(--s-3); border-radius: 50%; background: rgba(55,155,145,0.10); color: var(--teal); display: flex; align-items: center; justify-content: center; }
.tile-ico svg { width: 24px; height: 24px; }
.tile h4 { color: var(--navy); font-size: 16px; margin-bottom: 6px; }
.tile p { font-size: 13px; color: var(--charcoal); line-height: 1.5; margin: 0; }
.grid-cta { text-align: center; margin-top: var(--s-7); }
.link-arrow { color: var(--teal-text); font-weight: 700; font-size: 16px; border-bottom: 2px solid var(--teal-text); padding-bottom: 2px; }

/* Why-us (icon + text rows) */
.why-card { display: flex; gap: 22px; padding: 30px; background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-card); align-items: flex-start; }
.why-ico { flex-shrink: 0; width: 60px; height: 60px; border-radius: var(--r-md); background: var(--teal); color: var(--white); display: flex; align-items: center; justify-content: center; }
.why-ico svg { width: 30px; height: 30px; }
.why-card h3 { margin-bottom: 8px; color: var(--navy); font-size: 20px; }
.why-card p { margin: 0; font-size: 15px; }

/* ── 11. FEATURE / IMAGE-TEXT SPLIT ──────────────────────────────────────── */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature.flip .feature-media { order: 2; }
.feature-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-hover); aspect-ratio: 4/3; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-body h2 { margin-bottom: var(--s-4); }
.feature-list { list-style: none; margin-top: var(--s-5); }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: var(--s-4); font-size: 15px; }
.feature-list .check { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(55,155,145,0.14); color: var(--teal); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.feature-list .check svg { width: 14px; height: 14px; }

/* ── 12. BOOKING STRIP ───────────────────────────────────────────────────── */
.booking-strip { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%); color: var(--white); }
.booking-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding: var(--s-8) 0; }
.booking-strip h3 { color: var(--white); font-size: 26px; margin-bottom: 6px; }
.booking-strip p { color: rgba(255,255,255,0.9); margin: 0; }
.booking-strip-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.booking-strip .btn-primary { background: var(--white); color: var(--teal); }
.booking-strip .btn-primary:hover { background: var(--mint); color: var(--navy); }
.booking-strip .micro { font-size: 13px; color: rgba(255,255,255,0.9); }
.booking-strip .micro .stars { color: var(--orange); letter-spacing: 1px; }

/* ── 13. TESTIMONIALS ────────────────────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial { position: relative; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 34px 28px; border-radius: var(--r-md); }
.testimonial::before { content: "\201C"; position: absolute; top: 6px; right: 22px; font-family: var(--font-heading); font-size: 80px; line-height: 1; color: rgba(0,255,179,0.18); }
.testimonial .stars { color: var(--orange); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-body { color: var(--white); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--mint); }

/* ── 14. FAQ ─────────────────────────────────────────────────────────────── */
.faq-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.faq-item { background: var(--white); padding: 28px 24px; border-radius: var(--r-md); border-left: 3px solid var(--teal); box-shadow: var(--shadow-sm); }
.faq-item h4 { color: var(--navy); margin-bottom: 8px; font-size: 16px; }
.faq-item p { margin: 0; font-size: 14px; line-height: 1.6; }

/* Accordion (pricing page) */
.accordion { max-width: 820px; margin: 0 auto; }
.acc { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden; }
.acc summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 17px; 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); }
.acc[open] summary .chev { transform: rotate(180deg); }
.acc .acc-body { padding: 0 24px 22px; font-size: 15px; line-height: 1.65; color: var(--charcoal); }

/* ── 15. FINAL CTA ───────────────────────────────────────────────────────── */
.final-cta { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%); padding: var(--s-9) 0; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.final-cta::before { content:""; position:absolute; bottom:-140px; right:-100px; width:420px; height:420px; background: radial-gradient(circle, rgba(0,255,179,0.18) 0%, transparent 70%); }
.final-cta .container { position: relative; }
.final-cta h2 { color: var(--white); font-size: 40px; margin-bottom: var(--s-4); }
.final-cta p { color: rgba(255,255,255,0.92); font-size: 18px; max-width: 620px; margin: 0 auto var(--s-6); }
.final-cta .btn-primary { background: var(--white); color: var(--teal); }
.final-cta .btn-primary:hover { background: var(--mint); color: var(--navy); }

/* ── 16. TEAM ────────────────────────────────────────────────────────────── */
.team-banner { margin: 0 auto var(--s-8); max-width: 980px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-hover); aspect-ratio: 16/7; }
.team-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-card); border-bottom: 3px solid var(--teal); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-photo { aspect-ratio: 4/5; overflow: hidden; background: var(--grey); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 20px 22px 24px; }
.team-info h3 { color: var(--navy); font-size: 20px; margin-bottom: 2px; }
.team-info .role { color: var(--teal-text); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.team-info p { font-size: 14px; color: var(--charcoal); margin: 0; line-height: 1.55; }
.team-info .confirm-flag { display: inline-block; margin-top: 8px; font-size: 11px; color: var(--orange); font-weight: 700; }

/* ── 17. LOCATIONS ───────────────────────────────────────────────────────── */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.loc-card { background: var(--white); border-radius: var(--r-md); padding: 32px; box-shadow: var(--shadow-card); border-left: 4px solid var(--teal); }
.loc-card h3 { color: var(--navy); margin-bottom: 8px; }
.loc-addr { color: var(--charcoal); font-size: 15px; margin-bottom: 16px; line-height: 1.55; }
.loc-meta { display: grid; gap: 8px; font-size: 14px; color: var(--charcoal); margin-bottom: 18px; }
.loc-meta div { display: flex; gap: 10px; align-items: flex-start; }
.loc-meta .ico { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.loc-meta .ico svg { width: 18px; height: 18px; }
.loc-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--teal-text); font-weight: 700; }
.loc-cta:hover { text-decoration: underline; }
.hours-block { margin-top: var(--s-7); background: var(--navy); color: var(--white); border-radius: var(--r-md); padding: 28px 36px; display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; }
.hours-block .hours-label { font-family: var(--font-heading); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; color: var(--mint); }
.hours-block .hours-list { display: flex; gap: 32px; flex-wrap: wrap; font-size: 15px; }
.hours-block .hours-list strong { color: var(--white); font-family: var(--font-heading); }

/* ── 18. PRICING ─────────────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { background: var(--white); border: 2px solid var(--grey-line); border-radius: var(--r-lg); padding: 36px 30px; text-align: center; 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(-4px); box-shadow: var(--shadow-hover); border-color: var(--teal); }
.price-card.featured { background: var(--navy); border-color: var(--navy); position: relative; transform: scale(1.03); }
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-card.featured h3, .price-card.featured .price-num { color: var(--white); }
.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: -13px; left: 50%; transform: translateX(-50%); background: var(--mint); color: var(--navy); font-family: var(--font-heading); font-weight: 700; font-size: 11px; letter-spacing: 1.2px; padding: 6px 14px; border-radius: var(--r-pill); text-transform: uppercase; }
.price-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 20px; }
.price-num { font-family: var(--font-heading); font-weight: 700; font-size: 46px; color: var(--navy); line-height: 1; margin: 14px 0 4px; }
.price-sub { font-size: 14px; color: var(--charcoal); margin-bottom: 18px; }
.price-card p { font-size: 14px; line-height: 1.6; margin: 0 0 auto; }
.price-card .btn { margin-top: var(--s-6); }

/* ── 19. FOOTER ──────────────────────────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 0 0 24px; font-size: 14px; }
.footer-accent { height: 4px; background: linear-gradient(90deg, var(--teal), var(--mint)); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-top: var(--s-8); margin-bottom: var(--s-7); }
.footer-logo img { height: 84px; width: auto; margin-bottom: 18px; }
.footer-personality { font-family: var(--font-heading); font-weight: 700; color: var(--mint); font-size: 14px; letter-spacing: 0.5px; margin-bottom: 12px; }
.footer-col h4 { color: var(--white); font-weight: 700; margin-bottom: 16px; font-size: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--mint); }
.footer-col p { color: rgba(255,255,255,0.75); margin-bottom: 12px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.6); }

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

/* ── 21. SCROLL REVEAL ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ── 22. RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .grid-4, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .stat:nth-child(2)::after { display: none; }
}
@media (max-width: 900px) {
  :root {
    --t-h1: var(--t-h1-m); --t-h2: var(--t-h2-m); --t-h3: var(--t-h3-m);
    --t-h4: var(--t-h4-m); --t-body: var(--t-body-m); --t-lead: 17px;
  }
  .section { padding: var(--s-8) 0; }
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 440px; margin: 0 auto; aspect-ratio: 4/3; }
  .hero-ctas { max-width: none; }
  nav.main-nav { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); background: var(--white); flex-direction: column; padding: 88px 28px 28px; box-shadow: -8px 0 30px 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: 20px; width: 100%; }
  nav.main-nav a { font-size: 18px; }
  .nav-toggle { display: block; z-index: 160; }
  .header-cta .rating-badge { display: none; }
  .steps, .grid-3, .grid-2, .faq-3, .testimonial-grid, .price-grid, .loc-grid { grid-template-columns: 1fr; }
  .feature, .feature.flip { grid-template-columns: 1fr; gap: 28px; }
  .feature.flip .feature-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .booking-strip-inner { flex-direction: column; align-items: flex-start; }
  .booking-strip-cta { align-items: flex-start; }
  .hours-block { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
  .hours-block .hours-list { flex-direction: column; gap: 8px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .mobile-cta { display: block; }
  body { padding-bottom: 74px; }
  .nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(39,51,83,0.4); z-index: 140; }
  .nav-backdrop.show { display: block; }
}
@media (max-width: 560px) {
  .grid-4, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

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