:root {
  --bg: #FAF7F2;
  --fg: #1A1410;
  --accent: #C8623B;
  --accent-dark: #7A4F3A;
  --accent-darker: #4A3728;
  --accent-darkest: #2C2118;
  --muted: #6B5E52;
  --border: #E2D9CC;
  --white: #FFFFFF;
}

*, *::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: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.1; }

/* ── NAV ── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero-desc { padding-top: 0.5rem; }
.hero-lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 3.5rem;
  background: var(--border);
}

/* ── PILLARS ── */
.pillars {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 2rem;
}
.pillars-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}
.pillars-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.pillars-sub {
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.6);
}
.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
}
.pillar {
  background: rgba(250, 247, 242, 0.04);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(250, 247, 242, 0.1);
  transition: background 0.2s;
}
.pillar:hover { background: rgba(250, 247, 242, 0.08); }
.pillar-icon {
  margin-bottom: 1.25rem;
}
.pillar-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.75rem;
}
.pillar-desc {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.65;
}

/* ── HOW ── */
.how {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.how-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.how-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── AUDIENCE ── */
.audience {
  background: #F0EBE3;
  padding: 5rem 2rem;
}
.audience-inner { max-width: 1100px; margin: 0 auto; }
.audience-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}
.audience-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--fg);
  max-width: 600px;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.audience-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.audience-types {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 560px;
}
.atype {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--fg);
}
.atype-marker {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── CLOSING ── */
.closing {
  padding: 6rem 2rem;
  background: var(--accent);
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.8);
  max-width: 600px;
  line-height: 1.75;
}

/* ── FOOTER ── */
.footer {
  background: var(--fg);
  color: rgba(250, 247, 242, 0.4);
  padding: 1.75rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--bg);
}
.footer-copy {
  font-size: 0.8rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .how-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat { padding: 0; flex: 0 0 auto; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .pillars, .how, .audience, .closing { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav { padding-left: 1.25rem; padding-right: 1.25rem; }
  .footer { padding-left: 1.25rem; padding-right: 1.25rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}