/* ============================================================
   Steadfast Life — Engagement Mentorship (engagement.css)
   ============================================================ */

/* ═══════════════════════════
   HERO
════════════════════════════ */
#e-hero {
  padding-top: 68px;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--warm-brown);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#e-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(196,113,74,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(44,34,24,0.5) 0%, transparent 48%),
    radial-gradient(ellipse at 50% 110%, rgba(10,6,4,0.55) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.e-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/birmingham-museums-trust-8wcoY3wcbL0-unsplash.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(30%) brightness(0.25);
  z-index: 0;
}

.e-hero-overlay { display: none; } /* bg overlay handled above */

.e-hero-inner {
  position: relative; z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 8% 4rem;
  max-width: 1300px;
  width: 100%;
}

.e-hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.e-hero-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--terracotta-light);
}

#e-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  color: var(--linen);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin-bottom: 2rem;
}
#e-hero h1 em { color: var(--terracotta-light); }

.e-hero-questions {
  border-left: 2px solid rgba(196,113,74,0.35);
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.e-hero-questions p {
  font-size: 0.9rem;
  color: rgba(245,239,230,0.5);
  font-weight: 300;
  line-height: 1.6;
}
.e-hero-questions-close {
  color: rgba(245,239,230,0.75) !important;
  font-family: var(--font-display) !important;
  font-style: italic;
  font-size: 0.95rem !important;
  margin-top: 0.3rem;
}

.e-hero-sub {
  font-size: 0.95rem;
  color: rgba(245,239,230,0.7);
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
  margin: 1.25rem 0 2rem;
}
.e-hero-sub strong { color: var(--linen); font-weight: 500; }

.e-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero card — video + quote */
.e-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,239,230,0.1);
  border-radius: 20px;
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}
.e-video-names {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--linen);
  margin-bottom: 0.2rem;
}
.e-video-sub {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.35);
  margin-bottom: 1rem;
}
.e-video-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245,239,230,0.65);
  line-height: 1.65;
  font-weight: 300;
  border-left: 2px solid rgba(196,113,74,0.4);
  padding-left: 1rem;
}

/* Trust strip */
.e-hero-trust {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  padding: 1.5rem 8%;
  border-top: 1px solid rgba(245,239,230,0.08);
  background: rgba(0,0,0,0.15);
}
.e-trust-item {
  font-size: 0.78rem;
  color: rgba(245,239,230,0.4);
  font-weight: 400;
}
.e-trust-div {
  width: 1px; height: 16px;
  background: rgba(245,239,230,0.1);
}

/* ═══════════════════════════
   PROBLEM
════════════════════════════ */
#e-problem {
  background: var(--white);
  padding: 7rem 8%;
}
.e-problem-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 7rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.e-problem-left .tag { justify-content: flex-start; }
.e-problem-left h2 { margin-bottom: 1.5rem; }
.e-problem-left p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.15rem;
}
.e-problem-left p em { font-style: italic; color: var(--warm-brown); }
.e-problem-close strong { color: var(--warm-brown); font-weight: 500; }

.e-problem-right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: sticky;
  top: 100px;
}

.e-problem-stat-card {
  background: var(--linen);
  border: 1px solid var(--linen-dark);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.e-problem-stat-inner { text-align: center; padding: 1rem 0; }
.e-problem-stat-main {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--warm-brown);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.e-problem-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.5;
}
.e-problem-stat-divider {
  height: 1px;
  background: var(--linen-dark);
  margin: 0;
}

.e-problem-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--warm-brown);
  line-height: 1.65;
  font-weight: 300;
  border-left: 2px solid var(--terracotta);
  padding: 0.75rem 0 0.75rem 1.5rem;
}
.e-problem-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 0.65rem;
}

/* ═══════════════════════════
   STORY
════════════════════════════ */
#e-story {
  background: var(--linen);
  padding: 7rem 8%;
}
.e-story-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}
.e-story-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--linen-dark);
  position: relative;
  background: var(--white);
}
.e-story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.e-together-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.e-story-photo-caption {
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  color: rgba(245,239,230,0.6);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(10,6,4,0.4);
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.e-story-text .tag { justify-content: flex-start; }
.e-story-text h2 { margin-bottom: 1.5rem; }
.e-story-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.15rem;
}
.e-story-text p em { font-style: italic; color: var(--warm-brown); }

