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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top right, rgba(200, 141, 47, 0.14), transparent 30%),
        linear-gradient(180deg, #f8f4ee 0%, var(--bg) 32%, #efe7da 100%);
    color: var(--text);
}

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

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

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

button {
    cursor: pointer;
}

main {
    min-height: calc(100vh - var(--header-height));
    padding-top: var(--header-height);
}

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

.section {
    padding: clamp(64px, 8vw, 112px) 0;
}

.section--muted {
    background: rgba(255, 255, 255, 0.38);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--accent-strong);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.section-heading--compact {
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.section-heading p:last-child {
    margin: 0;
    max-width: 680px;
    color: var(--text-soft);
    line-height: 1.75;
}

.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;
}
