/* ============================================
   BIBLE 101 Course Website — Brand Stylesheet
   Gospel Advance · Andrew Ramirez
   V4 Light Homepage + Course Pages
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties (Brand System) --- */
:root {
  /* Primary */
  --charcoal: #1C1C1C;
  --bronze: #B8965A;
  --cream: #F5F0E8;

  /* Secondary */
  --sage: #E4E8E0;
  --light-gold: #D4C4A0;
  --warm-gray: #8A8478;
  --cool-slate: #4A5B6A;
  --deep-slate: #2A3640;
  --white: #FFFFFF;
  --off-white: #FAFAF7;

  /* Functional */
  --text-primary: #1C1C1C;
  --text-secondary: #8A8478;
  --text-on-dark: #F5F0E8;
  --bg-primary: #FAFAF7;
  --bg-dark: #1C1C1C;
  --accent: #B8965A;
  --border-light: #E8E2D8;
  --border-lighter: #F0ECE4;
  --border-dark: #333;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Open Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --nav-height: 72px;
  --border-radius: 8px;
  --border-radius-lg: 12px;

  /* Transitions */
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--charcoal); }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
p { margin-bottom: var(--space-md); }

.text-bronze { color: var(--bronze); }
.text-muted { color: var(--text-secondary); }
.text-cream { color: var(--cream); }

.label-accent {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* --- Scripture Callout --- */
.scripture-callout {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}
.scripture-ref {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--bronze);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container--narrow { max-width: var(--max-width-narrow); }
main { flex: 1; }
.section { padding: var(--space-4xl) 0; }
.section--dark { background-color: var(--bg-dark); color: var(--text-on-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-on-dark); }
.section--sage { background-color: var(--sage); }
.section--cream { background-color: var(--cream); }
.section--white { background-color: var(--white); }

/* --- Divider --- */
.divider { width: 80px; height: 2px; background-color: var(--bronze); border: none; margin: var(--space-lg) 0; }
.divider--center { margin-left: auto; margin-right: auto; }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--cream);
  color: var(--charcoal);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border-light);
}
.announcement-bar strong { color: var(--bronze); font-weight: 700; }

/* =============================================
   NAVIGATION — Light (V4)
   ============================================= */
