/* ============================================
   Monarch Mothers — shared site styles
   v1 launch · April 2026
   Brand: forest / sage / tan / cream / blush
   Type:  Playfair Display + Lato
   ============================================ */

/* ── RESET ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

/* ── TOKENS ───────────────────────────────── */
:root {
  /* Brand palette (per brand guide) */
  --forest:       #2C3828;
  --sage:         #7D8F7A;
  --sage-soft:    #e9ede8;
  --tan:          #B5945B;
  --cream:        #EDE7DB;
  --cream-deep:   #ddd8ce;
  --blush:        #E4D3C3;
  --olive:        #7A7266;
  --ink:          #2c2c28;
  --white:        #ffffff;
  /* Soft off-white for card surfaces — warmer than #fff so it doesn't punch against --cream. */
  --paper:        #faf6ec;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  /* Layout */
  --container: 1100px;
  --reading:   720px;
}

/* ── BASE ────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--forest);
}
h1 em, h2 em, h3 em { font-style: italic; color: var(--sage); font-weight: 400; }

p { line-height: 1.7; }

/* ── NAV ─────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.55; }
.nav-cta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 3px;
  font-weight: 400;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.55; }

/* ── SECTIONS ────────────────────────────── */
section { padding: var(--s-7) 60px; }
.container { max-width: var(--container); margin: 0 auto; }
.container.narrow { max-width: var(--reading); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 400;
  display: block;
  margin-bottom: var(--s-3);
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--sage);
  margin: var(--s-4) 0;
  border: 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 17px 40px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, opacity 0.2s, color 0.2s;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover { background: #1f2a1c; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(237, 231, 219, 0.35);
  padding: 16px 40px;
}
.btn-ghost:hover { opacity: 0.7; }

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
  padding: 16px 40px;
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }

/* Disabled / coming-soon state — used while Stripe is not yet wired */
.btn-pending {
  background: var(--sage);
  color: var(--cream);
  cursor: not-allowed;
  opacity: 0.85;
}
.btn-pending:hover { opacity: 0.85; }

.btn-meta {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--olive);
  font-style: italic;
  font-family: var(--font-display);
}

/* ── HERO ────────────────────────────────── */
.hero {
  background: var(--cream);
  padding: 130px 60px 80px;
  text-align: center;
}
/* Tighten the handoff from hero into the first content section. */
.hero + section { padding-top: var(--s-6); }
.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.12;
  max-width: 820px;
  margin: 0 auto var(--s-4);
}
.hero-sub {
  font-size: 17px;
  color: var(--olive);
  max-width: 580px;
  margin: 0 auto var(--s-6);
  line-height: 1.85;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Credential byline — sits between hero-sub and CTAs */
.hero-credential {
  font-size: 14px;
  letter-spacing: 0.4px;
  color: var(--olive);
  margin: calc(var(--s-6) * -1 + 4px) auto var(--s-5);
  max-width: 580px;
  font-weight: 300;
  border-left: 2px solid var(--sage);
  padding-left: 14px;
}
.hero-credential strong { color: var(--forest); font-weight: 600; }
.hero.hero-split .hero-credential {
  max-width: 480px;
  margin: calc(var(--s-5) * -1 + 4px) 0 var(--s-5);
  text-align: left;
}

.hero-image {
  margin-top: var(--s-7);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.hero-image img,
.hero-image .hero-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

/* ── HERO SPLIT VARIANT (text left, portrait photo right) ── */
.hero.hero-split {
  padding: 110px 0 100px;
  text-align: left;
}
.hero.hero-split .container { padding: 0 60px; }
.hero.hero-split .split { gap: 72px; align-items: center; }
.hero.hero-split .hero-content { text-align: left; }
.hero.hero-split h1 {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.12;
  max-width: none;
  margin: 0 0 var(--s-4);
}
.hero.hero-split .hero-sub {
  max-width: 480px;
  margin: 0 0 var(--s-5);
}
.hero.hero-split .hero-actions { justify-content: flex-start; }
.hero-photo-frame {
  aspect-ratio: 4 / 5;
  max-height: 620px;
  margin-left: auto;
}
.hero-photo-frame .ciara-photo {
  object-position: center 25%;
}

/* Hero micro-testimonial (programs page) — flush-left on desktop,
   auto-centers on mobile when hero-content flips to text-align: center. */
.hero-micro-testimonial {
  margin: var(--s-4) 0 0;
  padding-top: var(--s-3);
  border-top: 1px solid rgba(122, 126, 96, 0.2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--olive);
  line-height: 1.6;
  max-width: 520px;
}
.hero-micro-testimonial span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 6px;
}

/* ── DARK SECTION (forest bg) ────────────── */
.section-dark {
  background: var(--forest);
  color: var(--cream);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .eyebrow { color: var(--sage); }
.section-dark p { color: rgba(237, 231, 219, 0.78); }

/* ── BLUSH SECTION (testimonials etc.) ───── */
.section-blush { background: var(--blush); }
.section-sage  { background: var(--sage-soft); }

/* ── TWO-COL SPLIT ───────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.media-right { direction: ltr; }
.split h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-bottom: var(--s-3);
}
.split p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--olive);
  font-weight: 300;
}
.section-dark .split p { color: rgba(237, 231, 219, 0.7); }

/* ── PROOF / STATS ───────────────────────── */
.stat-stack { display: flex; flex-direction: column; gap: 18px; }
.stat-card {
  background: rgba(237, 231, 219, 0.06);
  border: 1px solid rgba(237, 231, 219, 0.12);
  padding: 28px 32px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--cream);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(237, 231, 219, 0.72);
  font-weight: 300;
}
.stat-source {
  font-size: 11px;
  display: block;
  margin-top: 12px;
  letter-spacing: 0.04em;
  font-style: italic;
  color: rgba(237, 231, 219, 0.42);
}

/* ── PHASES (3-up overview) ──────────────── */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: var(--s-6);
}
.phase-card {
  background: var(--cream-deep);
  padding: 48px 38px;
  text-align: left;
}
.phase-card.dark { background: var(--sage); color: var(--cream); }
.phase-card.dark h3 { color: var(--cream); }
.phase-card.dark p  { color: rgba(237, 231, 219, 0.82); }
.phase-card.dark .eyebrow { color: rgba(237, 231, 219, 0.65); }
.phase-card h3 { font-size: 22px; margin-bottom: 14px; color: var(--forest); }
.phase-card p { font-size: 14px; color: var(--olive); font-weight: 300; line-height: 1.75; }

