/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body { min-width: 320px; margin: 0; overflow-x: hidden; color: var(--color-ink); background: var(--color-white); font-family: var(--font-body); line-height: 1.55; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
h1, h2, h3, h4, p, ul, ol, blockquote { margin-top: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
.wrap { width: min(100% - 44px, var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip { position: fixed; top: 8px; left: 8px; z-index: 10000; padding: 11px 15px; color: #fff; background: var(--color-navy); border-radius: var(--radius-xs); transform: translateY(-150%); }
.skip:focus { transform: none; }
:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 3px; }
::selection { color: #fff; background: var(--color-blue); }