.nav {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.nav__brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--charcoal); text-decoration: none;
  font-family: var(--font-body); font-size: 1rem;
}
.nav__brand:hover .nav__brand-name { color: var(--charcoal); }
.nav__brand-logo {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav__brand-gospel {
  font-family: var(--font-body); font-size: 16px; font-weight: 700;
  color: var(--charcoal); text-transform: uppercase; letter-spacing: 2.4px;
}
.nav__brand-advance {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: var(--bronze); text-transform: uppercase; letter-spacing: 2.4px;
}
.nav__brand-divider {
  width: 1px; height: 34px; background: #d5d0c8; flex-shrink: 0;
}
.nav__brand-name {
  display: flex; flex-direction: column; line-height: 1.1; align-items: center;
}
.nav__brand-bible {
  font-family: var(--font-body); font-size: 16px; font-weight: 700;
  color: var(--charcoal); text-transform: uppercase; letter-spacing: 2.4px;
}
.nav__brand-101 {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--bronze); text-transform: uppercase; letter-spacing: 4.5px;
}
/* Legacy styles (hidden) */
.nav__brand-icon { display: none; }
.nav__brand-text { display: none; }
.nav__right { display: flex; align-items: center; gap: 1.5rem; }
.nav__links {
  display: flex; align-items: center; gap: var(--space-lg); list-style: none;
}
.nav__links a {
  color: var(--charcoal); font-size: 0.9rem; font-weight: 500;
  opacity: 0.65; transition: opacity var(--transition), color var(--transition);
}
.nav__links a:hover { opacity: 1; color: var(--bronze); }
.nav__links a.is-active { opacity: 1; color: var(--bronze); }
.nav__cta {
  display: inline-flex; align-items: center;
  padding: 0.55rem 1.25rem;
  background: var(--charcoal); color: var(--cream);
  font-size: 0.85rem; font-weight: 700;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.nav__cta:hover { background: var(--bronze); color: var(--charcoal); }
.nav__hamburger {
  display: none;
  background: none; border: none; color: var(--charcoal); font-size: 1.5rem; cursor: pointer; padding: var(--space-sm);
}

/* =============================================
   HERO — Base (Dark, for course pages)
   ============================================= */
.hero {
  background-color: var(--charcoal);
  color: var(--text-on-dark);
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(184,150,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { color: var(--cream); margin-bottom: var(--space-md); position: relative; }
.hero p { color: var(--light-gold); font-size: 1.15rem; max-width: 600px; margin: 0 auto var(--space-lg); position: relative; }
.hero .label-accent { margin-bottom: var(--space-md); display: block; position: relative; }
.hero--landing { padding: var(--space-4xl) var(--space-xl) var(--space-3xl); }
.hero--landing h1 { font-size: 3rem; line-height: 1.15; max-width: 700px; margin: 0 auto var(--space-lg); }
.hero__subtitle { color: var(--light-gold); font-size: 1.1rem; max-width: 580px; margin: 0 auto var(--space-md); position: relative; }

/* =============================================
   HERO — Homepage (V4 Light)
   ============================================= */
.hero--home {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  color: var(--text-primary);
  text-align: left;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero--home::before { display: none; }
.hero--home h1 {
  color: var(--charcoal);
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: none;
}
.hero--home h1 em {
  color: var(--bronze);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: rgba(184,150,90,0.35);
  text-underline-offset: 6px;
}
.hero--home p {
  color: var(--text-secondary);
  margin: 0 0 var(--space-lg);
  max-width: none;
}
.hero__content { width: 100%; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero__subtitle--home {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Micro social proof */
.hero__micro-proof {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1.75rem; padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}
.hero__avatars { display: flex; }
.hero__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--charcoal);
  margin-right: -10px;
}
.hero__avatar:last-child { margin-right: 0; }
.hero__micro-text { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.4; }
.hero__micro-text strong { color: var(--charcoal); }

/* Hero preview card */
.hero__preview {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2.75rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.hero__preview-badge {
  display: inline-block;
  background: var(--charcoal); color: var(--bronze);
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero__preview h3 { color: var(--charcoal); font-size: 1.55rem; margin-bottom: 0.85rem; }
.hero__preview p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 1.75rem; }
.hero__preview-list { list-style: none; text-align: left; margin-bottom: 1.75rem; }
.hero__preview-list li {
  color: var(--text-primary); font-size: 1rem; font-weight: 500;
  padding: 0.65rem 0; border-bottom: 1px solid var(--border-lighter);
  display: flex; align-items: center; gap: 0.7rem;
}
.hero__preview-list li svg {
  width: 18px; height: 18px; stroke: var(--bronze); fill: none;
  stroke-width: 2.5; flex-shrink: 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm);
  padding: 0.875rem 2rem; border-radius: var(--border-radius);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent; transition: all var(--transition);
  text-decoration: none; line-height: 1;
}
.btn--primary { background-color: var(--charcoal); color: var(--cream); }
.btn--primary:hover { background-color: var(--bronze); color: var(--charcoal); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(28,28,28,0.12); }
.btn--bronze { background: var(--bronze); color: var(--charcoal); border-color: var(--bronze); }
.btn--bronze:hover { background: var(--light-gold); transform: translateY(-1px); }
.btn--outline { background-color: transparent; border-color: var(--charcoal); color: var(--charcoal); }
.btn--outline:hover { background-color: var(--charcoal); color: var(--cream); }
.btn--outline-bronze { background-color: transparent; border-color: var(--bronze); color: var(--bronze); }
.btn--outline-bronze:hover { background-color: var(--bronze); color: var(--charcoal); }
.btn--dark { background-color: var(--charcoal); color: var(--cream); }
.btn--dark:hover { background-color: var(--deep-slate); }
.btn--ghost { background: transparent; color: var(--bronze); border: none; padding: 0.5rem 0; font-weight: 600; font-size: 0.95rem; }
.btn--ghost:hover { color: var(--charcoal); }
.btn--lg { padding: 1.1rem 2.75rem; font-size: 1.05rem; font-weight: 700; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0;
}
.stats-bar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 700;
  color: var(--charcoal); line-height: 1;
  margin-bottom: 0.25rem;
}
.stats-bar__label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--warm-gray);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--cream);
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-light);
}
.trust-bar__inner { text-align: center; }
.trust-bar__label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm-gray); margin-bottom: 0.75rem;
}
.trust-bar__logos {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-bar__logo {
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 700;
  color: var(--charcoal); opacity: 0.3;
  display: flex; align-items: center; gap: 0.4rem;
}
.trust-bar__logo svg { width: 20px; height: 20px; fill: currentColor; opacity: 0.5; }

/* =============================================
   PROBLEM → SOLUTION
   ============================================= */
.problem-solution {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: var(--border-radius-lg);
  overflow: hidden; margin-top: 2rem;
  border: 1px solid var(--border-light);
}
.problem-side {
  background: var(--charcoal); padding: 3rem;
}
.problem-side h3 { margin-bottom: 1.25rem; color: var(--cream); font-size: 1.65rem; }
.problem-side ul { list-style: none; padding: 0; }
.problem-side li {
  padding: 0.7rem 0; font-size: 1.05rem; color: #A89F94;
  display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.55; font-weight: 500;
}
.problem-side li::before {
  content: '\2715'; color: #E74C3C; font-weight: 700; font-size: 1rem;
  flex-shrink: 0; margin-top: 3px;
}
.solution-side {
  background: var(--white); padding: 3rem;
  border-left: 4px solid var(--bronze);
}
.solution-side h3 { margin-bottom: 1.25rem; font-size: 1.65rem; }
.solution-side ul { list-style: none; padding: 0; }
.solution-side li {
  padding: 0.7rem 0; font-size: 1.05rem; color: var(--charcoal);
  display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.55; font-weight: 500;
}
.solution-side li::before {
  content: '\2713'; color: var(--bronze); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0; margin-top: 2px;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--cream);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.cta-band h3 { color: var(--charcoal); font-size: 1.5rem; margin-bottom: 0.5rem; }
.cta-band p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* =============================================
   TEXT HIGHLIGHT SYSTEM
   ============================================= */
.text-highlight {
  color: var(--charcoal); font-weight: 700;
  text-shadow: 0 1px 2px rgba(28,28,28,0.08);
  position: relative;
}
.text-highlight--bronze {
  color: var(--bronze); font-weight: 700;
}
.text-highlight--underline {
  color: var(--charcoal); font-weight: 700;
  background: rgba(184,150,90,0.18);
  padding: 0.1em 0.35em; border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.text-underline {
  text-decoration: underline;
  text-decoration-color: var(--bronze);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

/* =============================================
   HOW IT WORKS / STEPS
   ============================================= */
.how-it-works {
  background: var(--white);
  padding: 5.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.how-it-works h2 {
  color: var(--charcoal); font-size: 2.5rem;
  text-shadow: 0 2px 4px rgba(28,28,28,0.06);
}
.how-it-works .divider { background-color: var(--bronze); }
.how-it-works > .container > p { color: var(--text-secondary); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem; margin-top: 2.5rem;
}
.step {
  text-align: center;
  background: var(--off-white);
  border-radius: var(--border-radius-lg);
  padding: 2.75rem 2rem;
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(28,28,28,0.08);
}
.step__number {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--charcoal); color: var(--bronze);
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(28,28,28,0.15);
}
.step__title {
  font-family: var(--font-heading);
  font-size: 1.4rem; margin-bottom: 0.65rem;
  color: var(--charcoal);
  text-shadow: 0 1px 2px rgba(28,28,28,0.05);
}
.step__desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.65; }
.step__desc .text-highlight--underline { font-size: inherit; }
.step__time {
  display: inline-block; margin-top: 1rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bronze);
  background: rgba(184,150,90,0.12);
  padding: 0.3rem 0.85rem; border-radius: 20px;
}

/* Reinforcement tagline */
.steps-reinforcement {
  text-align: center; margin-top: 2.75rem;
  font-family: var(--font-heading);
  font-size: 2.1rem; font-style: italic;
  color: var(--cream);
  background: var(--charcoal);
  padding: 2.5rem 3rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(184,150,90,0.2);
  box-shadow: 0 4px 16px rgba(28,28,28,0.1);
  line-height: 1.35;
}
.steps-reinforcement .text-highlight--bronze { font-size: 2.15rem; }

/* =============================================
   VALUE CARDS (Homepage V4)
   ============================================= */
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl); margin-top: var(--space-xl);
}
.value-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28,28,28,0.06);
}
.value-card__icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-md);
  border: 2px solid var(--border-light);
}
.value-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--bronze); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.value-card__title { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: var(--space-sm); }
.value-card__desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* =============================================
   FEATURED TESTIMONIAL
   ============================================= */
