/* =====================================================================
   AAROHAN — style.css
   Design system: "The Sunrise Clinic"
   · Spectral (display serif) + Albert Sans (humanist sans)
   · Warm ivory ground, spruce-teal ink, terracotta/amber rising accents
   · Arch shapes, rising arcs, soft hills — the ascent made visible
   · Light default + full dark theme (html[data-theme="dark"])
   ===================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --bg:        #FAF4E9;   /* warm ivory paper */
  --bg-tint:   #F3EBDB;   /* slightly deeper section tint */
  --surface:   #FFFDF7;   /* card surface */
  --ink:       #233029;   /* deep spruce ink */
  --muted:     #5D6C62;   /* secondary text */
  --primary:   #1E5F55;   /* clinic teal */
  --primary-d: #16443D;   /* pressed teal */
  --amber:     #D98E3B;   /* rising sun */
  --rose:      #C96F5E;   /* dawn rose */
  --sun-grad:  linear-gradient(135deg, #E8A34F 0%, #D97A5A 100%);
  --line:      #E4D8C2;   /* hairlines */
  --shadow:    0 18px 50px -18px rgba(35,48,41,.22);
  --shadow-sm: 0 8px 24px -12px rgba(35,48,41,.18);
  --radius:    26px;
  --radius-sm: 16px;
  --arch:      999px 999px var(--radius-sm) var(--radius-sm);
  --serif:     "Spectral", Georgia, serif;
  --sans:      "Albert Sans", "Segoe UI", system-ui, sans-serif;
  --wrap:      1140px;
  --ease:      cubic-bezier(.22,.7,.3,1);
}

html[data-theme="dark"] {
  --bg:        #0E1713;
  --bg-tint:   #101B16;
  --surface:   #16221D;
  --ink:       #EDE4D0;
  --muted:     #9AABA0;
  --primary:   #55B8A5;
  --primary-d: #3E9C89;
  --amber:     #E8A34F;
  --rose:      #D98A6E;
  --sun-grad:  linear-gradient(135deg, #E8A34F 0%, #C96F5E 100%);
  --line:      #26352E;
  --shadow:    0 20px 50px -18px rgba(0,0,0,.55);
  --shadow-sm: 0 10px 26px -14px rgba(0,0,0,.5);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background .4s var(--ease), color .4s var(--ease);
}
img, svg { max-width: 100%; display: inline-block; vertical-align: middle; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; letter-spacing: -.01em; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber); }
ul { padding: 0; margin: 0; list-style: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--primary); color: #fff; padding: 10px 18px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px dashed var(--amber); outline-offset: 3px; border-radius: 4px; }

