/* =====================================================================
   Wellgrove Clinic — private health clinic (fictional demo, Greenshields Studio)
   Design language: calm clinical, teal-led, warm-white, serif + humanist sans.
   Fourth distinct identity in the portfolio:
     · agency site   = forest green, all-sans, editorial
     · Calder Valley = warm cream + burnt orange, Fraunces serif
     · FlowForge     = dark near-black + violet/cyan, Space Grotesk
     · Wellgrove     = light teal + warm blush, Spectral + Plus Jakarta Sans
   Light-only on purpose (dark mode is FlowForge's signature, not this).
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Tokens
   --------------------------------------------------------------------- */
:root {
  /* Brand */
  --teal:       #0F6E6E;
  --teal-deep:  #0A5252;
  --teal-7:     #14807F;
  --blush:      #E8A98D;
  --blush-deep: #D98A66;

  /* Neutrals — warm */
  --ink:     #14302E;
  --ink-2:   #345450;
  --muted:   #6E847F;
  --paper:   #F6F3EE;
  --paper-2: #EFEAE0;
  --surface: #FFFFFF;
  --surface-2: #FBF9F4;
  --border:  #E4DDD0;
  --border-2:#D6CDBC;

  /* tints */
  --teal-tint:  color-mix(in srgb, var(--teal) 9%, var(--paper));
  --teal-tint-2:color-mix(in srgb, var(--teal) 14%, transparent);
  --blush-tint: color-mix(in srgb, var(--blush) 22%, transparent);

  --accent-grad: linear-gradient(135deg, #14807F 0%, #0F6E6E 60%, #0A5252 100%);
  --soft-grad: linear-gradient(160deg, color-mix(in srgb, var(--teal) 10%, var(--surface)), color-mix(in srgb, var(--blush) 12%, var(--surface)));

  /* Type */
  --font-display: "Spectral", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --fs-hero:  clamp(2.6rem, 6vw, 4.5rem);
  --fs-h1:    clamp(2.1rem, 5vw, 3.4rem);
  --fs-h2:    clamp(1.7rem, 3.6vw, 2.6rem);
  --fs-h3:    clamp(1.2rem, 2vw, 1.5rem);
  --fs-lead:  clamp(1.08rem, 1.5vw, 1.3rem);
  --fs-body:  1.0625rem;
  --fs-small: 0.9rem;
  --fs-micro: 0.78rem;

  /* Spacing */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px; --space-10: 128px;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --container: 1160px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 6px 22px -12px rgba(20, 48, 46, 0.28);
  --shadow:    0 24px 60px -26px rgba(20, 48, 46, 0.34);
  --shadow-teal: 0 14px 34px -14px rgba(15, 110, 110, 0.5);

  color-scheme: light;
}

/* ---------------------------------------------------------------------
   2. Reset & base
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 52px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ---------------------------------------------------------------------
   3. Typography
   --------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { color: var(--ink-2); }
strong { color: var(--ink); font-weight: 600; }
em { font-style: italic; }

.lead { font-size: var(--fs-lead); color: var(--ink-2); line-height: 1.6; }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before { content: ""; width: 20px; height: 2px; border-radius: 2px; background: var(--blush); }
.eyebrow.center::before { display: none; }
.serif-accent { font-style: italic; color: var(--teal); }

/* ---------------------------------------------------------------------
   4. Layout
   --------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-5); }
.container--narrow { max-width: 820px; }
section { position: relative; }
.section { padding-block: clamp(var(--space-8), 8vw, var(--space-10)); }
.section--tight { padding-block: var(--space-8); }
.section--tint { background: var(--teal-tint); }
.section--paper2 { background: var(--paper-2); }
.section-head { max-width: 620px; margin-bottom: var(--space-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: var(--space-3); }
.section-head p { margin-top: var(--space-4); }
.divider { height: 1px; background: var(--border); border: 0; }

/* ---------------------------------------------------------------------
   5. Buttons & pills
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 0.82em 1.5em;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: var(--fs-small);
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-teal); }
.btn--primary:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn--primary .arrow { transition: transform .25s var(--ease); }
.btn--primary:hover .arrow { transform: translateX(3px); }
.btn--ghost { background: var(--surface); border-color: var(--border-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn--blush { background: var(--blush); color: var(--ink); }
.btn--blush:hover { background: var(--blush-deep); transform: translateY(-2px); }
.btn--lg { padding: 0.95em 1.8em; font-size: var(--fs-body); }
.btn--block { width: 100%; justify-content: center; }

.pill {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 0.45em 0.95em; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--border);
  font-size: var(--fs-micro); font-weight: 600; color: var(--ink-2);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px var(--teal-tint-2); }
.pill--blush { background: var(--blush-tint); border-color: color-mix(in srgb, var(--blush) 40%, transparent); color: var(--ink); }

.ai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--radius-pill);
  background: var(--teal-tint-2); border: 1px solid color-mix(in srgb, var(--teal) 30%, transparent); color: var(--teal-deep);
}

/* ---------------------------------------------------------------------
   6. Header / nav / mega-menu
   --------------------------------------------------------------------- */
.demo-banner {
  background: var(--ink); color: var(--paper);
  text-align: center; font-size: var(--fs-micro); font-weight: 500;
  padding: 8px var(--space-4);
}
.demo-banner a { color: var(--blush); text-decoration: underline; font-weight: 600; }

/* Sticky top bar wraps the demo banner + header so the "this is a demo"
   notice stays permanently on screen as you scroll. */
.topbar { position: sticky; top: 0; z-index: 120; }

.site-header {
  position: relative; z-index: 2;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: var(--space-5); height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; letter-spacing: -0.01em; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }

.nav-primary { display: flex; align-items: center; gap: 2px; margin-inline-start: var(--space-4); }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: var(--radius-sm);
  font-size: var(--fs-small); font-weight: 600; color: var(--ink-2);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover, .nav-item.open .nav-link { color: var(--teal); background: var(--teal-tint); }
.nav-link .chev { width: 14px; height: 14px; opacity: .7; transition: transform .25s var(--ease); }
.nav-item.open .nav-link .chev { transform: rotate(180deg); }

.nav-spacer { flex: 1; }
.nav-actions { display: flex; align-items: center; gap: var(--space-3); }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: var(--fs-small); color: var(--ink); }
.nav-phone svg { width: 17px; height: 17px; color: var(--teal); }
.nav-phone:hover { color: var(--teal); }

