/* =========================================================
   EL REY PERUVIAN RESTAURANT
   Main Stylesheet
========================================================= */

:root {
    --wine: #7c1f2d;
    --wine-dark: #4e111b;
    --wine-light: #9e3041;

    --gold: #c9a35a;
    --gold-light: #dfc27e;

    --cream: #f6f0e7;
    --cream-dark: #ebe2d4;

    --charcoal: #1c1c1c;
    --dark: #111111;
    --gray: #6f6f6f;
    --light-gray: #ececec;
    --white: #ffffff;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --container: 1240px;
    --header-height: 88px;

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
}

::selection {
    background: var(--wine);
    color: var(--white);
}


/* =========================================================
   SHARED
========================================================= */

.section-container {
    width: min(90%, var(--container));
    margin: 0 auto;
}

.section-label,
.eyebrow {
    color: var(--wine);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-label.light {
    color: var(--gold-light);
}

.section-title {
    margin-top: 14px;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 1.05;
}

.section-title span {
    display: block;
    color: var(--wine);
    font-style: italic;
}

.section-heading {
    max-width: 720px;
}

.section-heading.centered {
    margin: 0 auto 60px;
    text-align: center;
}

.section-description {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--gray);
    font-size: 1.05rem;
}

.btn {
    min-height: 54px;
    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    border: 1px solid transparent;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--wine);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--wine-light);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--wine);
}

.btn-outline-dark {
    border-color: var(--charcoal);
}

.btn-outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
}

.btn-gold:hover {
    background: var(--gold-light);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    height: var(--header-height);

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);

    transition:
        background var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(17, 17, 17, 0.96);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
}

.nav-container {
    width: min(92%, 1400px);
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-link {
    position: relative;
    padding: 32px 0;

    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;

    color: rgba(255, 255, 255, 0.78);

    transition: color var(--transition);
}

.nav-link::after {
    content: "";

    width: 0;
    height: 1px;

    position: absolute;
    left: 0;
    bottom: 24px;

    background: var(--gold);

    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.order-button {
    padding: 13px 21px;

    border: 1px solid var(--gold);

    color: var(--gold-light);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition);
}

.order-button:hover {
    background: var(--gold);
    color: var(--dark);
}



/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;
    padding: calc(var(--header-height) + 70px) 7% 80px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(12, 12, 12, 0.94) 0%,
            rgba(12, 12, 12, 0.76) 45%,
            rgba(12, 12, 12, 0.48) 100%
        ),
        radial-gradient(
            circle at 80% 40%,
            #72303a 0%,
            #251416 35%,
            #101010 75%
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.45),
            transparent 35%
        );

    pointer-events: none;
}
/* =========================================================
   3D ANDES PARALLAX
========================================================= */

.andes-scene {
    width: 58vw;
    height: 55vh;

    position: absolute;

    right: -7vw;
    bottom: 0;

    z-index: 1;

    perspective: 1000px;

    pointer-events: none;

    overflow: visible;
}

.andes-layer {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    transform-style: preserve-3d;

    transition:
        transform .18s ease-out;
}

.andes-layer svg {
    width: 100%;
    height: 100%;

    overflow: visible;
}


/* BACK MOUNTAINS */

.andes-back {
    opacity: .28;
}

.andes-back path {
    fill:
        rgba(124, 31, 45, .35);

    stroke:
        rgba(223, 194, 126, .12);

    stroke-width: 2;
}


/* MIDDLE MOUNTAINS */

.andes-middle {
    opacity: .42;
}

.andes-middle path {
    fill:
        rgba(78, 17, 27, .55);

    stroke:
        rgba(223, 194, 126, .18);

    stroke-width: 2;
}


/* FRONT MOUNTAINS */

.andes-front {
    opacity: .72;
}

.andes-front path {
    fill:
        rgba(20, 12, 13, .72);

    stroke:
        rgba(223, 194, 126, .24);

    stroke-width: 2;
}


/* EXTRA DEPTH GLOW */

.andes-scene::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: 18%;
    bottom: 6%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201, 163, 90, .08),
            transparent 68%
        );

    filter: blur(30px);

    pointer-events: none;
}
.hero-content {
    width: min(760px, 100%);

    position: relative;
    z-index: 2;

    color: var(--white);
}

.eyebrow {
    color: var(--gold-light);
}

.hero h1 {
    margin-top: 22px;

    font-family: var(--serif);
    font-size: clamp(4rem, 8vw, 7.7rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.035em;
}

.hero h1 span {
    display: block;

    margin-top: 10px;

    color: var(--gold-light);
    font-style: italic;
}

.hero-description {
    max-width: 610px;
    margin-top: 30px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 38px;

    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-scroll {
    position: absolute;
    right: 5%;
    bottom: 45px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, 0.5);
}

.hero-scroll span {
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 55px;

    background: rgba(255, 255, 255, 0.35);
}
/* =========================================================
   FLOATING 3D EL REY CROWN
========================================================= */

.hero-crown-scene {
    width: 360px;
    height: 330px;

    position: absolute;
    right: 11%;
    top: 24%;

    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 900px;

    pointer-events: none;
}


/* GOLD GLOW */

.crown-glow {
    width: 300px;
    height: 300px;

    position: absolute;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201, 163, 90, .13),
            rgba(124, 31, 45, .05) 42%,
            transparent 70%
        );

    filter: blur(15px);

    animation: crownGlow 4s ease-in-out infinite;
}


/* CROWN */

.crown-3d {
    width: 230px;
    height: 170px;

    position: relative;

    transform-style: preserve-3d;

    transform:
        rotateX(8deg)
        rotateY(-12deg)
        rotateZ(-3deg);

    filter:
        drop-shadow(
            0 30px 25px
            rgba(0, 0, 0, .35)
        );

    animation:
        crownFloat 5s ease-in-out infinite;

    transition:
        transform .18s ease-out;
}


