:root {
    --ink: #171716;
    --charcoal: #262624;
    --paper: #f4f1ea;
    --white: #fff;
    --red: #a72a21;
    --red-dark: #7e1b15;
    --gold: #efb83f;
    --line: #d5d0c5;
    --content: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Archivo", sans-serif;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: .22;
    background-image: repeating-linear-gradient(90deg, transparent 0 46px, rgba(23, 23, 22, .08) 47px);
    pointer-events: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    padding: .75rem 1rem;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    padding: .6rem max(1.25rem, calc((100vw - var(--content)) / 2));
    color: var(--white);
    background: rgba(23, 23, 22, .98);
    border-bottom: 3px solid var(--gold);
}

.brand img {
    width: 176px;
}

nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

nav a {
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

nav a:hover,
nav a:focus-visible {
    color: var(--gold);
}

.nav-order {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    min-height: 46px;
    padding: 0 1.2rem;
    color: var(--white);
    background: var(--red);
}

.nav-order:hover,
.nav-order:focus-visible {
    color: var(--white);
    background: var(--red-dark);
}

.nav-order svg,
.button svg,
.order-note svg,
.contact-links svg,
.mobile-order svg,
.text-link svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    stroke-width: 2.5;
}

.hero {
    position: relative;
    display: grid;
    min-height: min(670px, calc(100vh - 86px));
    overflow: hidden;
    isolation: isolate;
    background-color: var(--charcoal);
    background-image: linear-gradient(90deg, rgba(18, 18, 17, .94) 0%, rgba(18, 18, 17, .83) 43%, rgba(18, 18, 17, .2) 76%, rgba(18, 18, 17, .08) 100%), url("../images/restaurant/meal.jpg");
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -42%;
    z-index: -1;
    width: 58%;
    aspect-ratio: 1;
    border: 70px solid rgba(239, 184, 63, .13);
    transform: rotate(9deg);
}

.hero-content {
    align-self: center;
    width: min(100%, var(--content));
    margin: 0 auto;
    padding: 5.5rem 1.25rem 7rem;
    color: var(--white);
}

.eyebrow {
    margin: 0 0 .7rem;
    color: var(--red);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--gold);
}

h1,
h2 {
    margin: 0;
    font-family: "Roboto Slab", serif;
    line-height: 1.04;
    letter-spacing: 0;
}

h1 {
    max-width: 900px;
    font-size: clamp(3rem, 5.8vw, 5.35rem);
}

h2 {
    font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.hero-copy {
    max-width: 610px;
    margin: 1.6rem 0 2.1rem;
    color: #e3e0d8;
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 58px;
    padding: 0 1.45rem;
    font-weight: 800;
    text-decoration: none;
}

.button-primary {
    min-width: 240px;
    color: var(--white);
    background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--red-dark);
}

.button-secondary {
    color: var(--ink);
    background: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--gold);
}

.button-arrow {
    margin-left: auto;
}

.order-note {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 1.1rem 0 0;
    color: #c8c4bb;
    font-size: .84rem;
    font-weight: 600;
}

.menu-section {
    width: min(calc(100% - 2.5rem), var(--content));
    margin: 0 auto;
    padding: 6rem 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.2rem;
}

.menu-intro {
    max-width: 650px;
    margin: .9rem 0 0;
    color: #5d5952;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding-bottom: .2rem;
    font-size: .88rem;
    font-weight: 800;
    text-decoration-color: var(--red);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.menu-pages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.menu-page {
    position: relative;
    padding: 0;
    overflow: hidden;
    color: var(--white);
    border: 1px solid #c8c3b8;
    background: var(--charcoal);
    box-shadow: 0 16px 35px rgba(23, 23, 22, .14);
    cursor: zoom-in;
}

.menu-page img {
    display: block;
    width: 100%;
    transition: transform .25s ease;
}

.menu-page span {
    position: absolute;
    right: .8rem;
    bottom: .8rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem .85rem;
    font-family: "Archivo", sans-serif;
    font-size: .82rem;
    font-weight: 800;
    background: rgba(23, 23, 22, .92);
}

.menu-page span svg {
    width: 18px;
    height: 18px;
}

.menu-page:hover img,
.menu-page:focus-visible img {
    transform: scale(1.015);
}

.viewer-open {
    overflow: hidden;
}

.menu-viewer[hidden] {
    display: none;
}

.menu-viewer {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    grid-template-rows: auto 1fr;
    color: var(--white);
    background: rgba(10, 10, 9, .97);
}

.menu-viewer-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 64px;
    padding: .6rem max(1rem, calc((100vw - var(--content)) / 2));
    border-bottom: 1px solid #46443f;
}

