:root {
  --midnight: #0D1B2A;
  --midnight-light: #162436;
  --gold: #C9A96E;
  --gold-muted: #A8864A;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D9;
  --stone: #8B7355;
  --text: #1A2332;
  --text-muted: #5A6B7D;
  --white: #FEFDFB;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--midnight);
}

.logo-mark {
  font-size: 1.2rem;
  color: var(--gold);
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
  padding: clamp(7rem, 15vw, 10rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 70%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
  max-width: 42ch;
  font-weight: 300;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: rgba(22, 36, 54, 0.8);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 2px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  min-width: 320px;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.card-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.stat { flex: 1; }

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.stat-div {
  width: 1px;
  height: 3rem;
  background: rgba(201,169,110,0.2);
  flex-shrink: 0;
}

/* ─── DIFFERENTIATOR ─── */
.diff {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--cream);
}

.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.diff-overline {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.diff-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--midnight);
  margin-bottom: 2.5rem;
  max-width: 22ch;
}

.diff-body {
  max-width: 62ch;
  margin-bottom: 4rem;
}

.diff-body p {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.diff-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  border: 1px solid var(--cream-dark);
}

.pillar {
  padding: 2rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  transition: background 0.2s;
}

.pillar:hover { background: rgba(201,169,110,0.04); }

.pillar-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 0.6rem;
}

.pillar-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── TRAINING TRACKS ─── */
.tracks {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--cream-dark);
}

.tracks-inner { max-width: 1100px; margin: 0 auto; }

.tracks-overline {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.tracks-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: 3.5rem;
  line-height: 1.15;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.track-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  border: 1px solid var(--cream-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.track-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(13,27,42,0.08);
}

.track-1 { border-top: 3px solid var(--gold); }
.track-2 { border-top: 3px solid var(--stone); }
.track-3 { border-top: 3px solid var(--text-muted); }

.track-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.track-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.track-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.track-meta {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold-muted);
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 1.2rem;
  border-top: 1px solid var(--cream-dark);
}

/* ─── PHILOSOPHY ─── */
.philosophy {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--midnight);
}

.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  font-weight: 400;
  max-width: 32ch;
  margin-bottom: 1rem;
}

.quote-attr {
  font-size: 0.78rem;
  color: rgba(201,169,110,0.5);
  letter-spacing: 0.05em;
}

.philosophy-rule {
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.philosophy-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.philosophy-text p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

/* ─── OUTCOMES ─── */
.outcomes {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--cream);
}

.outcomes-inner { max-width: 900px; margin: 0 auto; }

.outcomes-overline {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.outcome {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.outcome-icon {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.outcome-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
}

/* ─── CLOSING ─── */
.closing {
  padding: clamp(6rem, 12vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--midnight);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { position: relative; }

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--midnight);
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-info {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.04em;
}

.footer-disclaimer {
  font-size: 0.68rem;
  color: rgba(245,240,232,0.25);
  max-width: 52ch;
  line-height: 1.6;
  font-weight: 300;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { justify-content: flex-start; }
  .hero-card { min-width: unset; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .philosophy-rule { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .tracks-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .card-row { flex-direction: column; gap: 0.8rem; }
  .stat-div { display: none; }
}