/* =============================================================
   Nancy Meyer Health Coaching — Design System & Styles
   Brand palette, typography and components per the Website Brief.
   No build step required. Edit tokens in :root to re-skin globally.
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colours (exact hex from brief) */
  --sage:        #5C8A6A;
  --sage-dark:   #3D6B50;
  --sage-light:  #EBF3EE;
  --gold:        #B8922A;
  --gold-deep:   #9A7A20;
  --gold-light:  #FBF5E6;
  --ink:         #2C2C2C;   /* body text */
  --ink-soft:    #555555;   /* secondary text */

  /* Warm complementary hues */
  --blush:        #E8CFC0;   /* warm rose/terracotta tint */
  --blush-light:  #F7EDE6;   /* light blush for section backgrounds */
  --sand:         #D4C5A9;   /* warm sand */
  --sand-light:   #F5F0E4;   /* light sand */
  --forest:       #2A4A3A;   /* deeper, richer green than sage-dark */
  --sage-mid:     #7BA68A;   /* lighter sage for gradients */
  --lavender-mist:#E8E4F0;   /* subtle cool accent */

  /* Derived surfaces */
  --paper:       #FDFCF9;   /* warm page background */
  --paper-2:     #F7F4EC;   /* alt warm band */
  --white:       #FFFFFF;
  --sage-tint:   #F3F8F4;
  --line:        #E6E1D5;   /* hairline borders */

  /* Typography */
  --font-head: Georgia, "Times New Roman", "Iowan Old Style", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.78rem;
  --fs-body:    1.0625rem;
  --fs-lead:    clamp(1.15rem, 0.9rem + 1vw, 1.4rem);
  --fs-h3:      clamp(1.3rem, 1.1rem + 0.9vw, 1.7rem);
  --fs-h2:      clamp(1.9rem, 1.4rem + 2.3vw, 3rem);
  --fs-h1:      clamp(2.5rem, 1.6rem + 4.4vw, 4.6rem);
  --fs-display: clamp(3rem, 1.8rem + 6vw, 6rem);

  /* Spacing / radius / shadow */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 8px rgba(60, 80, 60, 0.06);
  --shadow-md: 0 12px 30px -12px rgba(46, 66, 50, 0.18);
  --shadow-lg: 0 28px 60px -22px rgba(46, 66, 50, 0.28);
  --shadow-gold: 0 18px 40px -18px rgba(184, 146, 42, 0.45);

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 6vw, 7rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.28s;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; color: var(--sage-dark); letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { max-width: 65ch; }

::selection { background: var(--sage); color: #fff; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--sage-dark); color: #fff; padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); z-index: 1000;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--sage  { background: var(--sage-light); }
.section--paper { background: var(--paper-2); }
.section--deep  { background: linear-gradient(160deg, var(--sage-dark), #2f5540); color: #EAF2EC; }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep p { color: #D7E5DB; }
.section--blush { background: var(--blush-light); }
.section--sand { background: var(--sand-light); }
.section--forest { background: linear-gradient(160deg, var(--forest), #1e3a2d); color: #EAF2EC; }
.section--forest h2, .section--forest h3 { color: #fff; }
.section--forest p { color: #D7E5DB; }
.section--gradient { background: linear-gradient(135deg, var(--sage-light) 0%, var(--blush-light) 50%, var(--gold-light) 100%); }

.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.measure { max-width: 60ch; }
.measure-lg { max-width: 72ch; }
.mx-auto { margin-inline: auto; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--fs-eyebrow); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gold-deep);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--gold); border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.section-head { max-width: 52ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lead { color: var(--ink-soft); font-size: var(--fs-lead); margin-top: 0.85rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--sage);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  padding: 0.95rem 1.6rem; border: 2px solid transparent; border-radius: 100px;
  font-weight: 600; font-size: 1rem; letter-spacing: 0.01em; white-space: nowrap;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lg); }
.btn:hover svg { transform: translate(3px, -3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.btn--gold { --btn-bg: var(--gold); box-shadow: var(--shadow-gold); }
.btn--gold:hover { background: var(--gold-deep); box-shadow: 0 12px 35px -8px rgba(184, 146, 42, 0.5); }
.btn--dark { --btn-bg: var(--sage-dark); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--sage-dark);
  border-color: var(--sage); box-shadow: none;
}
.btn--ghost:hover { background: var(--sage); color: #fff; box-shadow: var(--shadow-md); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--sage-dark); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.075rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600;
  color: var(--sage-dark); background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 2px; background-repeat: no-repeat; background-position: 50% 100%;
  transition: background-size 0.35s var(--ease), color 0.25s var(--ease);
  padding-bottom: 2px;
}
.text-link:hover { background-size: 100% 2px; color: var(--gold-deep); }
.text-link svg { width: 16px; height: 16px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 1.1rem;
}
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.28rem; color: var(--sage-dark); letter-spacing: -0.01em; }
.brand__tag { font-family: var(--font-head); font-style: italic; font-size: 0.86rem; color: var(--gold-deep); }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link { font-weight: 500; color: var(--ink); position: relative; padding-block: 0.25rem; white-space: nowrap; transition: color var(--dur) var(--ease); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
  transform-origin: center;
}
.nav__link:hover { color: var(--sage-dark); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--sage-dark); font-weight: 600; }
.nav__cta { display: flex; align-items: center; gap: 1.25rem; }
.nav__cta-mobile { display: none !important; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff; position: relative;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--sage-dark); border-radius: 2px; transform: translate(-50%, -50%);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__toggle span::before { transform: translate(-50%, -8px); }
.nav__toggle span::after  { transform: translate(-50%, 6px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 5rem) clamp(3.5rem, 6vw, 6rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__eyebrow { margin-bottom: 1.25rem; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero__lead { font-size: var(--fs-lead); color: var(--ink-soft); margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__trust { display: flex; align-items: center; gap: 1rem; margin-top: 2.25rem; }
.avatars { display: flex; }
.avatars span {
  width: 42px; height: 42px; border-radius: 50%; border: 3px solid var(--paper);
  margin-left: -12px; background: var(--sage); display: grid; place-items: center;
  color: #fff; font-weight: 600; font-size: 0.9rem; box-shadow: var(--shadow-sm);
}
.avatars span:first-child { margin-left: 0; }
.avatars .avatars__count { background: var(--gold); }
.hero__trust-text { font-size: 0.92rem; color: var(--ink-soft); }
.hero__trust-text strong { color: var(--sage-dark); display: block; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* Hero visual (portrait placeholder + floating cards) */
.hero__visual { position: relative; }
.portrait {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--sage), var(--sage-dark));
}
.portrait__ph { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: rgba(255,255,255,0.85); padding: 2rem; }
.portrait__ph svg { width: 120px; height: 120px; opacity: 0.9; margin-inline: auto; }
.portrait__ph small { display: block; margin-top: 1rem; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; }

.float-card {
  position: absolute; background: color-mix(in srgb, #fff 82%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1rem 1.2rem;
}
.float-card--badge {
  top: 8%; left: -6%; display: flex; align-items: center; gap: 0.75rem;
}
.float-card--badge .dot { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-light); display: grid; place-items: center; color: var(--gold-deep); }
.float-card--badge .dot svg { width: 22px; height: 22px; }
.float-card--badge b { color: var(--sage-dark); font-size: 0.95rem; }
.float-card--badge span { font-size: 0.8rem; color: var(--ink-soft); }
.float-card--stat { bottom: 7%; right: -7%; text-align: left; }
.float-card--stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--sage-dark); line-height: 1; }
.float-card--stat .lbl { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.25rem; }

.badge-ring {
  position: absolute; top: 5%; right: 11%; width: 88px; height: 88px; border-radius: 50%;
  background: var(--gold); color: #fff; display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow-gold); z-index: 3;
}
.badge-ring b { font-family: var(--font-head); font-size: 1.5rem; line-height: 1; }
.badge-ring small { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* Decorative botanical blob */
.blob {
  position: absolute; z-index: 0; pointer-events: none; opacity: 0.55;
  filter: blur(2px);
}
.blob--1 { top: -8%; right: -6%; width: 380px; color: var(--sage-light); }
.blob--2 { bottom: -12%; left: -10%; width: 320px; color: var(--gold-light); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -15px rgba(46, 66, 50, 0.22);
  border-color: var(--sage);
}
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; background: var(--sage-light);
  display: grid; place-items: center; color: var(--sage-dark); margin-bottom: 1.25rem;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--ink-soft); font-size: 1rem; }
.card__foot { margin-top: 1.25rem; }

/* Program card variant */
.program {
  display: flex; flex-direction: column; gap: 0.5rem;
  border-top: 4px solid var(--sage);
}
.program--signature { border-top-color: var(--gold); }
.program--signature:hover {
  border-top-color: var(--gold);
  box-shadow: 0 20px 50px -15px rgba(184, 146, 42, 0.25);
}
.program__tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-deep); background: var(--gold-light); padding: 0.3rem 0.7rem; border-radius: 100px; margin-bottom: 0.5rem;
}
.program__meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.4rem; }
.program__meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.program__meta svg { width: 15px; height: 15px; color: var(--sage); }
.program ul.list { margin-top: 1rem; }

