:root {
  --bg: #F8F5F0;
  --fg: #1A1816;
  --accent: #E85D04;
  --muted: #8C8379;
  --surface: #EFEBE3;
  --border: #DDD8D0;
}

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

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

h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.1; }

/* NAV */
.nav {
  padding: 24px 48px;
  display: flex;
  align-items: center;
}
.nav-inner { display: flex; align-items: baseline; gap: 12px; }
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  padding: 80px 48px 72px;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 28px;
  line-height: 1.0;
}
.hero-headline em { font-style: italic; font-weight: 300; color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* MANIFESTO */
.manifesto {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 760px; }
.manifesto-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.manifesto-body p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 20px;
  font-weight: 300;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* FLOWS */
.flows { padding: 80px 48px; }
.flows-header { margin-bottom: 56px; }
.flows-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.flows-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -1px;
}
.flows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.flow-card {}
.flow-icon { margin-bottom: 20px; }
.flow-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.flow-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* CLOSING */
.closing { padding: 96px 48px; }
.closing-inner { max-width: 700px; }
.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 36px;
}
.closing-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  font-weight: 300;
}

/* FOOTER */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner { display: flex; align-items: center; gap: 16px; }
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
}
.footer-copy {
  font-size: 14px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav, .hero, .manifesto, .flows, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .flows-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-stat-div { display: none; }
}