.mega {
  position: absolute; top: calc(100% + 10px); left: 0;
  width: max-content; max-width: 92vw;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: var(--space-4);
  opacity: 0; visibility: hidden; transform: translateY(8px) scale(.985); transform-origin: top left;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 90;
}
.nav-item.open .mega { opacity: 1; visibility: visible; transform: none; }
.mega--wide { display: grid; grid-template-columns: 1.7fr 1fr; gap: var(--space-4); width: 660px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mega-link { display: flex; gap: var(--space-3); padding: var(--space-3); border-radius: var(--radius); transition: background .18s var(--ease); }
.mega-link:hover { background: var(--teal-tint); }
.mega-link__icon { flex: none; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: var(--teal-tint); color: var(--teal); }
.mega-link:hover .mega-link__icon { background: var(--teal); color: #fff; }
.mega-link__icon svg { width: 19px; height: 19px; }
.mega-link__title { font-size: var(--fs-small); font-weight: 700; color: var(--ink); }
.mega-link__desc { font-size: var(--fs-micro); color: var(--muted); margin-top: 2px; line-height: 1.4; }
.mega-feature {
  border-radius: var(--radius); padding: var(--space-5);
  background: var(--soft-grad); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.mega-feature__eyebrow { font-size: var(--fs-micro); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.mega-feature h4 { font-size: 1.15rem; margin: var(--space-2) 0; }
.mega-feature p { font-size: var(--fs-micro); color: var(--ink-2); flex: 1; }
.mega-feature a { font-size: var(--fs-small); font-weight: 700; color: var(--teal); margin-top: var(--space-3); display: inline-flex; gap: 6px; align-items: center; }

/* mobile */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--radius-sm); border: 1px solid var(--border-2); background: var(--surface); place-items: center; color: var(--ink); }
.nav-toggle svg { width: 22px; height: 22px; }
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--paper);
  padding: var(--space-5); overflow-y: auto;
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: none; }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-5); }
.mobile-group { border-bottom: 1px solid var(--border); }
.mobile-group__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: var(--space-4) 0; font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--ink); }
.mobile-group__btn svg { width: 20px; height: 20px; color: var(--muted); transition: transform .25s var(--ease); }
.mobile-group.open .mobile-group__btn svg { transform: rotate(45deg); color: var(--teal); }
.mobile-group__body { display: none; padding-bottom: var(--space-4); }
.mobile-group.open .mobile-group__body { display: block; }
.mobile-group__body a { display: block; padding: var(--space-2) 0 var(--space-2) var(--space-4); color: var(--ink-2); font-size: var(--fs-small); font-weight: 500; }
.mobile-nav__cta { margin-top: var(--space-6); display: grid; gap: var(--space-3); }

