/* ═══════════════════════════════════════════════════════════════════════════
   MENTORSHIP PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

.sc-el {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.sc-el.sc-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ─── Hero Section ───────────────────────────────────────────────────────── */
.ment-hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 90px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.ment-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #8c7e6c;
  margin-top: 15px;
  margin-bottom: 26px;
}

.ment-eyebrow::before,
.ment-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #D4C5A9;
  flex-shrink: 0;
}

.ment-hero-title {
  font-family: "Libre Baskerville", serif;
  font-size: 52px;
  line-height: 1.25;
  color: #0d0d0d;
  max-width: 1150px;
  margin: 0 auto 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.ment-h-line {
  display: block;
  font-style: normal;
}

.ment-h-line:nth-child(3) {
  font-style: italic;
  color: #665c4f;
}

.ment-hero-intro {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.intro-p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

.intro-p.highlight {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
  font-weight: 500;
  border-left: none;
  border-bottom: 1px solid rgba(212, 197, 169, 0.4);
  padding-left: 0;
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.ment-hero-cta-box {
  margin-top: 15px;
  text-align: center;
}

.ment-hero-btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3F3F3C;
  background-color: #EFE4D2;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 15px rgba(201, 181, 155, 0.25);
}

.ment-hero-btn:hover {
  background-color: #E2D2BC;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 181, 155, 0.35);
  color: #222;
}

.ment-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 197, 169, 0.35);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8c7e6c;
}

.ment-dot {
  color: #D4C5A9;
}

/* ─── Who This Is For Section ─────────────────────────────────────────── */
.ment-audience {
  padding: 90px 20px;
  background-color: #ffffff;
  border-top: 1px solid rgba(212, 197, 169, 0.3);
}

.audience-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 55px;
}

.audience-tag,
.tiers-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8c7e6c;
  display: block;
  margin-bottom: 12px;
}

.audience-title {
  font-size: 38px;
  color: #0d0d0d;
  margin: 0 0 16px;
  font-weight: 400;
  white-space: nowrap;
}

.audience-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #666;
  margin: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.aud-card {
  background-color: #FAF8F5;
  border-radius: 18px;
  padding: 32px 24px;
  border: 1px solid rgba(212, 197, 169, 0.4);
  box-shadow: 0 8px 25px rgba(212, 197, 169, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.aud-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(212, 197, 169, 0.22);
}

.aud-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(212, 197, 169, 0.3);
  color: #8c7e6c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.aud-icon svg {
  width: 22px;
  height: 22px;
}

.aud-card-title {
  font-size: 20px;
  color: #1a1a1a;
  margin: 0 0 12px;
  font-weight: 400;
  line-height: 1.35;
}

.aud-card-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #665c4f;
  margin: 0;
}

@media (max-width: 991px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-title { white-space: normal; }
}

@media (max-width: 640px) {
  .audience-grid { grid-template-columns: 1fr; gap: 16px; }
  .audience-title { font-size: 28px; white-space: normal; }
}

/* Tier Card Action Buttons */
.tier-card-action {
  margin-top: 25px;
}

.tier-card-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #3F3F3C;
  background-color: #EFE4D2;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.tier-card-btn:hover,
.tier-card-btn.featured-btn:hover {
  background-color: #E2D2BC;
  color: #222;
  transform: translateY(-2px);
}

.tier-card-btn.featured-btn {
  background-color: #D4C5A9;
  color: #ffffff;
}

/* ─── Five Pillars Section ────────────────────────────────────────────────── */
.ment-pillars {
  padding: 65px 20px;
}

.pillars-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 35px;
}

.pillars-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8c7e6c;
  display: block;
  margin-bottom: 12px;
}

.pillars-title {
  font-size: 38px;
  color: #0d0d0d;
  margin: 0 0 20px 0;
  font-weight: 400;
}

.pillars-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.pillars-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 18px;
  max-width: 1380px;
  margin: 0 auto;
}

.pillar-card {
  flex: 1;
  background: #FAF6EE;
  border: 1px solid rgba(223, 210, 190, 0.35);
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(212, 197, 169, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212, 197, 169, 0.2);
  border-color: rgba(212, 197, 169, 0.7);
}

.pillar-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #D4C5A9;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-card-title {
  font-size: 20px;
  color: #0d0d0d;
  margin: 0 0 6px 0;
  font-weight: 400;
  line-height: 1.3;
}

