*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-16);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; margin: 0; }
h1 { font-size: clamp(var(--fs-40), 5vw, var(--fs-56)); }
h2 { font-size: clamp(var(--fs-28), 3.5vw, var(--fs-40)); }
h3 { font-size: var(--fs-22); letter-spacing: -0.01em; }
p { margin: 0 0 1em 0; }
a { color: var(--ink); text-decoration-color: var(--brass); text-underline-offset: 3px; }
a:hover { color: var(--brass-deep); }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--space-sm); }
.section { padding-block: var(--space-lg); }
@media (min-width: 768px) { .section { padding-block: var(--space-xl); } }
.eyebrow { font-size: var(--fs-14); letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-deep); }
.sub { font-size: var(--fs-18); color: var(--ink-soft); max-width: 60ch; }
.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; }
:focus-visible { outline: 2px solid var(--brass-deep); outline-offset: 2px; border-radius: 4px; }
