:root {
  --bg: #faf7f2;
  --fg: #1a1614;
  --muted: #6b5f52;
  --accent: #c05621;
  --sage: #5c7a5c;
  --border: #e5ddd5;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* HERO */
.hero {
  padding: 80px 40px 72px;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
  max-width: 700px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin-right: 32px;
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 40px;
}
.manifesto-inner {
  max-width: 720px;
}
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  line-height: 1.5;
  color: var(--bg);
  margin-bottom: 24px;
}
.manifesto-attr {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* PILLARS */
.pillars {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
}
.pillar {}
.pillar-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--fg);
}
.pillar-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* PRESS */
.press {
  padding: 56px 40px;
  background: var(--fg);
  color: var(--bg);
}
.press-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.press-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.press-item {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--bg);
  padding: 0 24px;
}
.press-item:first-child {
  padding-left: 0;
}
.press-divider {
  width: 1px;
  height: 20px;
  background: rgba(250, 247, 242, 0.2);
}

/* CLOSING */
.closing {
  padding: 80px 40px;
}
.closing-inner {
  max-width: 700px;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--fg);
}
.closing-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}
.footer-meta {
  font-size: 11px;
  color: var(--border);
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav, .hero, .manifesto, .pillars, .press, .closing, footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .press-grid {
    gap: 12px;
  }
  .press-divider {
    display: none;
  }
  .press-item {
    padding: 0;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 16px;
  }
}