/* ============================================================
   IAFHH — The Foundations of Functional Hormone Health
   Sales Page Stylesheet

   SECTIONS:
   1. DESIGN TOKENS
   2. RESET & BASE
   3. TYPOGRAPHY
   4. LAYOUT UTILITIES
   5. COMPONENTS
      5a. Buttons (.btn-primary)
      5b. Hero (.section-hero)
      5c. Urgency Strip (.strip)
      5d. Problem/Empathy (.section-problem)
      5e. Curriculum (.section-curriculum)
      5f. What's Included (.section-included)
      5g. Testimonials (.section-testimonials)
      5h. Founder Bio (.section-founder)
      5i. Who It's For (.section-for)
      5j. FAQ (.section-faq)
      5k. Final CTA (.section-final-cta)
      5l. Footer
   6. MEDIA QUERIES
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */

:root {
  /* Brand Colors */
  --navy:        #2B3F4A;
  --gold:        #B38C50;
  --cream:       #FBFAF6;
  --beige:       #E7DDD4;
  --purple:      #6e6a71;
  --dark:        #161916;
  --text-muted:  #5a5a5a;
  --text-faint:  #888;

  /* Brand Fonts */
  --font-display: 'Cormorant Garamond', serif;
  --font-label:   'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* Spacing Scale — 8px base grid */
  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  48px;
  --space-6:  64px;
  --space-7:  96px;
  --space-8:  110px;
  --space-14: 110px;

  /* Layout */
  --max-content: 820px;
  --max-wide:    1260px;

  /* Transitions */
  --transition-fast: 0.2s ease;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

.section-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-eyebrow {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  text-wrap: balance;
}

h2 {
  line-height: 1.25;
}

h3 {
  line-height: 1.2;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.container--narrow {
  max-width: var(--max-content);
  margin: 0 auto;
}

.section {
  padding: var(--space-14) var(--space-3);
}

/* Dark section modifier — flips text colors for navy-background sections */
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--cream);
}

.section--dark p {
  color: rgba(251, 250, 246, 0.6);
}

.section--dark .section-label {
  color: rgba(179, 140, 80, 0.8);
}


/* ============================================================
   5. COMPONENTS
   ============================================================ */

/* ── 5a. Buttons (.btn-primary) ── */

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--cream);
}

.btn-primary--gold {
  background: var(--gold);
}

.btn-primary--gold:hover {
  background: #c9a060;
}


/* ── 5b. Hero (.section-hero) ── */

.section-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 80px 100px;
  min-height: 100vh;
  background: var(--cream);
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 28px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 20px;
}

.hero-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-fine-print {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin: 0;
}

/* Hero image column */
.hero-image {
  position: relative;
  height: clamp(600px, 75vh, 900px);
}

.hero-img-main {
  width: 100%;
  height: 100%;
  background: #f0ece8;
  border-radius: 2px;
  overflow: hidden;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 38%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 38%;
  border-radius: 2px;
}

.hero-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--navy);
  color: var(--cream);
  padding: 24px 28px;
  border-radius: 2px;
  text-align: center;
  min-width: 140px;
}

.badge-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.badge-label {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 250, 246, 0.6);
  margin-top: 6px;
  display: block;
}


/* ── 5c. Urgency Strip (.strip) ── */

.strip {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: strip-ticker 38s linear infinite;
}

.strip-track:hover {
  animation-play-state: paused;
}

.strip-content {
  white-space: nowrap;
}

@keyframes strip-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.strip strong,
.strip em {
  color: var(--gold);
  font-style: normal;
}


/* ── 5d. Problem/Empathy (.section-problem) ── */

.section-problem {
  background: var(--cream);
  padding: var(--space-14) 80px;
}

/* Shared row base */
.problem-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max-wide);
  margin: 0 auto;
}

/* ── Row 1: "Are you a practitioner who…" — image right, fills text height ── */

.problem-row--who {
  align-items: center;
  margin-bottom: 100px;
}

.problem-text {
  text-align: left;
}

/* Tall image column — fixed height, text centers alongside it */
.problem-img-col--tall {
  border-radius: 2px;
  overflow: hidden;
  height: clamp(480px, 65vh, 680px);
}

.problem-img-col--tall picture,
.problem-img-col--tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* ── Row 2: "You're not alone" — image left (square), text right ── */

.problem-row--alone {
  align-items: center;
}

