/* ═══════════════════════════════════════════════════════════════
   MENTOR.FC — Premium Landing Page
   Archetype: Editorial Dark Warm (custom brand system)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:     #0B0B0B;
  --graphite:  #1D1D1D;
  --cream:     #F2EFE7;
  --cream-2:   #D8D2C8;
  --gray:      #787878;
  --beige:     #D9C2A4;
  --olive:     #3F4A3A;
  --gold:      #CBA96B;
  --gold-dim:  rgba(203,169,107,0.14);
  --gold-dim2: rgba(203,169,107,0.06);
  --white:     #FFFFFF;
  --line:      rgba(242,239,231,0.08);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --nav-h:     72px;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: -0.01em;
}

h1 { font-weight: 900; font-size: clamp(3.4rem, 6.5vw, 6rem); }
h2 { font-weight: 900; font-size: clamp(2.4rem, 4.2vw, 3.8rem); }
h3 { font-weight: 800; font-size: clamp(1.2rem, 2vw, 1.6rem); }

h1 em, h2 em { font-style: italic; color: var(--gold); font-weight: 900; }

p { font-size: 0.9rem; line-height: 1.8; color: var(--gray); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.serif-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(242,239,231,0.65);
  line-height: 1.65;
}

.section-header {
  margin-bottom: 4rem;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  background: var(--gold);
  color: var(--black);
  transition: opacity 0.2s, transform 0.2s var(--ease-out);
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.86; transform: translateY(-1px); }
.btn-primary.btn-large { padding: 1.2rem 2.75rem; font-size: 0.9rem; }

.btn-ghost {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242,239,231,0.2);
  transition: border-color 0.2s, transform 0.2s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--cream); transform: translateY(-1px); }

.btn-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--black);
  padding-bottom: 0.15rem;
  transition: gap 0.2s var(--ease-out);
}
.btn-card-link:hover { gap: 0.8rem; }

/* ─── Reveal Animations ─────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Safety: never hide [data-split] elements (gotcha A.4.5) */
.reveal-up[data-split] {
  opacity: 1;
  transform: none;
}

/* ─── Custom Cursor ─────────────────────────────────────────── */
.cursor { opacity: 0; pointer-events: none; }
.cursor.is-ready { opacity: 1; }

.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: transform 0.08s;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 34px; height: 34px;
  border: 1px solid rgba(203,169,107,0.5);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: transform 0.18s var(--ease-out), width 0.2s, height 0.2s, border-color 0.2s;
}
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--gold);
}
body.cursor-text .cursor-ring {
  width: 80px; height: 80px;
  border-color: rgba(203,169,107,0.3);
}

/* ─── Splash ────────────────────────────────────────────────── */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-in), clip-path 0.7s var(--ease-in);
  /* Safety: force-hide at 4.5s if JS fails */
  animation: splashSafety 0.01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash.is-out {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}

.splash-inner { text-align: center; }

.splash-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
  animation: splashFadeIn 0.5s var(--ease-out) 0.2s both;
}
.splash-logo span { color: var(--gold); }

.splash-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  animation: splashFadeIn 0.5s var(--ease-out) 0.4s both;
}

.splash-bar {
  width: 160px; height: 1px;
  background: rgba(242,239,231,0.1);
  margin: 1.75rem auto 0;
  overflow: hidden;
  animation: splashFadeIn 0.3s var(--ease-out) 0.6s both;
}
.splash-bar-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: splashBar 1.2s var(--ease-out) 0.7s forwards;
}

@keyframes splashFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes splashBar {
  to { width: 100%; }
}

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  background: rgba(11,11,11,0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.nav.is-scrolled {
  background: rgba(11,11,11,0.95);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; gap: 2.5rem;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  background: var(--gold);
  color: var(--black);
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.82; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--cream);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-hamburger.is-open span:first-child { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.is-open span:last-child  { transform: rotate(-45deg) translate(4px, -4px); }

.nav-mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  z-index: 190;
  background: var(--black);
  padding: 3rem 2rem;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.nav-mobile.is-open {
  transform: translateX(0);
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 0; }
.nav-mobile a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn-primary { margin-top: 2rem; text-align: center; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  overflow: clip;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.85) contrast(1.08) brightness(0.92);
}
.hero-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11,11,11,0.92) 0%,
      rgba(11,11,11,0.72) 40%,
      rgba(11,11,11,0.18) 100%
    ),
    linear-gradient(
      to top,
      rgba(11,11,11,0.7) 0%,
      transparent 50%
    );
}

