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

html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--text);
    background: var(--bg);
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: color var(--tx), opacity var(--tx); }
a:hover { color: var(--text); }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em;
    line-height: var(--lh-tight);
    font-weight: 800;
    letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--text-dim); }

button {
    font: inherit; color: inherit; cursor: pointer;
    background: none; border: 0; padding: 0;
}

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

::selection { background: var(--brand-stop-2); color: var(--text); }

.skip-link {
    position: absolute; top: -100px; left: 8px; padding: 8px 12px;
    background: var(--text); color: var(--bg); border-radius: var(--radius); z-index: 1000;
}
.skip-link:focus { top: 8px; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.site-main { min-height: 60vh; }

.section { padding: var(--section-y) 0; }
.section--tight { padding: 56px 0; }

.eyebrow {
    font-size: var(--fs-body);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 12px;
}