/* Square image column */
.problem-img-col--square {
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  overflow: hidden;
}

.problem-img-col--square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
  display: block;
}

/* "You're not alone" text column */
.problem-text-alone {
  text-align: left;
}

.problem-text-alone p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* Shared section styles */
.section-problem h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 32px;
}

.section-problem h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-problem p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.problem-list {
  list-style: none;
  margin: 0 0 8px;
  text-align: left;
}

.problem-list li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(231, 221, 212, 0.5);
  position: relative;
}

.problem-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--font-display);
}

.problem-subheading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 24px;
}


/* ── 5d-2. Not a Preview (.section-not-preview) ── */

.section-not-preview {
  background: var(--cream);
  padding: var(--space-14) var(--space-3);
  border-top: 1px solid rgba(179, 140, 80, 0.3);
  border-bottom: 1px solid rgba(179, 140, 80, 0.3);
}

.not-preview-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-not-preview h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.not-preview-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 40px;
  line-height: 1.5;
}

.section-not-preview p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.section-not-preview p em {
  color: var(--navy);
  font-style: italic;
}

.section-not-preview p strong {
  color: var(--navy);
  font-weight: 600;
}

.framework-list {
  list-style: none;
  margin: 28px 0 32px;
  text-align: left;
}

.framework-list li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid rgba(179, 140, 80, 0.15);
  position: relative;
}

.framework-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 19px;
}

.framework-list li strong {
  color: var(--navy);
  font-weight: 600;
}

.not-preview-cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-not-preview .cta-fine-print {
  color: var(--text-faint);
}

.cta-fine-print {
  font-family: var(--font-label);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  line-height: 1.6;
}


/* ── 5e. Curriculum (.section-curriculum) ── */

.section-curriculum {
  background: var(--navy);
  padding: var(--space-14) 80px;
}

.curriculum-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max-wide);
  margin: 0 auto;
  align-items: start;
}

.curriculum-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin: 16px 0 28px;
}

.curriculum-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.curriculum-header p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(251, 250, 246, 0.6);
  margin-bottom: 36px;
}

/* Small image at top of curriculum left column */
.curriculum-img-wrap {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin-bottom: 32px;
}

.curriculum-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Tighten eyebrow → headline gap in curriculum */
.curriculum-header .section-label {
  margin-bottom: 10px;
}


.curriculum-list {
  list-style: none;
}

.curriculum-list li {
  border-bottom: 1px solid rgba(251, 250, 246, 0.08);
  padding: 20px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.lesson-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  min-width: 28px;
  line-height: 1;
  padding-top: 2px;
  flex-shrink: 0;
}

.lesson-content h4 {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}

.lesson-content p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(251, 250, 246, 0.5);
}


/* ── 5f. Your Investment (.section-included) ── */

/* Centered non-full-width divider rule between founder and investment sections */
.section-rule-wrap {
  background: var(--cream);
  display: flex;
  justify-content: center;
  padding: 20px 0 60px;
}

.section-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
  margin: 0 auto;
}

.section-included {
  background: var(--navy);
  padding: var(--space-14) var(--space-3);
}

.included-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Card — cream box, mockup bleeds full-width at top */
.included-card {
  width: 100%;
  background: var(--cream);
  border-radius: 3px;
  overflow: hidden;
}

.included-card-mockup {
  width: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 48px 0;
}

.included-price-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.included-price-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.included-price-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.included-card-mockup img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

.included-card-body {
  padding: 48px 56px 56px;
  text-align: left;
}

.included-features-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 28px;
  text-align: center;
}

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(43, 63, 74, 0.1);
}

.included-mark {
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 4px;
}

.included-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

.included-text strong {
  color: var(--navy);
  font-weight: 600;
}

/* Price block below the card */
.included-price-block {
  margin-top: 52px;
  width: 100%;
}

.included-payment {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(251, 250, 246, 0.7);
  margin-top: 12px;
  margin-bottom: 36px;
}

.included-price {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 110px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 40px;
}

.included-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.included-cta .cta-fine-print {
  max-width: 520px;
  color: rgba(251, 250, 246, 0.5);
}




/* ── 5f-2. Graduate Story (.section-graduate-story) ── */

