/* ===================================================================
   Amanda Savinon Coaching — V2
   Editorial sage-green wellness aesthetic.
   Inspired by botanical magazine layouts.
   =================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage:        #b8c5a8;
  --sage-deep:   #8a9e74;
  --sage-dark:   #5c6e4f;
  --cream:       #f6f3ec;
  --cream-dark:  #ede8dd;
  --warm-white:  #faf9f5;
  --charcoal:    #2c2c2c;
  --charcoal-lt: #4a4a4a;
  --charcoal-footer: #3a3f38;
  --olive:       #6b7c52;
  --terracotta:  #c0825a;
  --gold:        #b89a5a;

  --font-display: 'Cardo', 'Georgia', serif;
  --font-body:    'Lora', 'Georgia', serif;
  --font-ui:      'Inter', 'Helvetica Neue', sans-serif;

  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;   --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  --max: 1200px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { font-size: 17px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container { max-width: 900px; margin: 0 auto; padding: 0 var(--sp-5); }
.container-wide { max-width: var(--max); margin: 0 auto; padding: 0 var(--sp-5); }

/* Utilities */
.eyebrow {
  font-family: var(--font-ui); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--olive); margin-bottom: var(--sp-3);
}
.caps { text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================================
   CTA BUTTONS
   ============================================================ */
.cta {
  display: inline-block; font-family: var(--font-ui);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 0.8rem 2rem; border-radius: 6px;
  background: var(--sage-dark); color: #fff;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
}
.cta:hover {
  background: var(--olive); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(92, 110, 79, 0.25);
}
.cta-sm { font-size: 0.75rem; padding: 0.6rem 1.4rem; }
.cta-lg { font-size: 0.9rem; padding: 1rem 2.5rem; }

.link {
  font-family: var(--font-ui); font-size: 0.8rem; font-weight: 500;
  color: var(--olive); border-bottom: 1px solid var(--sage);
  padding-bottom: 2px; transition: color 0.2s;
}
.link:hover { color: var(--charcoal); border-color: var(--charcoal); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 42px; left: 0; right: 0; z-index: 100;
  padding: var(--sp-4) 0;
  transition: top 0.3s, background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  top: 0;
  background: rgba(246, 243, 236, 0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06); padding: var(--sp-2) 0;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--sp-5);
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: var(--font-ui); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--warm-white); transition: color 0.3s;
}
.nav.scrolled .logo { color: var(--charcoal); }
.logo-all { color: var(--terracotta); }
.logo-parts { color: var(--sage-dark); }
.logo-dot { color: var(--gold); }
.logo-sub {
  display: block; font-size: 0.55em; font-weight: 400;
  letter-spacing: 0.1em; color: var(--charcoal-lt);
}