/* ── PHASE DETAIL (full breakdown) ───────── */
.phase-detail-block {
  border-top: 1px solid var(--cream-deep);
  padding: var(--s-6) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.phase-detail-block:last-child { border-bottom: 1px solid var(--cream-deep); }
.phase-detail-block h3 { font-size: 26px; margin-bottom: 18px; line-height: 1.25; }
.phase-detail-block .phase-intro {
  font-size: 14px;
  color: var(--olive);
  margin-bottom: var(--s-3);
  line-height: 1.85;
}
.focus-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.focus-list li {
  font-size: 14px;
  color: var(--olive);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
  font-weight: 300;
}
.focus-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 13px;
  top: 1px;
}
.philosophy-box {
  background: var(--sage-soft);
  padding: var(--s-5);
}
.philosophy-box .phil-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 400;
  display: block;
  margin-bottom: 14px;
}
.philosophy-box p {
  font-size: 16px;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--forest);
  line-height: 1.8;
}

/* ── INCLUDED / WHAT YOU GET ─────────────── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--s-6);
}
.included-card {
  background: var(--paper);
  padding: 40px;
  border: 1px solid var(--cream-deep);
}
.included-card.featured {
  background: var(--forest);
  border-color: var(--forest);
}
.included-card h4 {
  font-size: 18px;
  margin-bottom: var(--s-3);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cream-deep);
  color: var(--forest);
}
.included-card.featured h4 {
  color: var(--cream);
  border-bottom-color: rgba(237, 231, 219, 0.15);
}
.included-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.included-list li {
  font-size: 14px;
  color: var(--olive);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
  font-weight: 300;
}
.included-card.featured .included-list li { color: rgba(237, 231, 219, 0.78); }
.included-list li::before {
  content: '●';
  color: var(--sage);
  font-size: 7px;
  margin-top: 7px;
  flex-shrink: 0;
}
.included-card.featured .included-list li::before { color: rgba(237, 231, 219, 0.5); }

/* ── JOURNEY / TOUCHPOINTS ───────────────── */
.touchpoints { display: flex; flex-direction: column; margin-top: var(--s-6); }
.touchpoint {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  padding: var(--s-5) 0;
  border-top: 1px solid var(--cream-deep);
  align-items: start;
}
.touchpoint:last-child { border-bottom: 1px solid var(--cream-deep); }
.touchpoint-time {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  padding-top: 8px;
}
.touchpoint-content h4 { font-size: 22px; margin-bottom: 12px; color: var(--forest); }
.touchpoint-content p {
  font-size: 15px;
  color: var(--olive);
  line-height: 1.85;
  font-weight: 300;
  max-width: 620px;
}
.touchpoint-meta {
  font-size: 12px;
  color: var(--sage);
  display: inline-block;
  margin-top: 12px;
  font-style: italic;
  font-family: var(--font-display);
}