.e-story-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.e-story-creds span {
  font-size: 0.72rem;
  background: var(--white);
  border: 1px solid var(--linen-dark);
  color: var(--warm-brown);
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
}

/* ═══════════════════════════
   FOR WHO
════════════════════════════ */
#e-forwho {
  background: var(--white);
  padding: 7rem 8%;
}
.e-forwho-inner { max-width: 1000px; margin: 0 auto; }
.e-forwho-header { text-align: center; margin-bottom: 3.5rem; }

.e-forwho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.e-forwho-col {
  border-radius: 20px;
  border: 1px solid var(--linen-dark);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.e-forwho-col--yes { background: var(--linen); }
.e-forwho-col--no  { background: var(--white); }

.e-forwho-col-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.e-forwho-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.e-forwho-item:last-of-type { border-bottom: none; }
.e-forwho-item p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
  font-weight: 300;
}
.e-fi-mark {
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.e-fi-mark--yes { color: var(--terracotta-aa); }
.e-fi-mark--no  { color: var(--text-light); }

.e-forwho-note {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
  font-style: italic;
  font-family: var(--font-display);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--linen-dark);
}

/* ═══════════════════════════
   PROGRAM CONTENT
════════════════════════════ */
#e-program {
  background: var(--linen);
  padding: 7rem 8%;
}
.e-program-inner { max-width: 1000px; margin: 0 auto; }
.e-program-header { text-align: center; margin-bottom: 4rem; }

/* ── Row layout ── */
.e-program-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--linen-dark);
  border-radius: 20px;
  overflow: visible;
  background: var(--white);
}

.e-program-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--linen-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--white);
}
.e-program-row:first-child { border-radius: 20px 20px 0 0; }
.e-program-row:last-child { border-bottom: none; border-radius: 0 0 20px 20px; }
.e-program-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(92,61,46,0.1);
  z-index: 1;
  position: relative;
}

.e-program-row-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--terracotta-pale);
  line-height: 1;
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--linen-dark);
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.e-program-row-body {
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
}
.e-program-row-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--warm-brown);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.e-program-row-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.e-program-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--warm-brown);
  line-height: 1.65;
  font-weight: 300;
  border-left: 2px solid var(--terracotta);
  padding: 0.4rem 0 0.4rem 1rem;
  margin-top: 1.25rem;
}

/* Topics grid inside row 03 */
.e-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 0.75rem 0 1rem;
}
.e-topic {
  background: var(--linen);
  border: 1px solid var(--linen-dark);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
.e-topic-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta-aa);
  margin-bottom: 0.3rem;
}
.e-topic p {
  font-size: 0.775rem;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 0 !important;
}

@media (max-width: 640px) {
  .e-program-row { grid-template-columns: 56px 1fr; }
  .e-program-row-num { font-size: 1.75rem; padding: 1.75rem 1rem; }
  .e-program-row-body { padding: 1.75rem 1.25rem; }
  .e-topics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .e-topics-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════
   PROCESS
════════════════════════════ */
#e-process {
  background: var(--white);
  padding: 7rem 8%;
}
.e-process-inner { max-width: 900px; margin: 0 auto; }
.e-process-header { text-align: center; margin-bottom: 4rem; }

.e-steps { display: flex; flex-direction: column; }
.e-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--linen-dark);
  align-items: start;
}
.e-step:first-child { border-top: 1px solid var(--linen-dark); }

.e-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--linen-dark);
  line-height: 1;
}

.e-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--warm-brown);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.e-step-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-aa);
  background: var(--terracotta-pale);
  padding: 0.18rem 0.6rem;
  border-radius: 100px;
}
.e-step-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ═══════════════════════════
   MENTORS
════════════════════════════ */
#e-mentors {
  background: var(--linen);
  padding: 7rem 8%;
}
.e-mentors-inner { max-width: 1050px; margin: 0 auto; }
.e-mentors-header { text-align: center; margin-bottom: 4rem; }