.menu { display: flex; align-items: center; gap: var(--sp-6); list-style: none; }
.menu a {
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 500;
  color: var(--warm-white); letter-spacing: 0.03em; transition: color 0.2s;
}
.nav.scrolled .menu a { color: var(--charcoal-lt); }
.menu a:hover { color: #fff; }
.nav.scrolled .menu a:hover { color: var(--charcoal); }
.menu-cta {
  background: var(--sage-dark); color: #fff !important;
  padding: 0.45rem 1.2rem; border-radius: 6px;
}
.menu-cta:hover { background: var(--olive); }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: var(--sp-2); flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--warm-white);
  transition: all 0.3s var(--ease);
}
.nav.scrolled .menu-toggle span { background: var(--charcoal); }
.menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.3);
  z-index: 99; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.menu-overlay.visible { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO — Editorial split with overlapping photos
   ============================================================ */
.hero {
  position: relative;
  padding: var(--sp-10) 0 var(--sp-9);
  background-color: #9CD2A0;
  background-image: url('assets/images/hero-wide.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  min-height: 620px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--sp-5);
  display: flex; align-items: center;
  min-height: 560px;
}

.hero-tag {
  font-family: var(--font-ui); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--olive); margin-bottom: var(--sp-5);
}
.hero-text { max-width: 560px; color: var(--warm-white); }
.hero-text h1 {
  font-family: var(--font-display); font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  font-weight: 700; line-height: 1.02; color: var(--warm-white);
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero-text h1 em { font-style: italic; color: var(--warm-white); }
.hero-body {
  font-size: 1.05rem; color: rgba(255,255,255,0.95);
  max-width: 420px; margin-bottom: var(--sp-5); line-height: 1.7;
}
.hero-hook {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.95rem; color: rgba(255,255,255,0.9);
  margin-bottom: var(--sp-6); max-width: 420px; line-height: 1.6;
}
.hero-hook a {
  color: var(--warm-white); border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: color 0.2s, border-color 0.2s;
}
.hero-hook a:hover { color: var(--warm-white); border-bottom-color: var(--warm-white); }
.hero .cta {
  background: var(--terracotta); color: var(--warm-white);
}
.hero .cta:hover {
  background: #a96e48; box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ============================================================
   CREDENTIAL MARQUEE — slim editorial strip under hero
   ============================================================ */
.marquee {
  background: var(--cream);
  border-top: 1px solid rgba(92, 110, 79, 0.12);
  border-bottom: 1px solid rgba(92, 110, 79, 0.12);
  padding: var(--sp-4) 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 48s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding-right: var(--sp-5);
  flex-shrink: 0;
}
.marquee-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  white-space: nowrap;
}
.marquee-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  white-space: nowrap;
}
.marquee-sep {
  color: var(--sage-deep);
  font-size: 0.75rem;
  opacity: 0.7;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   STATEMENT — Full-width sage band
   ============================================================ */
.statement {
  background: var(--sage);
  padding: var(--sp-7) 0;
}
.statement h2 {
  font-family: var(--font-display); font-style: normal;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.15;
  color: var(--charcoal); text-align: center;
  max-width: 800px; margin: 0 auto;
}
.statement em { font-style: italic; color: #fff; }

/* ============================================================
   SHIFT BAND — Dark sage moment-of-choice band
   ============================================================ */
.shift-band {
  background: var(--sage-dark);
  padding: var(--sp-8) 0;
}
.shift-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.7vw, 2.2rem);
  font-weight: 400; line-height: 1.35;
  color: var(--warm-white); text-align: center;
  max-width: 900px; margin: 0 auto;
}
.shift-band em { font-style: italic; color: var(--gold); }
.statement-attr {
  font-family: var(--font-ui); font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal-lt); text-align: center;
  margin-top: var(--sp-5); opacity: 0.75;
}
.statement-sub {
  font-family: var(--font-body); font-size: 1.15rem;
  color: var(--charcoal-lt); text-align: center;
  max-width: 560px; margin: var(--sp-5) auto 0; line-height: 1.7;
}

/* ============================================================
   ABOUT INTRO — Text + photo, cream bg
   ============================================================ */
.who-section {
  padding: var(--sp-9) 0;
  background: var(--cream-dark);
}
.about-intro {
  background: var(--warm-white);
  padding: var(--sp-9) 0;
}
.about-flow { overflow: hidden; }
.about-video-float {
  float: right; margin: 0 0 var(--sp-5) var(--sp-6);
  max-width: 280px;
}
.about-video-float video {
  width: 100%; border-radius: 12px; display: block;
}
.about-video-caption {
  font-family: var(--font-ui); font-size: 0.7rem;
  color: var(--charcoal-lt); text-align: center;
  margin-top: var(--sp-2); letter-spacing: 0.05em;
}
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-8); align-items: start;
}
.about-lead {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  color: var(--terracotta); line-height: 1.25;
  margin-bottom: var(--sp-5); font-weight: 700;
}
.about-text p, .about-flow p { color: var(--charcoal-lt); margin-bottom: var(--sp-4); }
.about-cta-text {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.4rem; color: var(--terracotta); margin-top: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.about-photo img {
  width: 100%; border-radius: 12px; object-fit: cover;
  aspect-ratio: 3/4; max-height: 500px;
}
.about-photo-float {
  float: left;
  width: 40%;
  max-width: 420px;
  margin: 0 var(--sp-6) var(--sp-4) 0;
  shape-outside: inset(0 round 12px);
}
.about-photo-float img {
  width: 100%; border-radius: 12px; display: block;
  aspect-ratio: 3/4; object-fit: cover;
}

/* ============================================================
   JOURNEY — Process steps on sage
   ============================================================ */
.journey {
  background: var(--cream-dark);
  padding: var(--sp-9) 0;
}
.journey-header { margin-bottom: var(--sp-7); }
.journey-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700; line-height: 1.1; color: var(--charcoal);
}
.journey-header em { font-style: italic; font-weight: 400; color: var(--terracotta); }
.journey-intro {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; line-height: 1.6;
  color: var(--charcoal-lt);
  margin-top: var(--sp-4); max-width: 640px;
}
.journey-lineage {
  font-family: var(--font-ui); font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--olive); opacity: 0.85;
  margin-top: var(--sp-3); max-width: 640px;
  line-height: 1.5;
}