/* ---------------------------------------------------------------------
   7. Hero
   --------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(var(--space-7), 6vw, var(--space-9)); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; }
.hero__blob--1 { width: 460px; height: 460px; background: color-mix(in srgb, var(--teal) 22%, transparent); top: -120px; right: -80px; }
.hero__blob--2 { width: 360px; height: 360px; background: color-mix(in srgb, var(--blush) 30%, transparent); bottom: -140px; left: -100px; }
.hero .container { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-8); align-items: center; }
.hero h1 { font-size: var(--fs-hero); margin: var(--space-4) 0; font-weight: 500; }
.hero .lead { max-width: 480px; }
.hero__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-6); }
.hero__trust { display: flex; gap: var(--space-5); flex-wrap: wrap; margin-top: var(--space-6); }
.hero__trust div { display: flex; align-items: center; gap: 9px; font-size: var(--fs-small); font-weight: 600; color: var(--ink); }
.hero__trust svg { width: 18px; height: 18px; color: var(--teal); flex: none; }

/* hero photo card */
.hero__media { position: relative; }
.hero__photo {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4 / 4.4; background: var(--soft-grad);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo .ph-icon { color: color-mix(in srgb, var(--teal) 55%, transparent); }
.hero__photo .ph-icon svg { width: 80px; height: 80px; }
.hero__float {
  position: absolute; left: -18px; bottom: 28px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: var(--space-3);
  max-width: 230px;
}
.hero__float .ic { width: 38px; height: 38px; flex: none; border-radius: 50%; background: var(--teal-tint); display: grid; place-items: center; color: var(--teal); }
.hero__float b { font-size: var(--fs-small); color: var(--ink); display: block; }
.hero__float span { font-size: var(--fs-micro); color: var(--muted); }
.hero__float--top { left: auto; right: -14px; top: 24px; bottom: auto; }

/* ---------------------------------------------------------------------
   8. Treatment finder (AI)
   --------------------------------------------------------------------- */
.finder {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: var(--space-5);
}
.finder--hero { margin-top: var(--space-6); }
.finder__head { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.finder__head .ic { width: 36px; height: 36px; border-radius: 11px; background: var(--accent-grad); color: #fff; display: grid; place-items: center; flex: none; }
.finder__head .ic svg { width: 19px; height: 19px; }
.finder__head b { font-size: var(--fs-small); color: var(--ink); display: block; font-weight: 700; }
.finder__head span { font-size: var(--fs-micro); color: var(--muted); }
.finder__field { display: flex; gap: var(--space-3); }
.finder__input {
  flex: 1; background: var(--surface-2); border: 1.5px solid var(--border-2);
  border-radius: var(--radius-pill); padding: 0.85em 1.3em;
  color: var(--ink); font-family: var(--font-body); font-size: var(--fs-small);
}
.finder__input:focus { outline: none; border-color: var(--teal); background: var(--surface); }
.finder__chips { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-3); }
.finder__chip { font-size: var(--fs-micro); padding: 6px 12px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: var(--surface-2); color: var(--ink-2); font-weight: 500; transition: border-color .2s, color .2s; }
.finder__chip:hover { border-color: var(--teal); color: var(--teal); }
.finder__result { margin-top: var(--space-4); display: none; }
.finder__result.active { display: block; animation: fade-up .35s var(--ease); }
@keyframes fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.finder__thinking { display: flex; align-items: center; gap: 10px; font-size: var(--fs-small); color: var(--muted); }
.finder__thinking .spin { width: 16px; height: 16px; border: 2px solid var(--border-2); border-top-color: var(--teal); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.finder__card { background: var(--teal-tint); border: 1px solid color-mix(in srgb, var(--teal) 24%, transparent); border-radius: var(--radius); padding: var(--space-4); }
.finder__card-top { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-2); }
.finder__card-top .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--surface); display: grid; place-items: center; color: var(--teal); flex: none; }
.finder__card-top .ic svg { width: 20px; height: 20px; }
.finder__card-top b { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); font-weight: 600; }
.finder__card p { font-size: var(--fs-small); color: var(--ink-2); margin-bottom: var(--space-3); }
.finder__card .btn { margin-right: var(--space-2); }
.finder__disclaim { font-size: var(--fs-micro); color: var(--muted); margin-top: var(--space-3); display: flex; gap: 7px; align-items: flex-start; }
.finder__disclaim svg { width: 14px; height: 14px; flex: none; margin-top: 2px; }