.e-mentors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.e-mentor {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: 22px;
  overflow: hidden;
}
.e-mentor-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--linen);
}
.e-mentor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.e-mentor:hover .e-mentor-photo img {
  transform: scale(1.03);
}
.e-mentor-info { padding: 2rem; }
.e-mentor-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--warm-brown);
  margin-bottom: 0.25rem;
}
.e-mentor-title {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.e-mentor-info p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.9rem;
}
.e-mentor-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.e-mentor-creds span {
  font-size: 0.7rem;
  background: var(--linen);
  border: 1px solid var(--linen-dark);
  color: var(--warm-brown);
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
}

/* Together card */
.e-mentors-together {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: var(--warm-brown);
  border-radius: 22px;
  overflow: hidden;
}
.e-together-photo {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.e-together-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}
.e-together-text p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245,239,230,0.75);
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════════════════════════
   TESTIMONIALS
════════════════════════════ */
#e-testimonials {
  background: var(--white);
  padding: 7rem 8%;
}
.e-testi-inner { max-width: 1050px; margin: 0 auto; }
.e-testi-header { text-align: center; margin-bottom: 3.5rem; }

.e-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.e-testi-card--featured {
  grid-column: span 2;
  background: var(--warm-brown) !important;
  border-color: transparent !important;
}
.e-testi-card--featured blockquote {
  color: rgba(245,239,230,0.85) !important;
  font-size: 1.1rem !important;
}
.e-testi-card--featured cite { color: rgba(245,239,230,0.4) !important; }

.e-testi-card {
  background: var(--linen);
  border: 1px solid var(--linen-dark);
  border-radius: 20px;
  padding: 2rem;
}
.e-testi-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}
.e-testi-card cite {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--warm-brown);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════
   PRICING
════════════════════════════ */
#e-pricing {
  background: var(--warm-brown);
  padding: 7rem 8%;
  position: relative;
  overflow: hidden;
}
#e-pricing::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(196,113,74,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.e-pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.e-pricing-header { text-align: center; margin-bottom: 3.5rem; }
#e-pricing h2 { color: var(--linen); }
#e-pricing h2 em { color: var(--terracotta-light); }

.e-pricing-card {
  display: grid;
  grid-template-columns: 1fr 300px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,239,230,0.1);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.e-pricing-left {
  padding: 3rem;
  border-right: 1px solid rgba(245,239,230,0.08);
}

.e-pricing-range-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.35);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.e-pricing-range {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.e-pricing-range-sub {
  font-size: 0.8rem;
  color: rgba(245,239,230,0.35);
  font-weight: 300;
  margin-bottom: 2rem;
}

.e-pricing-factors {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245,239,230,0.08);
}
.e-pricing-factor-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.35);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.e-pricing-factor {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(245,239,230,0.65);
  font-weight: 300;
  line-height: 1.5;
}
.e-pricing-factor::before {
  content: '·';
  color: var(--terracotta-light);
  flex-shrink: 0;
}
.e-pricing-note {
  font-size: 0.8rem;
  color: rgba(245,239,230,0.35);
  font-weight: 300;
  font-style: italic;
  font-family: var(--font-display);
}

/* Pricing right */
.e-pricing-right {
  padding: 2.5rem 2rem;
  background: rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.e-pricing-cta-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.35);
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.e-pricing-right > p {
  font-size: 0.825rem;
  color: rgba(245,239,230,0.5);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.e-pricing-divider {
  height: 1px;
  background: rgba(245,239,230,0.08);
  margin: 1.25rem 0;
}
.e-pricing-alt-text {
  font-size: 0.8rem;
  color: rgba(245,239,230,0.4);
  font-weight: 300;
  line-height: 1.65;
}
.e-pricing-alt-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.825rem;
  color: var(--terracotta-light);
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(214,155,120,0.3);
  padding-bottom: 1px;
  display: inline-block;
  transition: border-color 0.2s;
  margin-top: 0.35rem;
}
.e-pricing-alt-btn:hover { border-color: var(--terracotta-light); }

