:root {
  --bg: #FAF7F0;
  --bg-card: #F2EDE3;
  --primary: #1B3A2F;
  --primary-light: #2D5243;
  --accent: #C9A96E;
  --accent-light: #E5D4AF;
  --text: #1A1A1A;
  --text-muted: #6B6358;
  --white: #FFFFFF;
  --border: #E0D9CE;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  background: var(--primary);
  color: var(--accent);
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  padding: 5px 8px;
  letter-spacing: 1px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* HERO */
.hero {
  padding: 80px 48px 60px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-visual {
  position: relative;
}
.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
}
.badge-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 48px;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}
.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* PROBLEM */
.problem {
  padding: 100px 48px;
  background: var(--primary);
  color: var(--white);
}
.problem-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}
.problem-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 32px;
}
.problem-card-accent {
  background: rgba(201,169,110,0.15);
  border-color: var(--accent);
}
.problem-icon {
  font-size: 20px;
  color: #FF6B6B;
  margin-bottom: 16px;
}
.solution-icon { color: var(--accent); }
.problem-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.problem-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* HOW IT WORKS */
.howitworks {
  padding: 100px 48px;
  background: var(--bg);
}
.howitworks-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.step {
  flex: 1;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.step-number {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-arrow {
  font-size: 28px;
  color: var(--accent);
  font-weight: 300;
  padding-top: 80px;
  flex-shrink: 0;
}
.howitworks-callout {
  max-width: 1200px;
  margin: 48px auto 0;
}
.callout-bar {
  background: var(--primary);
  color: var(--white);
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.callout-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.callout-badge {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: rgba(201,169,110,0.15);
  padding: 8px 16px;
  text-transform: uppercase;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.manifesto-content {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-overline {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 40px;
}
.manifesto-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--primary);
  text-align: center;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 56px;
}
.closing-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.pillar-icon {
  color: var(--accent);
  font-size: 16px;
}

/* FOOTER */
.footer {
  background: #0E2218;
  padding: 48px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-mark {
  background: var(--accent);
  color: var(--primary);
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  padding: 5px 8px;
  letter-spacing: 1px;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .callout-bar { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .nav, .hero, .problem, .howitworks, .manifesto, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}