/* ---------------------------------------------------------------------
   9. Trust strip / accreditations
   --------------------------------------------------------------------- */
.trust-strip { padding-block: var(--space-6); border-block: 1px solid var(--border); }
.trust-strip__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-5); }
.trust-strip__label { font-size: var(--fs-small); color: var(--muted); font-weight: 600; }
.trust-logos { display: flex; gap: var(--space-7); flex-wrap: wrap; align-items: center; }
.trust-logos span { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); letter-spacing: -0.01em; opacity: .8; }

/* ---------------------------------------------------------------------
   10. Treatment cards grid
   --------------------------------------------------------------------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.tcard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-2); }
.tcard__icon { width: 52px; height: 52px; border-radius: 15px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; margin-bottom: var(--space-4); transition: background .3s, color .3s; }
.tcard:hover .tcard__icon { background: var(--teal); color: #fff; }
.tcard__icon svg { width: 26px; height: 26px; }
.tcard h3 { font-size: 1.25rem; margin-bottom: var(--space-2); }
.tcard p { font-size: var(--fs-small); flex: 1; }
.tcard__link { margin-top: var(--space-4); font-size: var(--fs-small); font-weight: 700; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }
.tcard__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.tcard:hover .tcard__link svg { transform: translateX(3px); }

/* ---------------------------------------------------------------------
   11. Split feature
   --------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.feature-list { display: grid; gap: var(--space-4); margin-top: var(--space-5); }
.feature-list li { display: flex; gap: var(--space-3); }
.feature-list .fl-ic { width: 32px; height: 32px; flex: none; border-radius: 50%; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; }
.feature-list .fl-ic svg { width: 17px; height: 17px; }
.feature-list b { display: block; font-size: var(--fs-body); color: var(--ink); }
.feature-list span { font-size: var(--fs-small); color: var(--ink-2); }

.media-card {
  border-radius: var(--radius-xl); overflow: hidden;
  background: var(--soft-grad); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); aspect-ratio: 5 / 4; display: grid; place-items: center;
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.media-card .ph-icon { color: color-mix(in srgb, var(--teal) 50%, transparent); }
.media-card .ph-icon svg { width: 72px; height: 72px; }

/* embedded location map (contact page) */
.map-embed {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  height: clamp(300px, 38vw, 440px); background: var(--soft-grad);
}
.map-embed iframe { display: block; width: 100%; height: 100%; }

