/* site3 — base reset & utilities */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body { margin: 0; min-height: 100vh; }

img, picture, video, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

ul, ol { margin: 0; padding: 0; }

a { color: inherit; }
button, input, select, textarea { font: inherit; }

:focus-visible {
    outline: 2px solid var(--brand-cta, #e9a319);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--brand-primary);
    color: #fff;
}
.skip-link:focus { left: 0; }
