/* ============================================================
   Steadfast Life — 1:1 Mentorship Page (mentorship.css)
   ============================================================ */

/* ═══════════════════════════
   HERO
════════════════════════════ */
#m-hero {
  padding-top: 68px;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.m-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/liam-ward-EsIgdjc8Q80-unsplash.jpg");
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.03);
}

.m-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(10,6,4,0.97) 0%, rgba(10,6,4,0.4) 35%, rgba(10,6,4,0.2) 65%, transparent 100%),
    linear-gradient(to right, rgba(10,6,4,0.5) 0%, transparent 60%);
}

.m-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 8% 5rem;
}

.m-hero-content {
  max-width: 780px;
}

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

#m-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  color: var(--linen);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
#m-hero h1 em {
  color: var(--terracotta-light);
  font-style: italic;
}

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

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

.m-distinction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.m-distinction-col {
  background: var(--linen);
  border: 1px solid var(--linen-dark);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.m-distinction-col--us {
  background: var(--warm-brown);
  border-color: transparent;
}

.m-distinction-col-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.85rem;
}
.m-distinction-col-label--us { color: rgba(245,239,230,0.95); }

.m-distinction-col p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.5rem;
}
.m-distinction-col--us p { color: rgba(245,239,230,0.75); }

.m-distinction-verdict {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  display: inline-flex;
  align-self: flex-start;
  letter-spacing: 0.04em;
}
.m-distinction-verdict--neutral {
  background: var(--linen-dark);
  color: var(--text-light);
}
.m-distinction-verdict--us {
  background: var(--terracotta-aa);
  color: white;
}

/* For who grid */
.m-for-who {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border: 1px solid var(--linen-dark);
  border-radius: 20px;
  overflow: hidden;
  background: var(--linen);
}
.m-for-who-col { padding: 2.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.m-for-who-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.m-for-who-divider {
  width: 1px;
  background: var(--linen-dark);
  align-self: stretch;
}
.m-for-item {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.m-for-item:last-child { border-bottom: none; }
.m-for-item--yes::before {
  content: '✓';
  color: var(--terracotta-aa);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.m-for-item--no::before {
  content: '✕';
  color: var(--text-light);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ═══════════════════════════
   FRAMEWORK
════════════════════════════ */
#m-framework {
  background: var(--linen);
  padding: 7rem 8%;
}
.m-framework-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.m-framework-left .tag { justify-content: flex-start; }
.m-framework-left h2 { margin-bottom: 1.5rem; line-height: 1.2; }
.m-framework-left p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.15rem;
}
.m-framework-left p strong { color: var(--warm-brown); font-weight: 500; }

/* CCC citation link — sits inline within body paragraphs */
.ccc-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta-aa);
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 90, 50, 0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.ccc-link:hover {
  color: var(--warm-brown);
  border-color: var(--warm-brown);
}

.m-framework-right {
  display: flex;
  flex-direction: column;
}
.m-virtue {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--linen-dark);
}
.m-virtue:first-child { border-top: 1px solid var(--linen-dark); }
.m-virtue-latin {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-aa);
  margin-bottom: 0.25rem;
}
.m-virtue-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--warm-brown);
  margin-bottom: 0.6rem;
}
.m-virtue p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

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

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

.m-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--terracotta-pale);
  line-height: 1;
  padding-top: 0.2rem;
}

.m-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--warm-brown);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.m-step-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-aa);
  background: var(--terracotta-pale);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}
.m-step-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.m-step-meta {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  font-weight: 400;
}

/* ═══════════════════════════
   WHY IT WORKS
════════════════════════════ */
#m-why {
  background: var(--linen);
  padding: 7rem 8%;
}
.m-why-inner { max-width: 1100px; margin: 0 auto; }
.m-why-header { text-align: center; margin-bottom: 4rem; }

.m-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.m-why-item {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: 20px;
  padding: 2.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.m-why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(92,61,46,0.09);
}
.m-why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--terracotta-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.m-why-icon svg {
  width: 24px; height: 24px;
  stroke: var(--terracotta);
}
.m-why-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--warm-brown);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.m-why-item p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

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

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

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

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

.m-mentor-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.m-mentor-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.m-mentor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(92,61,46,0.1);
}
.m-mentor-photo {
  background: var(--linen);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
}
.m-mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.m-mentor-card:hover .m-mentor-photo img {
  transform: scale(1.03);
}
.m-mentor-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta-pale);
}
.m-mentor-initials {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--terracotta);
  letter-spacing: 0.05em;
}

.m-mentor-info { padding: 2.25rem; }
.m-mentor-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--warm-brown);
  margin-bottom: 0.3rem;
}
.m-mentor-title {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.m-mentor-info p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.9rem;
}
.m-mentor-info p em { font-style: italic; color: var(--warm-brown); }

.m-mentor-focus { margin: 1rem 0; }
.m-mentor-focus-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.m-mentor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.m-mentor-tags span {
  font-size: 0.75rem;
  background: var(--linen);
  border: 1px solid var(--linen-dark);
  color: var(--warm-brown);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.m-mentor-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--warm-brown);
  line-height: 1.6;
  border-left: 2px solid var(--terracotta);
  padding: 0.5rem 0 0.5rem 1rem;
  margin: 1rem 0;
}