/* sample badge — marks placeholder content pending client confirmation */
.sample {
  display: inline-block; font: 600 10px/1 var(--sans); letter-spacing: .12em;
  text-transform: uppercase; color: #fff; background: var(--rose);
  padding: 4px 9px; border-radius: 999px; vertical-align: middle; cursor: help;
}
mark.sample { font: 600 10px/1 var(--sans); letter-spacing: .08em; padding: 3px 8px; border-radius: 999px; background: var(--rose); color: #fff; }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font: 600 15px/1 var(--sans); padding: 15px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #FDF9EE; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-d); color: #FDF9EE; box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--primary); border-color: color-mix(in srgb, var(--primary) 40%, transparent); }
.btn-ghost:hover { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 7%, transparent); color: var(--primary); }
.btn-light { background: #FDF9EE; color: #1E5F55; box-shadow: 0 14px 40px -14px rgba(0,0,0,.4); }
.btn-light:hover { background: #fff; color: #16443D; }
.btn-outline { border-color: rgba(255,253,240,.55); color: #FDF9EE; }
.btn-outline:hover { border-color: #FDF9EE; background: rgba(255,253,240,.1); color: #FDF9EE; }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-wide { width: 100%; justify-content: center; }

/* ---------- 4. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 22px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); margin-right: auto; }
.brand:hover { color: var(--ink); }
.brand-glyph { color: var(--amber); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font: 600 20px/1 var(--serif); letter-spacing: .01em; }
.brand-text small { font: 400 11.5px/1.3 var(--sans); color: var(--muted); }
.main-nav { display: flex; gap: 4px; }
.nav-link {
  position: relative; font: 500 14.5px/1 var(--sans); color: var(--muted);
  padding: 10px 13px; border-radius: 999px;
}
.nav-link::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--sun-grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: color-mix(in srgb, var(--primary) 8%, transparent); color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary) 22%, transparent); cursor: pointer;
  transition: transform .3s var(--ease), background .3s;
}
.theme-toggle:hover { transform: rotate(20deg); }
.ic-moon { display: none; }
html[data-theme="dark"] .ic-sun { display: none; }
html[data-theme="dark"] .ic-moon { display: block; }
.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. Router: views ---------- */
.view { display: none; animation: viewIn .55s var(--ease); }
.view.active { display: block; }
@keyframes viewIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- 6. Home hero — rising arcs over warm sky ---------- */
.hero { position: relative; overflow: hidden; padding: 84px 0 0; background:
  radial-gradient(120% 90% at 85% -10%, color-mix(in srgb, var(--amber) 16%, transparent), transparent 60%),
  radial-gradient(90% 70% at 10% 110%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 60%),
  var(--bg);
}
.hero-sky { position: absolute; inset: 0; pointer-events: none; }
.arc { position: absolute; border: 1.5px solid color-mix(in srgb, var(--amber) 34%, transparent); border-radius: 50%; }
.arc-1 { width: 560px; height: 560px; right: -180px; top: -260px; animation: bob 9s ease-in-out infinite; }
.arc-2 { width: 760px; height: 760px; right: -280px; top: -360px; border-color: color-mix(in srgb, var(--amber) 20%, transparent); animation: bob 11s ease-in-out infinite reverse; }
.arc-3 { width: 320px; height: 320px; left: -140px; top: 40%; border-color: color-mix(in srgb, var(--primary) 22%, transparent); animation: bob 13s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; padding-bottom: 96px; }
.eyebrow { display: flex; align-items: center; gap: 10px; font: 600 12.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun-grad); box-shadow: 0 0 0 4px color-mix(in srgb, var(--amber) 22%, transparent); }
.hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.7rem); font-weight: 400; }
.hero h1 em { font-style: italic; background: var(--sun-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 34em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero-trust li { display: flex; flex-direction: column; gap: 1px; }
.hero-trust strong { font: 600 15px/1.2 var(--sans); color: var(--ink); }
.hero-trust span { font: 400 12.5px/1.3 var(--sans); color: var(--muted); }
.src { font-size: 11.5px; text-decoration: underline; text-underline-offset: 2px; }

/* arch portrait composition */
.hero-art { position: relative; display: flex; justify-content: center; }
.arch-frame {
  position: relative; width: min(340px, 78vw); aspect-ratio: 4/4.6;
  border-radius: var(--arch); background:
    radial-gradient(120% 100% at 70% 0%, color-mix(in srgb, var(--amber) 30%, transparent), transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, var(--primary) 14%, var(--bg)), var(--bg));
  border: 1.5px solid color-mix(in srgb, var(--amber) 40%, transparent);
  box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.arch-inner { text-align: center; padding: 20px; }
.arch-mono { display: block; font: 400 clamp(3.2rem, 9vw, 4.6rem)/1 var(--serif); color: var(--primary); }
.arch-mono span { color: var(--amber); font-style: italic; margin: 0 .06em; }
.arch-inner p { font: 500 17px/1.2 var(--serif); margin: 14px 0 2px; color: var(--ink); }
.arch-inner small { font: 400 11.5px/1.3 var(--sans); color: var(--muted); }
.arch-sun {
  position: absolute; left: 50%; bottom: -34px; translate: -50% 0; width: 96px; height: 48px;
  background: var(--sun-grad); border-radius: 999px 999px 0 0;
  box-shadow: 0 -8px 40px -6px color-mix(in srgb, var(--amber) 60%, transparent);
}
.float-chip {
  position: absolute; display: flex; gap: 10px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 12px 16px; box-shadow: var(--shadow-sm); max-width: 240px;
  animation: bob 8s ease-in-out infinite;
}
.float-chip svg { color: var(--amber); flex: none; }
.float-chip strong { display: block; font: 600 13px/1.2 var(--sans); }
.float-chip span { font: 400 11.5px/1.3 var(--sans); color: var(--muted); }
.chip-1 { left: -84px; top: 12%; animation-delay: -2s; }
.chip-2 { right: -84px; bottom: 8%; animation-delay: -5s; }
.hero-hill {
  height: 90px; margin-top: -60px; background: var(--bg);
  border-radius: 100% 100% 0 0 / 160px 160px 0 0; position: relative; z-index: 1;
}

/* ---------- 7. Ribbon ---------- */
.ribbon { background: var(--primary); color: #F3EFE2; padding: 20px 0; }
.ribbon a { color: inherit; }
.ribbon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ribbon-item { display: flex; flex-direction: column; gap: 2px; border-left: 2px solid rgba(243,239,226,.25); padding-left: 16px; }
.ribbon-item strong { font: 500 19px/1.1 var(--serif); }
.ribbon-item span { font: 400 12.5px/1.35 var(--sans); opacity: .85; }

/* ---------- 8. Sections ---------- */
.sect { padding: 84px 0; }
.sect-tint { background: var(--bg-tint); }
.kicker { font: 600 12.5px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 22em; }
.sub { color: var(--muted); max-width: 46em; margin-bottom: 40px; }
.center-row { display: flex; justify-content: center; margin-top: 42px; }
.tiny-note { font-size: 12.5px; color: var(--muted); max-width: 52em; }

/* audience cards */
.aud-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.aud-card {
  display: flex; flex-direction: column; gap: 8px; text-align: left;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.aud-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--amber) 55%, transparent); color: var(--ink); }
.aud-ico {
  width: 46px; height: 46px; border-radius: 14px 14px 14px 4px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--primary) 10%, transparent); color: var(--primary); margin-bottom: 6px;
}
.aud-card strong { font: 500 19px/1.2 var(--serif); }
.aud-card span { font: 400 13.5px/1.5 var(--sans); color: var(--muted); flex: 1; }
.aud-go { font: 600 12.5px/1 var(--sans); color: var(--amber); letter-spacing: .04em; }

