/* ============================================================
   LET HIM COOK™
   Food-First Editorial Restaurant Template
   Main Production Stylesheet
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */

:root {
    --black: #0d0d0b;
    --black-soft: #161612;
    --black-muted: #25251f;

    --white: #f4f1e9;
    --white-bright: #fffdf8;
    --gray: #aaa79d;
    --gray-dark: #6f6d66;

    --green: #b8d936;
    --green-dark: #849f12;

    --orange: #f24a24;
    --orange-dark: #b82d13;

    --line-dark: rgba(244, 241, 233, 0.2);
    --line-light: rgba(13, 13, 11, 0.2);

    --display: "Bebas Neue", Impact, sans-serif;
    --body: "Inter", Arial, sans-serif;

    --pad-x: clamp(22px, 4vw, 72px);

    --content-max: 1440px;
    --content-inset: max(
        var(--pad-x),
        calc((100vw - var(--content-max)) / 2 + var(--pad-x))
    );

    --panel-inset: max(
        clamp(34px, 6vw, 95px),
        calc((100vw - var(--content-max)) / 4 + 48px)
    );

    --header-height: 86px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* ============================================================
   2. RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--black);
    background: var(--white);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    color: var(--black);
    background: var(--green);
}


/* ============================================================
   3. ACCESSIBILITY
   ============================================================ */

.skip-link {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 999;
    padding: 12px 18px;
    color: var(--black);
    background: var(--green);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 5px;
}


/* ============================================================
   4. HEADER
   ============================================================ */

.site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 40;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: var(--header-height);
    align-items: center;

    padding-inline: var(--content-inset);

    color: var(--white-bright);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
    justify-self: start;

    font-family: var(--display);
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    line-height: 1;
    letter-spacing: 0.015em;
    white-space: nowrap;
}

.brand span {
    position: relative;
    top: -0.55em;
    margin-left: 2px;
    font-family: var(--body);
    font-size: 0.35em;
    font-weight: 700;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 46px);
}

.primary-nav a {
    position: relative;
    padding-block: 8px;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;

    height: 1px;

    background: var(--white);

    content: "";

    transform: scaleX(0);
    transform-origin: right;
    transition: transform 240ms var(--ease);
}

.primary-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.order-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;

    padding-inline: 22px;

    color: var(--black);
    background: var(--green);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition:
        background 180ms ease,
        transform 180ms ease;
}

.order-button:hover {
    background: var(--white-bright);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
}


/* ============================================================
   5. HERO
   ============================================================ */

.hero {
    position: relative;
    min-height: 100svh;

    color: var(--white-bright);
    background: var(--black);

    overflow: hidden;
}

.hero__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
        radial-gradient(
            circle at 70% 50%,
            #56321b 0%,
            #1d1912 42%,
            #0d0d0b 100%
        );

    object-fit: cover;
    object-position: center;
}

.hero__shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.22) 52%,
            rgba(0, 0, 0, 0.3) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.58) 0%,
            transparent 36%
        );
}

.hero__brand-copy {
    position: absolute;
    z-index: 5;

    top: clamp(145px, 17vh, 190px);
    left: var(--content-inset);

    width: min(62vw, 920px);
}

