/* ============================================================
   SELF-MARIA — Interview Mastery
   Premium Multi-Page Landing Experience
   Brand: #005B5B (deep teal) + cream + warm beige accents
   ============================================================ */

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

:root {
  /* Brand palette */
  --brand: #005B5B;
  --brand-dark: #003F3F;
  --brand-light: #4A9A98;
  --beige: #D4B48A;
  --beige-soft: #E8D5B7;
  --cream: #F5EFDE;
  --cream-deep: #EDE5CF;

  /* Functional */
  --ink: #0F2424;
  --ink-soft: #2C4545;
  --muted: #6B8585;
  --line: #DCD2BB;
  --line-soft: #EDE5CF;
  --white: #FFFFFF;
  --success: #2D8F6F;

  /* Layout */
  --nav-w: 280px;
  --nav-w-tab: 80px;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(0, 91, 91, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 91, 91, 0.10);
  --shadow-lg: 0 24px 60px rgba(0, 91, 91, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Display serif for headlines */
h1, h2, h3, .display {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--brand-dark);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; font-weight: 600; }

p { color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Italic accent */
.italic { font-style: italic; font-weight: 400; }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand);
  position: relative;
  animation: loader-pulse 1.4s ease-in-out infinite;
}
.loader-mark::before, .loader-mark::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  inset: 0;
}
.loader-mark::before {
  background: var(--beige);
  transform: translate(-30%, -20%) scale(0.55);
  opacity: 0.85;
}
.loader-mark::after {
  background: var(--brand-light);
  transform: translate(35%, -15%) scale(0.5);
  opacity: 0.8;
}
@keyframes loader-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--brand-dark);
  color: var(--cream);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 60;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--beige);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}
.countdown {
  font-variant-numeric: tabular-nums;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 12px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

/* ============================================================
   RIGHT-SIDE NAVIGATION
   ============================================================ */
.sidenav {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--nav-w);
  height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  z-index: 50;
  transition: transform 0.5s var(--ease);
}

.sidenav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 48px;
}

.sidenav-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sidenav-logo img { width: 100%; height: 100%; object-fit: cover; }

.sidenav-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-dark);
  letter-spacing: -0.01em;
}
.sidenav-tag {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidenav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.sidenav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: all 0.25s ease;
}
.sidenav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  background: var(--brand);
  border-radius: 0 3px 3px 0;
  transition: transform 0.3s var(--ease);
}
.sidenav-link:hover {
  background: var(--cream);
  color: var(--brand-dark);
}
.sidenav-link:hover::before { transform: translateY(-50%) scaleY(1); }
.sidenav-link.active {
  background: var(--cream);
  color: var(--brand-dark);
  font-weight: 600;
}
.sidenav-link.active::before { transform: translateY(-50%) scaleY(1); }
.sidenav-link .num {
  font-size: 0.7rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

.sidenav-cta {
  margin-top: 24px;
  background: var(--brand);
  color: var(--white);
  padding: 14px 20px;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 22px rgba(0, 91, 91, 0.25);
}
.sidenav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 91, 91, 0.35);
}

.sidenav-foot {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.sidenav-foot small { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }
.social-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--brand);
  transition: all 0.25s ease;
}
.social-dot:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  border: none;
  z-index: 70;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}
.menu-toggle .bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: all 0.3s var(--ease);
}
.menu-toggle .bar::before,
.menu-toggle .bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.3s var(--ease);
}
.menu-toggle .bar::before { top: -6px; }
.menu-toggle .bar::after { top: 6px; }
.menu-toggle.open .bar { background: transparent; }
.menu-toggle.open .bar::before { transform: rotate(45deg); top: 0; }
.menu-toggle.open .bar::after { transform: rotate(-45deg); top: 0; }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main {
  margin-right: var(--nav-w);
  min-height: 100vh;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 91, 91, 0.28);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 91, 91, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-dark);
  border: 1.5px solid var(--brand);
}
.btn-ghost:hover {
  background: var(--brand);
  color: var(--white);
}

.btn-cream {
  background: var(--white);
  color: var(--brand-dark);
  box-shadow: var(--shadow-sm);
}
.btn-cream:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large { padding: 19px 38px; font-size: 1.05rem; }