.hero-mesh {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(circle 500px at var(--mx, 70%) var(--my, 50%),
      rgba(63,74,58,0.2) 0%, transparent 65%),
    radial-gradient(circle 300px at 20% 80%,
      rgba(203,169,107,0.06) 0%, transparent 60%);
  transition: background 0.6s ease;
}

.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.035;
  background-image:
    linear-gradient(rgba(242,239,231,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,239,231,1) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-tactical {
  display: none;
}

.hero-content {
  position: relative; z-index: 3;
  max-width: 680px;
  padding-top: 5rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.eyebrow-line {
  display: block;
  width: 2rem; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(242,239,231,0.72);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--cream);
  line-height: 1;
}
.stat-suf {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
}
.stat-l {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.1rem;
}
.hero-stat-sep {
  width: 1px; height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.25rem; left: 4rem;
  z-index: 3;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-line {
  width: 3rem; height: 1px;
  background: var(--gray);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Tactical player dots animation */
.t-player {
  animation: tPlayerPulse 3s ease-in-out infinite;
}
.t-player:nth-child(odd)  { animation-delay: 0.4s; }
.t-player:nth-child(3n)   { animation-delay: 0.8s; }
@keyframes tPlayerPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ─── Marquee ───────────────────────────────────────────────── */
.marquee-track {
  overflow: hidden;
  background: var(--graphite);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,239,231,0.45);
  flex-shrink: 0;
}
.marquee-dot {
  color: var(--gold) !important;
  opacity: 0.7 !important;
  font-size: 0.55rem !important;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Philosophy ────────────────────────────────────────────── */
.section-philosophy {
  padding: 9rem 0;
  background: var(--graphite);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.philosophy-left h2 { color: var(--cream); }

.philosophy-body {
  font-size: 0.96rem;
  line-height: 1.85;
  color: rgba(242,239,231,0.65);
  margin-bottom: 2.5rem;
}

.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}
.philo-pill {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.pill-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.pill-text {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(242,239,231,0.4);
  line-height: 1.65;
  padding-top: 1.5rem;
}

/* ─── Services ──────────────────────────────────────────────── */
.section-services {
  padding: 9rem 0;
  background: var(--cream);
}
.section-services .section-header h2 { color: var(--black); margin-bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.1);
}

.service-card {
  background: var(--white);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.25rem;
}

.service-body h3 {
  color: var(--black);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.service-body p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-includes li {
  font-size: 0.75rem;
  color: #666;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.service-includes li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 0.05rem;
}

.service-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.05em;
  margin-left: 0.25rem;
}
.service-price--badge {
  font-size: 1.35rem;
}

.service-foot { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.06); }

/* ─── Assessment ────────────────────────────────────────────── */
.section-assessment {
  padding: 9rem 0;
  background: var(--black);
}

.assessment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.assessment-left h2 { color: var(--cream); margin-bottom: 1rem; }
.assessment-left .serif-quote { margin: 1rem 0 1.25rem; }
.assessment-left p { margin-bottom: 1.5rem; }

.assessment-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  margin: 2rem 0 2rem;
}
.assessment-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
}

.assessment-right {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  padding: 3rem;
}

.process-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2rem;
}

.process-steps { display: flex; flex-direction: column; }

.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.process-step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: rgba(203,169,107,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.step-body p { font-size: 0.78rem; }

.assessment-badge {
  margin-top: 1.75rem;
  padding: 1.25rem;
  background: rgba(203,169,107,0.06);
  border: 1px solid rgba(203,169,107,0.15);
  font-size: 0.75rem;
  color: rgba(242,239,231,0.45);
  line-height: 1.6;
}
.assessment-badge strong { color: var(--gold); font-weight: 600; }

/* ─── Mentorship ────────────────────────────────────────────── */
.section-mentorship {
  position: relative;
  padding: 10rem 0;
  overflow: clip;
}

.mentor-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.mentor-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.5);
}
.mentor-img-tint {
  position: absolute; inset: 0;
  background: rgba(11,11,11,0.88);
}

.mentorship-inner {
  position: relative; z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mentorship-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(203,169,107,0.3);
  padding: 0.4rem 1.25rem;
  margin-bottom: 1.5rem;
}

.mentorship-inner h2 { color: var(--cream); margin-bottom: 1rem; }
.mentorship-inner .serif-quote { max-width: 520px; margin: 0 auto 1.5rem; }