.section-graduate-story {
  position: relative;
  padding: var(--space-14) var(--space-3);
  background-image: url('images/shadow-background-5.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Cream overlay — lets texture show through subtly */
.section-graduate-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(251, 250, 246, 0.88);
}

.graduate-story-inner {
  position: relative; /* sits above the overlay */
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.graduate-pullquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.35;
  margin: 0 0 24px;
  quotes: none;
}

.graduate-attribution {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.graduate-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 48px;
  opacity: 0.6;
}

.graduate-narrative p,
.graduate-after p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: left;
}

.graduate-after {
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid rgba(179, 140, 80, 0.2);
  margin-bottom: 32px;
}

.graduate-after p {
  font-style: italic;
  color: var(--navy);
}

.graduate-bridge {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
}

.graduate-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}


/* ── 5g. Value / Objection (.section-value) ── */

.section-value {
  background: var(--cream);
  border-top: 1px solid rgba(179, 140, 80, 0.25);
  padding: var(--space-14) 80px;
}

.value-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max-wide);
  margin: 0 auto;
  align-items: center;
}

.value-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.value-sub {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.45;
  margin-bottom: 32px;
}

.value-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.value-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 40px;
}

/* Portrait image — right column */
.value-img-col {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}

.value-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}


/* ── 5i. Testimonials — narrative (.section-testimonials) ── */

.section-testimonials {
  background: var(--navy);
  padding: var(--space-14) var(--space-3);
}

.testimonials-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 72px;
}

/* Testimonial carousel */
.tcarousel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

/* Slides wrapper — all slides stack in the same grid cell so height equals tallest card */
.tcarousel-slides {
  display: grid;
}

/* Each slide stacks in cell 1/1; invisible by default */
.tslide {
  grid-row: 1;
  grid-column: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.tslide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Cream card with gold left border accent */
.tslide-card {
  background: var(--cream);
  border-radius: 2px;
  border-left: 3px solid var(--gold);
  padding: 52px 60px 52px 56px;
}

/* Stars — .tslide-card prefix needed to beat .section--dark p specificity */
.tslide-card .tslide-stars {
  color: var(--gold);
  font-size: 19px;
  letter-spacing: 4px;
  margin-bottom: 24px;
  text-align: left;
}

.tslide-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
  quotes: none;
  text-align: left;
}

.tslide-card .tslide-attr {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  margin-bottom: 0;
}

.tslide-attr--below {
  margin-top: 20px;
}

.tslide-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  margin: 28px 0;
}

/* Narrative — left-aligned, full copy visible */
.tslide-card .tslide-narrative {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--navy);
  margin-bottom: 14px;
  text-align: left;
}

/* Carousel controls */
.tcarousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}

.tcarousel-btn {
  background: none;
  border: 1px solid rgba(251, 250, 246, 0.25);
  color: var(--cream);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.tcarousel-btn:hover {
  border-color: var(--gold);
  background: rgba(179, 140, 80, 0.15);
}

.tcarousel-dots {
  display: flex;
  gap: 10px;
}

.tcarousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(251, 250, 246, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.tcarousel-dot.active {
  background: var(--gold);
}

.testimonials-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
  text-align: center;
}

.section-testimonials .cta-fine-print {
  color: rgba(251, 250, 246, 0.4);
}


/* ── 5h. Founder Bio (.section-founder) ── */

.section-founder {
  background: var(--cream);
  padding: calc(var(--space-14) * 1.4) 80px var(--space-14);
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max-wide);
  margin: 0 auto;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
}

.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
}

.founder-title {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.founder-bio p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.founder-credentials {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 24px;
}


/* ── 5i. Who It's For (.section-for) ── */

.section-for {
  position: relative;
  background: var(--purple);
  padding: var(--space-14) var(--space-3);
  overflow: hidden;
}

/* Linen texture overlay at 20% opacity */
.section-for::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/iafhh_bernard-hermant-1ndw7bjbj1s-unsplash.jpg') center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.section-for .for-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-for h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 24px;
}

.section-for h2 em {
  font-style: italic;
  color: var(--navy);
}

.section-for p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(251, 250, 246, 0.8);
  margin-bottom: 40px;
}

.not-for-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
  margin-top: 12px;
}

.not-for-heading em {
  font-style: italic;
  color: var(--navy);
}

.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
}

.for-col h3,
.not-for-col h3 {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.for-text-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.for-text-center h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.for-text-center h2 em {
  font-style: italic;
  color: var(--gold);
}

.for-text-center p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
}