.featured-testimonial {
  background: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.featured-testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.65rem; font-style: italic;
  color: var(--charcoal);
  max-width: 780px; margin: 0 auto 1.5rem;
  line-height: 1.5; position: relative;
}
.featured-testimonial__quote::before {
  content: '\201C'; font-size: 5rem;
  color: var(--bronze); opacity: 0.25;
  position: absolute; top: -2rem; left: -1rem;
  font-family: var(--font-heading); line-height: 1;
}
.featured-testimonial__author {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.featured-testimonial__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; color: var(--charcoal);
}
.featured-testimonial__name { font-weight: 700; color: var(--charcoal); font-size: 1rem; }
.featured-testimonial__role { color: var(--warm-gray); font-size: 0.85rem; }

/* Mini testimonials */
.mini-testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 2.5rem;
}
.mini-testimonial {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
}
.mini-testimonial__text {
  font-size: 0.88rem; color: var(--text-primary);
  font-style: italic; line-height: 1.6; margin-bottom: 1rem;
}
.mini-testimonial__author {
  font-size: 0.8rem; color: var(--warm-gray); font-weight: 600;
}

/* =============================================
   ABOUT THE TEACHER
   ============================================= */
.teacher-section {
  display: grid; grid-template-columns: auto 1fr;
  gap: 3rem; align-items: center;
  max-width: 900px; margin: 0 auto;
}
.teacher-photo {
  width: 220px; height: 220px;
  border-radius: var(--border-radius-lg);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--border-light);
  overflow: hidden;
}
.teacher-photo__placeholder {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 700; color: var(--warm-gray);
}
.teacher-info h3 { margin-bottom: 0.5rem; }
.teacher-info .label-accent { margin-bottom: 0.75rem; display: block; }
.teacher-info p { color: var(--text-secondary); font-size: 0.95rem; }
.teacher-cred {
  display: flex; gap: 1.5rem; margin-top: 1.25rem; flex-wrap: wrap;
}
.teacher-cred__item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; color: var(--bronze);
}
.teacher-cred__item svg {
  width: 16px; height: 16px;
  stroke: var(--bronze); fill: none; stroke-width: 2;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  background: var(--cream);
  text-align: center;
  padding: 5rem 2rem;
  border-top: 1px solid var(--border-light);
}
.final-cta h2 { color: var(--charcoal); font-size: 2.5rem; margin-bottom: 1rem; }
.final-cta p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.final-cta__features {
  display: flex; justify-content: center; gap: 2.5rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.final-cta__feature {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--text-secondary);
}
.final-cta__feature svg {
  width: 18px; height: 18px;
  stroke: var(--bronze); fill: none; stroke-width: 2;
}
.final-cta__sub { font-size: 0.8rem; color: var(--warm-gray); margin-top: 0.75rem; }