/* CROWN POINT AREA */

.crown-top {
    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 125px;

    overflow: hidden;

    clip-path:
        polygon(
            0% 92%,
            3% 28%,
            24% 70%,
            36% 5%,
            50% 65%,
            64% 5%,
            76% 70%,
            97% 28%,
            100% 92%
        );

    background:
        linear-gradient(
            115deg,
            #76511e 0%,
            #e1c276 22%,
            #9a702c 45%,
            #f0d68d 63%,
            #75501d 100%
        );

    border:
        1px solid
        rgba(255, 231, 166, .25);
}


/* DARK INNER DEPTH */

.crown-top::after {
    content: "";

    position: absolute;
    inset: 7px;

    clip-path:
        polygon(
            0% 92%,
            3% 28%,
            24% 70%,
            36% 5%,
            50% 65%,
            64% 5%,
            76% 70%,
            97% 28%,
            100% 92%
        );

    background:
        linear-gradient(
            120deg,
            rgba(78,17,27,.78),
            rgba(17,17,17,.72)
        );
}


/* BOTTOM BAND */

.crown-band {
    height: 55px;

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    border:
        1px solid
        rgba(255, 226, 151, .3);

    border-radius:
        4px 4px 18px 18px;

    background:
        linear-gradient(
            110deg,
            #6f4918,
            #d7ad52 25%,
            #8e6122 50%,
            #e2c16d 75%,
            #674318
        );

    box-shadow:
        inset 0 -12px 20px
        rgba(50, 20, 5, .35);
}


/* JEWELS */

.crown-band span {
    width: 13px;
    height: 13px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #e28b96,
            #7c1f2d 60%,
            #3b0911
        );

    border:
        1px solid
        rgba(255, 220, 145, .6);

    box-shadow:
        0 0 12px
        rgba(124,31,45,.4);
}


/* FLOATING */

@keyframes crownFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotateX(8deg)
            rotateY(-12deg)
            rotateZ(-3deg);
    }

    50% {
        transform:
            translateY(-18px)
            rotateX(5deg)
            rotateY(-5deg)
            rotateZ(1deg);
    }

}


/* GLOW BREATHING */

@keyframes crownGlow {

    0%,
    100% {
        opacity: .55;
        transform: scale(.92);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }

}

/* =========================================================
   INTRO
========================================================= */

.intro-section {
    padding: 120px 0;
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: end;
}

.intro-copy {
    padding-bottom: 8px;
}

.intro-copy p {
    color: var(--gray);
    font-size: 1.08rem;
    line-height: 1.9;
}

.text-link {
    margin-top: 28px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--wine);

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.text-link span {
    font-size: 1.2rem;

    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translateX(6px);
}


/* =========================================================
   SIGNATURE DISHES
========================================================= */

.signature-section {
    padding: 120px 0;
    background: var(--white);
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dish-card {
    background: var(--cream);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.dish-image {
    height: 390px;

    position: relative;

    overflow: hidden;

    background-position: center;
    background-size: cover;

    transition: background-size 0.6s ease;
}

/*
   These are temporary visual backgrounds.
   Later we'll replace them with REAL El Rey food photos.
*/

.dish-image-one {
    background-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.18)
        ),
        url("images/menu/lomo-saltado.jpg");
}

.dish-image-two {
    background-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.18)
        ),
        url("images/menu/ceviche.jpg");
}

.dish-image-three {
    background-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.18)
        ),
        url("images/menu/pollo-brasa.jpg");
}

.dish-number {
    width: 52px;
    height: 52px;

    position: absolute;
    left: 20px;
    top: 20px;

    display: grid;
    place-items: center;

    background: rgba(17, 17, 17, 0.85);
    color: var(--gold-light);

    font-family: var(--serif);
}

.dish-content {
    padding: 30px;
}

.dish-content h3 {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 600;
}

.dish-content p {
    min-height: 78px;
    margin-top: 12px;

    color: var(--gray);
}

.dish-content a {
    margin-top: 20px;

    display: inline-block;

    color: var(--wine);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.center-button {
    margin-top: 55px;
    text-align: center;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    min-height: 720px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: var(--cream-dark);
}

.about-image {
    min-height: 650px;

    background:
        linear-gradient(
            rgba(20, 8, 10, 0.32),
            rgba(20, 8, 10, 0.48)
        ),
        url("images/menu/peru-culture.jpg");

    background-size: cover;
    background-position: center;
}

.about-content {
    max-width: 680px;
    padding: 100px 9%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content > p:not(.section-label) {
    margin-top: 24px;

    color: var(--gray);
    font-size: 1.03rem;
    line-height: 1.85;
}

.about-content .btn {
    align-self: flex-start;
    margin-top: 35px;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {
    min-height: 760px;
    padding: 100px 8%;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            #080707 0%,
            #16090b 43%,
            #3f1118 100%
        );
}
/* =========================================================
   PERU FLAG - EXPERIENCE SECTION
========================================================= */

.experience-flag {
    width: 55%;
    height: 115%;

    position: absolute;
    right: -3%;
    top: -7%;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    transform:
        perspective(1000px)
        rotateY(-7deg)
        rotateZ(2deg);

    filter:
        drop-shadow(-30px 20px 50px rgba(0,0,0,.35));

    opacity: .78;

    overflow: hidden;
}


/* RED SIDES */

.flag-red {
    background:
        linear-gradient(
            120deg,
            #5d0d17,
            #a91d2d 45%,
            #6f101c
        );
}


/* WHITE CENTER */

.flag-white {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            120deg,
            #d8d0c3,
            #f5eee2 48%,
            #c9bfb1
        );
}


/* SUBTLE FABRIC LIGHTING */

.experience-flag::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            105deg,
            transparent 0,
            rgba(255,255,255,.07) 40px,
            transparent 90px,
            rgba(0,0,0,.08) 140px
        );

    animation: flagLight 7s ease-in-out infinite alternate;
}