/* ── TESTIMONIALS ────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: var(--s-6);
}
.testimonial-card {
  background: var(--paper);
  padding: 44px;
  border: 1px solid var(--cream-deep);
}
.testimonial-card.featured {
  grid-column: 1 / -1;
  background: var(--forest);
  border-color: var(--forest);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  color: var(--forest);
  margin-bottom: var(--s-3);
}
.testimonial-card.featured .testimonial-quote { font-size: 22px; color: var(--cream); }
.testimonial-name {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 700;
}
.testimonial-card.featured .testimonial-name { color: rgba(237, 231, 219, 0.55); }
.testimonial-context {
  font-size: 13px;
  color: var(--sage);
  margin-top: 6px;
  font-style: italic;
  font-family: var(--font-display);
}
.testimonial-card.featured .testimonial-context { color: rgba(237, 231, 219, 0.45); }

/* DM screenshot grid */
.dm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--s-5);
}
.dm-screenshot {
  background: var(--paper);
  border: 1px solid var(--cream-deep);
  padding: 12px;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
  font-size: 13px;
  font-style: italic;
  font-family: var(--font-display);
  text-align: center;
}
.dm-screenshot img { width: 100%; height: 100%; object-fit: cover; }

/* ── PRICING BLOCK ───────────────────────── */
.pricing-block {
  background: var(--paper);
  border: 1px solid var(--cream-deep);
  padding: 64px;
  text-align: center;
  max-width: 720px;
  margin: var(--s-6) auto 0;
}
.pricing-block .eyebrow { color: var(--sage); }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--forest);
  margin: var(--s-3) 0 12px;
  line-height: 1;
}
.pricing-amount .currency { font-size: 32px; vertical-align: top; line-height: 1.2; margin-right: 4px; }
.pricing-terms {
  font-size: 14px;
  color: var(--olive);
  margin-bottom: var(--s-5);
  line-height: 1.7;
}
.pricing-terms strong { color: var(--forest); font-weight: 700; }
.pricing-payment-note {
  font-size: 13px;
  color: var(--olive);
  margin-top: var(--s-3);
  font-style: italic;
  font-family: var(--font-display);
}

/* ── FAQ (no-JS via <details>) ───────────── */
.faq-list { margin-top: var(--s-6); border-top: 1px solid var(--cream-deep); }
.faq-item {
  border-bottom: 1px solid var(--cream-deep);
  padding: var(--s-3) 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--forest);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--sage);
  font-size: 28px;
  font-weight: 300;
  margin-left: 16px;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-answer {
  padding: 8px 0 16px;
  font-size: 15px;
  color: var(--olive);
  line-height: 1.85;
  max-width: 720px;
}

/* ── CTA STRIP ───────────────────────────── */
.cta-strip {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: var(--s-7) 60px;
}
.cta-strip h2 {
  color: var(--cream);
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: var(--s-3);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip p {
  color: rgba(237, 231, 219, 0.75);
  max-width: 580px;
  margin: 0 auto var(--s-5);
  font-size: 16px;
}

/* ── FOOTER ─────────────────────────────── */
.footer {
  background: var(--forest);
  color: rgba(237, 231, 219, 0.65);
  padding: var(--s-6) 60px var(--s-4);
  font-size: 13px;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(237, 231, 219, 0.15);
}
.footer-brand { font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--cream); margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: rgba(237, 231, 219, 0.65); font-style: italic; font-family: var(--font-display); }
.footer h5 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--s-2);
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(237, 231, 219, 0.65); text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: var(--cream); }
.footer-disclaimer {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-4) 0 var(--s-2);
  border-top: 1px solid rgba(237, 231, 219, 0.12);
  font-size: 12px;
  color: rgba(237, 231, 219, 0.55);
  line-height: 1.7;
  letter-spacing: 0.2px;
}
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: var(--s-3);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(237, 231, 219, 0.45);
}

