/* ============================================================
   Finding Balance Coaching — design system
   Sage-led "Sanctuary" palette (A) + Twilight accents (C).
   Density = 2 (AIRY). Motion = 3 (subtle). Rounded, text-driven.
   Author: Safina Studio. Do not redefine in page files.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* ink + paper (warm, never pure black/white) */
  --soft-black: #1c1b17;
  --ink:        #3a352c;
  --muted:      #6b6457;
  --cream:      #faf9f6;   /* page bg — clean off-white */
  --paper:      #ffffff;   /* white cards */
  --hairline:   #e8e7e2;

  /* sage (primary) */
  --sage:        #4f5d43;  /* primary buttons, links, key headings */
  --sage-deep:   #3a4631;
  --sage-muted:  #8a9a7b;  /* DECORATIVE ONLY — never body text */
  --sage-wash:   #e4e6d8;  /* section tint */

  /* warm brown (secondary) */
  --brown:       #8b6f4e;
  --clay:        #f1f0ec;  /* retired beige -> light neutral */

  /* accents (the "slightly bold" — spend sparingly) */
  --magenta:     #8e5468;  /* primary CTA fill */
  --magenta-ink: #6e3d4f;
  --blue:        #44606f;  /* link underlines, highlights */

  /* dark scene (cinematic) */
  --dark-bg:      #232620;
  --dark-surface: #2a2823;

  /* type */
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:  "Geist", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono:  "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* fluid type scale (density 2 = generous) */
  --t-display: clamp(2.75rem, 6.2vw + 0.5rem, 5.5rem);
  --t-h1:      clamp(2.25rem, 4.4vw + 0.6rem, 4rem);
  --t-h2:      clamp(1.85rem, 2.6vw + 0.6rem, 3rem);
  --t-h3:      clamp(1.4rem, 1.1vw + 0.9rem, 2rem);
  --t-lead:    clamp(1.2rem, 0.7vw + 0.9rem, 1.5rem);
  --t-body:    clamp(1.0625rem, 0.25vw + 0.95rem, 1.1875rem);
  --t-small:   0.9375rem;
  --t-label:   0.75rem;

  /* spacing — AIRY (density 2) */
  --space-section: clamp(5rem, 10vw, 11rem);
  --space-block:   clamp(2.5rem, 5vw, 5rem);
  --container:      1200px;
  --container-narrow: 760px;
  --measure:        70ch;

  /* radii (rounded, per brief) */
  --r-sm: 10px; --r-md: 18px; --r-lg: 26px; --r-pill: 999px;

  /* shadow (soft, warm) */
  --shadow-sm: 0 1px 2px rgba(28,27,23,.04), 0 2px 8px rgba(28,27,23,.05);
  --shadow-md: 0 6px 18px rgba(28,27,23,.07), 0 2px 6px rgba(28,27,23,.05);
  --shadow-lg: 0 18px 50px rgba(28,27,23,.12);

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  620ms;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* warm paper grain — site-wide, very subtle */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.045; mix-blend-mode: multiply;
}

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); position: relative; z-index: 2; }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--space-section); position: relative; z-index: 2; }
.section--tint  { background: var(--sage-wash); }
.section--clay  { background: var(--clay); }
.section--paper { background: var(--paper); }
.section--dark  { background: var(--dark-bg); color: var(--cream); }
.section--dark a:not(.btn) { color: var(--cream); }
.stack > * + * { margin-top: 1rem; }
.measure { max-width: var(--measure); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.015em; color: var(--soft-black); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.display { font-size: var(--t-display); line-height: 1.02; letter-spacing: -0.03em; }
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); letter-spacing: -0.01em; }
p { max-width: var(--measure); }
.lead { font-size: var(--t-lead); line-height: 1.55; color: var(--muted); }
.serif-italic { font-family: var(--font-serif); font-style: italic; }
.eyebrow {
  font-family: var(--font-mono); font-size: var(--t-label); text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--sage); font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: 0.6; }
.section--dark .eyebrow { color: var(--sage-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans); font-weight: 500; font-size: 1rem;
  padding: 0.95rem 1.6rem; border-radius: var(--r-pill);
  transition: transform .35s var(--ease), background-color .3s ease, color .3s ease, box-shadow .3s ease;
  will-change: transform;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--magenta); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--magenta-ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--sage { background: var(--sage); color: var(--cream); }
