/* ============================================================
   Bloom Neuro Kids — "Reference" reskin
   Periwinkle + mint + lavender · playful, rounded, friendly
   Used by: preview-index.html (Home)
   ============================================================ */

:root {
  /* periwinkle — primary */
  --peri-50:  #EEEFFC;
  --peri-100: #DEE0F9;
  --peri-200: #C5C8F3;
  --peri-300: #A7ABEE;
  --peri-400: #9094EA;
  --peri-500: #8186E6;   /* panels / buttons */
  --peri-600: #6B70DA;
  --peri-700: #585DC6;

  /* mint */
  --mint-50:  #E6F8F1;
  --mint-100: #D2F2E6;
  --mint-200: #ABE7D2;
  --mint-300: #86D9BD;
  --mint-400: #5FC9A4;   /* mint panel base via tint */
  --mint-panel: #93DDC4;

  /* lavender */
  --lav-50:  #F4EEFB;
  --lav-100: #EBE0F7;
  --lav-200: #DAC7F0;
  --lav-300: #C6A9E7;
  --lav-400: #B48FDE;

  /* playful sparkle accents */
  --sun:  #F6CE52;
  --sun-2:#F2B838;
  --pink: #F2A6C9;
  --pink-2:#EC85B4;

  /* neutrals — cool, soft */
  --bg:    #F8F9FC;   /* page */
  --bg-2:  #FCFCFE;
  --paper: #FFFFFF;

  --ink:   #232838;   /* headings */
  --ink-2: #545B6E;   /* body */
  --ink-3: #888FA1;   /* muted */
  --ink-4: #ADB3C2;

  --line:   #E7E8EF;
  --line-2: #EFEFF4;

  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --r-sm: 14px;
  --r:    20px;
  --r-md: 26px;
  --r-lg: 34px;
  --r-xl: 44px;

  --sh-1: 0 1px 2px rgba(35,40,56,.05), 0 1px 3px rgba(35,40,56,.04);
  --sh-2: 0 10px 30px -14px rgba(35,40,56,.18), 0 4px 10px -6px rgba(35,40,56,.08);
  --sh-3: 0 30px 60px -24px rgba(35,40,56,.28), 0 12px 26px -14px rgba(35,40,56,.16);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink-2);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { color: var(--ink); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 26px; }
.block { padding: 84px 0; }

/* ── Sparkle ─────────────────────────────── */
.spk { position: absolute; pointer-events: none; z-index: 3; line-height: 0; }
.spk svg { display: block; width: 100%; height: 100%; }
.spk.sun  { color: var(--sun); }
.spk.pink { color: var(--pink); }
.spk.mint { color: var(--mint-400); }
.spk.peri { color: var(--peri-400); }
@media (prefers-reduced-motion: no-preference) {
  .spk { animation: twinkle 4.5s ease-in-out infinite; }
  @keyframes twinkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: .9; }
    50%      { transform: scale(1.18) rotate(8deg); opacity: 1; }
  }
}

/* ── Marker underline on words ───────────── */
.mark { position: relative; white-space: nowrap; color: var(--ink); }
.mark::after {
  content: ""; position: absolute; left: -1px; right: -1px; bottom: 0.04em;
  height: 0.42em; border-radius: 999px;
  background: var(--mint-300); opacity: .6;
  transform: rotate(-1.2deg); z-index: -1;
}
.mark.peri::after { background: var(--peri-200); opacity: .85; }
.mark.sun::after  { background: var(--sun); opacity: .55; }
.mark.lav::after  { background: var(--lav-200); opacity: .9; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px;
  font-family: var(--sans); font-weight: 700; font-size: 14.5px; line-height: 1;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .12s, box-shadow .18s, background .18s, border-color .18s, color .18s;
}
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary {
  background: var(--peri-500); color: #fff;
  box-shadow: 0 10px 22px -10px rgba(107,112,218,.85);
}
.btn-primary:hover { background: var(--peri-600); }
.btn-ghost { background: var(--paper); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--peri-300); color: var(--peri-700); }
.btn-light { background: #fff; color: var(--peri-700); }
.btn-light:hover { background: var(--peri-50); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); }
.btn-lg { padding: 16px 28px; font-size: 15.5px; }

/* ── Eyebrow / kicker ────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--peri-600); box-shadow: var(--sh-1);
}
.kicker.on-peri { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.3); color: #fff; box-shadow: none; }
.kicker.on-mint { background: rgba(255,255,255,.6); border-color: rgba(255,255,255,.7); color: var(--ink); }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.section-head.left { text-align: left; align-items: flex-start; margin-left: 0; }
.section-title {
  font-weight: 800; font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.02em; line-height: 1.12; margin: 0;
}
.section-lede { color: var(--ink-2); font-size: 17px; line-height: 1.65; margin: 0; max-width: 58ch; }

/* ── Nav ─────────────────────────────────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 80;
  background: rgba(238,239,244,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(231,232,239,.8);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.nav-brand { display: inline-flex; align-items: center; }
.nav-brand img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  padding: 9px 16px; border-radius: 999px; font-size: 14.5px;
  color: var(--ink-2); font-weight: 600;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: #fff; color: var(--ink); }
.nav-links a.active { background: var(--peri-500); color: #fff; }
.nav-cta { display: inline-flex; gap: 9px; align-items: center; }
.nav-call { color: var(--ink-2); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; }
.nav-call svg { color: var(--peri-500); }

/* hamburger */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff;
  border-radius: 12px; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 78px; left: 0; right: 0; z-index: 79;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-2); padding: 14px 26px 22px;
  flex-direction: column; gap: 4px;
  max-height: calc(100vh - 78px); overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 14px; border-radius: 12px; font-size: 16px; font-weight: 700; color: var(--ink); }