/* CENTER EMBLEM */

.flag-emblem {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: #7c1f2d;

    opacity: .65;
}

.flag-emblem span {
    color: #b58c3e;

    font-family: var(--serif);
    font-size: 5rem;
    line-height: 1;
}

.flag-emblem small {
    margin-top: 10px;

    color: #7c1f2d;

    font-size: .65rem;
    font-weight: 700;

    letter-spacing: .35em;
}


/* LIGHT MOVEMENT */

@keyframes flagLight {

    from {
        transform: translateX(-4%);
    }

    to {
        transform: translateX(4%);
    }

}

.experience-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.15) 0%,
            rgba(0,0,0,.10) 35%,
            rgba(0,0,0,.35) 60%,
            rgba(0,0,0,.08) 100%
        );

    pointer-events: none;
}

.experience-content {
    max-width: 760px;

    position: relative;
    z-index: 2;
}

.experience-content h2 {
    margin-top: 18px;

    font-family: var(--serif);
    font-size: clamp(4rem, 8vw, 7.5rem);
    font-weight: 500;
    line-height: 0.92;
}

.experience-content > p:last-child {
    max-width: 500px;
    margin-top: 30px;

    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}


/* =========================================================
   VALUES
========================================================= */

.values-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.value-item {
    min-height: 280px;
    padding: 20px 55px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.value-item:first-child {
    padding-left: 0;
}

.value-item:last-child {
    border-right: none;
}

.value-number {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1rem;
}

.value-item h3 {
    margin-top: 55px;

    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
}

.value-item p {
    max-width: 290px;
    margin-top: 16px;

    color: rgba(255, 255, 255, 0.57);
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    padding: 120px 0;
    background: var(--cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    min-height: 300px;
    padding: 40px;

    display: flex;
    flex-direction: column;

    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.stars {
    color: var(--gold);
    letter-spacing: 0.15em;
}

.review-card p {
    margin-top: 35px;

    flex: 1;

    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.6;
}

.review-card > span {
    margin-top: 30px;

    color: var(--gray);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
    min-height: 700px;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    background: var(--wine-dark);
}

.location-info {
    padding: 90px max(7%, calc((100vw - var(--container)) / 2));

    color: var(--white);
}

.location-info h2 {
    margin: 15px 0 45px;

    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 500;
    line-height: 1;
}

.location-info h2 span {
    display: block;
    color: var(--gold-light);
    font-style: italic;
}

.location-block {
    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.location-block h3 {
    margin-bottom: 6px;

    color: var(--gold-light);

    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.location-block p {
    color: rgba(255, 255, 255, 0.72);
}

.location-info .btn {
    margin-top: 30px;
}

.map-placeholder {
    min-height: 600px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            rgba(20, 20, 20, 0.1),
            rgba(20, 20, 20, 0.1)
        ),
        repeating-linear-gradient(
            45deg,
            #ddd6ca 0,
            #ddd6ca 20px,
            #d3ccbf 20px,
            #d3ccbf 40px
        );
}

.map-placeholder span {
    padding: 15px 25px;

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

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 90px max(6%, calc((100vw - var(--container)) / 2));

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    background: var(--gold-light);
}

.cta-section h2 {
    max-width: 750px;
    margin-top: 10px;

    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 80px 6% 25px;

    background: #0c0c0c;
    color: var(--white);
}

.footer-container {
    width: min(100%, var(--container));
    margin: 0 auto 70px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}


.footer-brand p {
    max-width: 320px;
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.5);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 13px;

    color: var(--gold-light);

    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.9rem;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding-top: 25px;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    color: rgba(255, 255, 255, 0.38);
    font-size: 0.72rem;
}


/* =========================================================
   MOBILE STICKY ORDER
========================================================= */

.mobile-sticky-order {
    display: none;
}

/* =========================
   EL REY LOGO
========================= */

.brand-logo {
    display: block;
    width: auto;
    height: 72px;
    object-fit: contain;
}

/* =========================
   FOOTER LOGO
========================= */

.footer-logo-image {
    width: auto;
    height: 100px;
    object-fit: contain;
    object-position: left center;
}

/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    width: 44px;
    height: 44px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    flex-shrink: 0;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(201, 163, 90, 0.7);
}

.menu-toggle span {
    width: 19px;
    height: 1.5px;

    display: block;

    background: var(--white);
    border-radius: 999px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        width 0.3s ease;
}

.menu-toggle span:nth-child(2) {
    width: 14px;
    margin-left: 5px;
}

.menu-toggle.active span:nth-child(1) {
    width: 19px;
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(8px);
}

.menu-toggle.active span:nth-child(3) {
    width: 19px;
    transform: translateY(-6.5px) rotate(-45deg);
}

/* =========================================================
   FINAL MOBILE NAV OVERRIDE
   KEEP THIS AT THE VERY BOTTOM
========================================================= */

/* DESKTOP: completely hide mobile navigation */
.mobile-menu {
    display: none !important;
}
/* =========================================================
   EL REY
   MENU PAGE
========================================================= */

.restaurant-menu {
    background: #f6f0e7;
}

.menu-wrapper {
    width: min(90%, 1200px);
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.menu-hero {
    min-height: 720px;

    padding:
        calc(var(--header-height) + 90px)
        7%
        90px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: white;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.96) 0%,
            rgba(8, 8, 8, 0.82) 42%,
            rgba(35, 12, 16, 0.62) 100%
        ),
        url("images/menu/hero-food.jpg");

    background-size: cover;
    background-position: center;
}

.menu-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.45),
            transparent 40%
        );
}