.m-mentor-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.m-mentor-creds span {
  font-size: 0.7rem;
  color: var(--text-light);
  background: var(--linen);
  border: 1px solid var(--linen-dark);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

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

.m-pricing-card {
  display: grid;
  grid-template-columns: 1fr 280px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,239,230,0.1);
  border-radius: 24px;
  overflow: hidden;
}

.m-pricing-card-left {
  padding: 3rem;
  border-right: 1px solid rgba(245,239,230,0.1);
}
.m-pricing-plan {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.6);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.m-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.3rem;
}
.m-price-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
}
.m-price-period {
  font-size: 1rem;
  color: rgba(245,239,230,0.7);
  font-weight: 300;
}
.m-price-billing {
  font-size: 0.78rem;
  color: rgba(245,239,230,0.55);
  margin-bottom: 2rem;
}

.m-pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245,239,230,0.08);
}
.m-pricing-include {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(245,239,230,0.82);
  font-weight: 300;
  line-height: 1.5;
}
.m-pi-check {
  color: var(--terracotta-light);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.m-pricing-include strong { color: var(--linen); font-weight: 500; }

.m-pricing-guarantees {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.m-pricing-guarantee strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--linen);
  margin-bottom: 0.25rem;
}
.m-pricing-guarantee p {
  font-size: 0.8rem;
  color: rgba(245,239,230,0.68);
  font-weight: 300;
  line-height: 1.6;
}

/* Right column */
.m-pricing-card-right {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(0,0,0,0.12);
}
.m-pricing-cta-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.75);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.m-pricing-cta-sub {
  font-size: 0.75rem;
  color: rgba(245,239,230,0.65);
  font-weight: 300;
  margin-top: 0.25rem;
}
.m-pricing-cta-divider {
  width: 100%;
  height: 1px;
  background: rgba(245,239,230,0.08);
  margin: 1.5rem 0;
}
.m-pricing-cta-alt {
  font-size: 0.825rem;
  color: rgba(245,239,230,0.68);
  font-weight: 300;
  line-height: 1.65;
}
.m-pricing-alt-link {
  font-size: 0.825rem;
  color: var(--terracotta-light);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(214,155,120,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
  margin-top: 0.35rem;
  display: inline-block;
}
.m-pricing-alt-link:hover { border-color: rgba(214,155,120,0.7); }

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

.m-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--linen-dark);
  border-radius: 20px;
  overflow: hidden;
}
.m-faq-item {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--linen-dark);
  border-right: 1px solid var(--linen-dark);
  cursor: pointer;
  transition: background 0.15s;
}
.m-faq-item:nth-child(even) { border-right: none; }
.m-faq-item:nth-last-child(-n+2) { border-bottom: none; }
.m-faq-item:hover { background: var(--linen); }
.m-faq-item--open { background: var(--linen); }

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

.m-faq-a {
  font-size: 0.85rem;
  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;
}
.m-faq-item--open .m-faq-a {
  max-height: 300px;
  margin-top: 0.85rem;
}

/* ═══════════════════════════
   FINAL CTA
════════════════════════════ */
#m-cta {
  background: var(--warm-brown);
  padding: 7rem 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#m-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;
}
.m-cta-inner {
  position: relative; z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
#m-cta h2 { color: var(--linen); margin-bottom: 1rem; }
#m-cta h2 em { color: var(--terracotta-light); }
#m-cta p {
  color: rgba(245,239,230,0.75);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.m-cta-alt {
  font-size: 0.825rem !important;
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.m-cta-alt a {
  color: rgba(245,239,230,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,239,230,0.2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.m-cta-alt a:hover {
  color: rgba(245,239,230,0.8);
  border-color: rgba(245,239,230,0.4);
}

/* ═══════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 960px) {
  #m-hero h1 { font-size: clamp(2.2rem, 8vw, 3.8rem); }
  .m-hero-inner { padding-left: 6%; padding-right: 6%; padding-bottom: 4rem; }

  .m-distinction-grid { grid-template-columns: 1fr; }
  .m-for-who { grid-template-columns: 1fr; }
  .m-for-who-divider { width: auto; height: 1px; }

  .m-framework-inner { grid-template-columns: 1fr; gap: 3rem; }

  .m-why-grid { grid-template-columns: 1fr; }

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

  .m-mentor-card { grid-template-columns: 1fr; }
  .m-mentor-photo { aspect-ratio: 4 / 3; }

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

  .m-faq-grid { grid-template-columns: 1fr; }
  .m-faq-item { border-right: none; }
  .m-faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--linen-dark); }
  .m-faq-item:last-child { border-bottom: none; }

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

@media (max-width: 640px) {
  #m-distinction, #m-framework, #process,
  #m-why, #m-testimonials, #m-mentors,
  #m-pricing, #m-faq, #m-cta { padding-left: 6%; padding-right: 6%; }
}