:root {
    --color-background: #f7f4ef;
    --color-text: #333333;
    --color-muted: #777777;

    --hero-height: clamp(300px, 47vh, 575px);
    --content-padding: clamp(2rem, 6vw, 5rem);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background: var(--color-background);
    color: var(--color-text);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

body {
    font-family: "Instrument Sans", sans-serif;
}

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

.landing-page {
    padding-top: clamp(2rem, 4vw, 4rem);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    width: 100%;
}

.hero img {
    width: 100%;
    display: block;
}

.intro {
    flex: 1;
    min-height: 320px;
    padding: var(--content-padding);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.intro__logo {
    width: clamp(180px, 22vw, 290px);
    height: auto;
    margin-bottom: 2rem;
}

.intro__tagline {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 420px;
    text-transform: uppercase;
}

.intro__status {
    font-size: .85rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #888;
}

@media (max-width: 700px) {
    :root {
        --hero-height: 310px;
    }

    .hero {
        background-position: center;
    }

    .intro {
        min-height: 280px;
    }

    .intro__logo {
        width: min(220px, 70vw);
    }
}