.list li { position: relative; padding-left: 1.75rem; margin-bottom: 0.6rem; color: var(--ink-soft); font-size: 1rem; }
.list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 12px; height: 12px;
  background: var(--sage); border-radius: 50%; box-shadow: 0 0 0 4px var(--sage-light);
}

/* ---------- Steps (How it works) ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.step { text-align: left; position: relative; }
.step__num {
  counter-increment: step; width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--sage); color: var(--sage-dark);
  display: grid; place-items: center; font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  margin-bottom: 1.25rem; box-shadow: var(--shadow-sm); position: relative; z-index: 2;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step:hover .step__num {
  background: var(--sage);
  color: #fff;
  transform: scale(1.08);
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); font-size: 1rem; }
.steps__line { position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, var(--sage) 0 8px, transparent 8px 16px); z-index: 1; opacity: 0.5; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-head); font-size: clamp(2.4rem, 1.8rem + 2vw, 3.4rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat__num { transition: text-shadow 0.3s var(--ease); }
.stat:hover .stat__num { text-shadow: 0 0 30px rgba(184, 146, 42, 0.3); }
.section--deep .stat__num { color: #EBD9A6; }
.stat__lbl { margin-top: 0.5rem; font-size: 0.95rem; color: var(--ink-soft); }
.section--deep .stat__lbl { color: #CBDDCF; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative;
}
.quote__mark { font-family: var(--font-head); font-size: 3.5rem; color: var(--sage-light); line-height: 0.5; height: 1.5rem; }
.quote p { font-style: italic; color: var(--ink); font-size: 1.05rem; }
.quote__who { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.quote__who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; font-weight: 600; }
.quote__who b { color: var(--sage-dark); }
.quote__who span { display: block; font-size: 0.85rem; color: var(--ink-soft); }
.placeholder-note { font-size: 0.85rem; color: var(--ink-soft); font-style: italic; }

/* ---------- Split feature (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.media-ph {
  border-radius: var(--radius-xl); aspect-ratio: 5 / 6; overflow: hidden;
  background: linear-gradient(150deg, var(--sage-light), #dcebe0); box-shadow: var(--shadow-lg);
  display: grid; place-items: center; color: var(--sage-dark); position: relative;
}
.media-ph svg { width: 96px; height: 96px; opacity: 0.55; }
.media-ph small { position: absolute; bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; color: var(--sage-dark); opacity: 0.7; }

/* ---------- Callout box (light gold) ---------- */
.callout {
  background: var(--gold-light); border: 1px solid color-mix(in srgb, var(--gold) 25%, var(--gold-light));
  border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 1.75rem 2rem;
}
.callout h3 { color: var(--gold-deep); }
.callout p { color: var(--ink); }
.callout--sage {
  background: var(--sage-light);
  border-color: var(--sage);
  border-left-color: var(--sage);
}
.callout--sage h3 { color: var(--sage-dark); }
.callout--blush {
  background: var(--blush-light);
  border-color: var(--blush);
  border-left-color: var(--blush);
}

/* ---------- Credentials strip ---------- */
.creds { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; align-items: center; justify-content: center; }
.cred { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 600; color: var(--sage-dark); font-size: 0.95rem; }
.cred svg { width: 20px; height: 20px; color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { margin-inline: auto; margin-bottom: 2rem; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--sage-dark); }
.field .req { color: var(--gold-deep); }
.field select {
  font: inherit; padding: 1rem 1.15rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; color: var(--ink); width: 100%; cursor: pointer;
}
.field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-light); }
.field input, .field textarea {
  font: inherit; padding: 0.85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px var(--sage-light); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-md); }
.form-status { margin-top: 1rem; padding: 0.85rem 1rem; border-radius: var(--radius-sm); font-size: 0.95rem; display: none; }
.form-status.is-ok { display: block; background: var(--sage-light); color: var(--sage-dark); }
.form-status.is-err { display: block; background: #FBE9E7; color: #B23A2E; }

/* Newsletter inline */
.newsletter { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.newsletter input { flex: 1 1 220px; padding: 0.85rem 1rem; border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: #fff; }
.newsletter input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.16); }

/* ---------- Embed placeholder (Calendly) ---------- */
.embed-ph {
  border: 2px dashed color-mix(in srgb, var(--sage) 45%, var(--line)); border-radius: var(--radius-lg);
  background: var(--sage-tint); padding: clamp(2rem, 5vw, 4rem); text-align: center; min-height: 420px;
  display: grid; place-content: center; gap: 1rem;
}
.embed-ph svg { width: 64px; height: 64px; color: var(--sage); margin-inline: auto; }
.embed-ph code { background: #fff; border: 1px solid var(--line); padding: 0.15rem 0.5rem; border-radius: 6px; font-size: 0.85rem; color: var(--gold-deep); }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(180deg, #2f5540, #274733); color: #D7E5DB; padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer a { color: #D7E5DB; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 2.5rem; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__tag { color: #E3C877; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.1rem; font-weight: 700; }
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a { opacity: 0.85; transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease); }
.footer__links a:hover { opacity: 1; color: #E3C877; }
.footer__contact li { margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.6rem; }
.footer__contact svg { width: 17px; height: 17px; color: #E3C877; flex: none; }
.footer__creds { margin-top: 1.25rem; font-size: 0.82rem; opacity: 0.75; line-height: 1.9; }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; opacity: 0.8; }


/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--sage-light); padding-block: clamp(3rem, 5vw, 5rem); position: relative; overflow: hidden; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { max-width: 18ch; }
.page-hero p { color: var(--ink-soft); font-size: var(--fs-lead); margin-top: 1rem; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.25rem; }
.breadcrumb a:hover { color: var(--sage-dark); }

/* ---------- Scroll reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.animate-float { animation: floaty 6s ease-in-out infinite; }
.animate-float--slow { animation-duration: 8s; }

/* Staggered reveals — directional + scale */
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.is-visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right.is-visible { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-scale.is-visible { opacity: 1; transform: none; }

/* Smooth gradient section divider */
.section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--sage), transparent);
  border: none;
  margin: 0;
}