.hero__brand-copy > p {
    margin-bottom: clamp(20px, 3vh, 38px);

    font-size: clamp(0.7rem, 0.9vw, 0.86rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(8rem, 17vw, 18rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.045em;
}

.hero h1 span {
    display: block;
}

.hero h1 span:nth-child(2) {
    margin-left: clamp(50px, 9vw, 155px);
}

.hero h1 span:nth-child(3) {
    color: var(--green);
}

.hero__corner-copy {
    position: absolute;
    z-index: 5;

    right: var(--content-inset);
    bottom: clamp(110px, 15vh, 160px);

    width: min(330px, 26vw);
}

.hero__corner-copy > p {
    margin-bottom: 26px;

    font-size: clamp(0.92rem, 1.25vw, 1.12rem);
    line-height: 1.55;
}

.hero__order-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-block: 15px;

    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);

    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero__order-link span {
    font-size: 1.1rem;
    transition: transform 180ms ease;
}

.hero__order-link:hover span {
    transform: translate(4px, -4px);
}

.hero__bottom {
    position: absolute;
    z-index: 5;

    right: var(--content-inset);
    bottom: 28px;
    left: var(--content-inset);

    display: flex;
    justify-content: space-between;
    gap: 20px;

    color: rgba(255, 255, 255, 0.64);

    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


/* ============================================================
   6. MARQUEE
   ============================================================ */

.marquee {
    position: relative;

    overflow: hidden;

    color: var(--black);
    background: var(--green);

    border-block: 1px solid var(--black);
}

.marquee__track {
    display: flex;
    width: max-content;
    align-items: center;

    padding-block: 14px;

    animation: marquee-slide 22s linear infinite;
}

.marquee__track span {
    display: block;

    padding-inline: clamp(24px, 3vw, 54px);

    font-family: var(--display);
    font-size: clamp(3.8rem, 8vw, 8.5rem);
    line-height: 0.86;
}

.marquee__track span:nth-child(3n + 2) {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--black);
}

@keyframes marquee-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ============================================================
   7. INTRO
   ============================================================ */

.intro {
    display: grid;
    grid-template-columns: 0.32fr 1fr;
    gap: clamp(35px, 6vw, 90px);

    padding:
        clamp(75px, 9vw, 125px)
        var(--content-inset);

    background: var(--white);
}

.intro__label {
    padding-top: 10px;
}

.intro__label span {
    display: block;
    margin-bottom: 10px;

    color: var(--orange);

    font-family: var(--display);
    font-size: 3.5rem;
    line-height: 1;
}

.intro__label p {
    margin: 0;

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.intro__copy {
    max-width: 1060px;
}

.intro__copy h2 {
    max-width: 930px;

    margin-bottom: clamp(28px, 4vw, 48px);

    font-family: var(--display);
    font-size: clamp(5rem, 10vw, 11rem);
    font-weight: 400;
    line-height: 0.78;
    letter-spacing: -0.035em;
}

.intro__copy > p {
    max-width: 660px;
    margin-left: auto;

    color: #3f3e38;

    font-size: clamp(1rem, 1.35vw, 1.22rem);
    line-height: 1.72;
}

.intro__copy > p + p {
    margin-top: 20px;
}


/* ============================================================
   8. SIGNATURE FOOD SECTIONS
   ============================================================ */

.signature {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 820px;

    border-top: 1px solid currentColor;
}

.signature__image-wrap {
    position: relative;
    min-height: 720px;
    overflow: hidden;
}

.signature__image-wrap img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: var(--black-muted);

    object-fit: cover;
    object-position: center;

    transition: transform 900ms var(--ease);
}

.signature:hover .signature__image-wrap img {
    transform: scale(1.025);
}

.signature__index {
    position: absolute;
    z-index: 3;

    top: 24px;
    left: 28px;

    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;

    color: var(--black);
    background: var(--white);

    font-family: var(--display);
    font-size: 1.55rem;
    line-height: 1;
}

.signature__copy {
    display: flex;
    min-height: 720px;
    justify-content: center;
    flex-direction: column;

    padding:
        clamp(60px, 8vw, 125px)
        var(--panel-inset);
}

.signature__type {
    margin-bottom: 24px;

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.signature__copy h2 {
    max-width: 720px;

    margin-bottom: 34px;

    font-family: var(--display);
    font-size: clamp(5rem, 8vw, 9rem);
    font-weight: 400;
    line-height: 0.79;
    letter-spacing: -0.035em;
}

.signature__copy h2 span {
    display: block;
}

.signature__copy > p:not(.signature__type) {
    max-width: 490px;

    margin-bottom: 46px;

    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.7;
}

.signature__meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: end;

    padding-top: 22px;

    border-top: 1px solid currentColor;
}

.signature__meta > span {
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 5.4rem);
    line-height: 0.85;
}

.signature__meta small {
    justify-self: end;

    max-width: 210px;

    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-align: right;
    text-transform: uppercase;
}

