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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--announcement-height) + var(--header-height) + 28px);
    font-synthesis: none;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--sand-light);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: .002em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.12;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
}

strong,
b {
    font-weight: 700;
}

h1 {
    font-size: clamp(3rem, 6.8vw, 6.8rem);
    letter-spacing: -.035em;
}

h2 {
    font-size: clamp(2.2rem, 4.6vw, 4.5rem);
    letter-spacing: -.028em;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--ink-soft);
}

ul,
ol {
    padding-left: 1.25rem;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    padding: clamp(76px, 10vw, 140px) 0;
}

.section--warm {
    background: var(--sand);
}

.section--soft {
    background: var(--sage-soft);
}

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

:focus-visible {
    outline: 3px solid var(--amber);
    outline-offset: 4px;
}

.eyebrow {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.eyebrow--dark {
    color: var(--clay);
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6,
[dir="rtl"] .eyebrow {
    letter-spacing: 0;
}

.lead {
    max-width: 720px;
    color: rgba(255, 255, 255, .83);
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.lead--small {
    color: var(--ink-soft);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