.menu-viewer-controls {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.menu-viewer-controls button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    color: var(--white);
    border: 1px solid #59564f;
    background: #292825;
    cursor: pointer;
}

.menu-viewer-controls button:hover,
.menu-viewer-controls button:focus-visible {
    color: var(--charcoal);
    background: var(--gold);
}

.menu-viewer-controls svg {
    width: 20px;
    height: 20px;
}

.menu-viewer-controls output {
    min-width: 58px;
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
}

.menu-viewer-viewport {
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.menu-viewer-canvas {
    display: grid;
    min-width: 100%;
    min-height: 100%;
    padding: 1rem;
    place-items: start center;
}

.menu-viewer-image,
.menu-viewer-canvas img {
    display: block;
    max-width: none;
    height: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

.story {
    display: grid;
    grid-template-columns: minmax(320px, .72fr) 1.28fr;
    color: var(--white);
    background: var(--red);
}

.story-photo {
    min-height: 540px;
    overflow: hidden;
}

.story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.story-content {
    align-self: center;
    padding: 6rem max(2.5rem, calc((100vw - var(--content)) / 2));
    padding-right: max(2.5rem, calc((100vw - var(--content)) / 2));
}

.story .eyebrow {
    color: var(--gold);
}

.story-content p:last-child {
    max-width: 780px;
    margin: 1.5rem 0 0;
    color: #f5dedb;
    font-size: 1.12rem;
}

.visit {
    display: grid;
    grid-template-columns: minmax(240px, .58fr) minmax(330px, .78fr) 1.14fr;
    min-height: 500px;
    color: var(--white);
    background: var(--charcoal);
}

.visit-photo {
    min-height: 500px;
    overflow: hidden;
}

.visit-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
}

.visit-details {
    align-self: center;
    padding: 4.5rem 3rem;
}

.visit .eyebrow {
    color: var(--gold);
}

address {
    margin: 1.4rem 0;
    color: #d8d4ca;
    font-style: normal;
}

.contact-links {
    display: grid;
    gap: .7rem;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: .7rem;
    width: max-content;
    font-weight: 700;
    text-decoration: none;
}

.contact-links a:hover,
.contact-links a:focus-visible {
    color: var(--gold);
}

.social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.8rem;
}

.social-links a {
    text-decoration: none;
}

.yelp-link {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-height: 52px;
    padding: 0 1rem;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 800;
    background: var(--white);
}

.yelp-link:hover,
.yelp-link:focus-visible {
    background: var(--gold);
}

.yelp-link img {
    max-width: 30px;
    max-height: 30px;
}

.yelp-link svg {
    width: 18px;
    height: 18px;
}

.social-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    background: var(--white);
}

.social-icon img {
    max-width: 25px;
    max-height: 25px;
}

.visit iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    filter: grayscale(1) contrast(1.08);
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 130px;
    padding: 2rem max(1.25rem, calc((100vw - var(--content)) / 2));
    background: var(--white);
}

footer img {
    width: 135px;
}

footer p {
    margin: 0;
    color: #68645c;
    font-size: .78rem;
}

.mobile-order {
    display: none;
}

@media (max-width: 760px) {
    body {
        padding-bottom: 70px;
    }

    .site-header {
        min-height: 72px;
    }

    .brand img {
        width: 132px;
    }

    nav a:not(.nav-order) {
        display: none;
    }

    .nav-order {
        min-height: 42px;
        padding: 0 .9rem;
    }

    .hero {
        min-height: calc(100svh - 72px);
        background-image: linear-gradient(rgba(18, 18, 17, .78), rgba(18, 18, 17, .72)), url("../images/restaurant/meal.jpg");
        background-position: center, center;
        background-size: cover, cover;
    }

    .hero-content {
        padding-top: 4.5rem;
        padding-bottom: 5rem;
    }

    h1 {
        font-size: clamp(2.75rem, 13vw, 4.2rem);
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .menu-section {
        padding: 4rem 0;
    }

    .section-heading {
        display: block;
    }

    .text-link {
        margin-top: 1.2rem;
    }

    .menu-pages {
        grid-template-columns: 1fr;
    }

    .story {
        grid-template-columns: 1fr;
    }

    .story-photo {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .story-content {
        padding: 4.5rem 1.25rem;
    }

    .visit {
        grid-template-columns: 1fr;
    }

    .visit-photo {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .visit-details {
        padding: 4.5rem 1.25rem;
    }

    .visit iframe {
        min-height: 350px;
    }

    footer {
        display: grid;
        justify-items: start;
    }

    .mobile-order {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 30;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .6rem;
        min-height: 70px;
        color: var(--white);
        background: var(--red);
        border-top: 3px solid var(--gold);
        font-weight: 800;
        text-decoration: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
