/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Figtree', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── SECTION COMMON ── */
.section-inner { max-width: 1040px; margin: 0 auto; }
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-h2 em { font-style: italic; color: var(--ink-3); }
.section-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 480px;
  font-weight: 300;
}