/* ascent steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px 26px; overflow: hidden;
}
.step-no { font: 300 44px/1 var(--serif); color: color-mix(in srgb, var(--amber) 75%, transparent); }
.step h3 { font-size: 1.35rem; margin: 10px 0 8px; }
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }
.step-hill {
  position: absolute; right: -30px; bottom: -42px; width: 130px; height: 70px;
  background: radial-gradient(60% 100% at 50% 100%, color-mix(in srgb, var(--amber) 25%, transparent), transparent 70%);
  border-radius: 100% 100% 0 0;
}

/* clinic glimpse */
.clinic-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.clinic-window {
  border-radius: var(--radius); background: var(--primary); padding: 18px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.cw-bar { display: block; height: 8px; border-radius: 999px; background: rgba(250,244,233,.28); margin-bottom: 10px; }
.cw-bar:nth-child(2) { width: 70%; }
.cw-bar:nth-child(3) { width: 45%; margin-bottom: 18px; }
.cw-scene {
  position: relative; border-radius: 18px 18px var(--radius-sm) var(--radius-sm);
  height: 300px; overflow: hidden; background:
  radial-gradient(90% 80% at 70% 20%, color-mix(in srgb, var(--amber) 45%, transparent), transparent 60%),
  linear-gradient(180deg, color-mix(in srgb, var(--primary) 60%, #0E1713), color-mix(in srgb, var(--primary) 20%, #0E1713));
}
.cw-sun {
  position: absolute; right: 22%; bottom: 34%; width: 74px; height: 74px; border-radius: 50%;
  background: #F5C97B; box-shadow: 0 0 60px 18px rgba(245,201,123,.45);
  animation: cwrise 7s ease-in-out infinite alternate;
}
@keyframes cwrise { from { transform: translateY(16px); } to { transform: translateY(-10px); } }
.cw-hills {
  position: absolute; left: -10%; right: -10%; bottom: -30px; height: 120px;
  background: color-mix(in srgb, #0E1713 82%, var(--primary));
  border-radius: 100% 100% 0 0 / 90px 90px 0 0;
}
.clinic-copy .sub { margin-bottom: 26px; }
.clinic-facts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.clinic-facts li {
  display: grid; grid-template-columns: 130px 1fr; gap: 12px; align-items: baseline;
  border-bottom: 1px dashed var(--line); padding-bottom: 12px;
}
.clinic-facts span { font: 600 12px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.clinic-facts strong { font: 500 15.5px/1.4 var(--sans); }

/* story cards */
.story-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.story-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px 22px; box-shadow: var(--shadow-sm);
}
.story-card > p { font: 400 17px/1.5 var(--serif); font-style: italic; color: var(--ink); }
.story-card .sample { position: absolute; top: 14px; right: 14px; }
.story-card footer { margin-top: 12px; }
.story-card cite { font: 500 13px/1.4 var(--sans); color: var(--muted); font-style: normal; }
.story-card cite em { opacity: .65; }
.sample-card { border-color: color-mix(in srgb, var(--rose) 45%, var(--line)); }

/* CTA band */
.cta-band { position: relative; background: var(--primary); color: #F6F1E4; padding: 92px 0 100px; overflow: hidden; }
.cta-band a { color: #F6F1E4; }
.cta-inner { position: relative; text-align: center; max-width: 720px; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 400; }
.cta-inner p { color: rgba(246,241,228,.8); }
.cta-inner .hero-cta { justify-content: center; margin-bottom: 0; }
.cta-sun {
  position: absolute; left: 50%; top: -110px; translate: -50% 0; width: 380px; height: 190px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(245,201,123,.4), transparent 70%);
  border-radius: 999px 999px 0 0;
}

/* ---------- 9. Interior pages ---------- */
.page-head {
  padding: 74px 0 40px; background:
  radial-gradient(80% 90% at 90% -20%, color-mix(in srgb, var(--amber) 14%, transparent), transparent 60%), var(--bg);
  border-bottom: 1px solid var(--line);
}
.h1 { font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 400; max-width: 18em; }
.h1 em { font-style: italic; color: var(--amber); }
.page-lead { color: var(--muted); font-size: 1.06rem; max-width: 44em; }

/* about */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; padding: 64px 24px 84px; }
.about-narr .drop::first-letter {
  float: left; font: 400 3.6em/0.85 var(--serif); color: var(--amber);
  padding: 6px 10px 0 0;
}
.about-narr p { margin-bottom: 1.15em; }
.pullquote { margin: 36px 0 0; border-left: 3px solid var(--amber); padding: 6px 0 6px 22px; }
.pullquote blockquote { margin: 0; font: 400 1.25rem/1.45 var(--serif); font-style: italic; }
.pullquote figcaption { margin-top: 10px; font: 500 13px/1 var(--sans); color: var(--muted); }
.ledger { background: var(--bg-tint); border-radius: var(--radius); padding: 30px 26px; border: 1px solid var(--line); align-self: start; position: sticky; top: 100px; }
.ledger-h { font: 600 12.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--primary); margin: 0 0 14px; }
.ledger-list { margin-bottom: 26px; }
.ledger-list li { display: grid; gap: 2px; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.ledger-list span { font: 500 11.5px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.ledger-list strong { font: 500 14.5px/1.4 var(--sans); }
.link-list li { padding: 9px 0; border-bottom: 1px dashed var(--line); }
.link-list a { font: 600 14px/1.3 var(--sans); }
.link-list small { display: block; font: 400 12px/1.3 var(--sans); color: var(--muted); margin-top: 1px; }

/* approach */
.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 56px 24px 20px; }
.method-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.method-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.method-card header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.method-tag {
  font: 700 12px/1 var(--sans); letter-spacing: .08em; color: #FDF9EE;
  background: var(--primary); border-radius: 10px; padding: 8px 11px;
}
.method-card:nth-child(2) .method-tag { background: var(--rose); }
.method-card:nth-child(3) .method-tag { background: var(--amber); }
.method-card:nth-child(4) .method-tag { background: var(--primary-d); }
.method-card h2 { font-size: 1.3rem; margin: 0; }
.method-card p { color: var(--muted); font-size: 14.5px; }
.method-card footer { font: 600 12px/1.4 var(--sans); color: var(--amber); letter-spacing: .03em; }
.first-session { padding: 30px 24px 80px; max-width: 860px; }
.first-session h2 { font-size: 1.55rem; }
.fs-list { counter-reset: fs; display: flex; flex-direction: column; gap: 16px; margin: 26px 0; }
.fs-list li { counter-increment: fs; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.fs-list li::before {
  content: counter(fs, decimal-leading-zero); font: 300 26px/1 var(--serif); color: var(--amber);
  border-bottom: 2px solid color-mix(in srgb, var(--amber) 45%, transparent); padding-bottom: 4px;
}
.fs-list strong { display: block; font: 600 15.5px/1.3 var(--sans); margin-bottom: 3px; }
.fs-list span { color: var(--muted); font-size: 14.5px; }
.conf-note { font-size: 13px; color: var(--muted); background: var(--bg-tint); border-radius: var(--radius-sm); padding: 16px 18px; }

/* services — audience switcher */
.aud-switch {
  display: inline-flex; flex-wrap: wrap; gap: 6px; background: var(--bg-tint);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px; margin: 8px 0 34px;
}
.aud-tab {
  font: 600 14px/1 var(--sans); padding: 11px 18px; border-radius: 999px; border: 0;
  background: transparent; color: var(--muted); cursor: pointer;
  transition: background .3s var(--ease), color .3s, box-shadow .3s;
}
.aud-tab:hover { color: var(--ink); }
.aud-tab[aria-selected="true"] { background: var(--primary); color: #FDF9EE; box-shadow: var(--shadow-sm); }
.aud-panel { animation: viewIn .45s var(--ease); }
.aud-intro { font: 400 1.06rem/1.5 var(--serif); font-style: italic; color: var(--muted); max-width: 40em; margin-bottom: 22px; }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding-bottom: 8px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 20px; transition: border-color .3s, transform .3s var(--ease);
}
.svc-card:hover { border-color: color-mix(in srgb, var(--amber) 50%, transparent); transform: translateY(-3px); }
.svc-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.svc-card p { font-size: 13.8px; color: var(--muted); margin: 0; }

/* fee card */
.fee-card {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; margin-top: 42px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.fee-left { padding: 34px 30px; background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 10%, var(--surface)), var(--surface)); border-right: 1px solid var(--line); }
.fee-left h2 { font-size: 1.25rem; }
.fee-amount { font: 400 2.6rem/1 var(--serif); color: var(--primary); margin: 14px 0 6px; }
.fee-amount span { font: 400 14px/1 var(--sans); color: var(--muted); margin-left: 8px; }
.fee-src { font-size: 12.5px; color: var(--muted); }
.fee-right { padding: 30px; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.mode-list { display: flex; flex-direction: column; gap: 10px; }
.mode-list li { display: grid; grid-template-columns: 90px 1fr; gap: 12px; align-items: baseline; border-bottom: 1px dashed var(--line); padding-bottom: 10px; }
.mode-list strong { font: 600 13.5px/1 var(--sans); }
.mode-list span { font: 400 13.5px/1.4 var(--sans); color: var(--muted); }

/* stories */
.verify-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 50px 0 26px; padding: 0 24px; }
.verify-card {
  display: flex; flex-direction: column; gap: 6px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 22px 20px; color: var(--ink);
  transition: transform .3s var(--ease), border-color .3s;
}
.verify-card:hover { transform: translateY(-4px); border-color: var(--primary); color: var(--ink); }
.verify-card strong { font: 500 19px/1 var(--serif); }
.verify-card span { font: 400 13px/1.45 var(--sans); color: var(--muted); }
.verify-card em { font: 600 12px/1 var(--sans); color: var(--amber); font-style: normal; }
.stories .story-strip { padding: 0 24px; }
.stories .tiny-note { padding: 18px 24px 60px; margin: 0 auto; }

/* FAQ */
.faq-wrap { display: flex; flex-direction: column; gap: 12px; padding: 50px 24px 84px; max-width: 860px; }
.faq {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 22px; transition: border-color .3s;
}
.faq[open] { border-color: color-mix(in srgb, var(--amber) 50%, transparent); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 18px;
  align-items: center; padding: 18px 0; font: 600 16px/1.35 var(--sans);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex: none; color: var(--amber); transition: transform .35s var(--ease); }
.faq[open] summary svg { transform: rotate(45deg); }
.faq p { color: var(--muted); font-size: 14.8px; margin: 0 0 20px; }

/* visit */
.visit-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; padding: 56px 24px 90px; }
.book-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font: 600 12.5px/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font: 400 15px/1.4 var(--sans); color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 13px; padding: 13px 15px;
  transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 14%, transparent);
}
.field input.invalid { border-color: var(--rose); }
.form-note { font-size: 12px; color: var(--muted); margin: 10px 0 0; }
.visit-side { display: flex; flex-direction: column; gap: 20px; }
.map-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-card iframe { display: block; width: 100%; height: 250px; border: 0; filter: saturate(.9); }
.map-foot { padding: 16px 20px; display: flex; flex-direction: column; gap: 3px; }
.map-foot strong { font: 600 15px/1.2 var(--sans); }
.map-foot span { font: 400 13px/1.4 var(--sans); color: var(--muted); }
.map-foot a { font: 600 12.5px/1 var(--sans); margin-top: 5px; }
.hours-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px; box-shadow: var(--shadow-sm); }
.hours-card h2 { font-size: 1.05rem; }
.hours-card ul li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font: 400 14px/1.4 var(--sans); }
.hours-card ul li:last-child { border-bottom: 0; }
.hours-card ul span { color: var(--muted); }
.tel {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 8px;
  font: 600 15px/1 var(--sans); color: var(--primary);
}
.crisis-card { background: color-mix(in srgb, var(--rose) 10%, var(--surface)); border: 1.5px solid color-mix(in srgb, var(--rose) 40%, transparent); border-radius: var(--radius); padding: 22px; }
.crisis-card h2 { font-size: 1.05rem; }
.crisis-card > p { font-size: 13.5px; color: var(--muted); }
.crisis-card ul { display: flex; flex-direction: column; gap: 9px; margin-top: 8px; }
.crisis-card li { display: grid; grid-template-columns: 110px auto 1fr; gap: 10px; align-items: baseline; }
.crisis-card li strong { font: 600 13px/1 var(--sans); color: var(--ink); }
.crisis-card li a { font: 700 14px/1 var(--sans); color: var(--rose); }
.crisis-card li span { font: 400 11.5px/1.2 var(--sans); color: var(--muted); text-align: right; }