.btn--sage:hover { background: var(--sage-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--soft-black); border: 1px solid var(--hairline); }
.btn--ghost:hover { border-color: var(--sage); color: var(--sage); }
.btn--on-dark { background: var(--cream); color: var(--soft-black); }
.btn--on-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.text-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 500; color: var(--soft-black); border-bottom: 1px solid var(--blue); padding-bottom: 2px; transition: color .25s ease; }
.text-link:hover { color: var(--blue); }

/* ---------- Section head ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--muted); font-size: var(--t-lead); }

/* ---------- Reveal motion ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); will-change: transform, opacity; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,242,234,0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-color: var(--hairline); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.1rem; }
.brand { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand .name { font-family: var(--font-serif); font-weight: 500; font-size: 1.2rem; letter-spacing: -0.01em; color: var(--soft-black); }
.brand .sub  { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.95rem; color: var(--ink); position: relative; padding-block: 0.3rem; transition: color .25s ease; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--sage); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--sage); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: inline-flex; }
.nav-toggle { display: none; padding: 0.5rem; }

/* ---------- Hero (editorial split) ---------- */
.hero { padding-block: clamp(4rem, 9vw, 8rem); position: relative; overflow: hidden; }
.hero::before { /* ambient warm wash */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 90% at 85% 10%, var(--sage-wash) 0%, transparent 55%),
              radial-gradient(90% 70% at 0% 100%, var(--clay) 0%, transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; position: relative; z-index: 2; }
