:root {
  --bg: #FAF8F5;
  --bg-dark: #0D1B2A;
  --fg: #1A1A2E;
  --fg-muted: #5C6670;
  --accent: #D4920A;
  --accent-hover: #B87E08;
  --navy: #0D1B2A;
  --cream: #FAF8F5;
  --amber: #D4920A;
  --slate: #4A5568;
  --border: #E2DDD6;
}

*, *::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;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.site-nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.4rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  background: var(--amber);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-hover); }

/* ── Hero ── */
.hero {
  background: var(--cream);
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 520px;
}

/* Document stack visual */
.hero-visual { display: flex; justify-content: flex-end; }
.doc-stack {
  position: relative;
  width: 260px;
  height: 320px;
}
.doc-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 4px 24px rgba(13,27,42,0.08), 0 1px 4px rgba(13,27,42,0.04);
}
.doc-card-1 {
  width: 220px;
  height: 130px;
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 1;
}
.doc-card-2 {
  width: 220px;
  height: 130px;
  top: 80px; left: 20px;
  transform: rotate(1.5deg);
  z-index: 2;
}
.doc-card-3 {
  width: 220px;
  height: 130px;
  top: 160px; left: 5px;
  transform: rotate(-1deg);
  z-index: 3;
}
.doc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.doc-lines { display: flex; flex-direction: column; gap: 0.4rem; }
.doc-line {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  width: 100%;
}
.doc-line-short { width: 60%; }
.doc-line-med { width: 80%; }
.doc-badge {
  margin-top: 0.75rem;
  display: inline-block;
  background: var(--navy);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ── Stats Row ── */
.stats-row {
  background: var(--navy);
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 2rem;
}
.stat-number {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 2.2rem;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
  margin: 0.5rem 0;
}

/* ── Process ── */
.process {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.process-header { margin-bottom: 3.5rem; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 1.5rem; }
.step-number {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin-top: 2.5rem;
  flex-shrink: 0;
}

/* ── Industries ── */
.industries {
  background: #F0EBE3;
  padding: 5rem 2rem;
}
.industries .section-heading { margin-bottom: 1rem; }
.industries-body {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.industry-list { display: flex; flex-direction: column; gap: 0.75rem; }
.industry-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}
.industry-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Features ── */
.features {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header { margin-bottom: 3.5rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  padding: 1.75rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.feature-icon {
  color: var(--amber);
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── Manifesto ── */
.manifesto {
  background: var(--navy);
  padding: 5rem 2rem;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.manifesto-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.9;
}
.manifesto-quote {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-style: italic;
}
.manifesto-attribution {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 500;
}

/* ── Closing ── */
.closing {
  background: var(--cream);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.closing-sub {
  font-size: 0.95rem;
  color: var(--slate);
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-logo {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.1rem;
  color: white;
  display: block;
  margin-bottom: 0.35rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-meta p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: right;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual { justify-content: flex-start; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step-connector { display: none; }
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .footer-inner { flex-direction: column; }
  .footer-meta p { text-align: left; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-row { padding: 2rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .process, .features, .closing { padding: 3.5rem 1.5rem; }
  .industries { padding: 3.5rem 1.5rem; }
  .manifesto { padding: 3.5rem 1.5rem; }
}