:root {
  --bg: #FAF8F4;
  --fg: #1C1C1A;
  --green: #263E35;
  --green-light: #3D5E4B;
  --amber: #D4A853;
  --amber-light: #E8C87A;
  --sage: #8B9E84;
  --stone: #6B6560;
  --stone-light: #A8A29E;
  --surface: #F0EDE6;
  --border: #E2DDD5;
  --radius: 12px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a {
  color: var(--stone);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.site-header nav a:hover {
  color: var(--fg);
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  padding: 96px 32px 80px;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 18px;
  color: var(--stone);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-product-types {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
}

.hero-product-types span {
  background: var(--surface);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.dot {
  width: 4px;
  height: 4px;
  background: var(--stone-light);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* Product Cards */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
}

.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.card-1 { grid-column: 1; }
.card-2 { grid-column: 2; margin-top: 32px; }
.card-3 { grid-column: 1; grid-row: 2; }

.card-swatch {
  height: 64px;
  border-radius: 8px;
  margin-bottom: 4px;
}

.swatch-green { background: linear-gradient(135deg, #263E35 0%, #3D5E4B 100%); }
.swatch-amber { background: linear-gradient(135deg, #D4A853 0%, #E8C87A 100%); }
.swatch-sage { background: linear-gradient(135deg, #8B9E84 0%, #B2C4A5 100%); }

.card-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}

.card-meta {
  font-size: 12px;
  color: var(--stone-light);
  font-weight: 500;
}

/* ─── SECTION SHARED ────────────────────────────────── */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 56px;
}

/* ─── NICHES ─────────────────────────────────────────── */
.niches {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

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

.niche-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.niche-card:hover {
  border-color: var(--amber-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.niche-icon {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.niche-card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}

/* ─── PLAYBOOK ───────────────────────────────────────── */
.playbook {
  padding: 96px 0;
  background: var(--green);
}

.playbook .section-eyebrow {
  color: var(--amber-light);
}

.playbook .section-heading {
  color: white;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: flex-start;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  min-width: 64px;
  flex-shrink: 0;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.step-body p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 580px;
}

/* ─── MANIFESTO ──────────────────────────────────────── */
.manifesto {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 64px;
  align-items: start;
}

.manifesto-label {
  padding-top: 8px;
}

.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 40px;
}

.manifesto-content p {
  font-size: 17px;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 640px;
}

.manifesto-content p:last-child {
  margin-bottom: 0;
}

/* ─── CLOSING ────────────────────────────────────────── */
.closing {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.closing-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 64px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-figure {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  letter-spacing: -2px;
}

.stat-desc {
  font-size: 14px;
  color: var(--stone);
  max-width: 140px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.4;
  font-style: italic;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--green);
  padding: 64px 32px 0;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .wordmark {
  color: white;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: flex;
    gap: 12px;
    overflow-x: auto;
  }

  .product-card {
    min-width: 180px;
  }

  .card-2 { margin-top: 0; }

  .niches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    gap: 32px;
  }

  .closing-stats {
    flex-direction: column;
    gap: 32px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 64px 20px 56px;
  }

  .hero-inner {
    gap: 40px;
  }

  .niches-grid {
    grid-template-columns: 1fr;
  }

  .site-header nav {
    display: none;
  }

  .section-inner {
    padding: 0 20px;
  }

  .closing {
    padding: 64px 0;
  }

  .closing-statement br {
    display: none;
  }

  .site-footer {
    padding: 48px 20px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
}