.signature--dark {
    color: var(--white);
    background: var(--black);
}

.signature--dark .signature__copy h2 span {
    color: var(--green);
}

.signature--light {
    color: var(--black);
    background: var(--white-bright);
}

.signature--light .signature__copy {
    order: 1;
}

.signature--light .signature__image-wrap {
    order: 2;
}

.signature--light .signature__copy h2 span {
    color: var(--orange);
}

.signature--green {
    color: var(--black);
    background: var(--green);
}

.signature--green .signature__copy h2 span {
    color: var(--white-bright);
}

.signature--orange {
    color: var(--white-bright);
    background: var(--orange);
}

.signature--orange .signature__copy {
    order: 1;
}

.signature--orange .signature__image-wrap {
    order: 2;
}

.signature--orange .signature__copy h2 span {
    color: var(--black);
}


/* ============================================================
   9. ACTUAL MENU
   ============================================================ */

.menu-list {
    padding:
        clamp(100px, 12vw, 175px)
        var(--content-inset);

    color: var(--white);
    background: var(--black);
}

.menu-list__heading {
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 50px;
    align-items: end;

    margin-bottom: clamp(60px, 9vw, 120px);
}

.menu-list__heading > p {
    margin: 0 0 16px;

    color: var(--green);

    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.menu-list__heading h2 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(6rem, 12vw, 13rem);
    font-weight: 400;
    line-height: 0.72;
    letter-spacing: -0.04em;
}

.menu-list__items {
    border-top: 1px solid var(--line-dark);
}

.menu-list__items article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;

    min-height: 160px;

    padding-block: 30px;

    border-bottom: 1px solid var(--line-dark);

    transition:
        padding-inline 300ms var(--ease),
        background 300ms var(--ease);
}

.menu-list__items article:hover {
    padding-inline: 24px;
    color: var(--black);
    background: var(--green);
}

.menu-list__items article > div {
    display: grid;
    grid-template-columns: 120px minmax(230px, 0.8fr) minmax(260px, 1fr);
    gap: 25px;
    align-items: center;
}

.menu-list__items article span {
    color: var(--green);

    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.menu-list__items article:hover span {
    color: var(--black);
}

.menu-list__items h3 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(2.6rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 0.9;
}

.menu-list__items p {
    margin: 0;

    color: var(--gray);

    font-size: 0.9rem;
    line-height: 1.6;
}

.menu-list__items article:hover p {
    color: rgba(13, 13, 11, 0.72);
}

.menu-list__items article > strong {
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1;
}

.menu-list__items article > strong::before {
    content: "$";
    font-size: 0.42em;
    vertical-align: top;
}

.menu-list__disclaimer {
    margin-top: 32px;

    color: #77756f;

    font-size: 0.68rem;
    line-height: 1.6;
}


/* ============================================================
   10. KITCHEN FEATURE
   ============================================================ */

.kitchen-feature {
    position: relative;
    min-height: 100svh;

    color: var(--white-bright);
    background: var(--black);

    overflow: hidden;
}

.kitchen-feature > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(135deg, #493122, #10100e);

    object-fit: cover;
}

.kitchen-feature__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.08)
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.48),
            transparent 55%
        );
}

.kitchen-feature__copy {
    position: absolute;
    z-index: 4;

    left: var(--content-inset);
    bottom: clamp(60px, 10vh, 115px);

    max-width: 950px;
}