.journey-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5);
}
.journey-card {
  background: var(--sage); border-radius: 14px;
  padding: var(--sp-6) var(--sp-5);
}
.journey-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: var(--cream); display: block; margin-bottom: var(--sp-3);
  line-height: 1;
}
.journey-card h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--charcoal); margin-bottom: var(--sp-3);
}
.journey-card p {
  font-size: 0.9rem; color: var(--charcoal-lt); line-height: 1.6;
}

.journey-cta {
  text-align: center; margin-top: var(--sp-7);
}
.journey-cta-alt {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-size: 0.85rem !important;
  color: var(--charcoal-lt) !important;
  margin-top: var(--sp-4) !important;
  margin-bottom: 0 !important;
}
.journey-cta-alt a {
  color: var(--sage-dark); font-weight: 600;
  border-bottom: 1px solid rgba(92, 110, 79, 0.35);
  transition: color 0.2s, border-color 0.2s;
}
.journey-cta-alt a:hover { color: var(--charcoal); border-color: var(--charcoal); }
.journey-cta p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--charcoal-lt);
  margin-bottom: var(--sp-4);
}

/* ============================================================
   QUALIFY — "Sound familiar?" re-qualifier before the ask
   ============================================================ */
.qualify {
  background: var(--cream-dark);
  padding: var(--sp-9) 0;
}
.qualify .eyebrow {
  color: var(--olive);
}
.qualify h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: var(--sp-6);
}
.qualify h2 em { font-style: italic; color: var(--terracotta); }
.qualify-list {
  list-style: none; padding: 0; margin: 0;
  max-width: 720px;
}
.qualify-list li {
  position: relative; padding-left: 1.8em;
  color: var(--charcoal); line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: var(--sp-3);
}
.qualify-list li::before {
  content: ""; position: absolute;
  left: 0; top: 0.75em;
  width: 0.8em; height: 2px;
  background: var(--sage-dark);
}

/* ============================================================
   SWIPE — emotional push between qualify and services
   ============================================================ */
.swipe {
  background: var(--sage);
  padding: var(--sp-8) 0;
  text-align: center;
}
.swipe p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.45; color: var(--charcoal);
  max-width: 780px; margin: 0 auto;
  font-weight: 400;
}
.swipe p em {
  color: var(--terracotta); font-weight: 700;
}

/* ============================================================
   SERVICES — Cards with images, cream bg
   ============================================================ */
.services {
  background: var(--cream-dark);
  padding: var(--sp-9) 0;
}
.services .eyebrow { color: var(--sage-dark); }
.services h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--charcoal);
  margin-bottom: var(--sp-7);
}
.services em { font-style: italic; color: var(--terracotta); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5);
  align-items: stretch;
}
.service-card {
  background: var(--warm-white); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(92, 110, 79, 0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(92, 110, 79, 0.15);
  border-color: var(--sage-deep);
}
.service-card--featured {
  border: 2px solid var(--sage-deep);
  box-shadow: 0 6px 24px rgba(92, 110, 79, 0.12);
  position: relative;
}
.service-badge {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  z-index: 2;
  font-family: var(--font-ui); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm-white); background: var(--sage-dark);
  padding: 0.35rem 0.7rem; border-radius: 999px;
}