.hero-copy .eyebrow { margin-bottom: 1.6rem; }
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-copy h1 .accent { font-style: italic; color: var(--sage); }
.hero-copy .lead { margin-bottom: 2rem; }
.hero-portrait { position: relative; }
.hero-portrait .frame {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--sage-muted), var(--brown));
  box-shadow: var(--shadow-lg);
}
.hero-portrait .frame img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 22%;
}
/* gentle warm vignette so any photo blends with the palette + keeps the badge legible */
.hero-portrait .frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(28,27,23,0) 58%, rgba(28,27,23,0.22) 100%);
}
.hero-portrait .frame .ph {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 2rem;
  color: rgba(255,255,255,0.92); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-portrait .badge {
  position: absolute; left: -18px; bottom: 28px; background: var(--paper); color: var(--soft-black);
  padding: 0.7rem 1.1rem; border-radius: var(--r-md); box-shadow: var(--shadow-md); font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.hero-portrait .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }

/* ---------- Value strip ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.value .v-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--soft-black); margin-bottom: 0.4rem; }
.value .v-body { color: var(--muted); font-size: 0.98rem; }
.value .v-mark { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--sage-muted); display: grid; place-items: center; color: var(--sage); margin-bottom: 1rem; }

/* ---------- Service / pricing cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
.card {
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-muted); }
.card .tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.9rem; }
.card h3 { margin-bottom: 0.6rem; }
.card .blurb { color: var(--muted); margin-bottom: 1.4rem; }
.card ul.feat { display: grid; gap: 0.55rem; margin-bottom: 1.6rem; }
.card ul.feat li { position: relative; padding-left: 1.5rem; color: var(--ink); font-size: 0.96rem; }
.card ul.feat li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--sage-muted); }
.card .price { font-family: var(--font-serif); font-size: 1.8rem; color: var(--soft-black); margin-top: auto; margin-bottom: 0.3rem; }
.card .price .per { font-family: var(--font-sans); font-size: 0.85rem; color: var(--muted); }
.card .price-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.4rem; }
.card .availability { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--sage); background: var(--sage-wash); padding: 0.4rem 0.8rem; border-radius: var(--r-pill); margin-bottom: 1.4rem; }
.card .availability .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.card .placeholder-flag { font-size: 0.72rem; font-family: var(--font-mono); color: var(--brown); background: var(--clay); padding: 0.3rem 0.6rem; border-radius: var(--r-sm); margin-bottom: 1.2rem; display: inline-block; }

/* ---------- Comparison table ---------- */
.compare { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.compare th, .compare td { text-align: left; padding: 1.1rem 1.2rem; border-bottom: 1px solid var(--hairline); }
.compare th { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.compare td:first-child { font-family: var(--font-serif); color: var(--soft-black); }
.table-wrap { overflow-x: auto; border: 1px solid var(--hairline); border-radius: var(--r-lg); background: var(--paper); }

/* ---------- Coaching vs therapy ---------- */
.cvt { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.cvt-col { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: clamp(1.75rem, 3vw, 2.5rem); }
.cvt-col h3 { margin-bottom: 0.8rem; }
.cvt-col .label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.6rem; }
.cvt-col p { color: var(--muted); }
.cvt-note { margin-top: 2rem; padding: 1.4rem 1.6rem; background: var(--sage-wash); border-radius: var(--r-md); font-size: 0.95rem; color: var(--ink); }

/* ---------- Logo strip ---------- */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.5rem, 4vw, 3rem) clamp(2rem, 5vw, 3.5rem); justify-content: center; }
.logo-strip .org { font-family: var(--font-serif); font-size: 1.05rem; color: var(--muted); opacity: 0.85; letter-spacing: 0.01em; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
.quote { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: clamp(1.75rem, 3vw, 2.4rem); }
.quote blockquote { font-family: var(--font-serif); font-size: 1.2rem; line-height: 1.5; color: var(--soft-black); margin-bottom: 1.2rem; }
.quote .att { font-size: 0.9rem; color: var(--muted); }
.quote .ph-flag { font-family: var(--font-mono); font-size: 0.72rem; color: var(--brown); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; text-align: left; padding: 1.5rem 0; font-family: var(--font-serif); font-size: 1.18rem; color: var(--soft-black); }
.faq-q .icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .icon::before, .faq-q .icon::after { content: ""; position: absolute; background: var(--sage); transition: transform .35s var(--ease); }
.faq-q .icon::before { left: 50%; top: 50%; width: 12px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-q .icon::after  { left: 50%; top: 50%; width: 1.5px; height: 12px; transform: translate(-50%,-50%); }
.faq-item.open .faq-q .icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 0 1.5rem; color: var(--muted); max-width: 70ch; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .lead { margin-inline: auto; margin-bottom: 2rem; }
.cta-band .reassure { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-top: 1.8rem; font-size: 0.88rem; color: var(--muted); }
.cta-band .reassure span { display: inline-flex; align-items: center; gap: 0.5rem; }
.cta-band .reassure .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage-muted); }
.section--dark .cta-band .lead { color: rgba(245,242,234,0.78); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.2rem; max-width: 560px; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink); background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--r-md); padding: 0.85rem 1rem; transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(79,93,67,0.14); }
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--soft-black); color: rgba(245,242,234,0.8); padding-block: clamp(3rem, 6vw, 5rem) 2rem; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-grid > * { min-width: 0; }        /* grid items can shrink — prevents mobile blow-out */
.site-footer { overflow-x: hidden; }       /* footer never contributes to page horizontal scroll */
.footer-brand { max-width: 100%; }
.footer-social { flex-wrap: wrap; }
/* force footer columns to shrink below content min-width on small screens (the canonical grid fix) */
@media (max-width: 960px) { .footer-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
@media (max-width: 760px) { .footer-grid { grid-template-columns: minmax(0,1fr); } }
.footer-grid h4 { color: var(--cream); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 500; }
.footer-grid ul { display: grid; gap: 0.6rem; }
.footer-grid a { color: rgba(245,242,234,0.7); font-size: 0.95rem; transition: color .25s ease; }
.footer-grid a:hover { color: var(--cream); }
.footer-brand .name { font-family: var(--font-serif); font-size: 1.3rem; color: var(--cream); display: block; margin-bottom: 0.8rem; }
.footer-brand p { color: rgba(245,242,234,0.6); font-size: 0.92rem; max-width: 34ch; }
.footer-contact li { display: flex; gap: 0.6rem; color: rgba(245,242,234,0.7); font-size: 0.95rem; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.2rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(245,242,234,0.2); display: grid; place-items: center; transition: border-color .25s, background .25s; }
.footer-social a:hover { border-color: var(--sage-muted); background: rgba(138,154,123,0.12); }
.footer-bottom { border-top: 1px solid rgba(245,242,234,0.12); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.85rem; color: rgba(245,242,234,0.5); }

/* ---------- Sticky mobile book bar ---------- */
.book-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom)); background: rgba(245,242,234,0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--hairline); }
.book-bar .btn { width: 100%; justify-content: center; }