.mentorship-body {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(242,239,231,0.55);
}

.mentorship-pillars {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-bottom: 3rem;
}
.m-pillar {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--line);
  text-align: left;
}
.m-pillar:last-child { border-right: none; }
.m-pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.m-pillar p { font-size: 0.78rem; line-height: 1.65; }

.mentorship-cta-note {
  font-size: 0.75rem;
  color: rgba(242,239,231,0.35);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

/* ─── Process ───────────────────────────────────────────────── */
.section-process {
  padding: 9rem 0;
  background: var(--graphite);
}
.section-process .section-header h2 { color: var(--cream); }
.section-process .eyebrow { color: var(--gold); }

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 4rem;
}

.process-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-item:last-child { border-right: none; }

.process-icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.5;
}

.process-content h3 {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.process-content p { font-size: 0.8rem; line-height: 1.75; }

.process-close {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(242,239,231,0.25);
  text-align: center;
}

/* ─── Testimonials ──────────────────────────────────────────── */
.section-testimonials {
  padding: 9rem 0;
  background: var(--black);
}
.section-testimonials .section-header h2 { color: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: var(--graphite);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(203,169,107,0.25);
}

.testimonial-route {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.t-route-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.6);
  transition: transform 0.6s var(--ease-out);
}
.testimonial-card:hover .t-route-img { transform: scale(1.04); }