.service-img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.service-body {
  padding: var(--sp-5);
  flex: 1; display: flex; flex-direction: column;
}
.service-body p { flex: 1; }
.service-body .cta, .service-body .service-links { margin-top: auto; align-self: center; }
.service-body h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--charcoal); margin-bottom: var(--sp-3);
}
.service-body p {
  font-size: 0.9rem; color: var(--charcoal-lt);
  line-height: 1.6; margin-bottom: var(--sp-5);
}
.service-links { display: flex; align-items: center; gap: var(--sp-3); }
.service-links .cta { white-space: nowrap; }
.service-links-or {
  font-family: var(--font-ui); font-size: 0.75rem;
  color: var(--charcoal-lt); font-style: italic;
}

/* Pricing tiers inside service card */
.pricing-options {
  display: flex; gap: var(--sp-5); margin-bottom: var(--sp-4);
}
.pricing-tier {
  text-align: center; flex: 1;
  padding: var(--sp-4); border-radius: 10px;
  background: var(--cream); position: relative;
}
.pricing-tier--recommended {
  border: 2px solid var(--sage-deep);
}
.pricing-badge {
  font-family: var(--font-ui); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; background: var(--sage-deep);
  padding: 0.2rem 0.6rem; border-radius: 4px;
  display: inline-block; margin-bottom: var(--sp-2);
}
.pricing-name {
  font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 600; color: var(--sage-dark); display: block;
  margin-bottom: var(--sp-2);
}
.pricing-amount {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; color: var(--charcoal); display: block;
}
.pricing-label {
  font-family: var(--font-ui); font-size: 0.75rem;
  color: var(--charcoal-lt); text-transform: uppercase;
  letter-spacing: 0.08em; display: block;
  margin-bottom: var(--sp-3);
}
.pricing-includes {
  list-style: none; text-align: left; padding: 0;
}
.pricing-includes li {
  font-family: var(--font-ui); font-size: 0.78rem;
  color: var(--charcoal-lt); line-height: 1.5;
  padding-left: 1em; position: relative;
}
.pricing-includes li::before {
  content: "\2713"; position: absolute; left: 0;
  color: var(--sage-deep); font-weight: 600;
}
/* Standalone pricing block below service cards */
.pricing-detail {
  max-width: 700px; margin: var(--sp-7) auto 0;
  text-align: center;
}
.pricing-detail h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--charcoal); margin-bottom: var(--sp-5);
}
.pricing-detail .pricing-options {
  justify-content: center;
}
.pricing-detail .pricing-note {
  margin-top: var(--sp-4);
}

.pricing-note {
  font-family: var(--font-ui); font-size: 0.8rem;
  color: var(--charcoal-lt); margin-bottom: var(--sp-5);
}
.pricing-note .link { color: var(--sage-deep); text-decoration: underline; }

.not-for {
  margin-top: var(--sp-8); text-align: center;
  border-top: 1px solid rgba(92, 110, 79, 0.2);
  padding-top: var(--sp-7);
}
.not-for p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.45; color: var(--charcoal);
  max-width: 760px; margin: 0 auto;
  font-weight: 400;
}
.not-for p strong {
  font-style: normal; font-weight: 700;
  color: var(--terracotta);
}
.not-for p em { font-style: italic; }

/* ============================================================
   FAQ — accordion for common objections
   ============================================================ */
.faq {
  background: var(--warm-white);
  padding: var(--sp-9) 0;
}
.faq .eyebrow {
  text-align: center; margin-bottom: var(--sp-6);
}
.faq-item {
  border-top: 1px solid rgba(92, 110, 79, 0.18);
  padding: var(--sp-5) 0;
}
.faq-item:last-of-type { border-bottom: 1px solid rgba(92, 110, 79, 0.18); }
.faq-item summary {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  color: var(--charcoal); cursor: pointer;
  list-style: none; position: relative;
  padding-right: 2em;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-ui); font-weight: 400;
  font-size: 1.6rem; color: var(--sage-dark);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after {
  content: "\2212"; /* minus */
  transform: translateY(-50%);
}
.faq-item summary:hover { color: var(--sage-dark); }
.faq-body {
  margin-top: var(--sp-4);
}
.faq-body p {
  font-size: 1rem; color: var(--charcoal-lt);
  line-height: 1.75; max-width: 720px;
}