/* ---------- 10. Footer ---------- */
.site-footer { background: color-mix(in srgb, var(--primary-d) 92%, #000); color: #D9D2BE; padding: 56px 0 30px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #F3EFE2; }
.footer-brand .brand-glyph { color: var(--amber); }
.footer-brand strong { display: block; font: 600 19px/1.1 var(--serif); }
.footer-brand span { font: 400 12px/1.2 var(--sans); opacity: .75; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 22px; }
.footer-nav a { color: #D9D2BE; font: 500 14px/1 var(--sans); }
.footer-nav a:hover { color: var(--amber); }
.footer-meta { display: flex; flex-direction: column; gap: 6px; text-align: right; font: 400 12.5px/1.5 var(--sans); opacity: .8; }
.footer-year { font: 400 12.5px/1 var(--sans); opacity: .6; margin: 34px auto 0; }

/* ---------- 11. Toast + reveal ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; translate: -50% 20px; z-index: 300;
  background: var(--ink); color: var(--bg); font: 600 14px/1.3 var(--sans);
  padding: 14px 22px; border-radius: 999px; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transition: opacity .35s, translate .35s var(--ease);
  max-width: min(90vw, 420px); text-align: center;
}
.toast.show { opacity: 1; translate: -50% 0; }
/* reveal — gated behind .js so content never hides without JavaScript */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- 12. Responsive ---------- */
@media (max-width: 1060px) {
  .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .verify-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .ledger { position: static; }
  .chip-1 { left: -20px; } .chip-2 { right: -20px; }
}
@media (max-width: 900px) {
  .main-nav {
    position: fixed; top: 78px; left: 14px; right: 14px; z-index: 99;
    flex-direction: column; gap: 4px; padding: 14px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
    box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity .3s, transform .3s var(--ease);
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-link { padding: 13px 14px; font-size: 15px; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 10px; padding-bottom: 80px; }
  .hero-art { order: -1; }
  .arch-frame { width: min(250px, 60vw); }
  .steps, .method-grid, .svc-grid, .clinic-grid { grid-template-columns: 1fr; }
  .ribbon-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid, .fee-card { grid-template-columns: 1fr; }
  .fee-left { border-right: 0; border-bottom: 1px solid var(--line); }
  .book-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-meta { text-align: left; }
}
@media (max-width: 600px) {
  .brand-text small { display: none; }
  .aud-grid { grid-template-columns: 1fr; }
  .chip-1, .chip-2 { display: none; }
  .hero h1 { font-size: clamp(2rem, 8.6vw, 2.5rem); }
  .crisis-card li { grid-template-columns: 105px auto; }
  .crisis-card li span { grid-column: 1 / -1; text-align: left; }
  .cta-band { padding: 72px 0 80px; }
}

/* ---------- 13. Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 13. Photography (real photos, mood visuals) ----------
   Added after the photo integration pass: framed imagery kept in the
   clinic's visual voice — arch tops, warm borders, serif captions.   */

/* clinic section photo (replaces the old CSS-art window) */
.clinic-photo { margin: 0; }
.clinic-photo .ph-frame {
  border-radius: 999px 999px var(--radius-sm) var(--radius-sm);
  padding: 14px; background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.clinic-photo img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 1000/1180; object-fit: cover; object-position: 72% center;
  border-radius: 999px 999px calc(var(--radius-sm) - 4px) calc(var(--radius-sm) - 4px);
}
.clinic-photo figcaption {
  margin-top: 12px; text-align: center;
  font: 400 14px/1.5 var(--serif); font-style: italic; color: var(--muted);
}
.clinic-photo figcaption span { color: var(--primary); }

/* about page photo band — real moments from her own site */
.photo-band {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  padding: 8px 24px 72px;
}
.pb-item {
  margin: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pb-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pb-item img {height: auto; 
  display: block; width: 100%; height: auto;
  aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-sm);
}
.pb-item figcaption {
  display: flex; flex-direction: column; gap: 2px; padding: 12px 6px 4px;
}
.pb-item figcaption strong { font: 500 15.5px/1.3 var(--serif); color: var(--ink); }
.pb-item figcaption span { font: 400 12.5px/1.5 var(--sans); color: var(--muted); }

/* approach page wide band */
.approach-band {
  margin: 44px 0 0; position: relative; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.approach-band img { display: block; width: 100%; height: clamp(220px, 34vw, 420px); object-fit: cover; }
.approach-band figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 26px 18px;
  background: linear-gradient(transparent, rgba(14,23,19,.72));
  color: #F6F1E4; font: 400 14.5px/1.5 var(--serif); font-style: italic;
}

/* illustrative-image marker (quiet, non-badge) */
.smp {
  font-style: normal; font-size: .82em; opacity: .75;
  border: 1px dashed currentColor; border-radius: 999px; padding: 0 7px; margin-left: 6px;
}

@media (max-width: 1020px) {
  .photo-band { grid-template-columns: 1fr 1fr; }
  .photo-band .pb-item:last-child { grid-column: 1 / -1; }
  .clinic-photo .ph-frame { max-width: 380px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .photo-band { grid-template-columns: 1fr; padding: 8px 0 56px; }
}


/* ---------- 14. Hero arch portrait (real photo pass) ----------
   Her own workshop photograph now leads the page, framed in the arch. */
.arch-photo { margin: 0; position: relative; }
.arch-photo .arch-inner {
  padding: 0; border-radius: 999px 999px var(--radius-sm) var(--radius-sm);
  overflow: hidden; border: none; background: none;
}
.arch-photo img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 1000/1180; object-fit: cover; object-position: 50% 22%;
}
.arch-photo figcaption {
  margin-top: 10px; text-align: center;
  font: 400 13px/1.5 var(--serif); font-style: italic; color: var(--muted);
}
.arch-photo figcaption .src { font-style: normal; color: var(--primary); }

/* —— mobile tap-target patch (appended by nanonetes mobile pass) —— */
@media (max-width: 720px) {
  .icon-btn,
  [class*="icon-btn"],
  [class*="theme-toggle"],
  button[class*="toggle"] {
    min-width: 44px;
    min-height: 44px;
  }
  nav a,
  header nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-block: 8px;
  }
  a[href*="wa.me"],
  a[href*="whatsapp"],
  a[class*="book"],
  button[class*="book"] {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
