/* ========================================
   RESET
======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: var(--font-primary);

    color: var(--color-text);
    background: var(--color-background);

    line-height: 1.6;
}

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

a {
    color: inherit;
}

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


/* ========================================
   TYPOGRAPHY
======================================== */

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

    line-height: 1.2;

    color: var(--color-text);
}

h1 {
    margin-bottom: 1.5rem;

    font-size: clamp(2.6rem, 5vw, 4.5rem);

    letter-spacing: -0.04em;
}

h2 {
    margin-bottom: 1rem;

    font-size: clamp(2rem, 4vw, 3rem);

    letter-spacing: -0.025em;
}

h3 {
    margin-bottom: 0.75rem;

    font-size: 1.125rem;
}

p {
    margin-top: 0;
}

.eyebrow {
    margin-bottom: 0.75rem;

    color: var(--color-primary);

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.text-link {
    display: inline-block;

    margin-top: 0.5rem;

    font-weight: 700;

    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}
.hero h1 {
    font-size: clamp(3rem, 5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}