/* ============================================================
   TESTIMONIALS — Clean cards on cream
   ============================================================ */
.stories {
  background: var(--sage);
  padding: var(--sp-7) 0;
  overflow: hidden;
}
.stories h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--charcoal);
  margin-bottom: var(--sp-7);
}
.stories em { font-style: italic; color: var(--terracotta); }

.stories-carousel {
  display: flex; align-items: center; gap: var(--sp-4);
  max-width: 1200px; margin: 0 auto var(--sp-7);
  padding: 0 var(--sp-5);
}
.carousel-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.carousel-strip {
  display: flex;
  gap: var(--sp-4);
  transition: transform 0.45s var(--ease);
  will-change: transform;
}
.carousel-strip > .story-card {
  flex: 0 0 calc((100% - var(--sp-4) * 2) / 3);
  min-width: 0;
}
@media (max-width: 900px) {
  .carousel-strip > .story-card {
    flex-basis: calc((100% - var(--sp-4)) / 2);
  }
}
@media (max-width: 600px) {
  .carousel-strip > .story-card {
    flex-basis: 100%;
  }
}
.carousel-nav {
  flex: 0 0 auto;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--warm-white); color: var(--charcoal);
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.carousel-nav:hover {
  background: #fff; transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.carousel-nav:focus-visible {
  outline: 2px solid var(--sage-dark); outline-offset: 2px;
}
.carousel-nav:disabled {
  opacity: 0.35; cursor: not-allowed;
  transform: none; box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.carousel-nav:disabled:hover {
  background: var(--warm-white); transform: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.story-card {
  background: var(--cream-dark); border-radius: 14px;
  padding: var(--sp-5) var(--sp-5) var(--sp-5);
  border: 1px solid rgba(92, 110, 79, 0.12);
  display: flex; flex-direction: column;
}
.story-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage-deep); color: var(--warm-white);
  font-family: var(--font-display); font-style: italic;
  font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
  letter-spacing: 0;
}
.story-avatar--photo {
  object-fit: cover;
  background: transparent;
  display: block;
}
.story-card p {
  font-family: var(--font-body); font-size: 0.9rem;
  line-height: 1.6; color: var(--charcoal-lt);
  margin: 0 0 var(--sp-4);
  flex: 1;
}
.story-card cite {
  display: block;
  font-family: var(--font-ui); font-style: normal;
  font-size: 0.78rem; font-weight: 600; color: var(--olive);
  letter-spacing: 0.02em;
}

.pull-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--terracotta); text-align: center; line-height: 1.4;
}

/* ============================================================
   BIO — Magazine layout with offset blocks
   ============================================================ */
.bio {
  background: var(--warm-white);
  padding: var(--sp-9) 0;
}