.mobile-menu a:hover, .mobile-menu a.active { background: var(--peri-50); color: var(--peri-700); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }
.mobile-menu .btn.active { background: var(--peri-500); color: #fff; }
.mobile-menu .m-call { color: var(--ink-2); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.mobile-menu .m-call svg { color: var(--peri-500); }

/* ── Hero ────────────────────────────────── */
.hero { position: relative; padding: 44px 0 72px; overflow: hidden; }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 15px 6px 6px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2); font-weight: 600; box-shadow: var(--sh-1);
}
.hero-eyebrow .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--mint-100); color: var(--mint-400);
  display: grid; place-items: center; flex: none;
}
.hero h1 {
  font-weight: 800; font-size: clamp(38px, 5vw, 62px);
  line-height: 1.06; letter-spacing: -.03em; margin: 22px 0 20px; max-width: 14ch;
}
.hero .lede { font-size: 18px; color: var(--ink-2); line-height: 1.65; max-width: 50ch; margin: 0; }
.hero-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--ink-3); font-size: 13px; font-weight: 600; }
.hero-trust .item { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .item svg { color: var(--mint-400); flex: none; }

/* hero photo collage */
.collage { position: relative; aspect-ratio: 1/1; max-width: 540px; margin-left: auto; width: 100%; }
.blob {
  position: absolute; border-radius: 50%; overflow: hidden;
  display: grid; place-items: center; color: #fff; text-align: center;
}
.blob img { width: 100%; height: 100%; object-fit: cover; }
.blob-a { /* main photo top */
  width: 56%; aspect-ratio: 1; top: 2%; left: 4%;
  box-shadow: var(--sh-3); border: 6px solid #fff;
}
.blob-b { /* periwinkle stat top-right */
  width: 34%; aspect-ratio: 1; top: 6%; right: 2%;
  background: var(--peri-500);
}
.blob-c { /* mint stat bottom-left */
  width: 33%; aspect-ratio: 1; bottom: 4%; left: 0;
  background: var(--mint-panel); color: var(--ink);
}
.blob-d { /* lavender photo bottom-right */
  width: 50%; aspect-ratio: 1; bottom: 2%; right: 2%;
  box-shadow: var(--sh-3); border: 6px solid #fff;
}
.blob .stat-n { font-size: clamp(26px, 4.5vw, 42px); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.blob .stat-l { font-size: 13px; font-weight: 700; opacity: .92; margin-top: 6px; max-width: 12ch; }
.collage .spk-1 { width: 46px; height: 46px; top: -2%; left: 46%; }
.collage .spk-2 { width: 30px; height: 30px; top: 40%; right: 0; }
.collage .spk-3 { width: 38px; height: 38px; bottom: 8%; left: 38%; }

/* ── Credentials strip ───────────────────── */
.creds {
  margin-top: 14px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px;
  padding: 18px 26px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh-1);
}
.creds .lbl { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.creds .item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--ink); }
.creds .item svg { color: var(--peri-500); flex: none; }
.creds .sep { width: 1px; height: 20px; background: var(--line); }

/* ── Periwinkle panel (process / cta) ────── */
.peri-panel {
  position: relative; overflow: hidden;
  background: var(--peri-500); color: #fff;
  border-radius: var(--r-xl); padding: 64px 56px;
}
.peri-panel .spk { color: var(--sun); }
.peri-panel .ph-watermark {
  position: absolute; right: -2%; bottom: -28%;
  font-size: 200px; font-weight: 800; letter-spacing: -.04em;
  color: rgba(255,255,255,.06); pointer-events: none; line-height: 1;
}
.panel-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; position: relative; z-index: 2; }
.panel-head h2 { font-weight: 800; font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -.02em; line-height: 1.12; margin: 14px 0 0; max-width: 18ch; }