/* =============================================
   STICKY BOTTOM BAR (Mobile)
   ============================================= */
.sticky-bottom {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 0.75rem 1rem;
  z-index: 200;
  text-align: center;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
.sticky-bottom .btn {
  width: 100%; max-width: 400px; justify-content: center;
  font-size: 0.95rem; padding: 0.85rem 1.5rem;
}

/* =============================================
   COURSE HEADER (Compact, bible-101.html)
   ============================================= */
.course-header {
  background: var(--white);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.course-header .label-accent {
  display: block;
  margin-bottom: var(--space-md);
}
.course-header h1 {
  font-size: 2.75rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.course-header__sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =============================================
   MODULE CARDS (6 vertical rectangles)
   ============================================= */
.course-modules {
  background: var(--off-white);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-light);
}
.module-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.module-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.25rem 1.75rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(28,28,28,0.08);
  border-color: var(--bronze);
}
.module-card__number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 0.85rem;
}
.module-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
.module-card__weeks {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.85rem;
}
.module-card__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

/* =============================================
   COURSE SIGNUP (Warm, direct form)
   ============================================= */
.course-signup {
  background: var(--cream);
  padding: 4rem 0;
}
.signup-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem 3.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(28,28,28,0.05);
  max-width: 640px;
  margin: 0 auto;
}
.signup-card h2 {
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 0.65rem;
}
.signup-card > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.signup-form {
  text-align: left;
}
.signup-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: var(--space-md);
}
.signup-form__group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.signup-form__group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--off-white);
  color: var(--text-primary);
  transition: border-color var(--transition), background var(--transition);
}
.signup-form__group input:focus {
  outline: none;
  border-color: var(--bronze);
  background: var(--white);
}
.signup-form__btn {
  width: 100%;
  margin-top: var(--space-sm);
}
.signup-form__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: var(--space-md);
  margin-bottom: 0;
}

