/* Variables */
:root {
  --bg: #faf8f4;
  --bg-alt: #f0ece3;
  --fg: #1c1a16;
  --fg-muted: #6b6358;
  --accent: #2c4a35;
  --accent-warm: #8b5e3c;
  --border: #d9d3c8;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

/* Hero */
.hero {
  padding: 96px 64px 80px;
  max-width: 900px;
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.02;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 600px;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero-stamp {
  display: inline-block;
  border: 1.5px solid var(--accent);
  padding: 8px 20px;
}

.stamp-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: italic;
}

/* Manifesto */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 64px;
}

.manifesto-inner {
  max-width: 900px;
}

.manifesto-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 32px;
  line-height: 1.15;
}

.manifesto-rule {
  width: 48px;
  height: 2px;
  background: var(--accent-warm);
  margin-bottom: 40px;
}

.manifesto-columns {
  display: flex;
  gap: 0;
}

.manifesto-col {
  flex: 1;
}

.manifesto-divider {
  width: 1px;
  background: var(--border);
  margin: 0 48px;
  flex-shrink: 0;
}

.col-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 20px;
}

.col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.col-list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
  padding-left: 16px;
  position: relative;
  font-weight: 300;
}

.col-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: var(--accent-warm);
}

/* Proof */
.proof {
  padding: 96px 64px;
  border-bottom: 1px solid var(--border);
}

.proof-inner {
  max-width: 900px;
}

.proof-header {
  margin-bottom: 56px;
}

.proof-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 20px;
}

.proof-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  max-width: 600px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.proof-card {
  border-top: 1.5px solid var(--border);
  padding-top: 28px;
}

.card-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}

.card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.card-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Closing */
.closing {
  padding: 96px 64px;
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing-rule {
  width: 1px;
  height: 48px;
  background: var(--accent-warm);
  margin: 0 auto 40px;
}

.closing-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 28px;
  font-style: normal;
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 64px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}

.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  font-weight: 300;
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 48px; }
  .manifesto { padding: 60px 24px; }
  .manifesto-columns { flex-direction: column; gap: 40px; }
  .manifesto-divider { display: none; }
  .proof { padding: 60px 24px; }
  .proof-grid { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}