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

* {
    margin: 0;
    padding: 0;
}

ul[role='list'],
ol[role='list'] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
}

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

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition: none;
    }
}

body,
html {
    height: 100%;
    scroll-behavior: smooth;
}

/**/

.hidden {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
}

/**/

:root {
    --px: 4vw;
    --py: 4vh;
}

@media screen and (min-width: 31rem) {
    :root {
        --px: 2rem;
        --py: 2rem;
    }
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

/**/

.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: var(--py) var(--px);
}

@media screen and (orientation: landscape) {
    .section {
        min-height: 100vh;
    }
}

/**/

.section__content {
    width: 100%;
    max-width: 21.5rem;
    margin: 0 auto;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}

/**/

.brand--image {
    display: block;
    margin-bottom: var(--py);
}

.brand--title {
    padding: 0 var(--px);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    white-space: pre;
}

.brand--subtitle {
    margin-top: 1rem;
    padding: 0 var(--px);
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
}

.brand--cta {
    margin: 1.4rem 0 0.2rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    display: block;
    font-size: 0.95rem;
    text-transform: lowercase;
    background: #f6f6f6;
    border-radius: 1rem;
}

/**/

.menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    border-style: solid;
    border-width: 0.125rem 0 0 0;
    padding-top: var(--py);
}

.menu li {
    display: inline-block;
}

.menu__link {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    padding: 0.8rem var(--px);
    font-size: 0.6875rem;
    font-weight: 500;
    border-radius: 1rem;
}