/* =============================================
   CARDS (General)
   ============================================= */
.card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  padding: var(--space-xl);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,28,28,0.08); }
.card__tag {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--bronze);
  margin-bottom: var(--space-sm);
}
.card__title { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; margin-bottom: var(--space-sm); }
.card__desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: var(--space-lg); }

/* =============================================
   COURSE CARDS (Catalog)
   ============================================= */
.course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: var(--space-xl); }
.course-card {
  background: var(--white); border-radius: var(--border-radius-lg);
  overflow: hidden; border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.course-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(28,28,28,0.1); }
.course-card__image {
  width: 100%; height: 200px; background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.course-card__image-text {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
  color: var(--cream); text-align: center; z-index: 1;
}
.course-card__image-text span {
  display: block; font-size: 0.75rem; font-family: var(--font-body);
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: var(--space-xs);
}
.course-card__image::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(184,150,90,0.1) 0%, transparent 60%);
}
.course-card__body { padding: var(--space-xl); }
.course-card__meta { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: var(--space-md); }
.course-card__title { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: var(--space-sm); }
.course-card__desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: var(--space-lg); }

/* =============================================
   MODULE / ACCORDION
   ============================================= */
.module {
  background: var(--white); border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light); margin-bottom: var(--space-md); overflow: hidden;
}
.module__header {
  display: flex; align-items: center; gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer; transition: background-color var(--transition); user-select: none;
}
.module__header:hover { background-color: var(--sage); }
.module__number {
  width: 40px; height: 40px;
  background: var(--charcoal); color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.module__info { flex: 1; }
.module__title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; }
.module__subtitle { font-size: 0.85rem; color: var(--text-secondary); margin-top: 2px; }
.module__toggle { font-size: 1.25rem; color: var(--text-secondary); transition: transform var(--transition); flex-shrink: 0; }
.module.is-open .module__toggle { transform: rotate(180deg); }
.module__lessons { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.module.is-open .module__lessons { max-height: 2000px; }
.module__lesson-list { padding: 0 var(--space-xl) var(--space-lg); list-style: none; }

/* Outline Lesson (Course Page Accordion) */
.outline-lesson {
  padding: var(--space-sm) var(--space-md); font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(212,196,160,0.3); line-height: 1.6;
}
.outline-lesson:last-child { border-bottom: none; }

/* =============================================
   LESSON ITEMS (Dashboard)
   ============================================= */
.lesson-item {
  display: flex; align-items: center; gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  margin-bottom: var(--space-sm);
  transition: all var(--transition);
  text-decoration: none; color: inherit;
}
.lesson-item:hover { background-color: var(--sage); border-color: var(--bronze); color: inherit; }
.lesson-item__week {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bronze); white-space: nowrap; min-width: 60px;
}
.lesson-item__title { font-family: var(--font-heading); font-size: 1rem; flex: 1; }
.lesson-item__arrow {
  color: var(--text-secondary); font-size: 1.1rem; transition: transform var(--transition);
}
.lesson-item:hover .lesson-item__arrow { transform: translateX(4px); color: var(--bronze); }

/* =============================================
   LESSON PAGE
   ============================================= */
