:root {
  --bg: #F8F4EE;
  --bg-alt: #F0EBE3;
  --fg: #1C3A2A;
  --fg-muted: #4A6652;
  --accent: #D4883A;
  --accent-light: #F4E4CC;
  --ink: #2C4036;
  --border: #DDD5C8;
  --white: #FFFFFF;
}

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

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

/* Nav */
.nav {
  padding: 28px 48px;
  display: flex;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
}

/* Hero */
.hero {
  padding: 80px 48px 96px;
  max-width: 960px;
}
.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(56px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  font-weight: 400;
}

/* Differentiation */
.diff {
  padding: 80px 48px;
  background: var(--bg-alt);
}
.diff-header {
  margin-bottom: 56px;
}
.diff-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.diff-header p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
}
.diff-header em {
  font-style: italic;
  color: var(--fg);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.diff-card {
  background: var(--white);
  padding: 40px 36px;
}
.diff-card--accent {
  background: var(--fg);
}
.diff-card--accent h3,
.diff-card--accent p {
  color: var(--bg);
}
.diff-card--accent .diff-icon {
  color: var(--accent);
}
.diff-icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--fg);
}
.diff-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.diff-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Process */
.process {
  padding: 96px 48px;
}
.process-title {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 56px;
  letter-spacing: -0.5px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.step {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--border);
  padding-right: 32px;
}
.step:first-child {
  padding-left: 0;
}
.step:last-child {
  border-right: none;
}
.step-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 20px;
  line-height: 1;
}
.step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Closings */
.closings {
  padding: 80px 48px;
  background: var(--fg);
}
.closings-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  max-width: 960px;
}
.closings-text h2 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.closings-text p {
  font-size: 16px;
  color: #8BAF9A;
  max-width: 480px;
  line-height: 1.7;
}
.closings-stat {
  flex-shrink: 0;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: #8BAF9A;
  line-height: 1.4;
  max-width: 140px;
  display: block;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 12px;
  color: var(--border);
}

/* Responsive */
@media (max-width: 768px) {
  .nav, .hero, .diff, .process, .closings, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero {
    padding-top: 48px;
    padding-bottom: 64px;
  }
  .hero-headline {
    font-size: 48px;
    letter-spacing: -1px;
  }
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }
  .step:last-child {
    border-bottom: none;
  }
  .closings-inner {
    flex-direction: column;
    gap: 40px;
  }
  .stat-num {
    font-size: 56px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 38px;
  }
  .hero-lede {
    font-size: 17px;
  }
}