.bio-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-7); align-items: center;
}
.bio-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--charcoal); margin-bottom: var(--sp-5);
}
.bio-text em { font-style: italic; color: var(--terracotta); }
.bio-text h3 {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.5rem; color: var(--charcoal);
  margin-bottom: var(--sp-4);
}
.bio-text p { font-size: 0.95rem; color: var(--charcoal); margin-bottom: var(--sp-4); }
.bio-text strong { color: var(--gold); }
.bio-lineage {
  margin-top: var(--sp-5) !important;
  padding-top: var(--sp-4); border-top: 1px solid rgba(92, 110, 79, 0.3);
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem !important; color: var(--charcoal) !important;
  line-height: 1.65;
}
.bio-lineage em { font-style: italic; color: var(--sage-dark) !important; font-weight: 400; }
.bio-bridge {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal-lt);
  margin-bottom: var(--sp-5) !important;
}
.bio-video {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding-top: 80px;
}
.bio-video video {
  width: 100%; max-width: 368px; border-radius: 12px; display: block;
  border: 5px solid var(--warm-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.bio-video-caption {
  font-family: var(--font-ui); font-size: 0.7rem;
  color: var(--charcoal); text-align: center;
  margin-top: var(--sp-2); letter-spacing: 0.05em;
}

.bio-main h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--charcoal); margin-bottom: var(--sp-5);
}
.bio-main em { font-style: italic; color: #fff; }
.bio-main p { color: var(--charcoal); margin-bottom: var(--sp-4); }

.bio-photo img {
  width: 100%; border-radius: 12px; object-fit: cover;
  aspect-ratio: 3/4; border: 5px solid var(--warm-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.bio-story h3 {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.5rem; color: var(--charcoal);
  margin-bottom: var(--sp-4);
}
.bio-story p { font-size: 0.95rem; color: var(--charcoal); margin-bottom: var(--sp-4); }
.bio-story strong { color: var(--gold); }

/* ============================================================
   STAY CONNECTED — Mailing list + Instagram
   ============================================================ */
.stay-connected {
  padding: var(--sp-8) 0;
  background: var(--cream);
}
.connect-header {
  text-align: center; margin-bottom: var(--sp-7);
}
.connect-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.15;
  color: var(--charcoal);
}
.connect-header em { font-style: italic; color: var(--terracotta); }
.connect-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-5); text-align: center;
}
.connect-card {
  background: var(--warm-white);
  border: 1px solid rgba(92, 110, 79, 0.12);
  border-radius: 14px;
  padding: var(--sp-7) var(--sp-6);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
}
.connect-grid h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--charcoal); margin-bottom: var(--sp-3);
}
.connect-grid p {
  font-size: 0.9rem; color: var(--charcoal-lt);
  line-height: 1.6; margin-bottom: var(--sp-5);
  max-width: 320px; margin-left: auto; margin-right: auto;
}
.cta-outline {
  background: transparent; color: var(--sage-dark);
  border-color: var(--sage-deep);
}
.cta-outline:hover {
  background: var(--sage-deep); color: #fff;
}