.pillar-card-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: italic;
  color: #8c7e6c;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.pillar-divider {
  width: 40px;
  height: 1px;
  background: #D4C5A9;
  margin-bottom: 20px;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-list li {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #555;
  display: flex;
  align-items: flex-start;
}

.bullet-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: #D4C5A9;
  border-radius: 50%;
  margin-top: 6px;
  margin-right: 8px;
  flex-shrink: 0;
}

.pillar-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4C5A9;
  width: 20px;
  flex-shrink: 0;
}

.pillar-arrow svg {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* ─── Paths/Tiers Section ────────────────────────────────────────────────── */
.ment-tiers {
  padding: 100px 20px;
}

.tiers-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.tiers-section-title {
  font-size: 38px;
  color: #0d0d0d;
  margin: 0 0 15px 0;
  font-weight: 400;
}

.tiers-section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 60px;
  align-items: stretch;
}

.tier-card {
  background: #FFFFFF;
  border: 1px solid rgba(223, 210, 190, 0.35);
  border-radius: 20px;
  padding: 45px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212, 197, 169, 0.15);
}

.tier-card.featured {
  background: #FAF8F5;
  border: 2px solid #D4C5A9;
  box-shadow: 0 15px 45px rgba(212, 197, 169, 0.22);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #D4C5A9;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(212, 197, 169, 0.3);
  white-space: nowrap;
}

.tier-duration {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8c7e6c;
  background: #EFE4D2;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 20px;
}

.tier-card.featured .tier-duration {
  background: #D4C5A9;
  color: #fff;
}

.tier-title {
  font-size: 24px;
  color: #0d0d0d;
  margin: 0 0 12px 0;
  font-weight: 400;
}

.tier-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 25px 0;
  font-style: italic;
}

.tier-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(223, 210, 190, 0.25);
  padding-top: 20px;
}

.tier-bullet-item {
  display: flex;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.4;
  color: #555;
}

.tier-bullet-item .bullet-dot {
  margin-top: 5px;
}

/* ─── Tiers CTA ──────────────────────────────────────────────────────────── */
.tiers-cta {
  text-align: center;
  max-width: 600px;
  margin: 80px auto 0;
}

.cta-message {
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  line-height: 1.5;
  color: #0d0d0d;
  margin: 0 0 30px 0;
  font-style: italic;
}

.connection-call-btn {
  display: inline-block;
  background-color: #D4C5A9;
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(212, 197, 169, 0.25);
}

.connection-call-btn:hover {
  background-color: #bfae8f;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 197, 169, 0.4);
  text-decoration: none;
}