/* Safety note block — e.g., "Before you begin" on programs page */
.safety-note {
  max-width: 680px;
  margin: var(--s-6) auto 0;
  padding: var(--s-4) var(--s-5);
  background: rgba(125, 143, 122, 0.08);
  border-left: 3px solid var(--sage);
  border-radius: 2px;
}
.safety-note .eyebrow { color: var(--sage); margin-bottom: 10px; display: block; }
.safety-note p {
  font-size: 14px;
  color: var(--olive);
  line-height: 1.8;
  margin: 0;
}

/* ── PLACEHOLDER MARKERS (for v1 review) ── */
.placeholder {
  background: rgba(181, 148, 91, 0.12);
  border: 1px dashed var(--tan);
  color: var(--tan);
  padding: var(--s-3);
  font-family: monospace;
  font-size: 13px;
  margin: var(--s-2) 0;
  border-radius: 2px;
}
.placeholder strong { color: var(--tan); }
.placeholder-image {
  background: var(--cream-deep);
  border: 1px dashed var(--olive);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 13px;
  text-align: center;
  padding: var(--s-3);
  min-height: 280px;
}

/* ── UTILITIES ───────────────────────────── */
.text-center { text-align: center; }
.mt-3 { margin-top: var(--s-3); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }

/* ── PHOTO COMPONENTS ────────────────────── */
/* Editorial portrait inside a split column (about hero, home "who it&apos;s for") */
.ciara-photo-frame {
  width: 100%;
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4 / 5;
}
.ciara-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* (Hero photo dimensions handled in .hero-image rule above to avoid specificity conflicts.) */

/* ── BIO TYPOGRAPHY (about page) ─────────── */
.bio-body {
  font-size: 17px;
  color: var(--olive);
  line-height: 1.85;
  font-weight: 300;
  margin-top: var(--s-3);
}
.bio-body:first-of-type { margin-top: var(--s-4); }
.bio-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--forest);
  margin-top: var(--s-5);
  padding-left: var(--s-3);
  border-left: 2px solid var(--sage);
}

/* ── PHASES TWO-UP VARIANT ───────────────── */
/* Used on home page (4 principles) and about page (4 beliefs).
   Replaces inline grid-template-columns so mobile collapse is honored. */
.phases-grid.two-up { grid-template-columns: repeat(2, 1fr); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  section { padding: var(--s-6) 24px; }
  .hero { padding: 80px 24px 70px; }

  /* Nav: don&apos;t hide links — wrap them onto a second row so users still have nav */
  .nav {
    padding: 14px 24px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav-logo { flex: 1 1 auto; }
  .nav-cta  { flex: 0 0 auto; }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 22px;
    padding-top: 6px;
    border-top: 1px solid var(--cream-deep);
    margin-top: 4px;
  }
  .nav-links a { font-size: 11px; letter-spacing: 0.16em; }

  .split { grid-template-columns: 1fr; gap: var(--s-5); }
  /* On mobile, photo comes first in split layouts (visual anchor before copy) */
  .split .ciara-photo-frame { order: -1; }

  .phases-grid,
  .phases-grid.two-up { grid-template-columns: 1fr; gap: 2px; }
  .included-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .dm-grid { grid-template-columns: repeat(2, 1fr); }
  .phase-detail-block { grid-template-columns: 1fr; gap: var(--s-4); }
  .touchpoint { grid-template-columns: 1fr; gap: var(--s-2); }
  .pricing-block { padding: var(--s-5) var(--s-4); }
  .footer { padding: var(--s-5) 24px var(--s-4); }
  .footer .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .cta-strip { padding: var(--s-6) 24px; }

  /* Hero / portrait sizing on mobile */
  .ciara-photo-frame { aspect-ratio: 3 / 4; max-height: 520px; }
  .hero-image { margin-top: var(--s-5); }
  .hero-image img,
  .hero-image .hero-photo { aspect-ratio: 4 / 5; max-height: 520px; }

  /* Hero-split mobile: collapse to stacked, photo first, normal padding */
  .hero.hero-split { padding: 70px 0 60px; text-align: center; }
  .hero.hero-split .container { padding: 0 24px; }
  .hero.hero-split .hero-content { text-align: center; }
  .hero.hero-split .hero-sub { margin: 0 auto var(--s-5); }
  .hero.hero-split .hero-credential { margin: calc(var(--s-5) * -1 + 4px) auto var(--s-5); text-align: center; border-left: none; padding-left: 0; border-top: 1px solid var(--sage); padding-top: 12px; max-width: 440px; }
  .hero.hero-split .hero-actions { justify-content: center; }
  .hero.hero-split .hero-micro-testimonial { margin: var(--s-4) auto 0; }
  .hero.hero-split h1 { font-size: clamp(34px, 6vw, 44px); }
  .hero-photo-frame { aspect-ratio: 3 / 4; max-height: 520px; margin-left: 0; }

  /* Stat card padding tighter */
  .stat-card { padding: 22px 24px; }
  .stat-number { font-size: 36px; }

  /* Phase detail philosophy box less padding */
  .philosophy-box { padding: var(--s-4); }
  .philosophy-box p { font-size: 15px; }

  /* Touchpoint time label gets more breathing room above its content */
  .touchpoint-time { padding-top: 0; padding-bottom: 4px; }

  /* Bio pull-quote tighter */
  .bio-pull { font-size: 19px; padding-left: var(--s-2); }

  /* CTA hero buttons stack better on narrow screens */
  .hero-actions { gap: 12px; }

  /* FAQ summary smaller on mobile */
  .faq-item summary { font-size: 17px; }
  .faq-item .faq-answer { font-size: 14px; }

  /* Testimonial featured size scales down */
  .testimonial-card { padding: var(--s-4); }
  .testimonial-card.featured .testimonial-quote { font-size: 18px; }
  .testimonial-quote { font-size: 16px; }

  /* Touchpoint content padding */
  .touchpoint { padding: var(--s-4) 0; }
  .touchpoint-content h4 { font-size: 19px; }
  .touchpoint-content p { font-size: 14px; }

  /* Safety-note: tighten side padding so the copy block breathes on narrow screens */
  .safety-note { padding: var(--s-3) var(--s-4); margin-top: var(--s-5); }
}

