:root {
    color-scheme: dark;
    font-family: "Rubik", sans-serif;
    color: #f4efe5;
    background: #33322f;
    font-synthesis: none;
}

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

html,
body {
    margin: 0;
    min-width: 280px;
    min-height: 100%;
}

.page {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 5rem 1.5rem;
    background-image: linear-gradient(rgb(0 0 0 / 23%), rgb(0 0 0 / 23%)), url("/img/bg.jpg");
    background-position: center;
    background-size: cover;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.25rem, 2.4vw, 2.5rem);
    width: 100%;
    text-align: center;
}

.hero__logo {
    display: block;
    width: min(100%, 12rem);
    height: auto;
}

.hero__tagline {
    margin: 0;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer {
    position: absolute;
    right: 1.5rem;
    bottom: max(clamp(1.5rem, 3.2vw, 3rem), env(safe-area-inset-bottom));
    left: 1.5rem;
    text-align: center;
}

.footer__email {
    color: inherit;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    transition: text-decoration-color 150ms ease;
}

.footer__email:hover,
.footer__email:focus-visible {
    text-decoration-color: currentColor;
}

.footer__email:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 6px;
}

@media (prefers-reduced-motion: reduce) {
    .footer__email {
        transition: none;
    }
}