.menu-hero-content {
    width: min(1200px, 100%);

    margin: 0 auto;

    position: relative;
    z-index: 2;
}

.menu-kicker {
    color: var(--gold-light);

    font-size: .72rem;
    font-weight: 700;

    letter-spacing: .23em;

    text-transform: uppercase;
}

.menu-hero h1 {
    margin-top: 20px;

    max-width: 800px;

    font-family: var(--serif);

    font-size:
        clamp(5rem, 10vw, 9rem);

    font-weight: 500;

    line-height: .88;

    letter-spacing: -.05em;
}

.menu-hero h1 span {
    display: block;

    color: var(--gold-light);

    font-style: italic;
}

.menu-hero-description {
    max-width: 560px;

    margin-top: 32px;

    color:
        rgba(255,255,255,.68);

    font-size: 1.05rem;

    line-height: 1.8;
}

.menu-hero-buttons {
    margin-top: 35px;

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.menu-hero-word {
    position: absolute;

    right: -2vw;
    bottom: -75px;

    color:
        rgba(255,255,255,.025);

    font-family: var(--serif);

    font-size:
        clamp(14rem, 30vw, 30rem);

    font-weight: 700;

    user-select: none;
}


/* =========================================================
   CATEGORY BAR
========================================================= */

.food-category-nav {
    position: sticky;

    top: var(--header-height);

    z-index: 800;

    background:
        rgba(246,240,231,.97);

    border-bottom:
        1px solid rgba(0,0,0,.08);

    backdrop-filter: blur(16px);
}

.food-category-inner {
    width: min(95%, 1250px);

    margin: auto;

    display: flex;

    overflow-x: auto;

    scrollbar-width: none;
}

.food-category-inner::-webkit-scrollbar {
    display: none;
}

.food-category-inner a {
    padding: 18px 20px;

    flex-shrink: 0;

    color: #615b54;

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    transition:
        color .25s ease,
        background .25s ease;
}

.food-category-inner a:hover {
    color: var(--wine);

    background:
        rgba(124,31,45,.05);
}


/* =========================================================
   INTRO
========================================================= */

.menu-intro {
    padding: 100px 0 60px;

    background: #f6f0e7;
}

.menu-intro-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: end;
}

.menu-intro h2 {
    margin-top: 12px;

    font-family: var(--serif);

    font-size:
        clamp(3.5rem, 6vw, 5.8rem);

    font-weight: 500;

    line-height: .98;
}

.menu-intro h2 span {
    display: block;

    color: var(--wine);

    font-style: italic;
}

.menu-intro-text {
    max-width: 520px;

    color: var(--gray);

    line-height: 1.8;
}


/* SEARCH */

.menu-search {
    width: 100%;

    max-width: 480px;

    height: 58px;

    margin-top: 30px;

    padding: 0 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: white;

    border:
        1px solid rgba(0,0,0,.1);
}

.menu-search svg {
    width: 20px;
    height: 20px;

    flex-shrink: 0;

    fill: none;

    stroke: var(--wine);

    stroke-width: 1.8;
}

.menu-search input {
    width: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    color: var(--dark);
}


/* =========================================================
   SHARED MENU SECTION
========================================================= */

.menu-food-section {
    padding: 95px 0;

    scroll-margin-top: 140px;

    background: #f6f0e7;
}

.alternate-menu {
    background: #ece2d4;
}

.menu-section-heading {
    margin-bottom: 48px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;
}

.menu-section-heading h2 {
    margin-top: 10px;

    font-family: var(--serif);

    font-size:
        clamp(3.2rem, 6vw, 5rem);

    font-weight: 500;

    line-height: 1;
}

.menu-section-heading > p {
    max-width: 400px;

    color: var(--gray);

    line-height: 1.75;
}


/* =========================================================
   PHOTO CARDS
========================================================= */

.favorites-section {
    background: #fff;
}

.photo-food-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.photo-food-card {
    overflow: hidden;

    background: #f7f2ea;

    border:
        1px solid rgba(0,0,0,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.photo-food-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 25px 55px
        rgba(0,0,0,.11);
}

.photo-food-image {
    height: 285px;

    position: relative;

    background-size: cover;

    background-position: center;

    transition:
        transform .45s ease;
}

.photo-food-card:hover
.photo-food-image {
    transform: scale(1.025);
}

.photo-label {
    position: absolute;

    left: 18px;
    top: 18px;

    padding: 8px 11px;

    background: var(--wine);

    color: white;

    font-size: .56rem;

    font-weight: 700;

    letter-spacing: .12em;
}

.photo-food-content {
    padding: 28px;
}

.food-type {
    color: var(--wine);

    font-size: .6rem;

    font-weight: 700;

    letter-spacing: .14em;
}

.photo-food-content h3 {
    margin-top: 17px;

    font-family: var(--serif);

    font-size: 1.85rem;

    font-weight: 500;
}

.photo-food-content p {
    min-height: 73px;

    margin-top: 12px;

    color: var(--gray);

    font-size: .9rem;

    line-height: 1.65;
}

.photo-food-bottom {
    margin-top: 25px;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top:
        1px solid rgba(0,0,0,.1);
}

.photo-food-bottom strong {
    color: var(--wine);

    font-family: var(--serif);

    font-size: 1.3rem;
}

.photo-food-bottom a {
    font-size: .68rem;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* =========================================================
   STANDARD MENU ITEMS
========================================================= */

.classic-menu-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    column-gap: 70px;
}

.classic-food {
    min-height: 140px;

    padding: 26px 0;

    display: flex;

    justify-content: space-between;

    gap: 35px;

    border-top:
        1px solid rgba(0,0,0,.12);
}

.classic-food h3 {
    font-family: var(--serif);

    font-size: 1.45rem;

    font-weight: 600;
}

.classic-food p {
    max-width: 420px;

    margin-top: 8px;

    color: var(--gray);

    font-size: .9rem;

    line-height: 1.65;
}

.classic-food strong {
    flex-shrink: 0;

    color: var(--wine);

    font-family: var(--serif);

    font-size: 1.1rem;
}


/* =========================================================
   DARK CHIFA SECTION
========================================================= */

.dark-menu {
    background: #111;

    color: white;
}

.dark-menu .menu-section-heading > p {
    color:
        rgba(255,255,255,.5);
}

.dark-menu .classic-food {
    border-color:
        rgba(255,255,255,.12);
}

.dark-menu .classic-food p {
    color:
        rgba(255,255,255,.5);
}

.dark-menu .classic-food strong {
    color: var(--gold-light);
}


/* =========================================================
   CHICKEN
========================================================= */

.chicken-menu {
    background:
        linear-gradient(
            135deg,
            #f7efe4,
            #e7d7c1
        );
}

.chicken-menu-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.chicken-option {
    min-height: 300px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    background: var(--wine-dark);

    color: white;
}

.chicken-option > span {
    color: var(--gold-light);

    font-size: .58rem;

    font-weight: 700;

    letter-spacing: .13em;
}

.chicken-option h3 {
    margin-top: 35px;

    font-family: var(--serif);

    font-size: 1.75rem;

    font-weight: 500;
}

.chicken-option p {
    margin-top: 15px;

    flex: 1;

    color:
        rgba(255,255,255,.55);

    line-height: 1.65;
}

.chicken-option strong {
    margin-top: 25px;

    color: var(--gold-light);

    font-family: var(--serif);

    font-size: 1.35rem;
}


/* =========================================================
   MINI MENU
========================================================= */

.mini-menu-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 1px;

    background:
        rgba(0,0,0,.1);
}

