:root {
    --ink: #252925;
    --ink-soft: #50564f;
    --paper: #f4f0e8;
    --paper-deep: #e8e0d3;
    --sage: #788879;
    --line: rgba(37, 41, 37, 0.2);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--paper);
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.8), transparent 32rem),
        linear-gradient(135deg, var(--paper) 0%, #eee8de 100%);
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

.landing {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 100svh;
    overflow: hidden;
    flex-direction: column;
    padding: clamp(1.5rem, 4vw, 3.75rem);
}

.atmosphere {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(120, 136, 121, 0.2);
    border-radius: 999px;
}

.atmosphere--one {
    top: -28vw;
    right: -20vw;
    width: 60vw;
    height: 60vw;
    min-width: 38rem;
    min-height: 38rem;
}

.atmosphere--two {
    right: 24vw;
    bottom: -32vw;
    width: 48vw;
    height: 48vw;
    min-width: 32rem;
    min-height: 32rem;
}

.hero {
    display: grid;
    width: min(100%, 73rem);
    margin: auto;
    grid-template-columns: minmax(18rem, 0.88fr) minmax(20rem, 1fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.logo-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 50% 50% 46% 54% / 54% 46% 54% 46%;
    background: #979797;
    box-shadow: 0 2rem 5rem rgba(36, 40, 36, 0.12);
}

.logo-frame::after {
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    padding-block: 1rem;
}

.eyebrow {
    margin: 0 0 1.35rem;
    color: var(--sage);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    max-width: 10ch;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 6.3vw, 6.5rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.91;
}

.intro {
    max-width: 31rem;
    margin: 2rem 0 0;
    color: var(--ink-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
    line-height: 1.65;
}

.status {
    display: flex;
    margin-top: 2.4rem;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.status__line {
    width: 3.5rem;
    height: 1px;
    background: var(--ink);
}

footer {
    display: flex;
    width: min(100%, 73rem);
    margin: auto auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    justify-content: space-between;
    color: var(--ink-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.82rem;
}

footer p {
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem);
}

.footer-links a {
    color: var(--ink);
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration-color: var(--sage);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.3rem;
    text-transform: uppercase;
    transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-links a:hover {
    color: var(--sage);
    text-decoration-color: var(--ink);
}

.footer-links a:focus-visible {
    border-radius: 0.15rem;
    outline: 2px solid var(--sage);
    outline-offset: 0.3rem;
}

@media (max-width: 760px) {
    .landing {
        padding: 1.25rem;
    }

    .hero {
        width: min(100%, 32rem);
        padding-block: 2.5rem;
        grid-template-columns: 1fr;
        gap: 2.7rem;
    }

    .logo-frame {
        width: min(78vw, 22rem);
        margin-inline: auto;
    }

    h1 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    footer {
        align-items: flex-end;
        gap: 1rem;
        font-size: 0.72rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.65rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .logo-frame,
    .content {
        animation: arrive 700ms ease-out both;
    }

    .content {
        animation-delay: 120ms;
    }

    @keyframes arrive {
        from {
            opacity: 0;
            transform: translateY(0.75rem);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
