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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, rgba(255, 122, 26, 0.1), transparent 32rem),
        radial-gradient(circle at bottom right, rgba(23, 25, 29, 0.08), transparent 26rem),
        linear-gradient(180deg, var(--color-bg) 0%, #f8f6f2 100%);
}

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

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

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
ul,
ol {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

textarea {
    resize: vertical;
}

:focus-visible {
    outline: 3px solid rgba(255, 122, 26, 0.35);
    outline-offset: 3px;
}

[hidden],
.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary-strong);
}

.brand-logo {
    width: 9rem;
    height: auto;
}

.brand-logo--large {
    width: 12rem;
}

.brand-logo--hero {
    width: 14rem;
}

.text-muted {
    color: var(--color-muted);
}

.text-prewrap {
    white-space: pre-wrap;
}

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

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