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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(184, 93, 40, 0.08), transparent 35%),
        radial-gradient(circle at top right, rgba(35, 59, 87, 0.08), transparent 30%),
        var(--color-bg);
    line-height: 1.55;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
}

textarea {
    resize: vertical;
}

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

.section {
    padding: 88px 0;
}

.section--muted {
    background: rgba(255, 255, 255, 0.55);
}

.section--accent {
    background: linear-gradient(135deg, #223956 0%, #2f4f74 100%);
    color: #fff;
}

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

.section__head--light p,
.section__head--light h2,
.section__head--light .eyebrow {
    color: #fff;
}

.section__head h2 {
    margin: 8px 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.section__head p {
    margin: 0;
    color: var(--color-muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(184, 93, 40, 0.12);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
}