.kitchen-feature__copy > p {
    margin-bottom: 20px;

    color: var(--green);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.kitchen-feature__copy h2 {
    margin-bottom: 30px;

    font-family: var(--display);
    font-size: clamp(6rem, 13vw, 14rem);
    font-weight: 400;
    line-height: 0.72;
    letter-spacing: -0.045em;
}

.kitchen-feature__copy > span {
    display: block;

    font-size: clamp(1rem, 1.5vw, 1.35rem);
}


/* ============================================================
   11. LOCATIONS
   ============================================================ */

.locations {
    padding:
        clamp(95px, 12vw, 165px)
        var(--content-inset);

    background: var(--white-bright);
}

.locations__heading {
    display: grid;
    grid-template-columns: 0.32fr 1fr;
    gap: 45px;
    align-items: end;

    margin-bottom: clamp(65px, 8vw, 105px);
}

.locations__heading > p {
    margin-bottom: 10px;

    color: var(--orange);

    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.locations__heading h2 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(6rem, 13vw, 14rem);
    font-weight: 400;
    line-height: 0.72;
    letter-spacing: -0.04em;
}

.location-row {
    display: grid;
    grid-template-columns: 1.2fr 0.75fr 1fr auto;
    gap: clamp(25px, 4vw, 60px);
    align-items: center;

    padding-block: 38px;

    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}

.location-row__city {
    display: flex;
    gap: 22px;
    align-items: baseline;
}

.location-row__city span {
    color: var(--orange);

    font-size: 0.7rem;
    font-weight: 800;
}

.location-row__city h3 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 5.6rem);
    font-weight: 400;
    line-height: 0.9;
}

.location-row__details p {
    margin: 0;

    font-size: 0.88rem;
    line-height: 1.7;
}

.location-row__hours {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 24px;
}

.location-row__hours p {
    margin: 0;

    color: var(--gray-dark);

    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.location-row__hours strong {
    display: block;
    margin-top: 4px;

    color: var(--black);

    font-size: 0.72rem;
}

.location-row__direction {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.location-row__direction span {
    font-size: 1.1rem;
    transition: transform 180ms ease;
}

.location-row__direction:hover span {
    transform: translate(4px, -4px);
}

.locations__note {
    margin-top: 20px;

    color: var(--gray-dark);

    font-size: 0.66rem;
}


/* ============================================================
   12. CATERING
   ============================================================ */

.catering {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    min-height: 760px;

    color: var(--black);
    background: var(--green);
}

.catering__image {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.catering__image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
        radial-gradient(
            circle at center,
            #6d4a25,
            #1c1810
        );

    object-fit: cover;
}

.catering__copy {
    display: flex;
    justify-content: center;
    flex-direction: column;

    padding:
        clamp(60px, 7vw, 110px)
        clamp(35px, 4vw, 70px);
}

.catering__copy > p {
    margin-bottom: 20px;

    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.catering__copy h2 {
    max-width: 680px;

    margin-bottom: 36px;

    font-family: var(--display);
    font-size: clamp(5rem, 7vw, 9rem);
    font-weight: 400;
    line-height: 0.73;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.catering__copy > span {
    max-width: 520px;

    font-size: clamp(1rem, 1.25vw, 1.15rem);
    line-height: 1.65;
}

.text-button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;

    margin-top: 48px;
    padding-block: 18px;

    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);

    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.text-button i {
    font-style: normal;
    font-size: 1.2rem;
    transition: transform 180ms ease;
}

.text-button:hover i {
    transform: translate(5px, -5px);
}


/* ============================================================
   13. FOOD WALL
   ============================================================ */

.food-wall {
    padding:
        clamp(95px, 12vw, 165px)
        var(--content-inset);

    background: var(--white);
}

.food-wall__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 55px;
}

.food-wall__heading > span {
    color: var(--orange);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.food-wall__heading h2 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 400;
    line-height: 0.8;
    letter-spacing: -0.035em;
    text-align: right;
}

.food-wall__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr 0.82fr 1.18fr;
    gap: 8px;

    min-height: 520px;
}

.food-wall__grid img {
    height: 100%;
    min-height: 430px;

    background: var(--black-soft);

    object-fit: cover;

    filter: saturate(0.95) contrast(1.04);

    transition:
        filter 260ms ease,
        transform 500ms var(--ease);
}

.food-wall__grid img:nth-child(2) {
    margin-top: 70px;
    height: calc(100% - 70px);
}

.food-wall__grid img:nth-child(3) {
    height: calc(100% - 90px);
}

.food-wall__grid img:nth-child(4) {
    margin-top: 35px;
    height: calc(100% - 35px);
}

.food-wall__grid img:hover {
    position: relative;
    z-index: 3;
    filter: saturate(1.15) contrast(1.08);
    transform: scale(1.025);
}


/* ============================================================
   14. FOOTER
   ============================================================ */

.site-footer {
    padding:
        clamp(85px, 10vw, 140px)
        var(--content-inset)
        35px;

    color: var(--white);
    background: var(--black);
}

.site-footer__brand {
    padding-bottom: clamp(70px, 10vw, 135px);
}

.site-footer__brand h2 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(6rem, 16vw, 18rem);
    font-weight: 400;
    line-height: 0.72;
    letter-spacing: -0.045em;
}

