/* ─── Variables ─── */
:root {
  --bg: #0d0d0d;
  --bg-card: #161616;
  --fg: #f5f0e8;
  --accent: #e8a838;
  --accent-dim: rgba(232, 168, 56, 0.12);
  --muted: #8a8578;
  --border: rgba(245, 240, 232, 0.1);
  --radius: 4px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: 'DM Sans', sans-serif; font-weight: 400; line-height: 1.6; font-size: 16px; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

/* ─── Nav ─── */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 28px 60px; border-bottom: 1px solid var(--border); }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--fg); letter-spacing: -0.02em; }
.nav-tagline { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ─── Section Labels ─── */
.section-label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }

/* ─── Hero ─── */
.hero { padding: 100px 60px 80px; border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 1200px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.hero-headline { font-size: clamp(40px, 5vw, 64px); font-weight: 700; line-height: 1.1; margin-bottom: 28px; color: var(--fg); }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 480px; line-height: 1.7; }

.hero-stat-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; gap: 0; }
.stat-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--border); }
.stat-row:last-child { border-bottom: none; }
.stat-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-value { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--accent); }

/* ─── Manifesto ─── */
.manifesto { padding: 100px 60px; border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 800px; }
.manifesto-headline { font-size: clamp(32px, 4vw, 52px); margin-bottom: 32px; line-height: 1.2; }
.manifesto-body { font-size: 18px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }

/* ─── Method ─── */
.method { padding: 100px 60px; border-bottom: 1px solid var(--border); }
.method-inner { max-width: 1200px; }
.method-headline { font-size: clamp(32px, 4vw, 52px); margin-bottom: 64px; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.method-card { background: var(--bg-card); padding: 40px; border: 1px solid var(--border); }
.method-number { display: block; font-size: 11px; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 20px; font-family: 'DM Sans', sans-serif; }
.method-card h3 { font-size: 22px; margin-bottom: 16px; color: var(--fg); }
.method-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ─── Proof ─── */
.proof { padding: 100px 60px; border-bottom: 1px solid var(--border); background: #111; }
.proof-inner { max-width: 900px; }
.proof-headline { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 24px; }
.proof-body { font-size: 18px; color: var(--muted); margin-bottom: 56px; line-height: 1.8; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.proof-item { background: var(--bg-card); border: 1px solid var(--border); padding: 36px 28px; text-align: center; }
.proof-number { display: block; font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.proof-label { display: block; font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── Outcomes ─── */
.outcomes { padding: 100px 60px; border-bottom: 1px solid var(--border); }
.outcomes-inner { max-width: 1200px; }
.outcomes-headline { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 56px; }
.outcomes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.outcome-item { display: flex; align-items: flex-start; gap: 20px; padding: 28px 32px; background: var(--bg-card); border: 1px solid var(--border); }
.outcome-icon { flex-shrink: 0; width: 36px; height: 36px; background: var(--accent-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-top: 2px; }
.outcome-item h4 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 6px; color: var(--fg); }
.outcome-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── Closing ─── */
.closing { padding: 120px 60px; text-align: center; }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline { font-size: clamp(32px, 4.5vw, 58px); margin-bottom: 28px; line-height: 1.15; }
.closing-sub { font-size: 18px; color: var(--muted); line-height: 1.8; max-width: 600px; margin: 0 auto; }

/* ─── Footer ─── */
.footer { padding: 64px 60px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 800px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; max-width: 480px; }
.footer-meta { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto, .method, .proof, .outcomes, .closing { padding: 64px 24px; }
  .method-grid, .proof-grid, .outcomes-list { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding: 48px 24px; }
}