.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; z-index: 2; }
.step-card {
  background: #fff; border-radius: var(--r-md); padding: 26px 24px 24px;
  display: flex; flex-direction: column; gap: 12px; position: relative;
  box-shadow: var(--sh-2);
}
.step-card .ic-wrap { position: relative; width: 60px; height: 60px; }
.step-card .ic {
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink);
}
.step-card:nth-child(1) .ic { background: var(--mint-100); color: var(--mint-400); }
.step-card:nth-child(2) .ic { background: var(--lav-100); color: var(--lav-400); }
.step-card:nth-child(3) .ic { background: var(--peri-100); color: var(--peri-500); }
.step-card:nth-child(4) .ic { background: #FCEFC9; color: var(--sun-2); }
.step-card .ic-wrap .spk { width: 26px; height: 26px; top: -8px; right: -6px; }
.step-card .num {
  position: absolute; top: 20px; right: 22px;
  font-size: 14px; font-weight: 800; color: var(--ink-4);
}
.step-card h3 { font-weight: 800; font-size: 18px; letter-spacing: -.01em; margin: 4px 0 0; line-height: 1.25; }
.step-card p { margin: 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* ── Why-us photo cards ──────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { display: flex; flex-direction: column; gap: 16px; }
.why-photo {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 1.1/1; background: var(--peri-100); box-shadow: var(--sh-2);
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-card:nth-child(2) .why-photo { background: var(--lav-100); }
.why-card:nth-child(3) .why-photo { background: var(--mint-100); }
.why-photo .spk { width: 34px; height: 34px; }
.why-photo .spk.p1 { top: 12px; left: 12px; }
.why-photo .spk.p2 { bottom: 14px; right: 14px; width: 26px; height: 26px; }
.why-card h3 { font-weight: 800; font-size: 20px; letter-spacing: -.01em; margin: 0; }
.why-card p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }

/* ── Mint panel (meet Sonali) ────────────── */
.mint-panel {
  position: relative; overflow: hidden;
  background: var(--mint-panel); color: var(--ink);
  border-radius: var(--r-xl); padding: 56px 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.mint-panel .spk { color: #fff; }
.mint-copy h2 { font-weight: 800; font-size: clamp(28px, 3.2vw, 38px); letter-spacing: -.02em; line-height: 1.14; margin: 16px 0 0; }
.mint-copy p { font-size: 16px; line-height: 1.7; color: #2c5246; margin: 18px 0 0; max-width: 46ch; }
.mint-copy .mini { display: flex; gap: 22px; margin-top: 22px; }
.mint-copy .mini .v { font-size: 30px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.mint-copy .mini .l { font-size: 12.5px; color: #2c5246; font-weight: 600; margin-top: 5px; }
.mint-copy .actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.mint-copy .btn-dark { background: var(--ink); color: #fff; }
.mint-copy .btn-dark:hover { background: #0f1320; }

.sonali-card {
  background: #fff; border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sh-3);
  position: relative;
}
.sonali-portrait {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4/3.4; background: var(--mint-100);
}
.sonali-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.sonali-card .name { font-weight: 800; font-size: 22px; letter-spacing: -.01em; margin: 18px 0 2px; }
.sonali-card .role { font-size: 13.5px; color: var(--peri-600); font-weight: 700; }
.sonali-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
  background: var(--bg-2); color: var(--ink-2); border: 1px solid var(--line);
}
.chip .d { width: 6px; height: 6px; border-radius: 50%; background: var(--peri-400); }
.chip.mint .d { background: var(--mint-400); }
.chip.lav .d { background: var(--lav-400); }
.chip.sun .d { background: var(--sun-2); }

/* ── Services grid ───────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 13px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: transparent; }
.svc .ic {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: var(--peri-100); color: var(--peri-500);
}
.svc:nth-child(3n+2) .ic { background: var(--mint-100); color: var(--mint-400); }
.svc:nth-child(3n+3) .ic { background: var(--lav-100); color: var(--lav-400); }
.svc h3 { font-weight: 800; font-size: 19px; letter-spacing: -.01em; margin: 4px 0 0; }
.svc .ages { font-size: 12.5px; color: var(--ink-3); font-weight: 700; }
.svc p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.svc .more { margin-top: 4px; display: inline-flex; align-items: center; gap: 6px; color: var(--peri-600); font-weight: 700; font-size: 13.5px; }
.svc:hover .more svg { transform: translateX(3px); }
.svc .more svg { transition: transform .15s; }

/* ── Conditions ──────────────────────────── */
.cond-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cond {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 22px; display: flex; flex-direction: column; gap: 9px;
  transition: transform .15s, box-shadow .15s;
}
.cond:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.cond .name { font-weight: 800; font-size: 16.5px; letter-spacing: -.01em; color: var(--ink); }
.cond p { margin: 0; font-size: 13px; color: var(--ink-2); line-height: 1.55; }
.cond .age {
  margin-top: 2px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-3); display: inline-flex; align-items: center; gap: 6px;
}
.cond .age::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--mint-400); }

/* ── Philosophy quote feature ────────────── */
.quote-feature {
  background: var(--paper); border-radius: var(--r-lg); padding: 56px 52px;
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center;
  box-shadow: var(--sh-2); position: relative; overflow: hidden;
}
.qf-photo { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/4.4; box-shadow: var(--sh-2); }
.qf-photo img { width: 100%; height: 100%; object-fit: cover; }
.qf-photo .spk { width: 36px; height: 36px; bottom: 14px; right: 14px; }
.quote-feature blockquote {
  margin: 0; font-weight: 800; font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3; letter-spacing: -.02em; color: var(--ink);
}
.quote-feature blockquote .mark { font-weight: 800; }
.qf-who { display: flex; align-items: center; gap: 13px; margin-top: 26px; }
.qf-who .av {
  width: 48px; height: 48px; border-radius: 50%; background: var(--peri-500); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 16px; flex: none;
}
.qf-who .n { font-weight: 800; font-size: 15px; color: var(--ink); }
.qf-who .r { font-size: 13px; color: var(--ink-3); }

/* ── FAQ ─────────────────────────────────── */
.faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 4px 24px; cursor: pointer; transition: border-color .15s, box-shadow .15s;
}
.faq-item:hover { border-color: var(--peri-200); }
.faq-item.open { box-shadow: var(--sh-2); border-color: transparent; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-weight: 700; font-size: 16.5px; color: var(--ink); padding: 18px 0;
}
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%; background: var(--peri-50); color: var(--peri-600);
  display: grid; place-items: center; flex: none; font-size: 19px; transition: transform .25s, background .2s;
}
.faq-a { display: none; padding: 0 0 20px; font-size: 14.5px; color: var(--ink-2); line-height: 1.7; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--peri-500); color: #fff; }
.faq-item.open .faq-a { display: block; }

/* ── Final CTA (periwinkle) ──────────────── */
.cta-panel { text-align: center; }
.cta-panel h2 { font-weight: 800; font-size: clamp(32px, 4.2vw, 52px); letter-spacing: -.025em; line-height: 1.08; margin: 0 auto; max-width: 18ch; position: relative; z-index: 2; }
.cta-panel p { color: rgba(255,255,255,.86); margin: 20px auto 0; max-width: 52ch; font-size: 17px; line-height: 1.6; position: relative; z-index: 2; }
.cta-actions { margin-top: 32px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 2; }
.cta-fine { margin-top: 22px; color: rgba(255,255,255,.6); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; position: relative; z-index: 2; }
.cta-panel .spk.s1 { top: 12%; left: 10%; width: 40px; height: 40px; }
.cta-panel .spk.s2 { bottom: 16%; right: 12%; width: 52px; height: 52px; }
.cta-panel .spk.s3 { top: 22%; right: 18%; width: 26px; height: 26px; }

/* ── Contact strip ───────────────────────── */
.contact-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.c-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 24px; display: grid; grid-template-columns: 46px 1fr; gap: 15px; align-items: center;
}
.c-item .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--peri-100); color: var(--peri-500); display: grid; place-items: center; }
.c-item:nth-child(2) .ic { background: var(--mint-100); color: var(--mint-400); }
.c-item:nth-child(3) .ic { background: var(--lav-100); color: var(--lav-400); }
.c-item .k { font-size: 11.5px; color: var(--ink-3); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.c-item .v { font-size: 15px; font-weight: 700; color: var(--ink); margin-top: 3px; }

/* ── Footer ──────────────────────────────── */
footer.site { background: var(--paper); border-top: 1px solid var(--line); padding: 64px 0 0; margin-top: 12px; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.foot-brand img { height: 52px; width: auto; }
.foot-brand p { color: var(--ink-2); font-size: 14px; line-height: 1.65; margin: 18px 0 0; max-width: 32ch; }
.foot-grid h5 { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); margin: 0 0 16px; font-weight: 800; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-grid li { font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.foot-grid li a:hover { color: var(--peri-600); }
.foot-bottom { border-top: 1px solid var(--line); padding: 22px 0 30px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--ink-3); }
.foot-watermark { text-align: center; font-weight: 800; font-size: clamp(60px, 14vw, 168px); letter-spacing: -.04em; line-height: .9; color: var(--bg); padding: 0 0 8px; user-select: none; }

/* ════════════════════════════════════════════
   SUBPAGE COMPONENTS (therapies / conditions / about)
   ════════════════════════════════════════════ */

/* subhero */
.subhero { position: relative; padding: 30px 0 6px; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--ink-3); font-weight: 600; }
.crumbs a:hover { color: var(--peri-600); }
.crumbs .sep { color: var(--ink-4); }
.subhero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 999px; background: var(--mint-100); color: #2c5246; font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.subhero h1 { font-weight: 800; font-size: clamp(34px, 5.2vw, 58px); letter-spacing: -.03em; line-height: 1.04; margin: 16px 0 16px; max-width: 16ch; }
.subhero h1 .mark { font-weight: 800; }
.subhero .lede { font-size: 18px; color: var(--ink-2); line-height: 1.62; max-width: 56ch; margin: 0; }
.subhero-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.subhero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.subhero-photo { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3.2; box-shadow: var(--sh-2); }
.subhero-photo img { width: 100%; height: 100%; object-fit: cover; }
.subhero-photo .spk { width: 38px; height: 38px; bottom: 16px; right: 16px; }
.subhero-photo .tag { position: absolute; left: 16px; bottom: 16px; right: 16px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-radius: 14px; padding: 12px 16px; }
.subhero-photo .tag .n { font-weight: 800; font-size: 16px; color: var(--ink); }
.subhero-photo .tag .r { font-size: 12px; color: var(--peri-600); font-weight: 700; margin-top: 2px; }

/* jump index pills */
.t-index { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.t-index a { padding: 10px 15px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 700; color: var(--ink-2); }
.t-index a:hover { border-color: var(--peri-300); color: var(--peri-700); }
.t-index .n { color: var(--peri-500); font-style: italic; margin-right: 4px; }

/* two-column list cards */
.list-band { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.list-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 34px 30px; }
.list-card.mint { background: var(--mint-50); border-color: var(--mint-100); }
.list-card .lc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.list-card .lc-ic { width: 46px; height: 46px; border-radius: 50%; background: var(--peri-100); color: var(--peri-500); display: grid; place-items: center; flex: none; }
.list-card.mint .lc-ic { background: #fff; color: var(--mint-400); }
.list-card h3 { font-weight: 800; font-size: 21px; margin: 0; letter-spacing: -.01em; }
.list-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.list-card li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; color: var(--ink); line-height: 1.5; }
.list-card li:last-child { border-bottom: none; }
.list-card .tk { width: 20px; height: 20px; border-radius: 50%; background: var(--mint-100); color: var(--mint-400); display: grid; place-items: center; margin-top: 1px; }
.list-card.mint .tk { background: #fff; }
.list-card li .sub { display: block; font-size: 12.5px; color: var(--ink-3); margin-top: 3px; line-height: 1.5; }

/* therapy detail rows */
.t-detail { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); margin-bottom: 22px; scroll-margin-top: 96px; display: grid; grid-template-columns: .82fr 1.18fr; }
.t-detail .side { padding: 40px 36px; background: var(--peri-50); display: flex; flex-direction: column; gap: 14px; position: relative; }
.t-detail:nth-of-type(2n) .side { background: var(--mint-50); }
.t-detail:nth-of-type(3n) .side { background: var(--lav-50); }
.t-side-num { font-size: 44px; font-weight: 800; color: var(--peri-300); letter-spacing: -.03em; line-height: 1; }
.t-detail:nth-of-type(2n) .t-side-num { color: var(--mint-300); }
.t-detail:nth-of-type(3n) .t-side-num { color: var(--lav-300); }
.t-detail h2 { font-weight: 800; font-size: 28px; letter-spacing: -.02em; margin: 0; line-height: 1.12; }
.t-meta { display: flex; flex-direction: column; gap: 0; margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--line); }
.t-meta .row { display: grid; grid-template-columns: 86px 1fr; gap: 12px; padding: 8px 0; }
.t-meta .k { color: var(--ink-3); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: 10.5px; padding-top: 3px; }
.t-meta .v { font-size: 13.5px; color: var(--ink); line-height: 1.45; }
.t-photo { border-radius: var(--r); overflow: hidden; margin-top: 8px; aspect-ratio: 16/11; }
.t-photo img { width: 100%; height: 100%; object-fit: cover; }
.t-detail .body { padding: 40px 40px; display: flex; flex-direction: column; gap: 24px; }
.t-detail .body .lede { font-weight: 800; font-size: 20px; line-height: 1.35; color: var(--ink); margin: 0; letter-spacing: -.01em; }
.t-detail .body .lede .mark { font-weight: 800; }
.body-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.body-col h4 { font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin: 0 0 12px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.body-col h4::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--peri-400); }
.body-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.body-col li { font-size: 14px; color: var(--ink-2); line-height: 1.5; padding-left: 20px; position: relative; }
.body-col li::before { content: ""; position: absolute; left: 0; top: 9px; width: 11px; height: 2px; background: var(--peri-400); border-radius: 2px; }
.flow { border-top: 1px dashed var(--line); padding-top: 20px; }
.flow h4 { font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin: 0 0 12px; font-weight: 800; }
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.flow-step { padding: 14px 16px; border-right: 1px solid var(--line); }
.flow-step:last-child { border-right: none; }
.flow-step .t { font-size: 10.5px; color: var(--peri-600); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.flow-step .d { font-size: 13px; color: var(--ink); line-height: 1.4; margin-top: 5px; }

/* comparison matrix */
.matrix-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); }
.matrix { width: 100%; border-collapse: collapse; font-size: 14px; }
.matrix thead th { background: var(--peri-50); padding: 16px; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); font-weight: 800; }
.matrix td { padding: 16px; border-bottom: 1px solid var(--line-2); color: var(--ink-2); vertical-align: top; line-height: 1.5; }
.matrix tr:last-child td { border-bottom: none; }
.matrix .name { font-weight: 800; color: var(--ink); font-size: 15px; }