.not-for-col p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

.not-for-col h3 em {
  font-style: italic;
}

.for-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  text-align: center;
}

.section-for .cta-fine-print {
  color: rgba(251, 250, 246, 0.5);
}

.for-col ul,
.not-for-col ul {
  list-style: disc;
  padding-left: 20px;
}

.for-col li,
.not-for-col li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.for-col li::marker,
.not-for-col li::marker {
  color: var(--gold);
}


/* ── 5j. FAQ (.section-faq) ── */

.section-faq {
  background: var(--cream);
  padding: var(--space-14) var(--space-3);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
}

.faq-list {
  list-style: none;
  border-top: 1px solid rgba(231, 221, 212, 0.8);
}

.faq-item {
  border-bottom: 1px solid rgba(231, 221, 212, 0.8);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  line-height: 1;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 0 24px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

.faq-panel[hidden] {
  display: none;
}


/* ── 5k. Final CTA (.section-final-cta) ── */

.section-final-cta {
  background: var(--navy);
  padding: var(--space-14) 80px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  max-width: var(--max-wide);
  margin: 0 auto;
  align-items: center;
}

.final-cta-img-col {
  align-self: center;
}

.final-cta-img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  display: block;
}

.section-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--cream);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.15;
}

.section-final-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.final-cta-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: rgba(251, 250, 246, 0.75);
  font-style: normal;
  margin-bottom: 20px;
}

.final-cta-scarcity {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
}

.final-cta-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 40px;
}

.section-final-cta .cta-fine-print {
  color: rgba(251, 250, 246, 0.45);
}


/* ── 5l. Footer ── */

footer {
  padding: 40px var(--space-3);
  text-align: center;
  background: var(--cream);
}

footer p {
  font-family: var(--font-label);
  font-size: 10px;
  color: var(--text-faint);
}


/* ============================================================
   6. MEDIA QUERIES
   ============================================================ */

/* ── Tablet — collapse two-column layouts (max-width: 1023px) ── */