.mini-food {
    min-height: 145px;

    padding: 24px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: #f7f1e8;
}

.mini-food span {
    font-family: var(--serif);

    font-size: 1.25rem;
}

.mini-food strong {
    color: var(--wine);

    font-family: var(--serif);

    font-size: 1.15rem;
}


/* =========================================================
   LIVE ORDER NOTICE
========================================================= */

.live-menu-notice {
    margin-top: 35px;

    padding: 25px 0;

    display: flex;

    justify-content: space-between;

    gap: 25px;

    border-top:
        1px solid rgba(0,0,0,.12);

    border-bottom:
        1px solid rgba(0,0,0,.12);
}

.live-menu-notice p {
    color: var(--gray);
}

.live-menu-notice a {
    flex-shrink: 0;

    color: var(--wine);

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* =========================================================
   FINAL CTA
========================================================= */

.menu-final-cta {
    padding:
        100px
        max(
            6%,
            calc(
                (100vw - 1200px) / 2
            )
        );

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 60px;

    background:
        linear-gradient(
            120deg,
            #451019,
            #7c1f2d
        );

    color: white;
}

.menu-final-cta h2 {
    margin-top: 12px;

    font-family: var(--serif);

    font-size:
        clamp(3.4rem, 6vw, 5.5rem);

    font-weight: 500;

    line-height: .98;
}

.menu-final-cta h2 span {
    display: block;

    color: var(--gold-light);

    font-style: italic;
}

.menu-final-cta > div > p:last-child {
    margin-top: 20px;

    color:
        rgba(255,255,255,.6);
}


/* =========================================================
   DISCLAIMER
========================================================= */

.menu-disclaimer {
    padding: 22px 6%;

    text-align: center;

    background: #e6dbcb;

    color: #756f67;

    font-size: .72rem;
}


/* =========================================================
   SEARCH
========================================================= */

.search-hidden {
    display: none !important;
}

.search-section-hidden {
    display: none !important;
}

.menu-empty {
    display: none;

    padding: 100px 6%;

    text-align: center;
}

.menu-empty.show {
    display: block;
}

.menu-empty h3 {
    font-family: var(--serif);

    font-size: 2.5rem;

    font-weight: 500;
}

.menu-empty p {
    margin-top: 10px;

    color: var(--gray);
}

/* =========================================================
   HOMEPAGE STORY BOOK
========================================================= */

.home-story-book-section {
    padding: 110px 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #efe5d8,
            #f8f2e9
        );
}

.home-story-book-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;
}

.home-story-copy {
    max-width: 560px;
}

.home-story-copy .section-title {
    margin-top: 14px;
}

.home-story-copy .section-title span {
    display: block;

    color: var(--wine);

    font-style: italic;
}

.home-story-copy > p:not(.section-label) {
    margin-top: 24px;

    color: var(--gray);

    line-height: 1.8;
}

.home-story-hint {
    margin-top: 25px !important;

    color: var(--wine) !important;

    font-size: .7rem;

    font-weight: 700;

    letter-spacing: .11em;

    text-transform: uppercase;
}


/* BOOK WRAPPER */

.story-book-wrap {
    display: flex;

    justify-content: center;

    perspective: 1500px;
}


/* BOOK */

.story-book {
    width: 240px;
    height: 325px;

    padding: 0;

    position: relative;

    border: 0;

    background: transparent;

    cursor: pointer;

    perspective: 1500px;

    transform-style: preserve-3d;

    transition:
        transform .3s ease;
}


/* BACK */

.book-back {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            145deg,
            #4e111b,
            #731c2a
        );

    border-radius:
        4px 12px 12px 4px;

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.28);

    transform:
        translateZ(-10px);
}


/* PAGES */

.book-pages {
    position: absolute;

    top: 9px;
    right: 5px;
    bottom: 9px;
    left: 12px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #ddd0bd,
            #fffaf0 7%,
            #f1e4d2 96%
        );

    border-radius:
        2px 9px 9px 2px;
}