/* ---------- Misc helpers ---------- */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .eyebrow { justify-content: center; }
.divider { height: 1px; background: var(--hairline); border: 0; }
.note-flag { font-family: var(--font-mono); font-size: 0.74rem; color: var(--brown); background: var(--clay); padding: 0.35rem 0.7rem; border-radius: var(--r-sm); display: inline-block; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-portrait { max-width: 440px; }
  .values, .cards, .quotes, .cvt, .split-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; }
  .nav-cta .btn-label { display: none; }
  /* mobile menu */
  .mobile-menu { position: fixed; inset: 0; z-index: 70; background: var(--cream); transform: translateY(-100%); transition: transform .45s var(--ease); display: flex; flex-direction: column; padding: 1.5rem clamp(1.25rem,5vw,3rem); }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu .close { align-self: flex-end; font-size: 0.9rem; color: var(--muted); padding: 0.5rem; }
  .mobile-menu nav { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; }
  .mobile-menu nav a { font-family: var(--font-serif); font-size: 1.7rem; color: var(--soft-black); padding: 0.5rem 0; border-bottom: 1px solid var(--hairline); }
  .mobile-menu .btn { margin-top: 1.6rem; justify-content: center; }
  .book-bar { display: block; } /* show sticky book bar on mobile */
  body { padding-bottom: 64px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (min-width: 761px) { .mobile-menu { display: none; } }

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

/* ============================================================
   v2 — premium polish + living portrait placeholder
   Appended last; overrides earlier rules at equal specificity.
   ============================================================ */

/* Premium typographic & UI detail */
html { scrollbar-width: thin; scrollbar-color: var(--sage-muted) transparent; }
body { font-optical-sizing: auto; font-feature-settings: "kern" 1, "liga" 1, "calt" 1; }
h1, h2, h3, h4 { text-wrap: balance; }
p, li { text-wrap: pretty; }
[id] { scroll-margin-top: 92px; }                       /* anchor links clear the sticky header */
::selection { background: rgba(142,84,104,0.22); color: var(--soft-black); }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--sage-muted); border-radius: 999px; border: 3px solid var(--cream); }
::-webkit-scrollbar-thumb:hover { background: var(--sage); }

/* Scroll progress indicator (element injected by app.js) */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--sage); z-index: 100; transition: width .12s linear; }

/* Hero portrait — living placeholder (photo removed for now; designed, not empty) */
.hero-portrait .frame {
  background: linear-gradient(140deg, var(--sage) 0%, var(--sage-deep) 42%, var(--brown) 100%);
  background-size: 200% 200%;
  animation: heroBloom 20s ease-in-out infinite alternate;
}
@keyframes heroBloom { from { background-position: 0% 0%; } to { background-position: 100% 100%; } }
.hero-portrait .frame img { display: none; }            /* safety: no photo right now */
.hero-portrait .frame::before {                          /* arch / portal motif */
  content: ""; position: absolute; left: 50%; top: 13%; transform: translateX(-50%);
  width: 54%; aspect-ratio: 3 / 4; border: 1px solid rgba(245,242,234,0.20);
  border-radius: 50% 50% 16px 16px / 40% 40% 16px 16px; pointer-events: none; z-index: 1;
}
.hero-portrait .frame::after {                           /* stronger vignette for depth */
  background: linear-gradient(180deg, rgba(28,27,23,0) 52%, rgba(28,27,23,0.30) 100%);
  z-index: 1;
}
.hero-portrait .frame .ph {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.7rem; text-align: center; padding: 2rem;
  color: rgba(245,242,234,0.94); font-family: var(--font-serif);
}
.hero-portrait .frame .ph .ph-mono {
  font-style: italic; font-weight: 400; font-size: clamp(3rem, 6vw, 4.6rem); line-height: 1; letter-spacing: 0.01em; color: rgba(245,242,234,0.95);
}
.hero-portrait .frame .ph .ph-label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,242,234,0.70);
}

/* Gentle lift on quote cards to match service cards */
.quote { transition: transform .4s var(--ease), box-shadow .4s ease, border-color .3s ease; }
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-muted); }