.site-footer__brand h2 span {
    position: relative;
    top: -1.5em;

    font-family: var(--body);
    font-size: 0.09em;
}

.site-footer__brand p {
    margin-top: 26px;

    color: var(--green);

    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(130px, 220px));
    gap: 70px;

    padding-block: 45px;

    border-top: 1px solid var(--line-dark);
}

.site-footer__nav > div {
    display: grid;
    gap: 10px;
}

.site-footer__nav span {
    margin-bottom: 8px;

    color: var(--green);

    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.site-footer__nav a {
    width: fit-content;

    color: #c4c2bb;

    font-size: 0.88rem;

    transition: color 160ms ease;
}

.site-footer__nav a:hover {
    color: var(--white);
}

.site-footer__legal {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding-top: 25px;

    border-top: 1px solid var(--line-dark);

    color: #6e6d67;

    font-size: 0.64rem;
}

.site-footer__legal p {
    margin: 0;
}


/* ============================================================
   15. MOBILE ORDER BAR
   ============================================================ */

.mobile-order {
    display: none;
}


/* ============================================================
   16. RESPONSIVE — 1100
   ============================================================ */

@media (max-width: 1100px) {

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .primary-nav {
        position: fixed;
        z-index: 80;

        inset: 0;

        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 0;

        padding:
            120px
            var(--pad-x)
            100px;

        color: var(--white);
        background: var(--black);

        transform: translateX(100%);

        transition: transform 320ms var(--ease);
    }

    .order-button {
        display: none;
    }

    .nav-toggle {
        position: relative;
        z-index: 90;

        display: flex;
        min-height: 44px;
        align-items: center;
        gap: 12px;

        padding: 0;

        color: var(--white);
        background: transparent;

        cursor: pointer;
    }

    .nav-toggle > span {
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .nav-toggle i {
        display: grid;
        gap: 5px;
    }

    .nav-toggle b {
        display: block;
        width: 21px;
        height: 1px;

        background: currentColor;

        transition:
            transform 200ms ease,
            opacity 200ms ease;
    }

    .primary-nav a {
        width: 100%;

        padding-block: 13px;

        border-bottom: 1px solid var(--line-dark);

        font-family: var(--display);
        font-size: clamp(3.5rem, 11vw, 6rem);
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0;
    }

    .primary-nav a::after {
        display: none;
    }

    .nav-open .primary-nav {
        transform: translateX(0);
    }

    .nav-open .nav-toggle b:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .nav-open .nav-toggle b:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }

    .hero__brand-copy {
        width: 72vw;
    }

    .hero__corner-copy {
        width: 270px;
    }

    .signature {
        min-height: 680px;
    }

    .signature__copy,
    .signature__image-wrap {
        min-height: 680px;
    }

    .menu-list__items article > div {
        grid-template-columns: 90px minmax(190px, 0.7fr) 1fr;
    }

    .location-row {
        grid-template-columns: 1fr 0.75fr auto;
    }

    .location-row__hours {
        display: none;
    }

    .food-wall__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .food-wall__grid img,
    .food-wall__grid img:nth-child(2),
    .food-wall__grid img:nth-child(3),
    .food-wall__grid img:nth-child(4) {
        min-height: 430px;
        height: 430px;
        margin-top: 0;
    }

}


/* ============================================================
   17. RESPONSIVE — 900
   ============================================================ */

@media (max-width: 900px) {

    body {
        padding-bottom: 62px;
    }

    .site-header {
        position: absolute;
    }

    .order-button {
        display: none;
    }

    .nav-toggle {
        display: flex;
        min-height: 44px;
        align-items: center;
        gap: 12px;

        padding: 0;

        color: var(--white);
        background: transparent;

        cursor: pointer;
    }

    .nav-toggle > span {
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .nav-toggle i {
        display: grid;
        gap: 5px;
    }

    .nav-toggle b {
        display: block;
        width: 21px;
        height: 1px;

        background: currentColor;

        transition:
            transform 200ms ease,
            opacity 200ms ease;
    }

    .primary-nav {
        position: fixed;
        z-index: 80;

        inset: 0;

        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 0;

        padding:
            120px
            var(--pad-x)
            100px;

        color: var(--white);
        background: var(--black);

        transform: translateX(100%);

        transition: transform 320ms var(--ease);
    }

    .nav-open .primary-nav {
        transform: translateX(0);
    }

    .primary-nav a {
        width: 100%;

        padding-block: 13px;

        border-bottom: 1px solid var(--line-dark);

        font-family: var(--display);
        font-size: clamp(3.5rem, 11vw, 6rem);
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0;
    }

    .primary-nav a::after {
        display: none;
    }

    .nav-toggle {
        position: relative;
        z-index: 90;
    }

    .nav-open .nav-toggle b:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .nav-open .nav-toggle b:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }

    .hero__brand-copy {
        width: calc(100% - (var(--pad-x) * 2));
    }

    .hero h1 {
        font-size: clamp(7rem, 20vw, 11rem);
    }

    .hero h1 span:nth-child(2) {
        margin-left: 9vw;
    }

    .hero__corner-copy {
        right: auto;
        bottom: 105px;
        left: var(--pad-x);

        width: min(310px, 75vw);
    }

    .hero__bottom {
        font-size: 0.54rem;
    }

    .intro {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .intro__copy > p {
        margin-left: 0;
    }

    .signature {
        grid-template-columns: 1fr;
    }

    .signature__image-wrap,
    .signature__copy {
        min-height: 630px;
    }

    .signature--light .signature__copy,
    .signature--orange .signature__copy {
        order: 2;
    }

    .signature--light .signature__image-wrap,
    .signature--orange .signature__image-wrap {
        order: 1;
    }

    .menu-list__heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .menu-list__items article > div {
        grid-template-columns: 75px 1fr;
    }

    .menu-list__items article p {
        grid-column: 2;
    }

    .locations__heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .location-row {
        grid-template-columns: 1fr auto;
    }

    .location-row__details {
        grid-column: 1;
    }

    .location-row__direction {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .catering {
        grid-template-columns: 1fr;
    }

    .catering__image {
        min-height: 70svh;
    }

    .food-wall__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .food-wall__heading h2 {
        text-align: left;
    }

    .mobile-order {
        position: fixed;
        z-index: 100;

        right: 0;
        bottom: 0;
        left: 0;

        display: flex;
        min-height: 62px;
        align-items: center;
        justify-content: space-between;

        padding-inline: 22px;

        color: var(--black);
        background: var(--green);

        border-top: 1px solid var(--black);

        font-size: 0.75rem;
        font-weight: 900;
        letter-spacing: 0.13em;
    }

}


/* ============================================================
   18. RESPONSIVE — 680
   ============================================================ */

@media (max-width: 680px) {

    :root {
        --header-height: 72px;
    }

    .site-header {
        padding-inline: 18px;
    }

    .brand {
        font-size: 1.55rem;
    }

    .hero {
        min-height: 820px;
    }

    .hero__image {
        object-position: 58% center;
    }

    .hero__brand-copy {
        top: 125px;
        left: 18px;

        width: calc(100% - 36px);
    }

    .hero__brand-copy > p {
        max-width: 290px;
        font-size: 0.61rem;
        line-height: 1.5;
    }

    .hero h1 {
        font-size: clamp(6rem, 28vw, 8.5rem);
    }

    .hero h1 span:nth-child(2) {
        margin-left: 12vw;
    }

    .hero__corner-copy {
        bottom: 88px;
        left: 18px;
    }

    .hero__bottom {
        right: 18px;
        bottom: 20px;
        left: 18px;
    }

    .hero__bottom span:first-child {
        display: none;
    }

    .hero__bottom {
        justify-content: flex-end;
    }

    .marquee__track span {
        font-size: 4rem;
    }

    .intro {
        padding-inline: 20px;
    }

    .intro__label span {
        font-size: 2.8rem;
    }

    .intro__copy h2 {
        font-size: clamp(4.4rem, 20vw, 7rem);
    }

    .signature__image-wrap {
        min-height: 68svh;
    }

    .signature__copy {
        min-height: auto;

        padding:
            72px
            22px;
    }

    .signature__copy h2 {
        font-size: clamp(4.7rem, 22vw, 7rem);
    }

    .signature__meta {
        gap: 18px;
    }

    .signature__meta small {
        font-size: 0.58rem;
    }

    .menu-list {
        padding-inline: 20px;
    }

    .menu-list__heading h2 {
        font-size: clamp(5rem, 24vw, 8rem);
    }

    .menu-list__items article {
        grid-template-columns: 1fr auto;
        min-height: 180px;
    }

    .menu-list__items article > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .menu-list__items article span,
    .menu-list__items article h3,
    .menu-list__items article p {
        grid-column: auto;
    }

    .menu-list__items article h3 {
        font-size: 2.7rem;
    }

    .menu-list__items article p {
        max-width: 290px;
        margin-top: 4px;
    }

    .menu-list__items article:hover {
        padding-inline: 12px;
    }

    .kitchen-feature {
        min-height: 820px;
    }

    .kitchen-feature__copy {
        left: 20px;
        bottom: 58px;

        width: calc(100% - 40px);
    }

    .kitchen-feature__copy h2 {
        font-size: clamp(5.2rem, 24vw, 8rem);
    }

    .locations {
        padding-inline: 20px;
    }

    .locations__heading h2 {
        font-size: clamp(5rem, 25vw, 8rem);
    }

    .location-row {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .location-row__details,
    .location-row__direction {
        grid-column: auto;
        grid-row: auto;
    }

    .location-row__direction {
        padding-top: 20px;
        border-top: 1px solid var(--line-light);
    }

    .catering__image {
        min-height: 60svh;
    }

    .catering__copy {
        padding: 75px 22px;
    }

    .catering__copy h2 {
        font-size: clamp(5rem, 23vw, 7.5rem);
    }

    .food-wall {
        padding-inline: 20px;
    }

    .food-wall__heading h2 {
        font-size: clamp(4rem, 18vw, 6rem);
    }

    .food-wall__grid {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .food-wall__grid img,
    .food-wall__grid img:nth-child(2),
    .food-wall__grid img:nth-child(3),
    .food-wall__grid img:nth-child(4) {
        min-height: 280px;
        height: 280px;
    }

    .site-footer {
        padding-inline: 20px;
    }

    .site-footer__brand h2 {
        font-size: clamp(5.5rem, 25vw, 8rem);
    }

    .site-footer__nav {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .site-footer__legal {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* ============================================================
   19. RESPONSIVE — 420
   ============================================================ */

@media (max-width: 420px) {

    .brand {
        font-size: 1.35rem;
    }

    .hero h1 {
        font-size: 6.2rem;
    }

    .hero__corner-copy {
        width: calc(100% - 36px);
    }

    .intro__copy h2 {
        font-size: 4.7rem;
    }

    .signature__copy h2 {
        font-size: 4.7rem;
    }

    .signature__meta {
        grid-template-columns: 1fr;
    }

    .signature__meta small {
        justify-self: start;
        text-align: left;
    }

    .menu-list__items article h3 {
        font-size: 2.3rem;
    }

    .menu-list__items article > strong {
        font-size: 3rem;
    }

    .food-wall__grid {
        grid-template-columns: 1fr;
    }

    .food-wall__grid img,
    .food-wall__grid img:nth-child(2),
    .food-wall__grid img:nth-child(3),
    .food-wall__grid img:nth-child(4) {
        min-height: 360px;
        height: 360px;
    }

}


/* ============================================================
   20. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .marquee__track {
        animation: none;
    }

}

