:root {
  --bg: #FAF7F2;
  --bg-warm: #F2EDE4;
  --fg: #1C1A17;
  --fg-muted: #6B6560;
  --accent: #C8461D;
  --accent-warm: #E8A97A;
  --line: #D4C9BC;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ── NAV ─────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 80px;
  padding: 80px 60px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.eyebrow-text {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.hero-headline {
  grid-column: 1;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 0;
}
.hero-headline br { display: block; }
.hero-body {
  grid-column: 1;
  margin-top: 36px;
}
.hero-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 420px;
}
.hero-body p + p { margin-top: 12px; }
.hero-stats {
  grid-column: 2;
  grid-row: 2 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  border-left: 1px solid var(--line);
  padding-left: 48px;
  padding-bottom: 8px;
}
.stat {
  padding: 28px 0;
}
.stat + .stat { border-top: 1px solid var(--line); }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* ── PHILOSOPHY ─────────────────────────────────── */
.philosophy {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 100px 60px;
}
.philosophy-inner { max-width: 1200px; margin: 0 auto; }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 32px;
}
.philosophy-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 64px;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.pillar-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── MANIFESTO ─────────────────────────────────── */
.manifesto {
  padding: 100px 60px 100px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.manifesto-ornament {
  color: var(--accent);
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 56px;
}
.manifesto-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-bottom: 56px;
}
.manifesto-tag {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-muted);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 2px;
}
.manifesto-coda {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ── CLOSING ─────────────────────────────────── */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 60px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 36px;
}
.closing-body {
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.6);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.closing-visual {
  margin-top: 80px;
}
.closing-tagline {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(250, 247, 242, 0.35);
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px 60px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg);
  opacity: 0.8;
}
.footer-os {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.35);
}
.footer-bottom {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.3);
  line-height: 1.6;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .nav, .hero, .philosophy, .manifesto, .closing, .footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-headline { grid-column: 1; }
  .hero-body { grid-column: 1; }
  .hero-stats {
    grid-column: 1;
    grid-row: auto;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 32px;
    margin-top: 40px;
  }
  .stat { padding: 0; border-top: none; }
  .philosophy-pillars { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .nav { padding: 20px 20px; }
  .hero, .philosophy, .manifesto, .closing { padding: 60px 20px; }
  .footer { padding: 32px 20px 40px; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat + .stat { border-top: 1px solid var(--line); margin-top: 0; }
  .closing-tagline { flex-direction: column; gap: 8px; }
}