@media (max-width: 540px) {
  section { padding: var(--s-5) 20px; }
  .hero { padding: 60px 20px 56px; }
  .hero h1 { font-size: 34px; line-height: 1.18; }
  .hero-sub { font-size: 16px; }
  .pricing-amount { font-size: 52px; }
  .pricing-block { padding: var(--s-4) var(--s-3); }
  .pricing-block .pricing-amount { font-size: 44px; }
  .footer { padding: var(--s-4) 20px var(--s-3); }
  .footer .footer-grid { grid-template-columns: 1fr; gap: var(--s-3); padding-bottom: var(--s-4); }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .dm-grid { grid-template-columns: 1fr; }

  /* Navigation: even tighter, links wrap */
  .nav { padding: 12px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 10px; letter-spacing: 0.14em; }
  .nav-cta { font-size: 11px; padding-bottom: 2px; }

  /* Buttons stack full width on tightest screens */
  .hero-actions .btn,
  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .hero-actions .btn-ghost { width: 100%; text-align: center; }

  /* Eyebrows + headings tighter */
  .eyebrow { letter-spacing: 0.18em; font-size: 10px; }
  h2 { line-height: 1.18; }

  /* Phase detail headings smaller */
  .phase-detail-block h3 { font-size: 22px; }
  .phase-detail-block .phase-intro { font-size: 13px; }

  /* Included card padding */
  .included-card { padding: var(--s-3) var(--s-3); }

  /* Touchpoint visuals */
  .touchpoint-time { font-size: 10px; }
  .touchpoint-content h4 { font-size: 18px; }

  /* About hero h1 */
  .container .split h1 { font-size: 32px; line-height: 1.18; }

  /* Bio pull tighter still */
  .bio-pull { font-size: 18px; }

  /* Photo frames slightly squarer for tightest screens */
  .ciara-photo-frame { aspect-ratio: 4 / 5; max-height: 460px; }
  .hero-image img,
  .hero-image .hero-photo { aspect-ratio: 1 / 1; max-height: 460px; }
}

/* ── EXTRA-SMALL DEVICES (iPhone SE etc.) ─ */
@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 9px; }
  section { padding: var(--s-5) 16px; }
  .hero { padding: 50px 16px 48px; }
  .pricing-block .pricing-amount { font-size: 38px; }
  .pricing-block .pricing-amount .currency { font-size: 22px; }
}
