:root {
  --bg: #FAFAF8;
  --bg-warm: #F5F0EB;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #C41E3A;
  --accent-light: #E8D5D9;
  --accent-dark: #8B1528;
  --border: #E5DED6;
  --white: #FFFFFF;
  --maple: #C41E3A;
  --maple-glow: rgba(196, 30, 58, 0.08);
}

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

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

/* ─── HERO ─── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--maple-glow);
  border: 1px solid var(--accent-light);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  width: fit-content;
  margin-bottom: 2.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-lede {
  font-size: 1.25rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ─── SECTION COMMON ─── */
section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ─── WHAT WE DO ─── */
.what-we-do {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.capability {
  padding: 2.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.capability:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.capability:nth-last-child(-n+2) {
  border-bottom: none;
}

.capability-number {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.capability h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.capability p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── BY THE NUMBERS ─── */
.numbers {
  background: var(--fg);
  color: var(--white);
}

.numbers .section-label {
  color: var(--accent-light);
}

.numbers .section-title {
  color: var(--white);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.number-card {
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
}

.number-card .big {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.number-card .desc {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ─── APPROACH ─── */
.approach {
  background: var(--bg-warm);
}

.approach-steps {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.approach-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

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

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── CLOSING ─── */
.closing {
  text-align: center;
  padding: 6rem 2rem;
}

.closing-inner {
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.closing h2 em {
  font-style: normal;
  color: var(--accent);
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 4rem 1.5rem 3rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .capability:nth-child(odd) {
    border-right: none;
  }
  .capability {
    border-bottom: 1px solid var(--border);
  }
  .capability:last-child {
    border-bottom: none;
  }
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  .approach-step {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }
  section {
    padding: 3.5rem 1.5rem;
  }
}