.book-page-lines {
    position: absolute;

    top: 55px;
    left: 30px;
    right: 30px;

    height: 160px;

    opacity: .3;

    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 14px,
            #8a7969 15px,
            transparent 16px
        );
}


/* COVER */

.book-cover {
    position: absolute;

    inset: 0;

    z-index: 5;

    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(201,163,90,.2),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #851f31,
            #4e111b
        );

    color: #ffffff;

    border-left:
        9px solid #3d0c14;

    border-radius:
        4px 12px 12px 4px;

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.35);

    transform-origin:
        left center;

    transform-style:
        preserve-3d;

    transition:
        transform 1s
        cubic-bezier(.65,.05,.36,1);
}


/* COVER BORDER */

.book-cover-border {
    position: absolute;

    inset: 15px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(220,184,105,.78);

    text-align: center;
}

.book-small-text {
    color: var(--gold-light);

    font-size: .55rem;

    font-weight: 700;

    letter-spacing: .22em;
}

.book-crown {
    margin-top: 22px;

    color: var(--gold-light);

    font-size: 2.2rem;
}

.book-cover h3 {
    margin-top: 14px;

    font-family: var(--serif);

    font-size: 2.4rem;

    font-weight: 500;

    line-height: .95;
}

.book-cover p {
    margin-top: 16px;

    color:
        rgba(255,255,255,.6);

    font-size: .6rem;

    letter-spacing: .08em;
}

.book-open-text {
    margin-top: 32px;

    color: var(--gold-light);

    font-size: .52rem;

    font-weight: 700;

    letter-spacing: .16em;
}


/* HOVER */

.story-book:hover {
    transform:
        translateY(-7px)
        rotateX(2deg);
}

.story-book:hover .book-cover {
    transform:
        rotateY(-15deg);
}


/* OPEN */

.story-book.open .book-cover {
    transform:
        rotateY(-158deg);
}

.story-book.open {
    animation:
        homeBookLift
        .9s ease forwards;
}

@keyframes homeBookLift {

    0% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-15px)
            scale(1.03);
    }

    100% {
        transform:
            translateY(0)
            scale(1);
    }

}
/* ==========================================================
   EL REY REWARDS
========================================================== */

.nav-rewards-button {
    height: 46px;
    padding: 0 22px;

    border: 1px solid rgba(201, 163, 90, .65);
    background: transparent;

    color: #c9a35a;

    font-family: "DM Sans", sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;

    cursor: pointer;

    transition: .25s ease;
}

.nav-rewards-button:hover {
    background: #c9a35a;
    color: #17100d;
}


/* MODAL */