.lesson-header {
  background: var(--charcoal); color: var(--cream);
  padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
}
.lesson-header .label-accent { margin-bottom: var(--space-sm); }
.lesson-header h1 { color: var(--cream); font-size: 2.25rem; max-width: 700px; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: var(--space-sm);
  font-size: 0.85rem; margin-bottom: var(--space-lg); flex-wrap: wrap;
}
.breadcrumb a { color: var(--light-gold); opacity: 0.8; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb__sep { color: var(--warm-gray); }
.breadcrumb__current { color: var(--cream); }

/* Embed Blocks */
.embed-block { margin-bottom: var(--space-xl); }
.embed-block__label {
  display: flex; align-items: center; gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
}
.embed-block__icon {
  width: 44px; height: 44px;
  background: var(--charcoal); color: var(--bronze);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.embed-block__title {
  display: block; font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700; color: var(--charcoal);
}
.embed-block__subtitle {
  display: block; font-size: 0.85rem; color: var(--text-secondary); margin-top: 2px;
}
.embed-container {
  position: relative; width: 100%; padding-bottom: 56.25%;
  background: var(--charcoal);
  border-radius: var(--border-radius-lg); overflow: hidden;
}
.embed-container iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.spotify-embed { border-radius: var(--border-radius-lg); overflow: hidden; }
.spotify-embed iframe { width: 100%; border: none; border-radius: var(--border-radius-lg); }

/* Lesson Content */
.lesson-content { padding: var(--space-3xl) 0; }
.lesson-section { margin-bottom: var(--space-2xl); }
.lesson-section__title {
  font-family: var(--font-heading); font-size: 1.35rem;
  margin-bottom: var(--space-md); padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--bronze); display: inline-block;
}
.lesson-section ul { list-style: none; padding: 0; }
.lesson-section li {
  position: relative; padding-left: var(--space-lg);
  margin-bottom: var(--space-md); line-height: 1.7;
}
.lesson-section li::before {
  content: ''; position: absolute; left: 0; top: 0.65em;
  width: 6px; height: 6px; background: var(--bronze); border-radius: 50%;
}
.lesson-section--resource { display: block; }

/* Key Terms */
.term { margin-bottom: var(--space-md); }
.term__name { font-weight: 700; color: var(--charcoal); }
.term__def { color: var(--text-secondary); }

/* Scripture Tags */
.scripture-list { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.scripture-tag {
  background: var(--charcoal); color: var(--cream);
  padding: 0.35rem 0.85rem; border-radius: 20px;
  font-size: 0.85rem; font-weight: 500;
}

/* Lesson Nav */
/* Top Course Overview bar (above lesson content) */
.lesson-top-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
}
.lesson-top-nav__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bronze);
  text-decoration: none;
  transition: color 0.2s;
}
.lesson-top-nav__link:hover {
  color: var(--charcoal);
}

/* Bottom Course Overview button */
.lesson-nav__overview {
  text-align: center;
  padding: var(--space-lg) 0 0;
  margin-top: var(--space-lg);
}
.lesson-nav__overview .btn--outline {
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.lesson-nav__overview .btn--outline:hover {
  border-color: var(--bronze);
  background: var(--sage);
}

.lesson-nav {
  display: flex; justify-content: space-between; align-items: stretch;
  gap: var(--space-md); padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border-light); margin-top: var(--space-lg);
}
.lesson-nav__link {
  display: flex; flex-direction: column;
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  text-decoration: none; color: inherit;
  transition: all var(--transition); max-width: 48%;
}
.lesson-nav__link:hover { border-color: var(--bronze); background: var(--sage); color: inherit; }
.lesson-nav__link--prev { align-items: flex-start; }
.lesson-nav__link--next { align-items: flex-end; margin-left: auto; }
.lesson-nav__label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 4px;
}
.lesson-nav__title { font-family: var(--font-heading); font-size: 0.95rem; }

/* =============================================
   EMAIL FORM
   ============================================= */
.email-form { max-width: 480px; margin: 0 auto; }
.email-form__group { margin-bottom: var(--space-md); }
.email-form label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: var(--space-xs); color: var(--text-primary);
}
.email-form input[type="text"],
.email-form input[type="email"] {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-family: var(--font-body); font-size: 1rem;
  background: var(--white); color: var(--text-primary);
  transition: border-color var(--transition);
}
.email-form input:focus { outline: none; border-color: var(--bronze); }