/* Parallax-light background shift on scroll (applied via JS) */
.parallax-bg {
  transition: background-position 0.1s linear;
}

/* Floating elements — alternate motion */
@keyframes floaty-alt { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(2deg); } }
.animate-float--alt { animation: floaty-alt 7s ease-in-out infinite; }

@keyframes gentle-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }
.animate-pulse { animation: gentle-pulse 3s ease-in-out infinite; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer-border {
  border-image: linear-gradient(90deg, var(--sage), var(--gold), var(--sage)) 1;
  animation: shimmer 3s linear infinite;
  background-size: 200% 100%;
}

/* Eyebrow line animate on reveal */
.eyebrow::before {
  transition: width 0.5s var(--ease) 0.2s;
}
.reveal .eyebrow::before { width: 0; }
.reveal.is-visible .eyebrow::before { width: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; order: -1; }
  .grid--3, .grid--4, .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .split, .footer__grid { grid-template-columns: 1fr; }
  .split--rev .split__media { order: -1; }
  .steps__line { display: none; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: grid; place-items: center; }
  .nav__cta { gap: 0.75rem; }
  .mobile-menu-open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: flex-start; gap: 0.25rem; background: var(--paper); padding: 1.25rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    z-index: 200;
    max-height: calc(100vh - 82px);
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu-open .nav__links .nav__link { width: 100%; padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
  .mobile-menu-open .nav__links .nav__cta-mobile { display: inline-flex !important; width: 100%; justify-content: center; margin-top: 1.25rem; }
  .float-card--stat { right: -2%; }
  .float-card--badge { left: -2%; }
}
@media (max-width: 560px) {
  .grid--3, .grid--4, .steps, .stats { grid-template-columns: 1fr; }
  .stats { gap: 2.5rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .float-card { display: none; }
  .badge-ring { width: 76px; height: 76px; }
}

/* ---------- 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; transform: none; }
}

/* ---------- FAQ Accordion ---------- */
.faq {
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 1.25rem 0;
}
.faq:first-of-type { border-top: 1px solid rgba(0,0,0,.08); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq[open] summary::after {
  content: "−";
}
.faq summary h2 { margin: 0; }

/* ---------- Print ---------- */
@media print {
  .site-header, .footer, .cta-band, .nav__toggle { display: none; }
  body { color: #000; background: #fff; }
}

/* =============================================================
   Design system v2 — consolidated refinement layer
   Editorial serif typography · charcoal buttons · botanical
   brand mark · gradient page headers · arch hero
   ============================================================= */

/* ---------- Typography ---------- */
:root { --font-head: "Lora", Georgia, "Times New Roman", serif; }
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.012em; }
h1 { letter-spacing: -0.018em; line-height: 1.08; }
h1, h2 { text-wrap: balance; }
.accent { font-style: italic; }

/* Pre-reveal transforms must never create sideways scroll */
html, body { overflow-x: clip; }

/* ---------- Buttons: charcoal primary, quiet outline ---------- */
.btn {
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: 0 1px 2px rgba(20, 30, 24, 0.08);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px -10px rgba(20, 30, 24, 0.3); }
.btn:active { transform: translateY(0); }
.btn--gold { --btn-bg: var(--ink); --btn-fg: #FDFCF7; }
.btn--gold:hover { background: #171717; box-shadow: 0 10px 22px -12px rgba(0, 0, 0, 0.45); }
.btn--ghost { --btn-fg: var(--ink); border-color: var(--line); box-shadow: 0 1px 2px rgba(20, 30, 24, 0.05); }
.btn--ghost:hover { background: var(--paper-2); color: var(--ink); border-color: #CFC9BB; box-shadow: 0 4px 12px -8px rgba(20, 30, 24, 0.2); }
/* Dark bands: flip to cream so buttons never sink into the background */
.cta-band .btn--gold, .footer .btn--gold { --btn-bg: #FDFCF7; --btn-fg: var(--ink); }
.cta-band .btn--gold:hover, .footer .btn--gold:hover { background: #FFFFFF; }
.cta-band .btn--ghost { --btn-fg: #FDFCF7; border-color: rgba(253, 252, 247, 0.5); }
.cta-band .btn--ghost:hover { background: rgba(253, 252, 247, 0.12); color: #FDFCF7; }

/* Chips: sage, not mustard */
.program__tag { color: var(--sage-dark); background: var(--sage-light); }

/* ---------- Brand mark: ring + botanical sprig ---------- */
.brand { display: inline-flex; flex-direction: row; align-items: center; gap: 0.7rem; }
.brand__mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 600; }
.brand__mark .lg-ring { stroke: var(--sage-dark); }
.brand__mark .lg-a { fill: var(--sage); }
.brand__mark .lg-b { fill: var(--sage-mid); }
.brand__mark .lg-c { stroke: var(--sage-dark); }
.brand__mark .lg-cf { fill: var(--sage-dark); }
.footer .brand__mark .lg-ring { stroke: #F5EFE0; }
.footer .brand__mark .lg-a { fill: #8FB69C; }
.footer .brand__mark .lg-b { fill: #AFCBB8; }
.footer .brand__mark .lg-c { stroke: #F5EFE0; }
.footer .brand__mark .lg-cf { fill: #F5EFE0; }

/* ---------- Sub-page headers: rich gradient, no photography ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(60rem 30rem at 85% -20%, rgba(233, 205, 122, 0.16), transparent 60%),
    radial-gradient(50rem 26rem at -10% 110%, rgba(123, 166, 138, 0.25), transparent 55%),
    linear-gradient(128deg, #22402F 0%, #2E5540 48%, #3D6B50 100%);
  padding-block: clamp(4rem, 7vw, 6.5rem);
}
.page-hero h1 { color: #FDFCF7; }
.page-hero p { color: rgba(253, 252, 247, 0.86); }
.page-hero .eyebrow { color: #E9CD7A; }
.page-hero .breadcrumb,
.page-hero .breadcrumb a { color: rgba(253, 252, 247, 0.68); }
.page-hero .breadcrumb a:hover { color: #E9CD7A; }

/* ---------- Program imagery ---------- */
.media-img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ---------- Hero: editorial split with arch frame ---------- */
.hero2 {
  background:
    radial-gradient(52rem 30rem at 108% 8%, rgba(235, 243, 238, 0.9), transparent 60%),
    var(--paper);
  padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(3.5rem, 6vw, 5.5rem);
  overflow: hidden;
}
.hero2__grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hero2__copy h1 { font-size: clamp(2.6rem, 1.5rem + 3.8vw, 4.2rem); margin: 1.1rem 0 1.4rem; max-width: 20ch; }
.hero2__copy .accent { color: var(--gold-deep); }
.hero2__lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 30rem;
  line-height: 1.6;
}
.hero2__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.hero2__trust { display: flex; align-items: center; gap: 0.9rem; margin-top: 2.4rem; }
.hero2__trust-text { display: flex; flex-direction: column; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.45; }
.hero2__trust-text strong { color: var(--ink); font-size: 0.95rem; }

.hero2__visual { position: relative; }
.hero2__arch {
  position: relative;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero2__arch img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
/* Offset hairline echo of the arch — the quiet detail */
.hero2__visual::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(92, 138, 106, 0.45);
  border-radius: 999px 999px calc(var(--radius-lg) + 10px) calc(var(--radius-lg) + 10px);
  pointer-events: none;
}
.hero2__chip {
  position: absolute;
  left: -1.4rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 250px;
}
.hero2__chip strong { color: var(--ink); }
.hero2__chip-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-dark);
}
.hero2__chip-icon svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .hero2__grid { grid-template-columns: 1fr; }
  .hero2__copy h1 { max-width: none; }
  .hero2__visual { max-width: 420px; margin-inline: auto; }
  .hero2__chip { left: 50%; transform: translateX(-50%); bottom: -1.2rem; }
  .hero2__visual { margin-bottom: 2rem; }
}

/* ---------- Contrast fixes (WCAG AA audit) ---------- */
/* Gold small text was 3.9:1 on cream — deepen to bronze (≥4.5:1) */
:root { --gold-deep: #7A611C; }
/* Avatar initials: white on mid-sage was 3.96 — use deep sage */
.avatars span { background: var(--sage-dark); }
.avatars .avatars__count { background: var(--gold-deep); }
/* Step numerals: sage on cream was 2.85 (needs 3+ at display size) */
.step__num { color: var(--sage-dark); border-color: var(--sage); }
/* Stat numerals on the forest band: champagne for clear separation */
.section--forest .stat__num { color: #E9CD7A; }
/* CTA band body copy was inheriting dark ink on the dark gradient */
.cta-band p { color: rgba(253, 252, 247, 0.88); }
/* Headline lockup: keep the italic accent on its own line */
.hero2__copy h1 .accent { display: block; }

/* =============================================================
   Offer carousel — chip rail + stacked card deck
   ============================================================= */
.oc {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
}
.oc__rail {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(30rem 18rem at 110% -10%, rgba(233, 205, 122, 0.14), transparent 60%),
    linear-gradient(140deg, #22402F 0%, #2E5540 55%, #3D6B50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}
.oc__chips { display: flex; flex-direction: column; gap: 0.9rem; width: 100%; max-width: 320px; }
.oc__chip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(253, 252, 247, 0.22);
  background: transparent;
  color: rgba(253, 252, 247, 0.72);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: left;
  cursor: pointer;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.oc__chip svg { width: 19px; height: 19px; flex-shrink: 0; opacity: 0.8; }
.oc__chip:hover { border-color: rgba(253, 252, 247, 0.5); color: #FDFCF7; }
.oc__chip.is-active {
  background: #FDFCF7;
  color: var(--sage-dark);
  border-color: #FDFCF7;
  transform: translateX(6px);
}
.oc__chip.is-active svg { opacity: 1; }

.oc__stage { position: relative; aspect-ratio: 5 / 4; min-height: 380px; }
.oc__card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform 0.7s var(--ease), opacity 0.55s var(--ease), filter 0.7s var(--ease);
}
.oc__card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.oc__card.is-active { transform: none; opacity: 1; z-index: 20; filter: none; }
.oc__card.is-prev { transform: translateX(-9%) scale(0.86) rotate(-3deg); opacity: 0.35; z-index: 10; filter: grayscale(1) blur(2px) brightness(0.8); pointer-events: none; }
.oc__card.is-next { transform: translateX(9%) scale(0.86) rotate(3deg); opacity: 0.35; z-index: 10; filter: grayscale(1) blur(2px) brightness(0.8); pointer-events: none; }
.oc__card.is-hidden { transform: scale(0.7); opacity: 0; z-index: 0; pointer-events: none; }

.oc__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 26, 20, 0.88) 0%, rgba(16, 26, 20, 0.35) 45%, transparent 70%);
}
.oc__info {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease) 0.15s, transform 0.5s var(--ease) 0.15s;
}
.oc__card.is-active .oc__info { opacity: 1; transform: none; }
.oc__badge {
  background: rgba(253, 252, 247, 0.94);
  color: var(--sage-dark);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.32rem 0.75rem;
  border-radius: 100px;
}
.oc__info p {
  color: #FDFCF7;
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1rem + 0.7vw, 1.45rem);
  line-height: 1.35;
  max-width: 30rem;
  margin: 0;
}
.oc__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #E9CD7A;
  font-weight: 600;
  font-size: 0.92rem;
}
.oc__link svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.oc__link:hover svg { transform: translateX(4px); }

@media (max-width: 880px) {
  .oc { grid-template-columns: 1fr; }
  .oc__rail { padding: 1.25rem; }
  .oc__chips { flex-direction: row; flex-wrap: wrap; justify-content: center; max-width: none; gap: 0.6rem; }
  .oc__chip { width: auto; padding: 0.6rem 1rem; font-size: 0.85rem; }
  .oc__chip.is-active { transform: none; }
  .oc__stage { aspect-ratio: 4 / 4.4; }
}
@media (prefers-reduced-motion: reduce) {
  .oc__chip, .oc__card, .oc__info { transition-duration: 0.01ms !important; transition-delay: 0s !important; }
}

/* =============================================================
   Design system v3 — client feedback round (July 2026)
   Larger brand lockup · curiosity questions · lifestyle wellness
   domains · price toggle · For Attorneys page · botanical mark
   ============================================================= */

/* ---------- Larger brand print (name / tagline / motto) ---------- */
.brand__mark { width: 56px; height: 56px; }
.brand__name { font-size: 1.65rem; letter-spacing: -0.015em; }
.brand__tag  { font-size: 1.05rem; }
.footer__bottom { font-size: 1rem; }
.footer__bottom .motto { font-size: 1.2rem; }
@media (max-width: 900px) {
  .brand__mark { width: 46px; height: 46px; }
  .brand__name { font-size: 1.3rem; }
  .brand__tag  { font-size: 0.92rem; }
}

/* Botanical mark: gold sun in the ring opening */
.brand__mark .lg-sun { fill: var(--gold); }
.footer .brand__mark .lg-sun { fill: #E9CD7A; }

/* ---------- Price toggle (js/config.js → SHOW_PRICES) ---------- */
[data-price] { display: none; }
body.show-prices [data-price] { display: block; }
body.show-prices span[data-price] { display: inline; }
.price-line {
  font-family: var(--font-head); font-weight: 600; color: var(--gold-deep);
  font-size: 1.15rem; margin-top: 1rem;
}
.price-line small { font-family: var(--font-body); font-weight: 400; color: var(--ink-soft); font-size: 0.85rem; }

/* ---------- Curiosity questions ---------- */
.curiosity {
  font-family: var(--font-head); font-style: italic; font-weight: 500;
  color: var(--sage-dark); font-size: clamp(1.25rem, 1.05rem + 1vw, 1.7rem);
  line-height: 1.45; max-width: 32ch;
  padding-left: 1.25rem; border-left: 3px solid var(--gold);
}
.curiosity--center { margin-inline: auto; border-left: none; padding-left: 0; text-align: center; max-width: 36ch; }
.curiosity--center::before { content: ""; display: block; width: 44px; height: 3px; background: var(--gold); border-radius: 2px; margin: 0 auto 1.25rem; }
.section--forest .curiosity, .cta-band .curiosity { color: #FDFCF7; }

/* Rotating hero question */
.rotator {
  position: relative; min-height: 3.2em; margin-top: 1.4rem;
  font-family: var(--font-head); font-style: italic; color: var(--sage-dark);
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.3rem); line-height: 1.5; max-width: 34rem;
}
.rotator span {
  position: absolute; inset: 0; opacity: 0; transform: translateY(8px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.rotator span.is-on { opacity: 1; transform: none; }
.rotator::before { content: ""; position: absolute; left: 0; top: 0.35em; bottom: 0.35em; width: 3px; background: var(--gold); border-radius: 2px; }
.rotator span { padding-left: 1.1rem; }

/* ---------- Lifestyle wellness domains (Areas We'll Explore) ---------- */
.domains { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
.domain {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.domain:hover { transform: translateY(-5px); border-color: var(--sage); box-shadow: var(--shadow-md); }
.domain__icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--sage-light);
  display: grid; place-items: center; color: var(--sage-dark); margin-bottom: 0.9rem;
}
.domain__icon svg { width: 22px; height: 22px; }
.domain h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.domain p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.55; }
@media (max-width: 960px) { .domains { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .domains { grid-template-columns: 1fr; } }

/* ---------- "You're not imagining it" evidence block ---------- */
.evidence {
  background: var(--gold-light); border: 1px solid color-mix(in srgb, var(--gold) 25%, var(--gold-light));
  border-left: 4px solid var(--gold); border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.evidence h3 { color: var(--gold-deep); font-style: italic; }
.evidence .list li::before { background: var(--gold); box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 18%, var(--gold-light)); }

/* ---------- Contact: two ways cards ---------- */
.ways { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.way {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.way .card__icon { margin: 0 auto 0.25rem; }
.way p { color: var(--ink-soft); font-size: 0.95rem; margin-inline: auto; }
.way .btn { margin-top: auto; }
@media (max-width: 720px) { .ways { grid-template-columns: 1fr; } }

/* ---------- Booking panel (Practice Better) ---------- */
.pb-frame { width: 100%; height: 720px; border: 0; border-radius: var(--radius); background: #fff; }
.embed-ph.is-live {
  border: 1px solid color-mix(in srgb, var(--sage) 40%, var(--sage-light));
  background: var(--sage-light);
  min-height: 0;
}
.embed-ph.is-live svg:first-child { color: var(--sage-dark); }

/* =============================================================
   Design system v4 — impeccable refinement layer (July 2026)
   Same theme, tone, and professionalism; sharper craft.
   Revert: restore css/styles.css from site-backup-before-stylize.zip
   ============================================================= */

/* 1. Branded kicker: the botanical leaf replaces the generic bar.
      Turns the section eyebrow into a named brand device. */
.eyebrow::before {
  width: 15px; height: 15px; background: currentColor; border-radius: 0;
  -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath d="M8 1C11.6 3.6 12.9 8.6 8 15C3.1 8.6 4.4 3.6 8 1Z"/%3E%3C/svg%3E') center / contain no-repeat;
          mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath d="M8 1C11.6 3.6 12.9 8.6 8 15C3.1 8.6 4.4 3.6 8 1Z"/%3E%3C/svg%3E') center / contain no-repeat;
}
.reveal .eyebrow::before { width: 0; }
.reveal.is-visible .eyebrow::before { width: 15px; }

/* 2. No more side-stripe accents (callouts, evidence, curiosity):
      full frames and top rules carry the emphasis instead. */
.callout {
  border: 1px solid color-mix(in srgb, var(--gold) 38%, var(--gold-light));
  border-left-width: 1px; border-radius: 16px;
}
.callout--sage { border-color: color-mix(in srgb, var(--sage) 45%, var(--sage-light)); }
.callout--blush { border-color: var(--blush); }
.evidence {
  border: 1px solid color-mix(in srgb, var(--gold) 38%, var(--gold-light));
  border-left-width: 1px; border-radius: 16px;
}
.curiosity { border-left: none; padding-left: 0; }
.curiosity::before {
  content: ""; display: block; width: 42px; height: 3px;
  background: var(--gold); border-radius: 2px; margin-bottom: 0.9rem;
}
.curiosity--center::before { margin-inline: auto; }

/* 3. Grounded corners: cards read as crafted, not inflated */
.card, .form-card, .quote, .domain, .way { border-radius: 16px; }
.embed-ph { border-radius: 16px; }

/* 4. Text visibility: placeholders, dark-band copy, small labels */
.field input::placeholder, .field textarea::placeholder { color: #6E6D66; opacity: 1; }
.newsletter input::placeholder { color: rgba(255,255,255,0.85); }
.oc__chip { color: rgba(253, 252, 247, 0.82); }
.placeholder-note { color: #5C5B54; }
p { text-wrap: pretty; }
h3 { text-wrap: balance; }

/* 5. Stronger section hierarchy, calmer reveals */
:root { --fs-h2: clamp(2rem, 1.4rem + 2.5vw, 3.25rem); }
.reveal { transform: translateY(14px); transition-duration: 0.55s; }
.reveal-left { transform: translateX(-40px); transition-duration: 0.7s; }
.reveal-right { transform: translateX(40px); transition-duration: 0.7s; }

/* 6. One deliberate flourish: the brand sprig watermark on CTA bands */
.cta-band { overflow: clip; }
.cta-band::before {
  content: ""; position: absolute; right: -70px; bottom: -90px;
  width: 380px; height: 380px; opacity: 0.09; pointer-events: none;
  background: #E9CD7A;
  -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96"%3E%3Cpath d="M48 80 C45.5 62 46.5 44 50 24 L50.6 9.5 C53.2 14.2 53 19.5 50 24 C47.6 19.4 47.9 14.2 50.6 9.5 Z" stroke="black" stroke-width="3" fill="none"/%3E%3Cpath d="M47 66 C37.5 65 31 59 29.8 50.5 C39.3 51.5 45.8 57.5 47 66 Z"/%3E%3Cpath d="M47.8 55.5 C56.8 54.8 62.8 49.2 64 41 C55 42 49 47.5 47.8 55.5 Z"/%3E%3Cpath d="M47.3 45 C39.8 44.5 34.6 39.7 33.5 32.5 C41 33.5 46.2 38 47.3 45 Z"/%3E%3Cpath d="M48.6 35.5 C55.6 34.9 60.4 30.5 61.4 24 C54.3 25 49.6 29.2 48.6 35.5 Z"/%3E%3C/svg%3E') center / contain no-repeat;
          mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96"%3E%3Cpath d="M48 80 C45.5 62 46.5 44 50 24 L50.6 9.5 C53.2 14.2 53 19.5 50 24 C47.6 19.4 47.9 14.2 50.6 9.5 Z" stroke="black" stroke-width="3" fill="none"/%3E%3Cpath d="M47 66 C37.5 65 31 59 29.8 50.5 C39.3 51.5 45.8 57.5 47 66 Z"/%3E%3Cpath d="M47.8 55.5 C56.8 54.8 62.8 49.2 64 41 C55 42 49 47.5 47.8 55.5 Z"/%3E%3Cpath d="M47.3 45 C39.8 44.5 34.6 39.7 33.5 32.5 C41 33.5 46.2 38 47.3 45 Z"/%3E%3Cpath d="M48.6 35.5 C55.6 34.9 60.4 30.5 61.4 24 C54.3 25 49.6 29.2 48.6 35.5 Z"/%3E%3C/svg%3E') center / contain no-repeat;
}

/* 7. Branded icon medallions: every icon sits in a circular medallion
      echoing the logo (open ring + gold sun), replacing template tiles */
.card__icon, .domain__icon, .way .card__icon, .hero2__chip-icon {
  border-radius: 50%;
  position: relative;
  background: var(--sage-light);
  overflow: visible;
}
.card__icon::before, .domain__icon::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--sage);
  -webkit-mask: conic-gradient(from 30deg, #000 0 76%, transparent 76% 100%);
          mask: conic-gradient(from 30deg, #000 0 76%, transparent 76% 100%);
}
.card__icon::after, .domain__icon::after {
  content: ""; position: absolute; top: -9px; right: 0; width: 10px; height: 10px;
  border-radius: 50%; background: var(--gold);
}
.domain__icon::before { inset: -5px; border-width: 2px; }
.domain__icon::after { width: 8px; height: 8px; top: -8px; }
.card:hover .card__icon, .domain:hover .domain__icon { background: var(--sage); color: #FDFCF7; transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }

/* 8. Primary buttons wear the brand: deep sage, not charcoal */
.btn--gold { --btn-bg: var(--sage-dark); --btn-fg: #FDFCF7; }
.btn--gold:hover { background: var(--forest); box-shadow: 0 10px 22px -12px rgba(42, 74, 58, 0.55); }
.btn--dark { --btn-bg: var(--ink); }

/* 9. How-it-works numerals: serif gold in open-ring medallions */
.step__num {
  border: none; background: var(--sage-light); color: var(--sage-dark);
  font-size: 1.9rem; position: relative;
}
.step__num::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--sage);
  -webkit-mask: conic-gradient(from 30deg, #000 0 76%, transparent 76% 100%);
          mask: conic-gradient(from 30deg, #000 0 76%, transparent 76% 100%);
}
.step:hover .step__num { background: var(--sage-dark); color: #FDFCF7; }

/* 10. Golden serif quote marks on testimonials */
.quote__mark { color: var(--gold); font-size: 4rem; }

/* 11. Section headings get the double-rule signature */
.section-head h2::after {
  content: ""; display: block; width: 58px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--sage) 0 55%, var(--gold) 55% 100%);
  margin-top: 0.9rem;
}
.section-head--center h2::after { margin-inline: auto; }
.section--deep .section-head h2::after, .section--forest .section-head h2::after {
  background: linear-gradient(90deg, #8FB69C 0 55%, #E9CD7A 55% 100%);
}

/* 12. Interior page headers carry the sprig watermark too */
.page-hero::after {
  content: ""; position: absolute; right: -50px; bottom: -70px;
  width: 300px; height: 300px; opacity: 0.12; pointer-events: none;
  background: #E9CD7A;
  -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96"%3E%3Cpath d="M48 80 C45.5 62 46.5 44 50 24" stroke="black" stroke-width="3" fill="none"/%3E%3Cpath d="M47 66 C37.5 65 31 59 29.8 50.5 C39.3 51.5 45.8 57.5 47 66 Z"/%3E%3Cpath d="M47.8 55.5 C56.8 54.8 62.8 49.2 64 41 C55 42 49 47.5 47.8 55.5 Z"/%3E%3Cpath d="M47.3 45 C39.8 44.5 34.6 39.7 33.5 32.5 C41 33.5 46.2 38 47.3 45 Z"/%3E%3Cpath d="M48.6 35.5 C55.6 34.9 60.4 30.5 61.4 24 C54.3 25 49.6 29.2 48.6 35.5 Z"/%3E%3Cpath d="M50 24 C47.6 19.4 47.9 14.2 50.6 9.5 C53.2 14.2 53 19.5 50 24 Z"/%3E%3C/svg%3E') center / contain no-repeat;
          mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96"%3E%3Cpath d="M48 80 C45.5 62 46.5 44 50 24" stroke="black" stroke-width="3" fill="none"/%3E%3Cpath d="M47 66 C37.5 65 31 59 29.8 50.5 C39.3 51.5 45.8 57.5 47 66 Z"/%3E%3Cpath d="M47.8 55.5 C56.8 54.8 62.8 49.2 64 41 C55 42 49 47.5 47.8 55.5 Z"/%3E%3Cpath d="M47.3 45 C39.8 44.5 34.6 39.7 33.5 32.5 C41 33.5 46.2 38 47.3 45 Z"/%3E%3Cpath d="M48.6 35.5 C55.6 34.9 60.4 30.5 61.4 24 C54.3 25 49.6 29.2 48.6 35.5 Z"/%3E%3Cpath d="M50 24 C47.6 19.4 47.9 14.2 50.6 9.5 C53.2 14.2 53 19.5 50 24 Z"/%3E%3C/svg%3E') center / contain no-repeat;
}
.cta-band::before {
  -webkit-mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96"%3E%3Cpath d="M48 80 C45.5 62 46.5 44 50 24" stroke="black" stroke-width="3" fill="none"/%3E%3Cpath d="M47 66 C37.5 65 31 59 29.8 50.5 C39.3 51.5 45.8 57.5 47 66 Z"/%3E%3Cpath d="M47.8 55.5 C56.8 54.8 62.8 49.2 64 41 C55 42 49 47.5 47.8 55.5 Z"/%3E%3Cpath d="M47.3 45 C39.8 44.5 34.6 39.7 33.5 32.5 C41 33.5 46.2 38 47.3 45 Z"/%3E%3Cpath d="M48.6 35.5 C55.6 34.9 60.4 30.5 61.4 24 C54.3 25 49.6 29.2 48.6 35.5 Z"/%3E%3Cpath d="M50 24 C47.6 19.4 47.9 14.2 50.6 9.5 C53.2 14.2 53 19.5 50 24 Z"/%3E%3C/svg%3E');
          mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96"%3E%3Cpath d="M48 80 C45.5 62 46.5 44 50 24" stroke="black" stroke-width="3" fill="none"/%3E%3Cpath d="M47 66 C37.5 65 31 59 29.8 50.5 C39.3 51.5 45.8 57.5 47 66 Z"/%3E%3Cpath d="M47.8 55.5 C56.8 54.8 62.8 49.2 64 41 C55 42 49 47.5 47.8 55.5 Z"/%3E%3Cpath d="M47.3 45 C39.8 44.5 34.6 39.7 33.5 32.5 C41 33.5 46.2 38 47.3 45 Z"/%3E%3Cpath d="M48.6 35.5 C55.6 34.9 60.4 30.5 61.4 24 C54.3 25 49.6 29.2 48.6 35.5 Z"/%3E%3Cpath d="M50 24 C47.6 19.4 47.9 14.2 50.6 9.5 C53.2 14.2 53 19.5 50 24 Z"/%3E%3C/svg%3E');
}

/* 13. Sage scrollbar: the polish people feel before they name it */
html { scrollbar-color: var(--sage) var(--paper-2); }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 6px; border: 3px solid var(--paper-2); }
::-webkit-scrollbar-thumb:hover { background: var(--sage-dark); }

/* 14. Premium contact panel: dark botanical side, crisp form side */
.contact-panel {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  border-radius: 20px; overflow: clip; box-shadow: var(--shadow-lg);
  background: var(--white);
}
.contact-panel__side {
  position: relative; padding: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(40rem 24rem at 110% -20%, rgba(233, 205, 122, 0.14), transparent 60%),
    linear-gradient(150deg, #22402F 0%, #2E5540 55%, #3D6B50 100%);
  color: #D7E5DB;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-panel__side::after {
  content: ""; position: absolute; right: -60px; bottom: -70px;
  width: 280px; height: 280px; opacity: 0.14; pointer-events: none;
  background: #E9CD7A;
  -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96"%3E%3Cpath d="M48 80 C45.5 62 46.5 44 50 24" stroke="black" stroke-width="3" fill="none"/%3E%3Cpath d="M47 66 C37.5 65 31 59 29.8 50.5 C39.3 51.5 45.8 57.5 47 66 Z"/%3E%3Cpath d="M47.8 55.5 C56.8 54.8 62.8 49.2 64 41 C55 42 49 47.5 47.8 55.5 Z"/%3E%3Cpath d="M47.3 45 C39.8 44.5 34.6 39.7 33.5 32.5 C41 33.5 46.2 38 47.3 45 Z"/%3E%3Cpath d="M48.6 35.5 C55.6 34.9 60.4 30.5 61.4 24 C54.3 25 49.6 29.2 48.6 35.5 Z"/%3E%3Cpath d="M50 24 C47.6 19.4 47.9 14.2 50.6 9.5 C53.2 14.2 53 19.5 50 24 Z"/%3E%3C/svg%3E') center / contain no-repeat;
          mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96"%3E%3Cpath d="M48 80 C45.5 62 46.5 44 50 24" stroke="black" stroke-width="3" fill="none"/%3E%3Cpath d="M47 66 C37.5 65 31 59 29.8 50.5 C39.3 51.5 45.8 57.5 47 66 Z"/%3E%3Cpath d="M47.8 55.5 C56.8 54.8 62.8 49.2 64 41 C55 42 49 47.5 47.8 55.5 Z"/%3E%3Cpath d="M47.3 45 C39.8 44.5 34.6 39.7 33.5 32.5 C41 33.5 46.2 38 47.3 45 Z"/%3E%3Cpath d="M48.6 35.5 C55.6 34.9 60.4 30.5 61.4 24 C54.3 25 49.6 29.2 48.6 35.5 Z"/%3E%3Cpath d="M50 24 C47.6 19.4 47.9 14.2 50.6 9.5 C53.2 14.2 53 19.5 50 24 Z"/%3E%3C/svg%3E') center / contain no-repeat;
}
.contact-panel__side h2 { color: #FDFCF7; font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem); }
.contact-panel__note { color: rgba(253, 252, 247, 0.85); font-size: 1rem; }
.contact-panel__list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 0.25rem; }
.contact-panel__list li { display: flex; align-items: center; gap: 0.85rem; font-size: 0.98rem; }
.contact-panel__list a { color: #FDFCF7; font-weight: 500; }
.contact-panel__list a:hover { color: #E9CD7A; }
.contact-panel__ic {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: rgba(253, 252, 247, 0.1); color: #E9CD7A;
  border: 1px solid rgba(233, 205, 122, 0.35);
}
.contact-panel__ic svg { width: 17px; height: 17px; }
.contact-panel__book { align-self: flex-start; margin-top: auto; position: relative; z-index: 2; }
.contact-panel__main { padding: clamp(2rem, 4vw, 3rem); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }
@media (max-width: 860px) {
  .contact-panel { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* 15. Hero legibility: text column never crosses into the photo */

/* 16. Expensive details, youthful warmth */
.btn { border-radius: 100px; }
.media-img { outline: 1px solid rgba(92, 138, 106, 0.45); outline-offset: 12px; }
.split__media { padding: 12px; }
.footer { border-top: 3px solid; border-image: linear-gradient(90deg, var(--sage), var(--gold)) 1; }
.field input, .field textarea { padding: 1rem 1.15rem; border-radius: 12px; }
.field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-light); }
.field label { letter-spacing: 0.01em; }
.text-link { background-size: 100% 2px; }
.text-link:hover { background-image: linear-gradient(var(--gold-deep), var(--gold-deep)); }
.domain:hover { box-shadow: 0 14px 34px -14px rgba(46, 66, 50, 0.28), 0 0 0 1px var(--sage); }

/* 17. Consolidation: shared split-callout, breathing room, calmer rotator */
.callout--split {
  max-width: none;
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: center;
}
@media (max-width: 720px) {
  .callout--split { grid-template-columns: 1fr; }
  .callout--split .btn { justify-self: start; }
}
.footer__creds { opacity: 0.9; }
.domains { gap: 1.5rem; }
@media (max-width: 1120px) and (min-width: 961px) {
  .domains { grid-template-columns: repeat(3, 1fr); }
}
.rotator { font-size: clamp(1rem, 0.95rem + 0.45vw, 1.18rem); }

/* 19. View Transitions: app-smooth page changes (Chrome/Edge/Safari 18+,
      progressive enhancement elsewhere). Header stays anchored while
      page content crossfades. */
@view-transition { navigation: auto; }
.site-header { view-transition-name: site-header; }
.footer { view-transition-name: site-footer; }
::view-transition-old(root) { animation: 0.22s var(--ease) both vt-out; }
::view-transition-new(root) { animation: 0.3s var(--ease) 0.05s both vt-in; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(10px); } }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* =============================================================
   Design system v5 — fine-detail layer (July 2026)
   Lora + Inter stay. This layer adds the stationery-grade details
   that separate a designed site from a templated one.
   ============================================================= */

/* Gold selection: a small surprise when readers highlight */
::selection { background: var(--gold); color: #211A08; }

/* Organic asymmetry: tinted bands enter on a single grown corner */
.section--sage, .section--blush, .section--sand, .section--paper, .section--gradient {
  border-top-left-radius: clamp(32px, 6vw, 80px);
}
.section--deep, .section--forest {
  border-top-right-radius: clamp(32px, 6vw, 80px);
}
.footer { border-top-left-radius: 0; }

/* Gilded edge: a fine gold thread across the very top of every page */
.site-header { border-top: 3px solid var(--gold); }

/* Leaf bullets: list markers carry the brand's own botany */
.list li::before {
  width: 14px; height: 14px; border-radius: 0; box-shadow: none;
  background: var(--sage);
  top: 0.42em;
  -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath d="M8 1C11.6 3.6 12.9 8.6 8 15C3.1 8.6 4.4 3.6 8 1Z"/%3E%3C/svg%3E') center / contain no-repeat;
          mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath d="M8 1C11.6 3.6 12.9 8.6 8 15C3.1 8.6 4.4 3.6 8 1Z"/%3E%3C/svg%3E') center / contain no-repeat;
}

/* Navigation: the active page is marked by a gold sun, not a bar */
.nav__link::after { display: none; }
.nav__link { padding-bottom: 0.55rem; }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--sage-dark); }
.nav__link[aria-current="page"]::before, .nav__link:hover::before {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  transform: translateX(-50%);
}

/* Buttons: a soft gold halo on hover, like catching the light */
.btn--gold:hover { box-shadow: 0 10px 22px -12px rgba(42, 74, 58, 0.55), 0 0 0 4px var(--gold-light); }

/* Section dividers bloom a leaf at their center */
.section-divider { position: relative; overflow: visible; }
.section-divider::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 18px; height: 18px; transform: translate(-50%, -50%) rotate(180deg);
  background: var(--gold);
  -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath d="M8 1C11.6 3.6 12.9 8.6 8 15C3.1 8.6 4.4 3.6 8 1Z"/%3E%3C/svg%3E') center / contain no-repeat;
          mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath d="M8 1C11.6 3.6 12.9 8.6 8 15C3.1 8.6 4.4 3.6 8 1Z"/%3E%3C/svg%3E') center / contain no-repeat;
  box-shadow: 0 0 0 8px var(--paper);
}

/* Matted testimonials and callouts: an inner hairline like fine framing */
.quote { position: relative; }
.quote::after {
  content: ""; position: absolute; inset: 9px; border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--sage) 22%, transparent);
  pointer-events: none;
}
.callout { position: relative; }
.callout::after {
  content: ""; position: absolute; inset: 8px; border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--gold) 24%, transparent);
  pointer-events: none;
}

/* Drop cap: the About story opens like a chapter */
.dropcap::first-letter {
  font-family: var(--font-head); font-weight: 600;
  font-size: 3.3em; line-height: 0.82;
  float: left; padding: 0.08em 0.12em 0 0;
  color: var(--sage-dark);
}

/* Reading progress: a gold thread grows along the header's base */
.scroll-progress {
  position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transition: width 0.1s linear;
  pointer-events: none;
}

/* =============================================================
   Mobile hardening (July 2026) — layout classes replacing the
   inline two-column grids that had no small-screen fallback
   ============================================================= */
.layout-split {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: start;
}
.layout-split--wide { grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); }
.curio-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
@media (max-width: 860px) {
  .layout-split, .layout-split--wide, .curio-duo { grid-template-columns: 1fr; }
}

/* Long email addresses must wrap, never overflow, on narrow screens */
.footer__contact a, .contact-panel__list a, .footer__contact li { overflow-wrap: anywhere; }

/* Rotating question needs more room when it wraps to 3-4 lines */
@media (max-width: 820px) { .rotator { min-height: 5.6em; } }
@media (max-width: 480px) { .rotator { min-height: 6.5em; } }

/* Compact brand lockup on small phones so it never crowds the menu button */
@media (max-width: 480px) {
  .brand__mark { width: 38px; height: 38px; }
  .brand__name { font-size: 1.08rem; }
  .brand__tag { font-size: 0.76rem; }
  .nav { gap: 0.75rem; }
}

/* Contact panel side: button needs top spacing once stacked */
@media (max-width: 860px) {
  .contact-panel__book { margin-top: 0.5rem; }
}

/* =============================================================
   Mobile-first upgrades: menu overlay, 44px tap targets,
   sticky bottom CTA bar
   ============================================================= */

/* Hamburger menu: dimmed overlay behind the open panel */
@media (max-width: 900px) {
  .site-header.mobile-menu-open::before {
    content: ""; position: fixed; inset: 0; z-index: -1;
    background: rgba(16, 26, 20, 0.45);
    animation: menu-fade 0.25s var(--ease);
  }
  .mobile-menu-open .nav__links { animation: menu-drop 0.28s var(--ease); }
}
@keyframes menu-fade { from { opacity: 0; } }
@keyframes menu-drop { from { opacity: 0; transform: translateY(-10px); } }

/* Tap targets: everything interactive reaches 44px on touch screens */
@media (max-width: 768px) {
  .footer__links a { display: inline-block; padding: 0.45rem 0; }
  .footer__contact li { min-height: 44px; }
  .text-link { padding-block: 0.35rem; }
  .oc__chip { padding: 0.75rem 1.1rem; }
  .breadcrumb a { display: inline-block; padding: 0.3rem 0.1rem; }
}

/* Sticky bottom CTA bar (mobile only, appears after the hero) */
.mobile-cta { display: none; }
@media (max-width: 768px) {
  .mobile-cta {
    display: flex; gap: 0.6rem; align-items: center;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--paper) 94%, transparent);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px -16px rgba(20, 30, 24, 0.35);
    transform: translateY(110%);
    transition: transform 0.3s var(--ease);
  }
  .mobile-cta.is-on { transform: none; }
  .mobile-cta .btn { flex: 1; justify-content: center; min-height: 48px; }
  .mobile-cta__call {
    flex: 0 0 auto; width: 48px; height: 48px; padding: 0 !important;
    border-radius: 50% !important; display: grid; place-items: center;
  }
  .mobile-cta__call svg { width: 20px; height: 20px; }
  body.has-mobile-cta { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) { .mobile-cta { transition: none; } }


/* Offer rail: labelled sections for one-on-one vs group coaching */
.oc__group-label {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: #E9CD7A;
  display: flex; align-items: center; gap: 0.6rem; width: 100%;
}
.oc__group-label::after { content: ""; flex: 1; height: 1px; background: rgba(233, 205, 122, 0.35); }
.oc__group-label--gap { margin-top: 1.1rem; }
@media (max-width: 880px) {
  .oc__group-label { justify-content: center; }
  .oc__group-label::after { display: none; }
  .oc__group-label--gap { margin-top: 0.5rem; }
}


/* Hero testimonials button (sits where the initials were, beside credentials) */
.hero-quote-btn {
  padding: 0.7rem 1.25rem; font-size: 0.92rem; gap: 0.45rem;
  border: 2px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}
.hero-quote-btn:hover { border-color: #FFFFFF; }
.hero-quote-btn__mark {
  font-family: var(--font-head); font-size: 1.5rem; line-height: 0.4;
  color: var(--gold); transform: translateY(0.3em);
}
.hero-quote-btn:hover .hero-quote-btn__mark { color: inherit; }
@media (max-width: 560px) {
  .hero3__trust { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
}

/* ---------- Hero v3: full-bleed photo with readability fade ----------
   The photo fills the entire first pane; a soft gradient veil fades it
   toward the page background on the text side so copy stays readable. */
.hero3 {
  position: relative;
  min-height: clamp(560px, 82vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero3__bg { position: absolute; inset: 0; z-index: 0; }
.hero3__bg picture { display: contents; }
.hero3__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero3 { background: var(--paper); }
.hero3__veil { display: none; }

/* Paper-light hero: the photo carries its own white feather;
   text sits in ink and sage on clean paper */
@media (min-width: 821px) {
  .hero3__content { max-width: min(37rem, 50vw); }
  .hero3__content h1 {
    font-size: clamp(2.8rem, 1.4rem + 4.6vw, 5rem);
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
}
.hero3__veil::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 90px;
  background: linear-gradient(180deg, transparent, var(--paper));
}
.hero3__content {
  position: relative; z-index: 2;
  max-width: 34rem;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero3__content h1 { font-size: clamp(2.6rem, 1.5rem + 3.8vw, 4.2rem); margin: 1.1rem 0 1.4rem; max-width: 20ch; }
.hero3__content .accent { color: var(--gold-deep); display: block; }
.hero3__lead { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 30rem; line-height: 1.6; }
.hero3__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.hero3__trust { display: flex; align-items: center; gap: 0.9rem; margin-top: 2.4rem; }

@media (max-width: 820px) {
  .hero3 { min-height: 0; display: block; }
  .hero3__bg { position: relative; inset: auto; height: auto; display: block; }
  .hero3__bg img {
    width: 100%; height: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .hero3__veil, .hero3__backdrop { display: none; }
  /* text continues the watercolor atmosphere the photo dissolves into,
     then eases back to paper — one piece, like desktop */
  .hero3__content {
    padding: 0 0 2.75rem; margin-top: 0; max-width: none; position: relative;
  }
  .hero3 {
    background: linear-gradient(180deg,
      rgb(229, 234, 226) 0%,
      rgb(229, 234, 226) calc(100% - 240px),
      var(--paper) 100%);
  }
  .hero3__content h1 { max-width: none; }
}
@media (max-width: 560px) {
  .hero3__actions .btn { width: 100%; justify-content: center; }
  .btn { white-space: normal; text-align: center; }
  .mobile-cta .btn { font-size: 0.95rem; padding-inline: 0.75rem; }
}

