:root {
    --cream: #f5f0e6;
    --orange: #f2a019;
    --ink: #171612;
}

* {
    box-sizing: border-box;
}

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

body {
    background: var(--ink);
    color: var(--cream);
    font-family: "Montserrat", sans-serif;
}

.coming-soon {
    position: relative;
    display: grid;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
}

.coming-soon__photo,
.coming-soon__shade {
    position: absolute;
    inset: 0;
}

.coming-soon__photo {
    z-index: -2;
    background: url("menu/Images/menu-hero.jfif") center 55% / cover no-repeat;
    animation: reveal-photo 1.4s ease-out both;
}

.coming-soon__shade {
    z-index: -1;
    background:
        radial-gradient(circle at 72% 45%, transparent 0, rgba(0, 0, 0, .18) 42%, rgba(0, 0, 0, .64) 100%),
        linear-gradient(90deg, rgba(15, 14, 11, .94) 0%, rgba(15, 14, 11, .78) 42%, rgba(15, 14, 11, .3) 72%, rgba(15, 14, 11, .46) 100%);
}

.coming-soon__content {
    align-self: center;
    justify-self: center;
    width: min(680px, 100%);
    padding: clamp(2rem, 6vw, 6rem);
    text-align: center;
    animation: reveal-content .9s .15s ease-out both;
}

.logo {
    display: block;
    width: clamp(150px, 20vw, 235px);
    max-height: 100px;
    margin: 0 auto clamp(3.5rem, 11vh, 7rem);
    object-fit: contain;
    object-position: center;
    filter: brightness(0) invert(1);
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--orange);
    font-family: "Barlow Condensed", sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(4.4rem, 10vw, 8.5rem);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .82;
    text-transform: uppercase;
}

.intro {
    max-width: 520px;
    margin: 2rem auto 0;
    color: rgba(245, 240, 230, .78);
    font-size: clamp(.92rem, 1.5vw, 1.05rem);
    line-height: 1.75;
}

.menu-button {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
    padding: 1rem 1.2rem 1rem 1.5rem;
    border: 1px solid var(--orange);
    border-radius: 999px;
    background: var(--orange);
    color: var(--ink);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.menu-button span {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--cream);
    font-size: 1rem;
    transition: transform .25s ease;
}

.menu-button:hover,
.menu-button:focus-visible {
    background: transparent;
    color: var(--cream);
    transform: translateY(-2px);
}

.menu-button:hover span,
.menu-button:focus-visible span {
    transform: translateX(3px);
}

.menu-button:focus-visible {
    outline: 3px solid rgba(242, 160, 25, .35);
    outline-offset: 4px;
}

.location {
    position: absolute;
    right: clamp(1.5rem, 4vw, 4rem);
    bottom: clamp(1.5rem, 4vw, 3rem);
    margin: 0;
    color: rgba(245, 240, 230, .6);
    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

@keyframes reveal-content {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-photo {
    from { opacity: 0; transform: scale(1.04); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 720px) {
    .coming-soon__photo {
        background-position: 62% center;
    }

    .coming-soon__shade {
        background: linear-gradient(180deg, rgba(15, 14, 11, .66), rgba(15, 14, 11, .9));
    }

    .coming-soon__content {
        align-self: center;
        padding: 2rem 1.5rem 4.5rem;
    }

    .logo {
        margin-bottom: clamp(3.5rem, 11vh, 7rem);
    }

    .location {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