/* ============================================================
   v3 — kristenalanah-inspired warmth (hybrid: rounded + shadow)
   Breathier type, a sage "moment" band, and a stacking-boxes collage.
   ============================================================ */

/* Breathier body leading — the #1 calm-premium lever */
body { line-height: 1.8; }

/* Sage "moment" band — full-bleed colored act, cream text */
.section--sage { background: var(--sage); color: var(--cream); }
.section--sage h1, .section--sage h2, .section--sage h3 { color: var(--cream); }
.section--sage p, .section--sage .lead { color: rgba(245,242,234,0.82); }
.section--sage .eyebrow { color: var(--sage-wash); }
.section--sage a:not(.btn) { color: var(--cream); }

/* Stacking-boxes collage — overlapping rounded cards with soft shadows */
.collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  aspect-ratio: 5 / 4;
  gap: 0;
  padding: clamp(1rem, 3vw, 2rem);
  isolation: isolate;
  max-width: 880px;
  margin-inline: auto;
}
.collage__card {
  position: relative;
  min-width: 0;
  border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.collage__card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.92) contrast(.97) sepia(.07) brightness(1.02); /* unify warm grade */
}
.collage__card--a { grid-column: 1 / span 3; grid-row: 1 / span 6; z-index: 2; }                 /* tall left (still-life) */
.collage__card--b { grid-column: 3 / span 2; grid-row: 3 / span 4; z-index: 3; margin: .5rem 0 0 .75rem; } /* overlaps a (plant) */
.collage__card--c {                                                                              /* quote card, top-right */
  grid-column: 4 / span 3; grid-row: 1 / span 3; z-index: 4; margin-left: -.5rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--paper); display: flex; flex-direction: column; justify-content: center; gap: .55rem;
}
.collage__card--c .ct { font-family: var(--font-serif); font-size: clamp(1.1rem, 1.8vw, 1.5rem); line-height: 1.3; color: var(--soft-black); }
.collage__card--c .cn { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); }
.collage__card--d { grid-column: 5 / span 2; grid-row: 4 / span 3; z-index: 3; margin: .5rem 0 0 .5rem; } /* texture, bottom-right */

@media (max-width: 760px) {
  .collage { grid-template-columns: 1fr; grid-template-rows: none; aspect-ratio: auto; gap: 1rem; padding: 0; }
  .collage__card, .collage__card--a, .collage__card--b, .collage__card--c, .collage__card--d {
    grid-column: 1 / -1; grid-row: auto; margin: 0; z-index: auto;
  }
  .collage__card--a { aspect-ratio: 4 / 3; }
  .collage__card--b { aspect-ratio: 1 / 1; }
  .collage__card--d { aspect-ratio: 4 / 3; }
}

/* ============================================================
   v4 — mobile-first hardening
   ============================================================ */

/* 2-up grid (e.g. group-coaching options) — collapses to 1 column on mobile.
   Defined LAST + matching the global 960px breakpoint so the collapse wins. */
.cards--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .cards--2 { grid-template-columns: 1fr; } }

/* No page-level horizontal scroll, ever */
html, body { max-width: 100%; overflow-x: hidden; }

/* Larger, comfortable tap targets on touch screens */
@media (max-width: 760px) {
  .btn-row { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .btn-row > * { width: 100%; }
  .btn-row .btn { width: 100%; justify-content: center; }
  .form .btn { width: 100%; justify-content: center; }
  .nav-cta .btn { width: auto; padding: 0.7rem 1.1rem; }
  .footer-social a { width: 44px; height: 44px; }
  .faq-q { padding-block: 1.25rem; font-size: 1.05rem; }
  .compare th, .compare td { padding: 0.85rem 0.9rem; font-size: 0.9rem; }
  /* pin the row-label column so users can swipe to compare services */
  .compare thead th:first-child, .compare tbody td:first-child {
    position: sticky; left: 0; background: var(--paper); z-index: 2;
    box-shadow: 6px 0 10px -6px rgba(28,27,23,0.20);
  }
  .section--paper .compare thead th:first-child, .section--paper .compare tbody td:first-child { background: var(--paper); }
  .card { padding: 1.5rem; }
  .hero-portrait { max-width: 360px; margin-inline: auto; }
}
