:root {
  --bg: #FDF8F3;
  --surface: #F5EFE6;
  --green: #2D5016;
  --green-light: #3D6B1E;
  --orange: #D4622A;
  --orange-light: #E07A42;
  --text: #1A1A0F;
  --text-muted: #5C5C3D;
  --text-light: #8A8A6A;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- NAV --- */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* --- HERO --- */
.hero {
  padding: 100px 48px 80px;
  background: var(--bg);
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.12);
  border: 3px solid var(--surface);
}

/* --- MANIFESTO --- */
.manifesto {
  background: var(--surface);
  padding: 96px 48px;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 28px;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 36px;
  max-width: 700px;
}
.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
  max-width: 800px;
}
.manifesto-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}
.manifesto-stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* --- GEAR --- */
.gear {
  padding: 96px 48px;
  background: var(--bg);
}
.gear-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.gear-header {
  margin-bottom: 60px;
}
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 16px;
}
.gear-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.gear-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
}
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.gear-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(45, 80, 22, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gear-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.08);
}
.gear-card-icon {
  margin-bottom: 20px;
}
.gear-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.gear-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- HOW IT WORKS --- */
.how-it-works {
  padding: 96px 48px;
  background: var(--green);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-header {
  margin-bottom: 64px;
  text-align: center;
}
.how-header .section-label { color: rgba(255,255,255,0.6); }
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: var(--white);
}
.how-tracks {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.track-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 16px;
}
.track h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.track p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}
.track-list {
  list-style: none;
}
.track-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.track-list li::before {
  content: '→ ';
  color: var(--orange);
  font-weight: 600;
}
.track-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 60px;
  align-self: stretch;
  min-height: 200px;
}

/* --- PHILOSOPHY --- */
.philosophy {
  padding: 96px 48px;
  background: var(--surface);
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.philosophy-content {
  margin-bottom: 64px;
  text-align: center;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.4;
}
.philosophy-attribution {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar {
  padding: 32px 28px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid rgba(45, 80, 22, 0.08);
}
.pillar-icon {
  margin-bottom: 16px;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.pillar p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- CLOSING --- */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.closing-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--green);
  font-style: italic;
}

/* --- FOOTER --- */
.footer {
  padding: 48px;
  background: var(--text);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
}
.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.9); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { display: none; }
  .manifesto { padding: 64px 24px; }
  .manifesto-body { grid-template-columns: 1fr; gap: 16px; }
  .manifesto-stats { gap: 40px; }
  .gear { padding: 64px 24px; }
  .gear-grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 64px 24px; }
  .how-tracks { grid-template-columns: 1fr; }
  .track-divider { width: 100%; height: 1px; margin: 40px 0; }
  .philosophy { padding: 64px 24px; }
  .philosophy-pillars { grid-template-columns: 1fr; }
  .closing { padding: 72px 24px; }
  .footer { padding: 40px 24px; }
}