/* ==========================================================================
   Base — reset, document defaults, typography, links
   ========================================================================== */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  color: var(--c-slate);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;           /* guard against stray horizontal scroll */
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-weight: var(--fw-black);
  text-wrap: balance;
}

p { margin: 0; line-height: 1.6; }

a { color: var(--c-orange); text-decoration: none; }
a:hover { color: var(--c-orange-hover); }

::selection { background: #FFD9C2; }

.tnum { font-variant-numeric: tabular-nums; }

/* Visually-hidden (a11y) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
