:root {
    color-scheme: dark;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.font-display {
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

.nav-link {
    color: rgb(214 211 209);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 160ms ease;
}

.nav-link:hover {
    color: white;
}

.nav-link:focus-visible,
.text-link:focus-visible,
.mobile-nav-link:focus-visible {
    outline: 2px solid white;
    outline-offset: 4px;
}

.mobile-nav-link {
    display: flex;
    min-height: 3rem;
    align-items: center;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.button-primary,
.button-secondary {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
    background: white;
    color: black;
    border: 1px solid white;
}

.button-primary:hover {
    background: rgb(231 229 228);
}

.button-secondary {
    border: 1px solid rgb(255 255 255 / 0.25);
    color: white;
}

.button-secondary:hover {
    border-color: white;
    background: rgb(255 255 255 / 0.06);
}

.button-primary:focus-visible,
.button-secondary:focus-visible {
    outline: 2px solid white;
    outline-offset: 4px;
}

.section-kicker {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgb(168 162 158);
}

.section-heading {
    margin-top: 1rem;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: white;
}

.text-link {
    font-weight: 700;
    color: white;
    text-decoration: underline;
    text-decoration-color: rgb(255 255 255 / 0.3);
    text-underline-offset: 0.35rem;
}

.filter-chip {
    display: inline-flex;
    min-height: 2.5rem;
    align-items: center;
    border: 1px solid rgb(255 255 255 / 0.15);
    padding: 0.55rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(168 162 158);
}

.filter-chip-active {
    border-color: white;
    background: white;
    color: black;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