/* =============================================
   BENEFITS GRID (Course Page)
   ============================================= */
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl); margin-top: var(--space-xl);
}
.benefits-grid--3col { grid-template-columns: repeat(3, 1fr); }
.benefit { text-align: center; padding: var(--space-lg); }
.benefit__icon {
  width: 56px; height: 56px;
  background: var(--charcoal); color: var(--bronze);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto var(--space-md);
}
.benefit__title { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: var(--space-sm); }
.benefit__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

/* =============================================
   DASHBOARD HEADER
   ============================================= */
.dash-header {
  background: var(--charcoal);
  color: var(--cream);
  padding: 2.75rem 0 2.5rem;
  text-align: center;
}
.dash-header__greeting {
  font-size: 0.95rem;
  color: var(--light-gold);
  margin-bottom: var(--space-sm);
}
.dash-header__greeting strong { color: var(--cream); }
.dash-header__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.dash-header__sub {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--light-gold);
  margin-bottom: 1.75rem;
}

/* =============================================
   PROGRESS BAR
   ============================================= */
.progress-wrapper {
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.progress-bar__fill {
  height: 100%;
  background: var(--bronze);
  border-radius: 20px;
  transition: width 0.6s ease;
}
.progress-bar__text {
  font-size: 0.82rem;
  color: var(--light-gold);
  margin-bottom: 0;
}

/* =============================================
   LESSON COMPLETION STATES (Dashboard)
   ============================================= */
.lesson-item__check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  transition: all var(--transition);
}
.lesson-item.is-completed .lesson-item__check {
  background: var(--bronze);
  border-color: var(--bronze);
  font-size: 0.7rem;
  color: var(--white);
}
.lesson-item.is-completed .lesson-item__check::after {
  content: '\2713';
}
.lesson-item.is-started .lesson-item__check {
  border-color: var(--bronze);
  background: rgba(184,150,90,0.1);
}
.lesson-item.is-completed .lesson-item__title {
  color: var(--warm-gray);
}

/* =============================================
   AUTH MESSAGES
   ============================================= */
.auth-message {
  padding: 0.85rem 1.25rem;
  border-radius: var(--border-radius);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  text-align: center;
}
.auth-message--error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}
.auth-message--info {
  background: #F0F9FF;
  color: #075985;
  border: 1px solid #BAE6FD;
}

/* =============================================
   LESSON COMPLETE BUTTON
   ============================================= */
.lesson-complete {
  text-align: center;
  padding: var(--space-2xl) 0 var(--space-lg);
}
.lesson-complete__btn {
  min-width: 280px;
}
.lesson-complete__btn.is-completed {
  background: var(--sage);
  color: var(--charcoal);
  border-color: var(--sage);
  cursor: default;
  opacity: 0.85;
}
.lesson-complete__btn.is-completed:hover {
  transform: none;
  box-shadow: none;
}

/* =============================================
   SIGNUP FORM ADJUSTMENTS (auth page)
   ============================================= */