.t-route-label {
  position: absolute;
  bottom: 1rem; left: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-card blockquote {
  padding: 2rem 2rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(242,239,231,0.65);
  line-height: 1.7;
  border: none;
}
.testimonial-card blockquote::before { content: '"'; }
.testimonial-card blockquote::after  { content: '"'; }

.testimonial-author {
  padding: 0 2rem 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.author-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}
.author-route {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-top: 0.2rem;
}

.testimonials-quote {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: rgba(242,239,231,0.08);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── About ─────────────────────────────────────────────────── */
.section-about {
  padding: 9rem 0;
  background: var(--cream);
}
.section-about .eyebrow { color: var(--olive); }
.section-about .eyebrow::before { background: var(--olive); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.about-left h2 { color: var(--black); margin-bottom: 1.5rem; }
.about-left p  { color: #555; margin-bottom: 1.25rem; }

.about-stats {
  display: flex;
  gap: 3rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.stat-big {
  display: inline;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--black);
  line-height: 1;
}
.stat-big-suf {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
}
.stat-big-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-top: 0.25rem;
}

.about-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #888;
  line-height: 1.6;
}

.founder-card {
  background: var(--black);
  color: var(--cream);
  padding: 3rem;
  border: 1px solid var(--line);
}

.founder-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.founder-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.founder-divider {
  width: 2rem; height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}
.founder-bio {
  font-size: 0.8rem;
  color: rgba(242,239,231,0.5);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.founder-pillars {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.f-pillar {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.f-pillar:last-child { border-bottom: none; }
.f-pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.f-pillar p { font-size: 0.73rem; color: rgba(242,239,231,0.4); }

/* ─── Purpose ───────────────────────────────────────────────── */
.section-purpose {
  padding: 8rem 0;
  background: var(--olive);
}

.purpose-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-purpose h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.section-purpose p {
  color: rgba(242,239,231,0.65);
  font-size: 0.9rem;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.85;
}
.section-purpose .eyebrow { justify-content: center; }

.purpose-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--cream);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(242,239,231,0.15);
}

/* ─── Newsletter ────────────────────────────────────────────── */
.section-newsletter {
  padding: 8rem 0;
  background: var(--cream);
}
.section-newsletter .eyebrow { color: var(--olive); }
.section-newsletter .eyebrow::before { background: var(--olive); }

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.newsletter-left h2 { color: var(--black); margin-bottom: 1rem; }
.newsletter-left p  { color: #666; max-width: 420px; }

.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.newsletter-form input {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--black);
  transition: border-color 0.2s;
  outline: none;
}
.newsletter-form input::placeholder { color: #aaa; }
.newsletter-form input:focus { border-color: var(--gold); }

.form-note {
  font-size: 0.7rem;
  color: #aaa;
  letter-spacing: 0.02em;
}

/* Button states for newsletter */
.newsletter-form .btn-primary { position: relative; overflow: hidden; }
.btn-sending, .btn-done { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; }
.btn-text { transition: opacity 0.2s; }
.form-sending .btn-text   { opacity: 0; }
.form-sending .btn-sending { opacity: 1; }
.form-done .btn-text   { opacity: 0; }
.form-done .btn-done   { opacity: 1; }

/* ─── Final CTA ─────────────────────────────────────────────── */
.section-cta {
  padding: 11rem 0;
  background: var(--black);
  text-align: center;
}

.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-inner .serif-quote { max-width: 560px; margin: 0 auto 3rem; }

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 2.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(120,120,120,0.45);
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--graphite);
  border-top: 1px solid var(--line);
  padding: 4rem 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.3rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy  { font-size: 0.68rem; color: rgba(120,120,120,0.45); }
.footer-phrase {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(242,239,231,0.2);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .mentorship-pillars { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-item:nth-child(2) { border-right: none; }
  .process-item:nth-child(3) { border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .process-item:nth-child(4) { border-right: none; border-top: 1px solid var(--line); }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  .container { padding: 0 1.5rem; }

  .nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .hero { padding: 0 1.5rem; }
  .hero-tactical { display: none; }
  .hero-content { padding-top: 5rem; }

  .hero-stats { gap: 1.25rem; }
  .hero-scroll-hint { left: 1.5rem; }

  .section-philosophy { padding: 6rem 0; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }

  .section-services { padding: 6rem 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  .section-assessment { padding: 6rem 0; }
  .assessment-grid { grid-template-columns: 1fr; gap: 3rem; }

  .section-mentorship { padding: 7rem 0; }
  .mentorship-pillars { grid-template-columns: 1fr 1fr; }

  .section-process { padding: 6rem 0; }
  .process-track { grid-template-columns: 1fr; }
  .process-item { border-right: none; border-bottom: 1px solid var(--line); }
  .process-item:last-child { border-bottom: none; }

  .section-testimonials { padding: 6rem 0; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .section-about { padding: 6rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }

  .section-newsletter { padding: 6rem 0; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .section-cta { padding: 7rem 0; }

  .footer-top { flex-direction: column; gap: 2rem; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .cursor { display: none; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .mentorship-pillars { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .hero-stat-sep { display: none; }
  .m-pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .m-pillar:last-child { border-bottom: none; }
}

/* ─── Contact Section ───────────────────────────────────────── */
.section-contact {
  padding: 10rem 0;
  background: var(--graphite);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 7rem;
  align-items: start;
}

.contact-left .eyebrow { color: var(--gold); }
.contact-left h2 {
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.contact-left > p {
  color: rgba(242,239,231,0.55);
  font-size: 0.88rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 360px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,239,231,0.35);
  font-weight: 600;
}
.contact-info-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
a.contact-info-value:hover { color: var(--gold); }

.contact-form .form-field label {
  color: rgba(242,239,231,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,239,231,0.08);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
  border-color: var(--gold);
}
.contact-form .form-field { margin-bottom: 1.25rem; }
.contact-form .form-field select option { background: var(--graphite); }
.contact-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-confirm {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(203,169,107,0.2);
  background: rgba(203,169,107,0.04);
}
.contact-confirm-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-confirm h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.contact-confirm p {
  color: rgba(242,239,231,0.55);
  font-size: 0.85rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .contact-left > p { max-width: 100%; }
  .contact-form .form-row-2 { grid-template-columns: 1fr; }
}

/* ─── Language Toggle ────────────────────────────────────────── */
.es { display: none; }
body.lang-es .en { display: none; }
body.lang-es h1.es, body.lang-es h2.es, body.lang-es h3.es,
body.lang-es p.es, body.lang-es div.es, body.lang-es li.es { display: block; }
body.lang-es span.es { display: inline; }
body.lang-es a.es { display: inline; }

.lang-toggle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(242,239,231,0.2);
  padding: 0.38rem 0.75rem;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Service Card Dark (Mentorship) ────────────────────────── */
.service-card--dark {
  background: var(--graphite) !important;
  border: 1px solid rgba(242,239,231,0.06);
}
.service-card--dark:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.service-card--dark .service-num {
  color: rgba(242,239,231,0.04) !important;
}
.service-card--dark .service-body h3 {
  color: var(--cream) !important;
}
.service-card--dark .service-body p {
  color: rgba(242,239,231,0.6) !important;
}

/* Benefit list for dark card */
.service-card--dark .service-includes li {
  color: rgba(242,239,231,0.55);
  padding-left: 1rem;
  position: relative;
}
.service-card--dark .service-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
}

/* ─── Mentorship Pricing Block ──────────────────────────────── */
.mentorship-pricing-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(242,239,231,0.12);
}
.pricing-option {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(242,239,231,0.08);
}
.pricing-option:last-child { border-bottom: none; }
.pricing-option-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,239,231,0.45);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.pricing-option-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  line-height: 1.2;
}

/* Mentorship card pill button override */
.service-card--dark .service-foot {
  border-top-color: rgba(242,239,231,0.1) !important;
  padding-top: 1.25rem;
  margin-top: 1rem;
}
.service-card--dark .btn-primary {
  background: transparent !important;
  color: var(--cream) !important;
  border: 1px solid rgba(242,239,231,0.3) !important;
  font-size: 0.78rem;
  padding: 0.85rem 2rem;
  opacity: 1 !important;
}
.service-card--dark .btn-primary:hover {
  background: var(--cream) !important;
  color: var(--black) !important;
  border-color: var(--cream) !important;
  transform: translateY(-1px);
}

/* ─── Founder Photo ──────────────────────────────────────────── */
.founder-photo-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  max-width: 200px;
  margin: 0 auto 2rem;
  background: #1a1a1a;
  border: 2px solid var(--line);
}
.founder-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ─── Testimonial Photos ─────────────────────────────────────── */
.testimonial-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a1a1a;
  border: 2px solid var(--line);
}
.testimonial-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ─── Pathways Section ───────────────────────────────────────── */
.section-pathways {
  padding: 10rem 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.section-pathways .section-header { text-align: left; }
.section-pathways .section-header p { color: var(--gray); }

.pathways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}

.pathway-card {
  background: var(--graphite);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
}

.pathway-partner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.partner-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.partner-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.partner-flag { font-size: 1rem; }

.pathway-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.pathway-card h3 {
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.pathway-sub {
  font-size: 0.82rem;
  color: rgba(242,239,231,0.5);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.pathway-card > p {
  font-size: 0.85rem;
  color: rgba(242,239,231,0.55);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.pathway-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--line);
}
.pathway-list li {
  font-size: 0.75rem;
  color: rgba(242,239,231,0.5);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  padding-left: 1rem;
  position: relative;
}
.pathway-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.pathway-note {
  font-size: 0.72rem;
  color: rgba(242,239,231,0.35);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.btn-pathway {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(203,169,107,0.3);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s;
  margin-top: auto;
  align-self: flex-start;
}
.btn-pathway:hover { border-color: var(--gold); }

/* ─── Responsive Pathways ────────────────────────────────────── */
@media (max-width: 900px) {
  .pathways-grid { grid-template-columns: 1fr; }
  .pathway-card { padding: 2.5rem 2rem; }
}

/* ─── Forms (shared) ─────────────────────────────────────────── */
.form-page {
  min-height: 100vh;
  background: var(--black);
  padding: 8rem 0 6rem;
}
.form-page-header {
  text-align: center;
  margin-bottom: 4rem;
}
.form-page-header .eyebrow { justify-content: center; }
.form-page-header h1 { margin-bottom: 1rem; }
.form-page-header p { max-width: 520px; margin: 0 auto; color: var(--gray); }

.form-block {
  max-width: 720px;
  margin: 0 auto;
  background: var(--graphite);
  border: 1px solid var(--line);
  padding: 3rem 3.5rem;
}
.form-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.form-section-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.form-field {
  margin-bottom: 1.5rem;
}
.form-field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,239,231,0.5);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,239,231,0.1);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field select option { background: var(--graphite); }
.form-helper {
  font-size: 0.68rem;
  color: rgba(242,239,231,0.3);
  margin-top: 0.35rem;
  line-height: 1.5;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.scale-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.scale-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.scale-label {
  font-size: 0.8rem;
  color: rgba(242,239,231,0.65);
}
.scale-select {
  width: 80px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,239,231,0.1);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  padding: 0.4rem 0.5rem;
  outline: none;
  text-align: center;
  transition: border-color 0.2s;
  appearance: none;
}
.scale-select:focus { border-color: var(--gold); }

.form-submit-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.form-price-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cream);
}
.form-submit-note {
  font-size: 0.72rem;
  color: rgba(242,239,231,0.35);
  line-height: 1.6;
}

.form-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 3rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  transition: color 0.2s;
}
.form-back-link:hover { color: var(--cream); }

@media (max-width: 600px) {
  .form-block { padding: 2rem 1.5rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .scale-item { grid-template-columns: 1fr; }
  .scale-select { width: 100%; }
}