@media (max-width: 1023px) {
  .section-hero {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    gap: 48px;
    min-height: auto;
  }

  .hero-image {
    order: -1;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-badge {
    display: none;
  }

  .problem-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-row--who {
    margin-bottom: 64px;
  }

  .section-problem {
    padding: var(--space-14) 40px;
  }

  /* On tablet: study image moves above the text */
  .problem-img-col--tall {
    order: -1;
    min-height: 360px;
    aspect-ratio: 4 / 3;
  }

  /* On tablet: laptop image stays above the text */
  .problem-img-col--square {
    aspect-ratio: 4 / 3;
  }

  .section-not-preview {
    padding: var(--space-14) 40px;
  }

  .curriculum-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-curriculum {
    padding: var(--space-14) 40px;
  }

  .curriculum-img-wrap {
    display: none;
  }


  .value-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-value {
    padding: var(--space-14) 40px;
  }

  .value-img-col {
    order: -1;
    aspect-ratio: 4 / 3;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-founder {
    padding: var(--space-14) 40px;
  }

  .for-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Mobile — full single-column layout (max-width: 767px) ── */

@media (max-width: 767px) {
  .section-hero {
    padding: 48px 24px 64px;
    gap: 32px;
  }

  /* Full-bleed image — breaks out of section padding on all three sides */
  .hero-image {
    margin-top: -48px;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    max-width: none;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .hero-img-main img,
  .hero-img {
    object-position: 65% 15%;
  }

  /* Eyebrow — left-aligned on mobile, line stays on left only */
  .hero-eyebrow {
    justify-content: flex-start;
    text-align: left;
  }

  .section-problem {
    padding: 80px 24px;
  }

  .problem-row--who {
    margin-bottom: 56px;
  }

  .problem-img-col--tall {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    max-height: 240px;
  }

  .problem-img-col--square {
    aspect-ratio: 16 / 9;
    max-height: 240px;
  }

  .problem-img-col--square img {
    object-position: center 60%;
  }

  .section-not-preview {
    padding: 80px 24px;
  }

  .section-curriculum {
    padding: 80px 24px;
  }

  .section-value {
    padding: 80px 24px;
  }

.section-founder {
    padding: 80px 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tcard {
    padding: 32px 24px;
  }

  .btn-primary {
    padding: 16px 32px;
  }

  .strip {
    font-size: 11px;
    padding: 14px 0;
    letter-spacing: 0.12em;
  }

  .section-not-preview,
  .section-included,
  .section-for,
  .section-faq,
  .section-final-cta,
  .section-testimonials,
  .section-graduate-story,
  .section-value,
  .section-curriculum,
  .section-founder {
    padding: 80px 24px;
  }

  .included-inner,
  .founder-inner,
  .value-inner,
  .curriculum-inner,
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }

  .tslide-card {
    padding: 36px 28px;
  }

  .included-card-body {
    padding: 36px 28px;
  }

.not-preview-cta,
  .for-cta,
  .testimonials-cta,
  .included-cta {
    align-items: center;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }

  .final-cta-img-col {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .final-cta-text-col {
    width: 100%;
    text-align: left;
    padding: 0;
  }

  .final-cta-cta {
    align-items: flex-start;
  }

  .section-final-cta {
    padding: 80px 24px;
  }
}

/* ============================================================
   7. ANIMATIONS
   ============================================================ */

[data-reveal] { will-change: transform, opacity; }

[data-reveal="fade-up"] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal="fade-up"].is-visible { opacity: 1; transform: translateY(0); }

[data-reveal="fade-up-img"] {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal="fade-up-img"].is-visible { opacity: 1; transform: scale(1); }

[data-reveal="line-grow"] {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal="line-grow"].is-visible { opacity: 1; transform: scaleX(1); }

[data-reveal="slide-label"] {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal="slide-label"].is-visible { opacity: 1; transform: translateX(0); }

[data-reveal][data-stagger] {
  transition-delay: calc(var(--stagger-delay, 0ms));
}

/* Hero entrance */
.hero-eyebrow, .hero-content h1, .hero-divider,
.hero-sub, .hero-body, .hero-actions { opacity: 0; }

.section-hero.hero-ready .hero-eyebrow {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
.section-hero.hero-ready .hero-content h1 {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.section-hero.hero-ready .hero-divider {
  animation: heroDivider 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}
.section-hero.hero-ready .hero-sub {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}
.section-hero.hero-ready .hero-body {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both;
}
.section-hero.hero-ready .hero-actions {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}

.hero-image { opacity: 0; }
.section-hero.hero-ready .hero-image {
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroDivider {
  from { opacity: 0; transform: scaleX(0); transform-origin: left center; }
  to   { opacity: 1; transform: scaleX(1); transform-origin: left center; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal="fade-up"], [data-reveal="fade-up-img"],
  [data-reveal="line-grow"], [data-reveal="slide-label"] {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .section-hero.hero-ready .hero-eyebrow,
  .section-hero.hero-ready .hero-content h1,
  .section-hero.hero-ready .hero-divider,
  .section-hero.hero-ready .hero-sub,
  .section-hero.hero-ready .hero-body,
  .section-hero.hero-ready .hero-actions,
  .section-hero.hero-ready .hero-image {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
  .hero-eyebrow, .hero-content h1, .hero-divider,
  .hero-sub, .hero-body, .hero-actions, .hero-image {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   8. COUNTDOWN TIMER
   ============================================================ */

/* Reserve space so fixed bar doesn't overlap content */
body { padding-top: 56px; }

/* — Fixed top bar — */
.countdown-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 56px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-label);
  text-transform: uppercase;
  color: var(--cream);
}

.countdown-bar-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(251,250,246,0.6);
}

.countdown-bar-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Number + label stacked unit — used in both bar and investment */
.cbar-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.cbar-num {
  font-family: var(--font-label);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
}

.cbar-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(251,250,246,0.45);
}

.cbar-colon {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  color: rgba(251,250,246,0.25);
  align-self: flex-start;
  margin-top: 2px;
}

/* Expired state */
.countdown-bar--expired .countdown-bar-label {
  color: rgba(251,250,246,0.65);
  letter-spacing: 0.14em;
}
.countdown-bar--expired .countdown-bar-timer {
  display: none;
}

/* — Expired buttons — */
.btn-closed,
.btn-closed:hover,
.btn-closed:focus {
  pointer-events: none !important;
  cursor: default !important;
  opacity: 0.45 !important;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .countdown-bar {
    gap: 12px;
    padding: 0 16px;
  }
  .cbar-num { font-size: 14px; }
  .investment-countdown { gap: 10px; }
  .investment-countdown-number { font-size: 2rem; }
}