/* ============================================================
   PAGE TAG / EYEBROW
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--brand);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero::after {
  /* soft cream gradient veil so text remains crisp over the coach photo */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--cream) 0%,
    rgba(245, 239, 222, 0.92) 35%,
    rgba(245, 239, 222, 0.55) 60%,
    rgba(245, 239, 222, 0.25) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero h1 .accent {
  color: var(--brand);
  position: relative;
  display: inline-block;
}
.hero-sub {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 28px 0 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.avatars {
  display: flex;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  margin-left: -12px;
  background-size: cover;
}
.avatar:first-child { margin-left: 0; }
.a1 { background: linear-gradient(135deg, #D4B48A, #B89169); }
.a2 { background: linear-gradient(135deg, #4A9A98, #005B5B); }
.a3 { background: linear-gradient(135deg, #E8D5B7, #B89169); }
.a4 { background: linear-gradient(135deg, #6BB5B3, #005B5B); }
.stars { color: var(--beige); letter-spacing: 3px; font-size: 0.9rem; }
.hero-meta strong { color: var(--brand-dark); }
.hero-meta small { color: var(--muted); font-size: 0.85rem; display: block; }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* COACH PHOTO — fills the entire hero as a soft, tinted backdrop */
.coach-photo {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: 65%;
  object-fit: contain;
  object-position: right bottom;
  z-index: 0;
  opacity: 0.35;
  /* Duotone effect: convert image into deep teal tones */
  filter:
    grayscale(100%)
    contrast(1.05)
    brightness(0.95)
    sepia(100%)
    hue-rotate(140deg)
    saturate(3.5);
  pointer-events: none;
  animation: coach-float 9s ease-in-out infinite;
}
@keyframes coach-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* COACH PHOTO — watermark variant for other pages */
.coach-watermark {
  position: absolute;
  right: -60px;
  bottom: 0;
  height: 80%;
  max-height: 520px;
  opacity: 0.18;
  filter:
    grayscale(100%)
    sepia(100%)
    hue-rotate(140deg)
    saturate(4);
  pointer-events: none;
  z-index: 0;
}
.has-watermark { position: relative; overflow: hidden; }
.has-watermark > .container { position: relative; z-index: 1; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
}
.blob-1 {
  width: 260px;
  height: 260px;
  background: var(--beige);
  top: 10%;
  left: 10%;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  animation: blob-morph-1 12s ease-in-out infinite;
}
.blob-2 {
  width: 220px;
  height: 220px;
  background: var(--brand-light);
  top: 25%;
  right: 5%;
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  animation: blob-morph-2 14s ease-in-out infinite;
}
.blob-3 {
  width: 280px;
  height: 280px;
  background: var(--brand);
  bottom: 5%;
  left: 25%;
  border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
  animation: blob-morph-3 16s ease-in-out infinite;
}
@keyframes blob-morph-1 {
  0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; transform: translate(0,0) rotate(0deg); }
  50% { border-radius: 40% 60% 60% 40% / 60% 50% 50% 40%; transform: translate(20px,-20px) rotate(20deg); }
}
@keyframes blob-morph-2 {
  0%, 100% { border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%; transform: translate(0,0); }
  50% { border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; transform: translate(-20px,15px); }
}
@keyframes blob-morph-3 {
  0%, 100% { border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%; transform: translate(0,0) rotate(0deg); }
  50% { border-radius: 55% 45% 40% 60% / 40% 50% 60% 50%; transform: translate(15px,20px) rotate(-15deg); }
}

.hero-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 320px;
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease);
}
.hero-card:hover { transform: rotate(0deg) scale(1.02); }
.hero-card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-card-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--brand-dark);
  margin-bottom: 18px;
}
.hero-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.hero-card-author .avatar { width: 36px; height: 36px; margin: 0; border-width: 0; }
.hero-card-author strong { font-size: 0.85rem; color: var(--brand-dark); display: block; }
.hero-card-author small { font-size: 0.72rem; color: var(--muted); }

.floating-stat {
  position: absolute;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.floating-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--brand);
  font-weight: 600;
  line-height: 1;
}
.floating-stat-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.floating-stat.fs-1 { top: 0; right: 0; animation: float 6s ease-in-out infinite; }
.floating-stat.fs-2 { bottom: 30px; left: -10px; animation: float 7s ease-in-out infinite reverse; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 110px 0;
  position: relative;
  border-top: 1.5px solid rgba(0, 91, 91, 0.13);
}
.section-tight { padding: 80px 0; }
.section-cream { background: var(--cream-deep); }
.section-brand {
  background: var(--brand-dark);
  color: var(--cream);
}
.section-brand h2, .section-brand h3 { color: var(--cream); }
.section-brand p { color: rgba(245, 239, 222, 0.78); }
.section-brand .eyebrow { color: var(--beige); }
.section-brand .eyebrow::before { background: var(--beige); }

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.1rem; margin-top: 18px; }

/* ============================================================
   PAIN GRID
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pain-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  position: relative;
  border: 1px solid var(--line-soft);
  transition: all 0.35s var(--ease);
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}
.pain-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--brand);
  margin-bottom: 14px;
}
.pain-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pain-card p { font-size: 0.95rem; }

.pain-callout {
  margin-top: 56px;
  padding: 36px 40px;
  background: var(--brand-dark);
  color: var(--cream);
  border-radius: var(--radius);
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: center;
}
.pain-callout strong { color: var(--beige); font-style: italic; }

/* ============================================================
   FEATURES (Course modules)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  transition: all 0.35s var(--ease);
  position: relative;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brand);
  background: var(--cream);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat {
  padding: 0 16px;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  color: var(--beige);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-lbl {
  margin-top: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 239, 222, 0.7);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  position: relative;
}
.testi-mark {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  color: var(--beige);
  line-height: 0.8;
  margin-bottom: 8px;
}
.testi p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.t1 { background: linear-gradient(135deg, #D4B48A, #B89169); }
.t2 { background: linear-gradient(135deg, #4A9A98, #005B5B); }
.t3 { background: linear-gradient(135deg, #6BB5B3, #003F3F); }
.t4 { background: linear-gradient(135deg, #E8D5B7, #B89169); }
.t5 { background: linear-gradient(135deg, #4A9A98, #003F3F); }
.t6 { background: linear-gradient(135deg, #B89169, #005B5B); }
.testi-author strong { display: block; font-size: 0.95rem; color: var(--brand-dark); }
.testi-author small { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   ENROLL FORM
   ============================================================ */
.enroll-card {
  background: var(--white);
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.enroll-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--cream);
  z-index: 0;
}
.enroll-card > * { position: relative; z-index: 1; }

.lead-form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 32px auto 0;
  flex-wrap: wrap;
}
.lead-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 18px 22px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: all 0.25s ease;
}
.lead-form input[type="email"]:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 91, 91, 0.08);
}