/* ─── Responsive Layouts ──────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .ment-hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  .ment-hero-title {
    font-size: 34px;
    margin-bottom: 28px;
  }
  .ment-hero-intro {
    gap: 22px;
    padding: 0 15px;
  }
  .intro-p {
    line-height: 1.8;
  }
  .intro-p.highlight {
    line-height: 1.75;
    padding-left: 16px;
  }
  .ment-pillars {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .pillars-grid {
    flex-direction: column;
    gap: 8px;
    max-width: 600px;
  }
  .pillar-arrow {
    transform: rotate(90deg);
    height: 24px;
    padding: 0;
    margin: 4px 0;
    align-self: center;
  }
  .ment-tiers {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .tiers-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
  }
  .tier-card {
    padding: 35px 25px;
  }
  .featured-badge {
    top: -12px;
  }
}

@media (max-width: 575px) {
  .ment-hero {
    padding-top: 65px !important;
    padding-bottom: 25px !important;
  }
  .ment-eyebrow {
    display: none !important;
  }
  .ment-hero-title {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 25px !important;
    margin-bottom: 12px !important;
    line-height: 1.25 !important;
    text-wrap: balance !important;
  }
  .ment-h-line { display: inline !important; }
  .ment-hero-intro {
    gap: 12px !important;
    padding: 0;
  }
  .intro-p {
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: #666;
    display: none;
  }
  .intro-p.highlight {
    display: block !important;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    padding-left: 0 !important;
    border-left: none !important;
    color: #444;
  }
  .ment-hero-cta-box {
    margin-top: 14px !important;
  }
  .ment-hero-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 13px 18px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
  }
  .ment-pillars {
    padding-top: 35px !important;
    padding-bottom: 25px !important;
  }
  .pillars-eyebrow { display: none !important; }
  .pillars-title {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }
  .pillars-subtitle {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
  }
  .pillar-card {
    padding: 20px 16px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
  }
  .pillar-card-title {
    font-size: 17px !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }
  .pillar-card-subtitle {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
    color: #777 !important;
  }
  .pillar-list li {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
  }

  .ment-tiers {
    padding-top: 30px !important;
    padding-bottom: 35px !important;
  }
  .tiers-eyebrow { display: none !important; }
  .tiers-section-title {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }
  .tiers-section-subtitle {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
  }
  .tier-card {
    padding: 22px 18px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
  }
  .tier-title { font-size: 18px !important; line-height: 1.3 !important; }
  .tier-subtitle { font-size: 12.5px !important; }
  .tier-description { font-size: 13px !important; line-height: 1.45 !important; }
  .tier-price { font-size: 22px !important; margin: 12px 0 !important; }
  .tier-features h4 { font-size: 12px !important; }
  .tier-features li { font-size: 12.5px !important; line-height: 1.45 !important; }
  .tier-cta-btn { width: 100% !important; padding: 12px 16px !important; font-size: 13.5px !important; text-align: center !important; box-sizing: border-box !important; }

  .audience-tag { display: none !important; }
  .audience-title {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }
  .audience-subtitle {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
  }
  .aud-card { padding: 20px 16px !important; border-radius: 16px !important; }
  .aud-card-title { font-size: 17px !important; line-height: 1.3 !important; margin-bottom: 6px !important; }
  .aud-card-desc  { font-size: 13px !important; line-height: 1.45 !important; }
  .cta-message {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }
  .connection-call-btn {
    padding: 13px 24px !important;
    font-size: 14px !important;
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}

/* ─── Animations ─────────────────────────────────────────────────────────── */
.animate-fade-up {
  opacity: 0;
  animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-fade-up-delayed {
  opacity: 0;
  animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.animate-fade-up-more {
  opacity: 0;
  animation: heroFadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ─── Newsletter (scoped — home.css not loaded on this page) ─────────────── */
.newsletter-section-bg {
  background-color: #ffffff;
  width: 100%;
}

.newsletter-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  font-family: "Libre Baskerville", serif;
}

.news-text-group { margin-bottom: 50px; }

.news-line-1,
.news-line-2 {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity, filter;
  color: #0d0d0d;
  line-height: 1.2;
}

.news-line-1 { font-size: 32px; margin-bottom: 15px; }
.news-line-2 { font-size: 42px; margin: 0; }

.form-pill-wrapper {
  display: flex;
  align-items: center;
  background-color: #FAFAFA;
  border-radius: 100px;
  padding: 5px;
  max-width: 520px;
  margin: 0 auto;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  outline: none;
  box-shadow: none;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.form-pill-wrapper:focus-within {
  background-color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: scale(1.02);
}

.newsletter-section.start-anim .news-line-1 {
  animation: cinematicUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.newsletter-section.start-anim .news-line-2 {
  animation: cinematicUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

.newsletter-section.start-anim .form-pill-wrapper {
  animation: cinematicUp 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.4s;
}

.news-input {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #555;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 15px 10px 15px 30px;
  flex-grow: 1;
}

.news-input::placeholder { color: #999; }

.news-btn {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3F3F3C;
  background-color: #EFE4D2;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.news-btn:hover { background-color: #E2D2BC; color: #222; transform: translateY(-1px); }

#newsletter-message {
  margin-top: 15px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

@media (max-width: 768px) {
  .newsletter-section { padding: 30px 20px; }
  .news-text-group    { margin-bottom: 25px; }
  .news-line-1        { font-size: 19px; margin-bottom: 8px; }
  .news-line-2        { font-size: 24px; }
  .form-pill-wrapper  {
    flex-direction: column;
    background: transparent;
    padding: 0;
    gap: 10px;
    box-shadow: none;
    transform: none;
  }
  .news-input {
    width: 100%;
    background-color: #FAFAFA;
    border-radius: 50px;
    padding: 14px 20px;
    font-size: 15px;
    text-align: center;
  }
  .news-btn { width: 100%; padding: 14px 0; font-size: 15px; }
}