/* conditions */
.filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.filter { padding: 9px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--ink-2); background: #fff; border: 1px solid var(--line); cursor: pointer; transition: all .15s; }
.filter:hover { border-color: var(--peri-300); }
.filter.active { background: var(--peri-500); color: #fff; border-color: var(--peri-500); }
.cat-band { margin-bottom: 56px; }
.cat-band:last-child { margin-bottom: 0; }
.cat-head { margin-bottom: 24px; max-width: 760px; }
.cat-head .n { font-size: 13px; font-weight: 800; color: var(--peri-500); letter-spacing: .04em; }
.cat-head h2 { font-weight: 800; font-size: clamp(26px, 3vw, 34px); letter-spacing: -.02em; margin: 6px 0 0; }
.cat-head p { color: var(--ink-2); margin: 8px 0 0; font-size: 15.5px; line-height: 1.6; }
.cc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cc { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; transition: transform .15s, box-shadow .15s; }
.cc:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.cc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.cc-name { font-weight: 800; font-size: 21px; letter-spacing: -.01em; margin: 0; line-height: 1.2; }
.cc-also { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }
.cc-age { flex: none; padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; background: var(--mint-100); color: #2c5246; white-space: nowrap; }
.cc-body { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cc-col h5 { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin: 0 0 10px; font-weight: 800; }
.cc-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.cc-col li { font-size: 13px; color: var(--ink-2); line-height: 1.5; padding-left: 16px; position: relative; }
.cc-col li::before { content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 2px; background: var(--peri-400); border-radius: 2px; }
.cc-foot { padding-top: 16px; border-top: 1px dashed var(--line); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.cc-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.cc-pill { padding: 4px 11px; border-radius: 999px; font-size: 11px; font-weight: 700; background: var(--peri-50); color: var(--peri-700); }
.cc-link { font-size: 13px; font-weight: 800; color: var(--peri-600); display: inline-flex; align-items: center; gap: 5px; }

/* signs + scope */
.signs { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.signs li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; font-size: 14px; color: var(--ink-2); line-height: 1.5; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; }
.signs li svg { color: var(--peri-500); margin-top: 2px; flex: none; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.scope-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 34px 32px; }
.scope-card.mint { background: var(--mint-50); border-color: var(--mint-100); }
.scope-card h3 { font-weight: 800; font-size: 22px; margin: 0 0 18px; letter-spacing: -.01em; }
.scope-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.scope-card li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.scope-card li svg { color: var(--mint-400); margin-top: 3px; flex: none; }
.scope-card.warm li svg { color: var(--peri-500); }

/* about — promises 3 */
.promise3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promise3 .p { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 34px 30px; }
.promise3 .n { font-size: 30px; font-weight: 800; color: var(--peri-300); letter-spacing: -.02em; }
.promise3 .p:nth-child(2) .n { color: var(--mint-300); }
.promise3 .p:nth-child(3) .n { color: var(--lav-300); }
.promise3 h3 { font-weight: 800; font-size: 21px; margin: 12px 0 8px; letter-spacing: -.01em; }
.promise3 h3 .mark { font-weight: 800; }
.promise3 p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }

/* about — bio */
.bio { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
.bio-aside { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 6px 0; position: sticky; top: 96px; }
.bio-aside .row { padding: 12px 0; border-bottom: 1px dashed var(--line); }
.bio-aside .row:last-child { border-bottom: none; }
.bio-aside .k { font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); font-weight: 800; }
.bio-aside .v { font-size: 15px; font-weight: 700; color: var(--ink); margin-top: 4px; line-height: 1.35; }
.bio-body { display: flex; flex-direction: column; gap: 16px; }
.bio-body h3 { font-weight: 800; font-size: 23px; letter-spacing: -.01em; margin: 12px 0 0; }
.bio-body h3 .mark { font-weight: 800; }
.bio-body p { margin: 0; font-size: 16px; color: var(--ink-2); line-height: 1.72; }
.bio-body p strong { color: var(--ink); }

/* credentials */
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cred { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; display: flex; flex-direction: column; gap: 8px; }
.cred .y { font-size: 13px; font-weight: 800; color: var(--peri-500); }
.cred .t { font-weight: 800; font-size: 17px; letter-spacing: -.01em; line-height: 1.3; }
.cred .s { font-size: 13px; color: var(--ink-3); line-height: 1.55; }
.cred .id { margin-top: 8px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }

/* timeline */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); }
.tl { padding: 26px 22px; border-right: 1px solid var(--line); position: relative; }
.tl:last-child { border-right: none; }
.tl::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--peri-300); }
.tl:nth-child(2)::before { background: var(--mint-300); }
.tl:nth-child(3)::before { background: var(--lav-300); }
.tl:nth-child(4)::before { background: var(--sun); }
.tl:nth-child(5)::before { background: var(--peri-500); }
.tl .yr { font-size: 12.5px; font-weight: 800; color: var(--ink-3); letter-spacing: .03em; }
.tl .h { font-weight: 800; font-size: 18px; margin: 8px 0 6px; letter-spacing: -.01em; }
.tl p { margin: 0; font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* moments gallery */
.moments { display: grid; grid-template-columns: 1.35fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.moment { position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 230px; margin: 0; }
.moment.tall { grid-row: span 2; }
.moment img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.moment figcaption { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 10px 14px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 12px; font-size: 12.5px; color: var(--ink); font-weight: 600; line-height: 1.35; }

/* promise list (8) */
.promise-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.promise-list li { list-style: none; display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; padding: 18px 0; border-top: 1px dashed var(--line); }
.promise-list .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--mint-100); color: var(--mint-400); display: grid; place-items: center; flex: none; margin-top: 2px; }
.promise-list strong { display: block; font-weight: 800; font-size: 16px; color: var(--ink); margin-bottom: 3px; }
.promise-list span { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* subpage responsive */
@media (max-width: 980px) {
  .subhero-grid { grid-template-columns: 1fr; gap: 32px; }
  .list-band { grid-template-columns: 1fr; }
  .t-detail { grid-template-columns: 1fr; }
  .body-cols { grid-template-columns: 1fr; gap: 18px; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .cc-grid { grid-template-columns: 1fr; }
  .cc-body { grid-template-columns: 1fr; gap: 16px; }
  .signs { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .promise3 { grid-template-columns: 1fr; }
  .bio { grid-template-columns: 1fr; gap: 28px; }
  .bio-aside { position: static; }
  .cred-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .tl { border-right: none; border-bottom: 1px solid var(--line); }
  .moments { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .moment.tall { grid-row: auto; }
  .promise-list { grid-template-columns: 1fr; }
  .matrix-wrap { overflow-x: auto; }
  .matrix { min-width: 640px; }
}
@media (max-width: 600px) {
  .flow-steps { grid-template-columns: 1fr; }
  .flow-step { border-right: none; border-bottom: 1px solid var(--line); }
  .moments { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   APPOINTMENT — booking form
   ════════════════════════════════════════════ */
.promise-strip { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.promise-cell { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; }
.promise-cell .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--peri-100); color: var(--peri-500); display: grid; place-items: center; }
.promise-cell:nth-child(2) .ic { background: var(--mint-100); color: var(--mint-400); }
.promise-cell:nth-child(3) .ic { background: var(--lav-100); color: var(--lav-400); }
.promise-cell .k { font-size: 11px; color: var(--ink-3); letter-spacing: .08em; text-transform: uppercase; font-weight: 800; }
.promise-cell .v { font-size: 14px; font-weight: 700; color: var(--ink); margin-top: 3px; }

.book-shell { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--sh-2); }
.book-form { display: flex; flex-direction: column; }
.progress-block { padding: 26px 40px 0; display: flex; flex-direction: column; gap: 14px; }
.step-pills { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 12px; letter-spacing: .04em; font-weight: 700; color: var(--ink-3); }
.step-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px; border-radius: 999px; background: var(--bg); border: 1px solid var(--line); color: var(--ink-3); transition: all .2s; }
.step-pill .num { width: 20px; height: 20px; border-radius: 50%; background: #fff; color: var(--ink-3); border: 1px solid var(--line); display: grid; place-items: center; font-weight: 800; font-size: 10.5px; flex: none; }
.step-pill.on { background: var(--peri-50); color: var(--peri-700); border-color: var(--peri-200); }
.step-pill.on .num { background: var(--peri-500); color: #fff; border-color: var(--peri-500); }
.step-pill.done { background: var(--mint-50); color: #2c5246; border-color: var(--mint-200); }
.step-pill.done .num { background: var(--mint-400); color: #fff; border-color: var(--mint-400); }
.step-pill.done .num::after { content: '✓'; font-size: 10px; }
.step-pill.done .num span { display: none; }
.step-pill .sep { color: var(--ink-4); }
.progress-bar { height: 5px; border-radius: 999px; background: var(--bg); overflow: hidden; position: relative; }
.progress-fill { position: absolute; top: 0; left: 0; bottom: 0; background: linear-gradient(90deg, var(--peri-400), var(--peri-600)); border-radius: 999px; transition: width .35s cubic-bezier(.65,0,.35,1); }
.book-head { padding: 26px 40px 20px; display: flex; flex-direction: column; gap: 6px; }
.book-head h2 { font-weight: 800; margin: 0; font-size: 28px; letter-spacing: -.02em; line-height: 1.14; }
.book-head h2 .mark { font-weight: 800; }
.book-head p { margin: 4px 0 0; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.child-chip { align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; margin-top: 10px; padding: 5px 14px 5px 5px; border-radius: 999px; background: var(--peri-50); border: 1px solid var(--peri-200); }
.child-chip .av { width: 28px; height: 28px; border-radius: 50%; background: var(--peri-500); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.child-chip .who { font-size: 13px; color: var(--peri-700); font-weight: 700; }
.book-body { padding: 6px 40px 32px; }
.form-grid { display: grid; gap: 22px; }
.form-grid.col-2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11.5px; color: var(--ink-3); letter-spacing: .08em; text-transform: uppercase; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.field label .req { color: var(--peri-500); }
.field input, .field textarea, .field select { font-family: var(--sans); font-size: 15px; color: var(--ink); padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line); background: #fff; transition: border-color .15s, box-shadow .15s; width: 100%; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--peri-200); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--peri-400); box-shadow: 0 0 0 4px var(--peri-50); }
.field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.field .hint { font-size: 12.5px; color: var(--ink-3); }
.section-divider { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--ink-3); letter-spacing: .1em; text-transform: uppercase; font-weight: 800; }
.section-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.section-divider .n { color: var(--peri-700); padding: 3px 9px; background: var(--peri-50); border: 1px solid var(--peri-200); border-radius: 6px; }
.card-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.card-options.col-3 { grid-template-columns: repeat(3, 1fr); }
.card-opt { cursor: pointer; position: relative; }
.card-opt input { position: absolute; opacity: 0; pointer-events: none; }
.card-opt .face { padding: 16px 18px; border-radius: 14px; border: 1px solid var(--line); background: #fff; display: flex; gap: 14px; align-items: flex-start; transition: all .15s; height: 100%; }
.card-opt .face .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--bg); color: var(--ink-2); display: grid; place-items: center; flex: none; }
.card-opt:hover .face { border-color: var(--peri-300); }
.card-opt input:checked + .face { border-color: var(--peri-500); background: var(--peri-50); }
.card-opt input:checked + .face .ic { background: var(--peri-100); color: var(--peri-500); }
.card-opt .face .title { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.card-opt .face .sub { font-size: 12.5px; color: var(--ink-3); margin-top: 3px; line-height: 1.45; display: block; }
.card-opt input:checked + .face .title { color: var(--peri-700); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-opt { cursor: pointer; }
.chip-opt input { position: absolute; opacity: 0; pointer-events: none; }
.chip-opt .f { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 13px; color: var(--ink-2); font-weight: 600; transition: all .15s; }
.chip-opt:hover .f { border-color: var(--peri-300); color: var(--ink); }
.chip-opt input:checked + .f { background: var(--peri-50); color: var(--peri-700); border-color: var(--peri-300); }
.chip-opt input:checked + .f::before { content: '✓'; font-size: 11px; font-weight: 800; }
.mode-row { grid-template-columns: 1fr 1fr; }
.when-block { border: 1px solid var(--line); border-radius: 14px; background: var(--bg-2); padding: 22px; }
.when-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; flex-wrap: wrap; gap: 10px; }
.when-head h4 { margin: 0; font-size: 14px; font-weight: 800; color: var(--ink); }
.when-head .month { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-2); font-weight: 700; }
.when-head .arrow-btn { width: 30px; height: 30px; border-radius: 9px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); cursor: pointer; transition: all .15s; }
.when-head .arrow-btn:hover { background: var(--peri-50); border-color: var(--peri-300); color: var(--peri-700); }
.day-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 8px; }
.day-row .dayname { font-size: 10.5px; color: var(--ink-4); letter-spacing: .06em; text-transform: uppercase; text-align: center; font-weight: 800; padding: 4px 0; }
.day-cell { aspect-ratio: 1.05; padding: 6px; border-radius: 12px; background: #fff; border: 1px solid var(--line); cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; transition: all .15s; position: relative; }
.day-cell:hover { border-color: var(--peri-300); }
.day-cell .d { font-size: 16px; font-weight: 800; color: var(--ink); }
.day-cell .m { font-size: 9.5px; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }
.day-cell.muted { opacity: .35; pointer-events: none; }
.day-cell.full { background: var(--bg); cursor: not-allowed; }
.day-cell.full::after { content: 'Full'; position: absolute; bottom: 4px; left: 0; right: 0; text-align: center; font-size: 8.5px; color: var(--ink-4); letter-spacing: .06em; text-transform: uppercase; }
.day-cell.full .d, .day-cell.full .m { opacity: .35; }
.day-cell.on { background: var(--peri-500); border-color: var(--peri-500); box-shadow: 0 6px 16px -6px rgba(107,112,218,.7); }
.day-cell.on .d, .day-cell.on .m { color: #fff; }
.day-cell.today::before { content: ''; position: absolute; top: 5px; right: 5px; width: 6px; height: 6px; border-radius: 50%; background: var(--pink-2); }
.time-row { margin-top: 18px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.time-cell { padding: 12px 10px; border-radius: 10px; background: #fff; border: 1px solid var(--line); text-align: center; cursor: pointer; font-size: 13.5px; color: var(--ink); font-weight: 700; transition: all .15s; }
.time-cell:hover { border-color: var(--peri-300); }
.time-cell.on { background: var(--peri-50); color: var(--peri-700); border-color: var(--peri-500); }
.time-cell.gone { opacity: .35; text-decoration: line-through; pointer-events: none; }
.selected-when { margin-top: 16px; padding: 12px 16px; background: var(--peri-50); border: 1px solid var(--peri-200); border-radius: 12px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.selected-when .k { font-size: 11px; color: var(--peri-600); letter-spacing: .08em; text-transform: uppercase; font-weight: 800; }
.selected-when .v { font-size: 17px; color: var(--peri-700); font-weight: 800; }
.chip.sage { background: var(--mint-50); color: #2c5246; border-color: var(--mint-200); }
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 40px; border-top: 1px solid var(--line); background: var(--bg-2); }
.form-foot .fine { font-size: 11.5px; color: var(--ink-3); max-width: 34ch; line-height: 1.55; }
.form-foot .actions { display: inline-flex; gap: 10px; align-items: center; }

/* booking sidebar */
.book-side { background: var(--peri-600); color: #fff; padding: 40px 34px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 22px; }
.book-side .side-head { display: flex; flex-direction: column; gap: 6px; }
.book-side .kicker { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.28); color: #fff; box-shadow: none; }
.book-side .side-head h3 { margin: 0; font-weight: 800; font-size: 24px; letter-spacing: -.02em; line-height: 1.15; }
.book-side .side-head h3 .mark { font-weight: 800; }
.side-list { display: flex; flex-direction: column; gap: 10px; }
.side-row { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.side-row .ic { width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,.16); color: #fff; display: grid; place-items: center; flex: none; }
.side-row .k { font-size: 10.5px; color: rgba(255,255,255,.8); letter-spacing: .1em; text-transform: uppercase; font-weight: 800; }
.side-row .v { font-size: 13.5px; color: #fff; margin-top: 3px; line-height: 1.5; font-weight: 600; }
.side-row .v em { font-style: normal; color: #fff; font-weight: 800; }
.summary-card { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.1); border-radius: 14px; padding: 20px; display: none; flex-direction: column; gap: 8px; }
.summary-card.show { display: flex; }
.summary-card .lab { font-size: 11px; color: rgba(255,255,255,.8); letter-spacing: .1em; text-transform: uppercase; font-weight: 800; margin-bottom: 6px; }
.sum-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,.18); }
.sum-row:last-child { border-bottom: none; }
.sum-row .k { font-size: 11px; color: rgba(255,255,255,.8); letter-spacing: .06em; text-transform: uppercase; font-weight: 800; flex: none; }
.sum-row .v { font-size: 13.5px; color: #fff; text-align: right; font-weight: 700; word-break: break-word; max-width: 60%; }
.sum-row .v.empty { color: rgba(255,255,255,.45); font-weight: 500; }
.lead-clinician { margin-top: auto; display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.lead-clinician .av { width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--peri-700); display: grid; place-items: center; font-weight: 800; font-size: 15px; }
.lead-clinician .n { font-weight: 800; font-size: 14px; color: #fff; }
.lead-clinician .r { font-size: 11.5px; color: rgba(255,255,255,.8); }

/* success */
#view-success { display: none; padding: 60px 40px 52px; text-align: center; }
#view-success .check { width: 80px; height: 80px; border-radius: 50%; background: var(--mint-100); border: 1px solid var(--mint-200); color: var(--mint-400); display: grid; place-items: center; margin: 0 auto 22px; }
#view-success h2 { margin: 0; font-weight: 800; font-size: 34px; letter-spacing: -.02em; line-height: 1.1; }
#view-success h2 .mark { font-weight: 800; }
#view-success p { margin: 14px auto 0; max-width: 52ch; font-size: 16px; color: var(--ink-2); line-height: 1.65; }
#view-success .ticket { margin: 28px auto 0; display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px; background: var(--peri-50); border: 1px solid var(--peri-200); font-size: 13px; color: var(--ink-2); }
#view-success .ticket strong { color: var(--peri-700); font-weight: 800; }
.what-next { margin: 32px auto 0; max-width: 520px; display: flex; flex-direction: column; gap: 10px; }
.what-next .row { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line); text-align: left; }
.what-next .row .n { width: 32px; height: 32px; border-radius: 50%; background: var(--peri-50); color: var(--peri-700); border: 1px solid var(--peri-200); display: grid; place-items: center; font-weight: 800; font-size: 14px; }
.what-next .row .txt { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.what-next .row .txt strong { color: var(--ink); font-weight: 800; }
#view-success .row-cta { margin-top: 28px; display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.view { display: none; }
.view.active { display: flex; flex-direction: column; }

@media (max-width: 980px) {
  .promise-strip { grid-template-columns: 1fr; }
  .book-shell { grid-template-columns: 1fr; }
  .book-side { order: 2; }
  .progress-block, .book-head, .book-body, .form-foot { padding-left: 24px; padding-right: 24px; }
  .form-grid.col-2 { grid-template-columns: 1fr; }
  .card-options, .card-options.col-3 { grid-template-columns: 1fr; }
  .mode-row { grid-template-columns: 1fr; }
  .time-row { grid-template-columns: repeat(3, 1fr); }
}

/* ── Floating WhatsApp ───────────────────── */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px 13px 16px; border-radius: 999px;
  background: #25D366; color: #fff; font-weight: 800; font-size: 14.5px;
  box-shadow: 0 10px 26px -8px rgba(37,211,102,.6), 0 2px 6px rgba(0,0,0,.12);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.wa-float:hover { background: #20bd5a; transform: translateY(-2px); }
.wa-float svg { width: 24px; height: 24px; flex: none; }
.wa-float .wa-pulse { position: absolute; inset: 0; border-radius: 999px; box-shadow: 0 0 0 0 rgba(37,211,102,.55); animation: waPulse 2.6s ease-out infinite; pointer-events: none; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0);} }
@media (max-width: 600px) { .wa-float { right: 14px; bottom: 14px; padding: 13px; } .wa-float .wa-label { display: none; } }

/* ── Responsive ──────────────────────────── */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .collage { margin: 0 auto; max-width: 440px; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .mint-panel { grid-template-columns: 1fr; gap: 32px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .cond-grid { grid-template-columns: 1fr 1fr; }
  .quote-feature { grid-template-columns: 1fr; gap: 28px; }
  .contact-strip { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .peri-panel, .mint-panel, .quote-feature { padding: 40px 28px; }
}
@media (max-width: 600px) {
  .block { padding: 60px 0; }
  .steps-row, .svc-grid, .cond-grid { grid-template-columns: 1fr; }
  .creds { gap: 10px 18px; }
  .creds .sep { display: none; }
}