/* ---------------------------------------------------------------------
   12. Steps (how it works)
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.step { position: relative; padding: var(--space-6); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.step__num { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-tint); color: var(--teal); font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; display: grid; place-items: center; margin-bottom: var(--space-4); }
.step h3 { font-size: 1.2rem; margin-bottom: var(--space-2); }
.step p { font-size: var(--fs-small); }

/* ---------------------------------------------------------------------
   13. Team
   --------------------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.member { text-align: center; }
.member__photo { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--soft-grad); display: grid; place-items: center; margin-bottom: var(--space-3); border: 1px solid var(--border); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__photo .ph-icon { color: color-mix(in srgb, var(--teal) 45%, transparent); }
.member__photo .ph-icon svg { width: 52px; height: 52px; }
.member h4 { font-size: 1.1rem; }
.member span { font-size: var(--fs-small); color: var(--teal); font-weight: 600; }
.member small { display: block; font-size: var(--fs-micro); color: var(--muted); margin-top: 4px; }

/* ---------------------------------------------------------------------
   14. Testimonials
   --------------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); }
.quote__stars { color: var(--blush-deep); letter-spacing: 2px; }
.quote p { font-size: var(--fs-small); color: var(--ink); line-height: 1.6; flex: 1; }
.quote__by { display: flex; align-items: center; gap: var(--space-3); }
.quote__av { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; font-weight: 700; font-size: var(--fs-small); }
.quote__by b { font-size: var(--fs-small); display: block; color: var(--ink); }
.quote__by span { font-size: var(--fs-micro); color: var(--muted); }

/* ---------------------------------------------------------------------
   15. Stats
   --------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.stat { text-align: center; padding: var(--space-5); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; color: var(--teal); letter-spacing: -0.02em; }
.stat__label { font-size: var(--fs-small); color: var(--ink-2); margin-top: 4px; }

/* ---------------------------------------------------------------------
   16. CTA band
   --------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(var(--space-7), 7vw, var(--space-9)); text-align: center; background: var(--accent-grad); color: #fff; }
.cta-band__blob { position: absolute; border-radius: 50%; filter: blur(60px); }
.cta-band__blob--1 { width: 320px; height: 320px; background: rgba(232,169,141,.4); top: -120px; right: -60px; }
.cta-band__blob--2 { width: 260px; height: 260px; background: rgba(255,255,255,.18); bottom: -120px; left: -40px; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band .eyebrow { color: var(--blush); }
.cta-band .eyebrow::before { background: var(--blush); }
.cta-band h2 { color: #fff; max-width: 600px; margin: var(--space-3) auto var(--space-4); }
.cta-band p { color: rgba(255,255,255,.86); max-width: 480px; margin-inline: auto; }
.cta-band .hero__cta { justify-content: center; margin-top: var(--space-6); }
.cta-band .btn--ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* ---------------------------------------------------------------------
   17. AI concierge dock
   --------------------------------------------------------------------- */
.dock-btn {
  position: fixed; bottom: 22px; right: 22px; z-index: 150;
  display: inline-flex; align-items: center;
  height: 58px; padding: 0 17px; border-radius: var(--radius-pill);
  background: var(--teal); color: #fff; font-weight: 600; font-size: var(--fs-small);
  white-space: nowrap;
  box-shadow: var(--shadow-teal);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
/* collapsed = a circle showing just the icon; expands on hover/focus */
.dock-btn svg { width: 24px; height: 24px; flex: none; }
.dock-btn .label {
  max-width: 0; opacity: 0; margin-left: 0; overflow: hidden;
  transition: max-width .4s var(--ease), opacity .3s var(--ease), margin-left .4s var(--ease);
}
.dock-btn:hover, .dock-btn:focus-visible { transform: translateY(-2px); background: var(--teal-deep); }
.dock-btn:hover .label, .dock-btn:focus-visible .label { max-width: 220px; opacity: 1; margin-left: 11px; }
.dock-btn .pulse { position: absolute; top: 9px; right: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--blush); box-shadow: 0 0 0 0 rgba(232,169,141,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(232,169,141,.7);} 70% { box-shadow: 0 0 0 10px rgba(232,169,141,0);} 100% { box-shadow: 0 0 0 0 rgba(232,169,141,0);} }

