/** Global reset and accessibility helpers. */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
    margin: 0;
    color: var(--color-ink);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: break-word;
}
body.admin-bar .site-header { top: 32px; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--color-secondary-text); text-decoration: none; text-underline-offset: .18em; }
a:hover { color: var(--color-primary); }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 2px solid rgba(11, 29, 58, .58); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: 0; }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
    position: fixed !important; top: 12px; left: 12px; z-index: 100000;
    width: auto; height: auto; padding: 12px 16px; margin: 0; overflow: visible; clip: auto;
    border-radius: var(--radius-sm); background: #fff; color: var(--color-primary); box-shadow: var(--shadow-card);
}