.divider {
  position: relative;
  text-align: center;
  margin: 56px 0 40px;
}
.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}
.divider span {
  position: relative;
  background: var(--cream);
  padding: 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.guarantee {
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.guarantee span { display: inline-flex; align-items: center; gap: 6px; }

.micro { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 180, 138, 0.4), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(74, 154, 152, 0.3), transparent 50%);
}
.portrait-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: 12px;
}
.portrait-tag strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--brand-dark);
}
.portrait-tag small { color: var(--muted); font-size: 0.85rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius);
  border-top: 3px solid var(--brand);
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }

/* ============================================================
   COURSE PAGE — CURRICULUM
   ============================================================ */
.curriculum {
  max-width: 820px;
  margin: 0 auto;
}
.module {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.module:hover { border-color: var(--brand-light); box-shadow: var(--shadow-sm); }
.module-head {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.module-week {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--brand);
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.module-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--brand-dark);
  flex: 1;
  font-weight: 600;
}
.module-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.module.open .module-toggle {
  background: var(--brand);
  color: var(--white);
  transform: rotate(45deg);
}
.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.module.open .module-body { max-height: 600px; }
.module-body-inner {
  padding: 0 28px 28px 28px;
  border-top: 1px solid var(--line-soft);
}
.module-body-inner p { padding-top: 18px; }
.module-body-inner ul { padding-top: 14px; padding-left: 20px; color: var(--ink-soft); }
.module-body-inner li { padding: 4px 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-toggle {
  font-size: 1.6rem;
  color: var(--brand);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  font-weight: 300;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 26px; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before, .cta-strip::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
}
.cta-strip::before {
  width: 300px; height: 300px;
  background: var(--beige);
  top: -100px; left: -50px;
}
.cta-strip::after {
  width: 250px; height: 250px;
  background: var(--brand-light);
  bottom: -80px; right: -50px;
}
.cta-strip .container { position: relative; z-index: 2; }
.cta-strip h2 { color: var(--cream); }
.cta-strip p { color: rgba(245, 239, 222, 0.85); margin: 18px auto 32px; max-width: 560px; font-size: 1.1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   LEGAL PAGES (privacy, terms)
   ============================================================ */
.legal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--brand);
  margin: 40px 0 10px;
}
.legal-body p,
.legal-body li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.legal-body ul {
  padding-left: 24px;
  margin: 10px 0 16px;
}
.legal-body li {
  margin-bottom: 8px;
}
.legal-body a {
  color: var(--brand);
  text-decoration: underline;
}

.footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 1);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}
.footer-brand .logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .logo-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba (255, 255, 255, 1);
  overflow: hidden;
}
.footer-brand .logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
}
.footer-brand p { max-width: 360px; font-size: 0.92rem; color: #ffffff; }
.footer-bot p { color: #ffffff; }
.footer-col h5 {
  color: rgba (255, 255, 255, 1);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 1);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--beige); }
.footer-bot {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Cursor follower */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 91, 91, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
@media (hover: hover) {
  .cursor-glow { opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  :root { --nav-w: 0px; }
  .menu-toggle { display: flex; }
  .sidenav {
    width: 320px;
    transform: translateX(100%);
    box-shadow: var(--shadow-lg);
  }
  .sidenav.open { transform: translateX(0); }
  .main { margin-right: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 420px; }
  .about-hero { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .section { padding: 70px 0; }
  .hero { padding: 60px 0 80px; }
  .lead-form { flex-direction: column; }
  .lead-form input[type="email"] { width: 100%; }
  .enroll-card { padding: 40px 28px; }
  .pain-callout { padding: 28px 24px; font-size: 1.1rem; }
  .footer-bot { flex-direction: column; align-items: flex-start; }

  .portrait-tag {
    padding: 10px 14px;
    bottom: 14px;
    left: 14px;
    right: 14px;
    border-radius: 8px;
  }
  .portrait-tag strong {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .portrait-tag small {
    font-size: 0.72rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