.dock {
  position: fixed; bottom: 22px; right: 22px; z-index: 160;
  width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100vh - 100px));
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); display: none; flex-direction: column; overflow: hidden; transform-origin: bottom right;
}
.dock.open { display: flex; animation: dock-in .3s var(--ease); }
@keyframes dock-in { from { transform: translateY(16px) scale(.96); opacity: 0; } to { transform: none; opacity: 1; } }
.dock__head { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-4); border-bottom: 1px solid var(--border); background: var(--teal-tint); }
.dock__avatar { width: 36px; height: 36px; border-radius: 11px; background: var(--accent-grad); display: grid; place-items: center; color: #fff; flex: none; }
.dock__avatar svg { width: 19px; height: 19px; }
.dock__title { flex: 1; }
.dock__title b { font-size: var(--fs-small); color: var(--ink); display: flex; align-items: center; gap: 7px; }
.dock__title span { font-size: var(--fs-micro); color: var(--teal-deep); display: inline-flex; align-items: center; gap: 5px; }
.dock__title span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.dock__close { color: var(--muted); width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; }
.dock__close:hover { background: var(--surface-2); color: var(--ink); }
.dock__body { flex: 1; overflow-y: auto; padding: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3); }
.msg { display: flex; gap: var(--space-2); max-width: 88%; }
.msg.me { align-self: flex-end; flex-direction: row-reverse; }
.msg__bubble { padding: var(--space-3) var(--space-4); border-radius: var(--radius); font-size: var(--fs-small); line-height: 1.5; }
.msg.ai .msg__bubble { background: var(--surface-2); border: 1px solid var(--border); border-top-left-radius: 4px; color: var(--ink-2); }
.msg.me .msg__bubble { background: var(--teal); color: #fff; border-top-right-radius: 4px; }
.typing { display: inline-flex; gap: 4px; padding: var(--space-3) var(--space-4); background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); width: fit-content; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: typing 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .15s; } .typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
.dock__suggest { display: flex; gap: var(--space-2); flex-wrap: wrap; padding: 0 var(--space-4) var(--space-3); }
.dock__suggest button { font-size: var(--fs-micro); padding: 6px 11px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: var(--surface-2); color: var(--ink-2); transition: border-color .2s, color .2s; }
.dock__suggest button:hover { border-color: var(--teal); color: var(--teal); }
.dock__input { display: flex; gap: var(--space-2); padding: var(--space-3) var(--space-4) var(--space-4); border-top: 1px solid var(--border); }
.dock__input input { flex: 1; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 10px 15px; color: var(--ink); font-size: var(--fs-small); outline: none; }
.dock__input input:focus { border-color: var(--teal); }
.dock__input button { width: 40px; height: 40px; flex: none; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; }
.dock__input button svg { width: 17px; height: 17px; }

/* ---------------------------------------------------------------------
   18. Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: color-mix(in srgb, var(--paper) 80%, transparent); padding-block: var(--space-8) var(--space-6); margin-top: var(--space-9); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-6); }
.footer-brand .brand__name, .footer-brand .brand__sub { color: var(--paper); }
.footer-brand .brand__sub { color: color-mix(in srgb, var(--blush) 80%, transparent); }
.footer-brand p { font-size: var(--fs-small); margin-top: var(--space-4); max-width: 280px; color: color-mix(in srgb, var(--paper) 70%, transparent); }
.footer-col h4 { font-size: var(--fs-micro); text-transform: uppercase; letter-spacing: .12em; color: color-mix(in srgb, var(--paper) 55%, transparent); margin-bottom: var(--space-4); font-weight: 700; }
.footer-col a { display: block; font-size: var(--fs-small); color: color-mix(in srgb, var(--paper) 78%, transparent); padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--blush); }
.footer-contact b { color: var(--paper); font-size: var(--fs-small); }
.footer-contact p { font-size: var(--fs-small); color: color-mix(in srgb, var(--paper) 70%, transparent); margin-top: 2px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-8); padding-top: var(--space-5); border-top: 1px solid rgba(255,255,255,.12); font-size: var(--fs-micro); color: color-mix(in srgb, var(--paper) 55%, transparent); }
.footer-bottom a { color: var(--blush); }

/* ---------------------------------------------------------------------
   19. Inner pages
   --------------------------------------------------------------------- */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(var(--space-7), 6vw, var(--space-8)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero__inner { max-width: 720px; }
.page-hero.center .page-hero__inner { margin-inline: auto; text-align: center; }
.page-hero h1 { margin: var(--space-3) 0; font-weight: 500; }
.breadcrumb { font-size: var(--fs-micro); color: var(--muted); display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--teal); }