.rewards-modal {
    position: fixed;
    inset: 0;

    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


/* THIS IS WHAT MAKES IT APPEAR */

.rewards-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.rewards-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(5, 3, 3, .82);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.rewards-modal-card {
    width: min(100%, 520px);
    max-height: 90vh;

    position: relative;
    z-index: 2;

    overflow-y: auto;

    padding: 48px 45px 38px;

    border: 1px solid rgba(201, 163, 90, .25);

    background:
        radial-gradient(
            circle at top right,
            rgba(124, 31, 45, .35),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #170b0e,
            #250d13
        );

    color: #ffffff;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, .55);

    transform: translateY(20px) scale(.97);

    transition: transform .3s ease;
}


.rewards-modal.open .rewards-modal-card {
    transform: translateY(0) scale(1);
}


.rewards-close {
    width: 42px;
    height: 42px;

    position: absolute;
    top: 15px;
    right: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;

    background: rgba(255,255,255,.04);

    color: #ffffff;

    font-size: 1.5rem;
    line-height: 1;

    cursor: pointer;

    transition: .2s ease;
}


.rewards-close:hover {
    border-color: #c9a35a;
    color: #c9a35a;
}


.rewards-modal-header {
    margin-bottom: 30px;
}


.rewards-crown {
    margin-bottom: 12px;

    display: block;

    color: #c9a35a;

    font-size: 2rem;
}


.rewards-modal-header h2 {
    margin: 10px 0 14px;

    font-family: "Playfair Display", serif;
    font-size: 2.7rem;
    font-weight: 500;
    line-height: 1.05;
}


.rewards-modal-header h2 span {
    color: #d6ae62;
    font-style: italic;
}


.rewards-modal-header > p:last-child {
    max-width: 420px;

    color: rgba(255,255,255,.58);

    font-size: .78rem;
    line-height: 1.7;
}


/* FORM */

.rewards-field {
    margin-bottom: 18px;
}


.rewards-field label {
    margin-bottom: 8px;

    display: block;

    color: rgba(255,255,255,.68);

    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}


.rewards-field input {
    width: 100%;
    height: 52px;

    padding: 0 15px;

    border: 1px solid rgba(255,255,255,.13);
    outline: none;

    background: rgba(255,255,255,.05);

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    transition: .2s ease;
}


.rewards-field input:focus {
    border-color: #c9a35a;
    background: rgba(255,255,255,.07);
}


.rewards-field input::placeholder {
    color: rgba(255,255,255,.28);
}


/* CONSENT */

.rewards-consent {
    margin: 23px 0;

    display: flex;
    align-items: flex-start;
    gap: 11px;

    cursor: pointer;
}


.rewards-consent input {
    width: 17px;
    height: 17px;

    margin-top: 2px;

    accent-color: #7c1f2d;

    flex-shrink: 0;
}


.rewards-consent span {
    color: rgba(255,255,255,.55);

    font-size: .68rem;
    line-height: 1.55;
}


/* SUBMIT */

.rewards-submit {
    width: 100%;
    height: 55px;

    border: 0;

    background: #7c1f2d;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;

    cursor: pointer;

    transition: .25s ease;
}


.rewards-submit:hover {
    background: #941f32;
}


.rewards-privacy {
    margin: 15px 0 0;

    color: rgba(255,255,255,.32);

    font-size: .6rem;

    text-align: center;
}


/* Stop page from scrolling behind popup */

body.rewards-open {
    overflow: hidden;
}
/* =========================================
   MOBILE REWARDS BUTTON
========================================= */

.mobile-rewards-button {
    width: 100%;
    margin-top: 8px;
    padding: 14px 18px;

    border: 1px solid rgba(201, 163, 90, .55);

    background: #7c1f2d;
    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: .72rem;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;

    cursor: pointer;
}

.mobile-rewards-button:hover {
    background: #941f32;
}

@media (min-width: 721px) {
    .mobile-rewards-button {
        display: none;
    }
}


/* MOBILE */

@media (max-width: 720px) {

    .rewards-modal {
        padding: 15px;
    }

    .rewards-modal-card {
        padding: 42px 25px 30px;
    }

    .rewards-modal-header h2 {
        font-size: 2.15rem;
    }

    .nav-rewards-button {
        display: none;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .home-story-book-section {
        padding: 80px 0;
    }

    .home-story-book-grid {
        grid-template-columns: 1fr;

        gap: 55px;

        text-align: center;
    }

    .home-story-copy {
        margin: 0 auto;
    }

    .story-book {
        width: 185px;
        height: 250px;
    }

    .book-cover h3 {
        font-size: 1.8rem;
    }

    .book-crown {
        margin-top: 15px;

        font-size: 1.6rem;
    }

    .book-open-text {
        margin-top: 20px;
    }

}
/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .photo-food-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .chicken-menu-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .mini-menu-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* =========================================================
   PHONE
========================================================= */

@media (max-width: 720px) {
    .andes-scene {
        width: 130vw;
        height: 42vh;

        right: -60vw;
        bottom: 0;

        opacity: .55;
    }

    .andes-layer {
        transition: none;
    }

    .andes-scene::after {
        width: 250px;
        height: 250px;
    }
    .menu-hero {
        min-height: 650px;

        padding:
            calc(
                var(--header-height)
                + 80px
            )
            6%
            80px;

        background-position: center;
    }
    .hero-crown-scene {
        width: 230px;
        height: 210px;

        right: -65px;
        top: 20%;

        opacity: .42;
    }

    .crown-3d {
        width: 155px;
        height: 115px;
    }

    .crown-top {
        height: 85px;
    }

    .crown-band {
        height: 38px;
    }

    .crown-band span {
        width: 8px;
        height: 8px;
    }

    .crown-glow {
        width: 190px;
        height: 190px;
    }

    .menu-hero h1 {
        font-size:
            clamp(
                4.2rem,
                20vw,
                6rem
            );
    }

    .menu-hero-buttons {
        flex-direction: column;
    }

    .menu-hero-buttons .btn {
        width: 100%;
    }


    /* CATEGORY */

    .food-category-inner {
        width: 100%;
    }

    .food-category-inner a {
        padding: 16px 17px;
    }


    /* INTRO */

    .menu-intro {
        padding: 75px 0 45px;
    }

    .menu-intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .menu-search {
        max-width: none;
    }


    /* SECTIONS */

    .menu-food-section {
        padding: 70px 0;

        scroll-margin-top: 130px;
    }

    .menu-section-heading {
        margin-bottom: 35px;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }


    /* PHOTOS */

    .photo-food-grid {
        grid-template-columns: 1fr;
    }

    .photo-food-image {
        height: 270px;
    }

    .photo-food-content p {
        min-height: auto;
    }


    /* STANDARD MENU */

    .classic-menu-grid {
        grid-template-columns: 1fr;
    }

    .classic-food {
        min-height: auto;

        gap: 15px;

        padding: 23px 0;
    }


    /* CHICKEN */

    .chicken-menu-grid {
        grid-template-columns: 1fr;
    }

    .chicken-option {
        min-height: 240px;
    }


    /* MINI */

    .mini-menu-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* NOTICE */

    .live-menu-notice {
        flex-direction: column;
    }


    /* CTA */

    .menu-final-cta {
        padding: 75px 6%;

        flex-direction: column;

        align-items: flex-start;
    }

    .menu-final-cta .btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 430px) {

    .mini-menu-grid {
        grid-template-columns: 1fr;
    }

}
/* TABLET + PHONE */
@media (max-width: 1050px) {

    .desktop-nav {
        display: none !important;
    }

    .menu-toggle {
        width: 44px !important;
        height: 44px !important;

        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        gap: 5px;

        position: relative;
        z-index: 3001;

        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 50%;

        background: rgba(255, 255, 255, 0.05);

        cursor: pointer;
    }

    .menu-toggle span {
        width: 19px;
        height: 1.5px;

        display: block;

        background: #ffffff;
        border-radius: 50px;

        transition: 0.3s ease;
    }

    .menu-toggle span:nth-child(2) {
        width: 14px;
        margin-left: 5px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }


    .mobile-menu {
        display: flex !important;

        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;

        width: 100%;

        padding: 25px 6% 35px;

        flex-direction: column;

        background: rgba(12, 12, 12, 0.98);
        backdrop-filter: blur(18px);

        border-top: 1px solid rgba(255, 255, 255, 0.08);

        z-index: 3000;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        pointer-events: none;

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }

    .mobile-menu > a:not(.mobile-order-button) {
        padding: 17px 0;

        color: #ffffff;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

        font-family: var(--serif);
        font-size: 1.35rem;
    }

    .mobile-order-button {
        min-height: 52px;

        margin-top: 22px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: var(--wine);
        color: #ffffff;

        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }
}

@media (max-width: 1050px) {

    .site-header {
        overflow: visible;
    }
    .mobile-menu {
        display: none;
    }
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 2002;
    }

    .mobile-menu {
        position: fixed;

        top: var(--header-height);
        left: 0;
        right: 0;

        width: 100%;
        max-height: calc(100vh - var(--header-height));

        padding: 22px 6% 32px;

        display: flex;
        flex-direction: column;

        overflow-y: auto;

        background: rgba(14, 14, 14, 0.98);
        backdrop-filter: blur(18px);

        border-top: 1px solid rgba(255, 255, 255, 0.08);

        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);

        pointer-events: none;

        z-index: 2000;

        transition:
            opacity 0.28s ease,
            transform 0.28s ease,
            visibility 0.28s ease;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);

        pointer-events: auto;
    }

    .mobile-menu > a:not(.mobile-order-button) {
        padding: 17px 2px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

        color: rgba(255, 255, 255, 0.9);

        font-family: var(--serif);
        font-size: 1.35rem;
        font-weight: 500;

        transition:
            color 0.25s ease,
            padding-left 0.25s ease;
    }

    .mobile-menu > a:not(.mobile-order-button):hover {
        color: var(--gold-light);
        padding-left: 6px;
    }

    .mobile-order-button {
        min-height: 52px;
        margin-top: 22px;

        display: flex;
        align-items: center;
        justify-content: center;

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

        border: 1px solid rgba(255, 255, 255, 0.08);

        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;

        transition:
            background 0.25s ease,
            transform 0.25s ease;
    }

    .mobile-order-button:hover {
        background: var(--wine-light);
        transform: translateY(-2px);
    }
}
@media (max-width: 720px) {
    .footer-logo-image {
        height: 85px;
    }
}

