:root {
  --navy: #1a2744;
  --navy-light: #243358;
  --gold: #b8923a;
  --gold-light: #d4af5a;
  --cream: #f5f1eb;
  --cream-dark: #ede8de;
  --charcoal: #2d2d2d;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --border: #e0dbd3;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ── */
.site-header {
  background: var(--navy);
  padding: 28px 0;
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.tagline {
  font-size: 0.82rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Manifesto ── */
.manifesto {
  background: var(--navy);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.manifesto::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, transparent 100%);
}
.manifesto-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.overline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.manifesto-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 32px;
  font-weight: 400;
}
.manifesto-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
}

/* ── Pillars ── */
.pillars {
  padding: 90px 0;
}
.pillars-header {
  max-width: 1160px;
  margin: 0 auto 60px;
  padding: 0 32px;
}
.pillars-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 400;
}
.pillars-header p {
  color: var(--text-muted);
  font-size: 1rem;
}
.pillars-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
}
.pillar {
  background: var(--white);
  padding: 40px 36px;
}
.pillar-icon {
  margin-bottom: 20px;
}
.pillar h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 400;
}
.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Approach ── */
.approach {
  background: var(--cream-dark);
  padding: 90px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.approach-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.approach-label {
  margin-bottom: 50px;
}
.approach-label p {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}
.approach-step {}
.step-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--cream);
  -webkit-text-stroke: 1.5px var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}
.approach-step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 400;
}
.approach-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.approach-quote {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  max-width: 640px;
}
.approach-quote blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
}
.approach-quote cite {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ── Closing ── */
.closing {
  background: var(--navy);
  padding: 100px 0;
}
.closing-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
  font-weight: 400;
}
.closing p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 20px;
}
.closing-statement {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light) !important;
  margin-top: 36px;
}

/* ── Footer ── */
.site-footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand .wordmark {
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 70px 0 80px; }
  .pillars, .approach, .closing { padding: 70px 0; }
  .footer-inner { flex-direction: column; gap: 20px; }
}