.treatment-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; padding-block: var(--space-7); }
.treatment-block:nth-child(even) .treatment-block__media { order: -1; }
.treatment-block h2 { margin-bottom: var(--space-3); }
.price-line { display: flex; align-items: baseline; gap: var(--space-2); margin-top: var(--space-4); }
.price-line b { font-family: var(--font-display); font-size: 1.6rem; color: var(--teal); font-weight: 600; }
.price-line span { font-size: var(--fs-small); color: var(--muted); }

.fees-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.fees-table caption { text-align: left; font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); padding: var(--space-5) var(--space-5) var(--space-3); font-weight: 600; }
.fees-table th, .fees-table td { text-align: left; padding: var(--space-4) var(--space-5); border-top: 1px solid var(--border); font-size: var(--fs-small); }
.fees-table th { color: var(--muted); font-weight: 600; background: var(--surface-2); }
.fees-table td:last-child { text-align: right; font-weight: 700; color: var(--teal); font-family: var(--font-display); }
.fees-table tr:hover td { background: var(--surface-2); }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-5) 0; font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; text-align: left; color: var(--ink); }
.faq-q svg { width: 22px; height: 22px; flex: none; color: var(--muted); transition: transform .25s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--teal); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding-bottom: var(--space-5); font-size: var(--fs-small); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-5); }
.info-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; margin-bottom: var(--space-3); }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1.1rem; margin-bottom: var(--space-2); }
.info-card p { font-size: var(--fs-small); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-7); align-items: start; }
.field { margin-bottom: var(--space-4); }
.field label { display: block; font-size: var(--fs-small); font-weight: 600; margin-bottom: var(--space-2); color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; background: var(--surface); border: 1.5px solid var(--border-2); border-radius: var(--radius);
  padding: 0.8em 1em; color: var(--ink); font-family: var(--font-body); font-size: var(--fs-body);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-note { margin-top: var(--space-4); padding: var(--space-4); border-radius: var(--radius); }

.contact-aside { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-6); }
.contact-aside .feature-list { margin-top: var(--space-4); }
.hours-row { display: flex; justify-content: space-between; font-size: var(--fs-small); padding: 7px 0; border-bottom: 1px dashed var(--border); }
.hours-row:last-child { border-bottom: 0; }
.hours-row span:last-child { font-weight: 600; color: var(--ink); }

/* ---------------------------------------------------------------------
   20. Reveal
   --------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal="left"] { transform: translateX(-26px); }
[data-reveal="right"] { transform: translateX(26px); }
[data-reveal="scale"] { transform: scale(.95); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
[data-reveal-stagger].in > * { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   21. Responsive
   --------------------------------------------------------------------- */
@media (max-width: 980px) {
  .nav-primary, .nav-phone { display: none; }
  .nav-toggle { display: grid; }
  .hero__grid, .split, .contact-grid, .treatment-block { grid-template-columns: 1fr; gap: var(--space-6); }
  .treatment-block:nth-child(even) .treatment-block__media { order: 0; }
  .hero__media { max-width: 420px; margin-inline: auto; }
  /* floating badge cards overlap the stacked hero — hide once single-column */
  .hero__float { display: none; }
  .tcards, .steps, .quotes { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
@media (max-width: 600px) {
  .tcards, .steps, .quotes, .team-grid, .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .finder__field, .field-row { flex-direction: column; }
  .field-row { grid-template-columns: 1fr; }
  .dock { bottom: 0; right: 0; width: 100vw; height: 100dvh; border-radius: 0; }
  .dock-btn span.label { display: none; }
}