/* Tablet */
@media (max-width: 1050px) {
    .brand-logo {
        height: 66px;
    }
}

/* Phones */
@media (max-width: 720px) {
    .brand-logo {
        height: 58px;
    }
}

/* Small phones */
@media (max-width: 420px) {
    .brand-logo {
        height: 52px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .intro-grid {
        gap: 50px;
    }

    .dish-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dish-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 12px);
        width: 100%;
        margin: 0 auto;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 550px;
    }

    .about-content {
        max-width: none;
        padding: 90px 7%;
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .review-card:last-child {
        grid-column: 1 / -1;
    }

    .location-section {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 80px 7%;
    }

    .map-placeholder {
        min-height: 500px;
    }

    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {
    .experience-flag {
        width: 85%;
        height: 100%;

        right: -48%;
        top: 0;

        opacity: .32;

        transform:
            perspective(800px)
            rotateY(-5deg)
            rotateZ(1deg);
    }

    .flag-emblem span {
        font-size: 3rem;
    }

    .experience-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.55),
                rgba(0,0,0,.35)
            );
    }
    :root {
        --header-height: 76px;
    }

    body {
        padding-bottom: 62px;
    }

    .site-header {
        background: rgba(17, 17, 17, 0.88);
        backdrop-filter: blur(12px);
    }

    .nav-container {
        width: 90%;
    }

    .order-button {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: 92vh;
        padding:
            calc(var(--header-height) + 65px)
            6%
            70px;

        background:
            linear-gradient(
                rgba(10, 10, 10, 0.75),
                rgba(10, 10, 10, 0.88)
            ),
            radial-gradient(
                circle at 70% 30%,
                #72303a,
                #151010 70%
            );
    }

    .hero h1 {
        font-size: clamp(3.6rem, 16vw, 5.4rem);
        line-height: 0.94;
    }

    .hero-description {
        margin-top: 25px;
        font-size: 0.97rem;
        line-height: 1.7;
    }

    .hero-buttons {
        margin-top: 30px;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-scroll {
        display: none;
    }


    /* SECTIONS */

    .intro-section,
    .signature-section,
    .reviews-section {
        padding: 85px 0;
    }

    .section-heading.centered {
        margin-bottom: 42px;
    }

    .section-title {
        font-size: clamp(2.6rem, 12vw, 3.8rem);
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .dish-grid {
        grid-template-columns: 1fr;
    }

    .dish-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .dish-image {
        height: 320px;
    }

    .dish-content {
        padding: 25px;
    }

    .dish-content p {
        min-height: auto;
    }


    /* ABOUT */

    .about-section {
        min-height: auto;
    }

    .about-image {
        min-height: 420px;
    }

    .about-content {
        padding: 75px 6%;
    }

    .about-content .btn {
        width: 100%;
    }


    /* EXPERIENCE */

    .experience-section {
        min-height: 650px;
        padding: 80px 6%;
    }

    .experience-content h2 {
        font-size: clamp(3.7rem, 17vw, 5.5rem);
    }


    /* VALUES */

    .values-section {
        padding: 70px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-item,
    .value-item:first-child {
        min-height: auto;
        padding: 35px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .value-item:last-child {
        border-bottom: 0;
    }

    .value-item h3 {
        margin-top: 20px;
    }


    /* REVIEWS */

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card:last-child {
        grid-column: auto;
    }

    .review-card {
        min-height: 270px;
        padding: 30px;
    }


    /* LOCATION */

    .location-info {
        padding: 70px 6%;
    }

    .map-placeholder {
        min-height: 400px;
    }


    /* CTA */

    .cta-section {
        padding: 70px 6%;

        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .cta-section .btn {
        width: 100%;
    }


    /* FOOTER */

    .site-footer {
        padding: 65px 6% 25px;
    }

    .footer-container {
        margin-bottom: 50px;

        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }


    /* STICKY ORDER BUTTON */

    .mobile-sticky-order {
        height: 62px;

        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;

        display: flex;
        align-items: center;
        justify-content: center;

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

        box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);

        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero h1 {
        font-size: 3.55rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-column:last-child {
        grid-column: auto;
    }
}