/* Subscribe form */
.subscribe-form { max-width: 340px; margin: 0 auto; }
.subscribe-fields {
  display: flex; flex-direction: column; gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.subscribe-input {
  font-family: var(--font-ui); font-size: 0.85rem;
  padding: 0.6rem 0.9rem; border-radius: 6px;
  border: 1.5px solid var(--sage); background: var(--warm-white);
  color: var(--charcoal); width: 100%;
  transition: border-color 0.2s;
}
.subscribe-input:focus {
  outline: none; border-color: var(--sage-dark);
}
.subscribe-input::placeholder { color: var(--charcoal-lt); opacity: 0.5; }
.subscribe-btn { width: 100%; text-align: center; }
.subscribe-btn:disabled {
  opacity: 0.6; cursor: not-allowed; transform: none !important;
  box-shadow: none !important;
}
.subscribe-msg {
  font-family: var(--font-ui); font-size: 0.8rem;
  margin-top: var(--sp-3); min-height: 1.2em;
}
.subscribe-msg--success { color: var(--sage-dark); }
.subscribe-msg--error { color: var(--terracotta); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  background: var(--sage-dark);
  padding: var(--sp-10) 0;
  text-align: center;
}
.final-nudge {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; color: rgba(255,255,255,0.55);
  max-width: 600px; margin: 0 auto var(--sp-6); line-height: 1.6;
}
.final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: #fff;
  max-width: 700px; margin: 0 auto var(--sp-4); line-height: 1.4;
}
.final em { font-style: italic; color: var(--sage); }
.final-sub {
  font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: var(--sp-6);
}
.final .cta {
  background: var(--terracotta); color: #fff;
}
.final .cta:hover {
  background: #a96e48;
  box-shadow: 0 4px 16px rgba(192, 130, 90, 0.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal-footer); color: rgba(255,255,255,0.85);
  padding: var(--sp-7) 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-4);
}
.footer-brand {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; color: #fff;
}
.footer-links { display: flex; gap: var(--sp-5); }
.footer-links a {
  font-family: var(--font-ui); font-size: 0.8rem;
  color: rgba(255,255,255,0.85); transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.7rem; width: 100%; text-align: center; margin-top: var(--sp-5); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  html { font-size: 16px; }

  .hero {
    min-height: 560px;
    background-position: 75% center;
  }
  .hero::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 55%, rgba(0,0,0,0) 100%);
  }
  .hero-grid { min-height: 500px; }
  .hero-text { max-width: 100%; }
  .hero-body, .hero-hook { max-width: 100%; }

  .about-grid,
  .bio-grid { grid-template-columns: 1fr; }
  .about-photo-float {
    float: none; width: 100%; max-width: 420px;
    margin: 0 auto var(--sp-5);
  }
  /* Mobile bio: halve the gap between text and video, and put the
     caption above the video (it stays below on desktop). */
  .bio-video {
    margin-top: var(--sp-3);
    padding-top: 40px;
    flex-direction: column-reverse;
    gap: var(--sp-2);
  }
  .bio-video-caption { margin-top: 0; }

  .journey-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .connect-grid { grid-template-columns: 1fr; }

  /* Mobile nav must lift the whole stacking context so the slide-in
     menu (inside .nav) renders above page content. */
  .nav { z-index: 1000; }
  .menu-toggle { display: flex; position: relative; z-index: 1001; }
  /* X (close) needs to read on the cream-dark panel — force black. */
  .menu-toggle.active span { background: var(--charcoal); }

  /* Menu hidden until explicitly opened — no transform/animation
     midstate that can be captured half-rendered. */
  .menu { display: none; }
  .menu.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-4);
    /* Drops out of the nav rather than hanging from the viewport top
       — `absolute` is positioned relative to the nearest positioned
       ancestor, which is the .nav (position: fixed). top: 100% pins
       the panel right under the nav, so it always sits below the
       title bar regardless of scroll state. */
    position: absolute;
    top: 100%;
    right: var(--sp-5);
    width: fit-content;
    min-width: 180px;
    max-width: 90vw;
    background: var(--cream-dark);
    padding: var(--sp-5) var(--sp-7) var(--sp-6) var(--sp-6);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    border-radius: 0 0 8px 8px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* Cap height so a long menu doesn't run past the viewport bottom. */
    max-height: calc(100dvh - 120px);
  }
  .menu a {
    font-size: 1rem;
    color: var(--charcoal);
    padding: var(--sp-2) 0;
  }
  .menu a:hover { color: var(--charcoal); }
  .nav.scrolled .menu a { color: var(--charcoal); }
  .menu .menu-cta {
    color: #fff !important;
    text-align: center;
    margin-top: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
  }

  /* Invisible overlay — covers the rest of the page so a tap outside
     the panel closes the menu (handler in script.js). No dimming. */
  .menu-overlay { background: transparent; }

  /* No body-scroll lock: position: fixed on body resets scroll
     position to the top, and the user wants the page underneath to
     remain at its current scroll position when the menu opens.
     The panel's height: 100dvh + overscroll-behavior: contain handle
     iOS Safari's URL-bar resize without locking the page. */

  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 600px) {
  .hero-text h1 { font-size: 2.8rem; }
  .journey-grid { grid-template-columns: 1fr; }
  .pricing-options { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* === Visually hidden (sr-only) utility === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === Event marquee — Shift workbook live walk-through === */
.event-marquee {
  background: var(--cream);
  color: var(--charcoal);
  overflow: hidden;
  padding: 10px 0;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-top: 1px solid rgba(44, 44, 44, 0.08);
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
  position: relative;
}
.event-marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
  will-change: transform;
}
.event-marquee-item,
.event-marquee-sep { flex-shrink: 0; }
.event-marquee-sep { opacity: 0.45; }
a.event-marquee-item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.event-marquee-cta {
  display: inline-block;
  margin-left: 14px;
  padding: 3px 12px 4px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
  vertical-align: 1px;
}
a.event-marquee-item:hover .event-marquee-cta,
a.event-marquee-item:focus-visible .event-marquee-cta {
  background: #a96e48;
  text-decoration: none;
}
.event-marquee:hover .event-marquee-track,
.event-marquee:focus-within .event-marquee-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .event-marquee-track {
    animation: none;
    width: 100%;
    justify-content: center;
    gap: 24px;
    padding: 0 20px;
    overflow: hidden;
    white-space: normal;
    text-align: center;
  }
  .event-marquee-track > *:nth-child(n+3) { display: none; }
}
