:root {
  --bg: #F5F0E8;
  --ink: #181614;
  --muted: #6B6560;
  --accent: #C4622D;
  --accent-warm: #E8875A;
  --border: #D9D3C7;
  --card-bg: #EFEBE2;
}

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

html { scroll-behavior: smooth; }

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

/* Navigation */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* Section label */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 72px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 700px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  max-width: 600px;
  margin-bottom: 64px;
}
.hero-sub p {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 16px;
}
.hero-descriptor {
  font-size: 15px;
  color: var(--muted) !important;
  font-style: italic;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.hero-stat {
  background: var(--bg);
  padding: 28px 32px;
}
.hero-stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* Problem */
.problem {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.problem-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bg);
}
.problem-body p {
  font-size: 16px;
  line-height: 1.75;
  color: #C8C0B4;
  margin-bottom: 20px;
}
.problem-body p:last-child {
  color: #E0D8CC;
  font-weight: 500;
}

/* Features */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 88px 32px;
}
.features-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 56px;
  max-width: 560px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Process */
.process {
  background: #1E1A16;
  padding: 80px 0;
}
.process-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 480px;
}
.process .section-label { color: var(--accent-warm); }
.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 40px 0 0;
  border-right: 1px solid #3A3430;
  padding-right: 40px;
}
.step:last-child { border-right: none; padding-right: 0; }
.step-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 900;
  color: #2E2A25;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 14px;
  color: #8A8078;
  line-height: 1.65;
}
.process-note {
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 0 32px;
  font-size: 14px;
  color: #6B6460;
  font-style: italic;
}

/* Manifesto */
.manifesto {
  padding: 96px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.manifesto-credit {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Closer */
.closer {
  padding: 96px 32px;
  background: var(--ink);
}
.closer-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closer h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  color: var(--bg);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.closer p {
  font-size: 17px;
  line-height: 1.75;
  color: #A8A098;
  margin-bottom: 20px;
}
.closer-final {
  color: #D0C8BC !important;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--ink);
  border-top: 1px solid #2E2A25;
  padding: 32px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  display: block;
  margin-bottom: 4px;
}
.footer-desc {
  font-size: 13px;
  color: #5A5450;
}
.footer-meta {
  font-size: 12px;
  color: #4A4642;
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .problem-inner { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step { border-right: none; border-bottom: 1px solid #3A3430; padding-bottom: 40px; }
  .step:last-child { border-bottom: none; padding-bottom: 0; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 24px 48px; }
  .features { padding: 64px 24px; }
  .manifesto, .closer { padding: 64px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}