* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #156748;
    --charcoal: #2b2b26;
    --gold: #ddb76c;
    --pointer-x: 0px;
    --pointer-y: 0px;
}

body {
    min-width: 320px;
    overflow: hidden;
    background: var(--charcoal);
}

.landing-container {
    isolation: isolate;
    display: grid;
    width: 100vw;
    min-height: 100svh;
    overflow: hidden;
    place-items: center;
    position: relative;
}

.background-image,
.background-image img,
.background-wash {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.background-image {
    z-index: -3;
}

.background-image img {
    object-fit: cover;
    object-position: center;
}

.background-wash {
    z-index: -2;
    background: rgba(245, 244, 237, 0.74);
}

.brand-lockup {
    align-items: center;
    animation: reveal 900ms ease-out both;
    display: flex;
    flex-direction: column;
    gap: clamp(1.15rem, 2vw, 1.85rem);
    padding: 2rem;
    text-align: center;
    transform: translate(var(--pointer-x), var(--pointer-y));
    transition: transform 500ms ease-out;
    width: min(78vw, 920px);
}

.brand-logo {
    display: block;
    width: 100%;
}

.brand-logo img,
.tagline {
    display: block;
    height: auto;
    width: 100%;
}

.brand-logo--desktop img {
    filter: invert(31%) sepia(55%) saturate(870%) hue-rotate(108deg) brightness(88%) contrast(89%);
}

.brand-logo--mobile {
    display: none;
}

.tagline {
    max-width: 560px;
    margin-top: clamp(0.55rem, 1.2vw, 0.9rem);
}

.opening-note {
    color: var(--green);
    font-family: Georgia, serif;
    font-size: clamp(0.85rem, 1.25vw, 1rem);
    font-weight: bold;
    letter-spacing: 0.24em;
    padding-left: 0.24em;
}

.decorative-icon {
    opacity: 0.2;
    pointer-events: none;
    position: absolute;
    width: clamp(7rem, 14vw, 12rem);
    z-index: -1;
}

.decorative-icon--top {
    animation: drift-top 9s ease-in-out infinite;
    right: 8vw;
    top: 8vh;
}

.decorative-icon--bottom {
    animation: drift-bottom 11s ease-in-out infinite;
    bottom: 7vh;
    left: 7vw;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drift-top {
    50% {
        transform: rotate(8deg) translate(8px, 12px);
    }
}

@keyframes drift-bottom {
    50% {
        transform: rotate(-10deg) translate(10px, -12px);
    }
}

@media (max-width: 700px) {
    .background-wash {
        background: rgba(245, 244, 237, 0.68);
    }

    .brand-lockup {
        gap: 1.1rem;
        padding: 1.5rem;
        width: min(87vw, 420px);
    }

    .brand-logo--desktop {
        display: none;
    }

    .brand-logo--mobile {
        display: block;
        max-width: 330px;
    }

    .tagline {
        max-width: 310px;
    }

    .decorative-icon {
        width: 6.5rem;
    }

    .decorative-icon--top {
        right: -1rem;
        top: 4vh;
    }

    .decorative-icon--bottom {
        bottom: 4vh;
        left: -1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-lockup,
    .decorative-icon {
        animation: none;
        transition: none;
    }
}
