:root {
  --bg: #F8F6F0;
  --fg: #1A1A18;
  --accent: #D4A853;
  --accent-dark: #A8842E;
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --muted: #6B6B5E;
  --light: #EEE9DC;
}

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

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, #2D6A4F22 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, #D4A85318 0%, transparent 60%),
    linear-gradient(160deg, #F8F6F0 0%, #EEE9DC 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 24px;
  opacity: 0.75;
}
.hero-headline {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 20px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  padding: 80px 48px 100px;
  background: var(--forest);
  color: var(--bg);
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-style: italic;
  line-height: 1.4;
  color: var(--accent);
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 18px;
  line-height: 1.8;
  color: #C8D8CE;
  max-width: 660px;
  margin: 0 auto;
}

/* WHY */
.why {
  padding: 100px 48px;
}
.why-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.why-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--forest);
  letter-spacing: -0.02em;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  max-width: 1000px;
}
.why-card {
  border-top: 1px solid #D4CFC4;
  padding-top: 28px;
}
.why-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.why-card h3 {
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 12px;
}
.why-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* PROCESS */
.process {
  padding: 100px 48px;
  background: var(--light);
}
.process-header {
  max-width: 600px;
  margin-bottom: 72px;
}
.process-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.process-sub {
  color: var(--muted);
  font-size: 17px;
}
.process-steps {
  max-width: 680px;
}
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.step:last-child { margin-bottom: 0; }
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-line {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: #D4CFC4;
  margin-top: 12px;
}
.step-content h3 {
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 100px 48px 120px;
  background: var(--forest);
  text-align: center;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}
.closing-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0.8;
}
.closing-headline {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--bg);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.closing-body {
  font-size: 18px;
  color: #C8D8CE;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid #D4CFC4;
  text-align: center;
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  display: block;
  margin-bottom: 8px;
}
.footer-tagline {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}
.footer-copy {
  color: #A0A090;
  font-size: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 52px; }
  .hero-sub { font-size: 17px; }
  .manifesto, .why, .process, .closing { padding: 64px 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .step { grid-template-columns: 36px 1fr; gap: 16px; }
  .footer { padding: 40px 24px; }
}