.signup-form h2 {
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.signup-form__intro {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.signup-form__group {
  margin-bottom: var(--space-md);
}
.signup-form__group input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--off-white);
  color: var(--text-primary);
  transition: border-color var(--transition), background var(--transition);
}
.signup-form__group input[type="password"]:focus {
  outline: none;
  border-color: var(--bronze);
  background: var(--white);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal); color: var(--cream);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center; font-size: 0.85rem;
}
.footer a { color: var(--light-gold); }
.footer a:hover { color: var(--bronze); }
.footer__brand { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: var(--space-sm); }
.footer__tagline { color: var(--warm-gray); font-size: 0.8rem; margin-bottom: var(--space-md); font-style: italic; }
.footer__links { display: flex; justify-content: center; gap: var(--space-lg); margin-bottom: var(--space-md); flex-wrap: wrap; }
.footer__copy { color: var(--warm-gray); font-size: 0.75rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-2xl) 0; }

  /* Nav */
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .nav__cta { display: none; }
  .nav__links.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }
  .nav__brand-gospel { font-size: 14px; letter-spacing: 2px; }
  .nav__brand-advance { font-size: 10px; letter-spacing: 2px; }
  .nav__brand-bible { font-size: 14px; letter-spacing: 2px; }
  .nav__brand-101 { font-size: 12px; letter-spacing: 3.5px; }
  .nav__brand-divider { height: 28px; }

  /* Hero (course pages) */
  .hero { padding: var(--space-2xl) var(--space-md); }
  .hero--landing h1 { font-size: 2rem; }

  /* Hero (homepage) */
  .hero--home { min-height: auto; padding: 3rem 1rem; }
  .hero--home h1 { font-size: 2.2rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__preview { display: none; }

  /* Stats */
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Steps / How It Works */
  .steps-grid { grid-template-columns: 1fr; }
  .how-it-works h2 { font-size: 1.75rem; }
  .steps-reinforcement { font-size: 1.5rem; padding: 1.75rem 1.5rem; }
  .steps-reinforcement .text-highlight--bronze { font-size: 1.55rem; }

  /* Problem / Solution */
  .problem-solution { grid-template-columns: 1fr; }
  .solution-side { border-left: none; border-top: 3px solid var(--bronze); }

  /* Value Cards */
  .value-grid { grid-template-columns: 1fr; }

  /* Benefits */
  .benefits-grid, .benefits-grid--3col { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .mini-testimonials { grid-template-columns: 1fr; }
  .featured-testimonial__quote { font-size: 1.25rem; }

  /* Teacher */
  .teacher-section { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .teacher-cred { justify-content: center; }
  .teacher-photo { width: 160px; height: 160px; }

  /* Final CTA */
  .final-cta h2 { font-size: 1.75rem; }
  .final-cta__features { gap: 1.5rem; }

  /* Course header */
  .course-header h1 { font-size: 2rem; }
  .course-header { padding: 2.5rem 0 2rem; }

  /* Module cards → 2 columns on tablet */
  .module-cards { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .module-card { padding: 1.5rem 1rem 1.25rem; }
  .module-card__title { font-size: 0.95rem; }
  .module-card__desc { font-size: 0.8rem; }

  /* Signup card */
  .signup-card { padding: 2rem 1.5rem; }
  .signup-card h2 { font-size: 1.4rem; }

  /* Course page */
  .course-grid { grid-template-columns: 1fr; }
  .lesson-header h1 { font-size: 1.75rem; }
  .lesson-nav { flex-direction: column; }
  .lesson-nav__link { max-width: 100%; }
  .lesson-nav__link--next { align-items: flex-start; }

  /* Sticky mobile CTA */
  .sticky-bottom { display: block; }
  body.has-sticky-bottom { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .benefits-grid, .benefits-grid--3col { grid-template-columns: 1fr; }
  .lesson-item { flex-direction: column; align-items: flex-start; }
  .nav__brand-gospel { font-size: 12px; letter-spacing: 1.5px; }
  .nav__brand-advance { font-size: 9px; letter-spacing: 1.5px; }
  .nav__brand-bible { font-size: 12px; letter-spacing: 1.5px; }
  .nav__brand-101 { font-size: 10px; letter-spacing: 3px; }
  .nav__brand-divider { height: 24px; }
  .nav__brand { gap: 10px; }
  .trust-bar__logos { gap: 1.5rem; }
  .stats-bar__number { font-size: 2rem; }

  /* Module cards → single column on mobile */
  .module-cards { grid-template-columns: 1fr; }

  /* Signup form → stacked on mobile */
  .signup-form__row { grid-template-columns: 1fr; }
}


/* =============================================
   PASSWORD VISIBILITY TOGGLE
   ============================================= */
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.password-wrapper input {
  padding-right: 2.75rem;
  width: 100%;
}
.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--text-secondary, #6B7280);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.password-toggle:hover {
  color: var(--text-primary, #1F2937);
}

/* =============================================
   FORGOT PASSWORD LINK
   ============================================= */
.signup-form__forgot {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--bronze, #8B7635);
  text-decoration: none;
  transition: opacity 0.2s;
}
.signup-form__forgot:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* =============================================
   EMAIL SENT POPUP / MODAL
   ============================================= */
.email-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.25s ease;
}
.email-popup {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.3s ease;
}
.email-popup__icon {
  margin-bottom: 1rem;
}
.email-popup__title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.75rem;
  color: var(--text-primary, #1F2937);
  margin-bottom: 0.75rem;
}
.email-popup__message {
  font-size: 0.92rem;
  color: var(--text-secondary, #6B7280);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.email-popup__resend {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.email-popup__close {
  display: block;
  width: 100%;
  font-size: 0.9rem;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