/* Overview form */
.e-overview-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,239,230,0.1);
  border-radius: 20px;
  padding: 2.5rem;
}
.e-overview-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.e-overview-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.e-overview-form input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--linen);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.e-overview-form input::placeholder { color: rgba(245,239,230,0.3); }
.e-overview-form input:focus { border-color: rgba(196,113,74,0.6); }
.e-overview-submit {
  background: var(--terracotta-aa);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  margin-top: 0.25rem;
  align-self: flex-start;
}
.e-overview-submit:hover { background: var(--terracotta); }

.e-overview-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(196,113,74,0.1);
  border: 1px solid rgba(196,113,74,0.2);
  border-radius: 12px;
}
.e-overview-success-icon {
  font-size: 1.1rem;
  color: var(--terracotta-light);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(196,113,74,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.e-overview-success strong {
  display: block;
  font-size: 0.95rem;
  color: var(--linen);
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
}
.e-overview-success p {
  font-size: 0.8rem;
  color: rgba(245,239,230,0.45);
  font-weight: 300;
  margin-top: 0.2rem;
}

/* ═══════════════════════════
   FAQ
════════════════════════════ */
#e-faq {
  background: var(--white);
  padding: 7rem 8%;
}
.e-faq-inner { max-width: 820px; margin: 0 auto; }
.e-faq-header { text-align: center; margin-bottom: 3.5rem; }

.e-faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--linen-dark);
  border-radius: 20px;
  overflow: hidden;
}
.e-faq-item {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--linen-dark);
  cursor: pointer;
  transition: background 0.15s;
}
.e-faq-item:last-child { border-bottom: none; }
.e-faq-item:hover, .e-faq-item--open { background: var(--linen); }

.e-faq-q {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-brown);
  line-height: 1.4;
  position: relative;
  padding-right: 1.5rem;
}
.e-faq-q::after {
  content: '+';
  position: absolute; right: 0; top: 0;
  font-size: 1.1rem;
  color: var(--terracotta-aa);
  font-weight: 300;
}
.e-faq-item--open .e-faq-q::after { content: '−'; }

.e-faq-a {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.2s;
}
.e-faq-item--open .e-faq-a {
  max-height: 300px;
  margin-top: 0.85rem;
}

/* ═══════════════════════════
   FINAL CTA
════════════════════════════ */
#e-cta {
  background: var(--warm-brown);
  padding: 7rem 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#e-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,113,74,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.e-cta-inner {
  position: relative; z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
#e-cta h2 { color: var(--linen); margin-bottom: 1rem; }
#e-cta h2 em { color: var(--terracotta-light); }
#e-cta p {
  color: rgba(245,239,230,0.55);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ═══════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1060px) {
  .e-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .e-hero-card { max-width: 480px; }
  .e-mentors-together { grid-template-columns: 280px 1fr; }
}

@media (max-width: 960px) {
  #e-hero h1 { font-size: clamp(2.3rem, 8vw, 3.8rem); }
  .e-hero-trust { gap: 0.4rem 1.5rem; }

  .e-problem-inner,
  .e-story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .e-problem-right { position: static; }

  .e-forwho-grid { grid-template-columns: 1fr; }
  .e-mentors-grid { grid-template-columns: 1fr; }
  .e-mentor-photo { aspect-ratio: 4 / 3; }
  .e-mentors-together { grid-template-columns: 1fr; }
  .e-together-photo { aspect-ratio: 16 / 9; }

  .e-pricing-card { grid-template-columns: 1fr; }
  .e-pricing-left { border-right: none; border-bottom: 1px solid rgba(245,239,230,0.08); }

  .e-testi-card--featured { grid-column: span 1; }
  .e-testi-grid { grid-template-columns: 1fr; }

  .e-topics-grid { grid-template-columns: repeat(2, 1fr); }

  .e-step { grid-template-columns: 50px 1fr; gap: 1.25rem; }
}

@media (max-width: 640px) {
  #e-problem, #e-story, #e-forwho, #e-program,
  #e-process, #e-mentors, #e-testimonials,
  #e-pricing, #e-faq, #e-cta { padding-left: 6%; padding-right: 6%; }

  .e-topics-grid { grid-template-columns: 1fr; }
  .e-overview-row { grid-template-columns: 1fr; }
}