/* MENTORSHIP PAGE */

.why-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.why-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-point-icon {
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.why-point strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.why-point p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* PROGRAMMES */
.programmes {
  padding: 6rem 0;
  background: var(--paper-dark);
}
.prog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.prog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
  position: relative;
}
.prog-card:hover {
  box-shadow: 0 8px 40px rgba(26,22,18,0.08);
}
.prog-card.featured {
  border-color: var(--gold);
  background: var(--ink);
}
.prog-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--paper);
  padding: 0.25rem 0.7rem;
  margin-bottom: 1rem;
}
.prog-card-top { margin-bottom: 1.5rem; }
.prog-icon { font-size: 1.5rem; display: block; margin-bottom: 0.8rem; }
.prog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.prog-card.featured .prog-title { color: var(--paper); }
.prog-sub {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.prog-card.featured .prog-sub { color: rgba(245,240,232,0.4); }
.prog-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  margin-bottom: 2rem;
}
.prog-features li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.prog-card.featured .prog-features li { color: rgba(245,240,232,0.55); }
.prog-features li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.prog-footer { margin-top: auto; }

/* HOW IT WORKS */
.how-section {
  padding: 6rem 0;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.how-step {
  flex: 1;
  min-width: 180px;
  padding: 0 1.5rem;
}
.how-step:first-child { padding-left: 0; }
.how-step:last-child { padding-right: 0; }
.how-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.how-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.how-body {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}
.how-connector {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  margin-top: 1.5rem;
  flex-shrink: 0;
}

/* MENTOR QUOTE */
.mentor-quote {
  background: var(--ink);
  padding: 5rem 0;
  position: relative;
}
.mentor-quote::before, .mentor-quote::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.mentor-quote::before { top: 0; }
.mentor-quote::after { bottom: 0; }
.mentor-quote-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.mentor-quote-inner .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 1rem;
  display: block;
}
.mentor-quote-inner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--paper);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.mentor-quote-inner cite {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .prog-cards { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; gap: 2rem; }
  .how-step { padding: 0; }
  .how-connector { width: 1px; height: 30px; margin: 0 0 0 1.2rem; }
}
