/* ===================================================================
   MY TACO — Premium Taqueria Theme v3
   Palette: Black, Orange, Green, Cream
   Textures + Splide + Marquee + GSAP + Cart Drawer + Stickers
   =================================================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #101010;
    color: #F4F4F4;
    overflow-x: hidden;
}

/* Global black texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: url('assets/media/textures/black background texture.webp') center/cover;
    opacity: .08;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Max-width wrapper for ultra-wide screens ---------- */
.hero,
.section-dark,
.parallax-section,
.location-section,
.site-footer {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all .3s;
    font-size: .95rem;
    padding: 12px 32px;
    border-radius: 6px;
}

.btn-primary {
    background: url('assets/media/textures/orange-yellow background texture .webp') center/cover, #E59C2C;
    background-blend-mode: multiply;
    color: #101010;
    font-weight: 700;
}

.btn-primary:hover {
    background: url('assets/media/textures/orange-yellow background texture .webp') center/cover, #D98613;
    background-blend-mode: multiply;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229, 156, 44, .35);
}

.btn-outline {
    background: transparent;
    color: #F4F4F4;
    border: 2px solid rgba(244, 244, 244, .4);
}

.btn-outline:hover {
    background: url('assets/media/textures/green background texture.webp') center/cover, #3A7D44;
    background-blend-mode: multiply;
    color: #F4F4F4;
    border-color: #3A7D44;
}

.btn-lg {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: .82rem;
    border-radius: 4px;
}

.btn-sticker {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* ---------- GSAP Scroll Animations ---------- */
[data-animate] {
    opacity: 0;
}

[data-animate="fade-up"] {
    transform: translateY(50px);
}

[data-animate="fade-left"] {
    transform: translateX(60px);
}

[data-animate="fade-right"] {
    transform: translateX(-60px);
}

/* ---------- Section Helpers ---------- */
.section-dark {
    position: relative;
    background: rgba(10, 10, 10, .55);
    padding: 100px 0;
    overflow: hidden;
}

/* Subtle top/bottom gradient vignettes on sections */
.section-dark::before,
.section-dark::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    z-index: 1;
}

.section-dark::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, .7), transparent);
}

.section-dark::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, .7), transparent);
}

.section-orange {
    position: relative;
    background: url('assets/media/textures/orange-yellow background texture .webp') center/cover, #E59C2C;
    background-blend-mode: soft-light;
    padding: 100px 0;
    overflow: hidden;
    color: #101010;
}

.section-orange::before,
.section-orange::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    z-index: 1;
}

.section-orange::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, .7), transparent);
}

.section-orange::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, .7), transparent);
}

.section-orange .section-sub,
.section-orange .about-text p {
    color: #333;
}

.section-orange .section-title,
.section-orange .highlight {
    color: #101010;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4);
}

.section-orange .section-tag {
    color: #101010;
}

.section-orange .about-splide .splide__pagination__page {
    background: rgba(0, 0, 0, .3);
}

.section-orange .about-splide .splide__pagination__page.is-active {
    background: #101010;
}

.section-orange .promo-card {
    background: rgba(0, 0, 0, .08);
    border-color: rgba(0, 0, 0, .15);
}

.section-orange .promo-label {
    color: #C53024;
}

.section-green {
    position: relative;
    background: url('assets/media/textures/green background texture.webp') center/cover, #7FB64B;
    background-blend-mode: overlay;
    padding: 100px 0;
    overflow: hidden;
    color: #101010;
}

.section-green::before,
.section-green::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    z-index: 1;
}

.section-green::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, .7), transparent);
}

.section-green::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, .7), transparent);
}

.section-green .section-sub {
    color: #333;
}

.section-green .section-title,
.section-green .highlight {
    color: #101010;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4);
}

.section-green .section-tag {
    color: #101010;
}

.section-tag {
    font-family: 'Bebas Neue', sans-serif;
    color: #E59C2C;
    letter-spacing: 3px;
    font-size: .85rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 16px;
}

.highlight {
    color: #E59C2C;
}

.section-sub {
    color: #bbb;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 56px;
}

/* ---------- Overlay ---------- */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 1400;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition: opacity .35s, visibility .35s, backdrop-filter .35s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: background .35s, padding .35s, backdrop-filter .35s;
}

.navbar.scrolled {
    background: rgba(16, 16, 16, .92);
    backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    height: 44px;
    --logo-scale: 2;
    transform: scale(var(--logo-scale));
    transform-origin: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .95rem;
    letter-spacing: 1.5px;
    color: #F4F4F4;
    transition: color .3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #E59C2C;
}

.nav-menu-close,
.nav-menu-sticker {
    display: none;
}

.nav-menu-marquee {
    display: none;
}

.nav-menu-cta {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-menu .fab-menu,
.page-menu .nav-order-btn {
    display: none !important;
}

.nav-order-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: transform .2s ease;
}

.nav-order-btn:hover {
    transform: scale(1.12);
}

.nav-order-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4));
    transition: filter .2s ease;
}

.nav-order-btn:hover .nav-order-icon {
    filter: drop-shadow(0 3px 10px rgba(229, 156, 44, .55));
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #F4F4F4;
    border-radius: 2px;
    transition: all .3s;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Close Button (shared) ---------- */
.customize-close {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: -40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #999;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all .3s;
    line-height: 1;
    z-index: 10;
}

.customize-close:hover {
    color: #F4F4F4;
    background: rgba(255, 255, 255, .1);
}

/* ---------- Floating Decoration Stickers ---------- */
.deco-sticker {
    position: absolute;
    pointer-events: none;
    opacity: .12;
    z-index: 1;
    will-change: transform;
}

.ds-hero-1 {
    top: 18%;
    left: 3%;
    width: 90px;
    transform: rotate(-15deg);
}

.ds-hero-2 {
    bottom: 12%;
    left: 8%;
    width: 70px;
    transform: rotate(10deg);
}

.ds-hero-3 {
    top: 25%;
    right: 42%;
    width: 60px;
    transform: rotate(20deg);
}

.ds-about-1 {
    top: 8%;
    right: 5%;
    width: 100px;
    transform: rotate(12deg);
}

.ds-about-2 {
    bottom: 10%;
    left: 3%;
    width: 70px;
    transform: rotate(-20deg);
}

.ds-about-3 {
    bottom: 5%;
    right: 40%;
    width: 80px;
    transform: rotate(8deg);
}

.ds-menu-1 {
    top: 5%;
    left: 3%;
    width: 80px;
    transform: rotate(-10deg);
}

.ds-menu-2 {
    top: 15%;
    right: 4%;
    width: 100px;
    transform: rotate(15deg);
}

.ds-menu-3 {
    bottom: 8%;
    left: 5%;
    width: 70px;
    transform: rotate(25deg);
}

.ds-menu-4 {
    bottom: 12%;
    right: 6%;
    width: 85px;
    transform: rotate(-12deg);
}

.ds-gallery-1 {
    top: 6%;
    right: 4%;
    width: 80px;
    transform: rotate(18deg);
}

.ds-gallery-2 {
    bottom: 8%;
    left: 3%;
    width: 100px;
    transform: rotate(-8deg);
}

.ds-reviews-1 {
    top: 10%;
    left: 4%;
    width: 70px;
    transform: rotate(-15deg);
}

.ds-reviews-2 {
    bottom: 12%;
    right: 5%;
    width: 90px;
    transform: rotate(10deg);
}

.ds-reviews-3 {
    top: 20%;
    right: 3%;
    width: 50px;
    transform: rotate(22deg);
}

.ds-loc-1 {
    top: 8%;
    right: 5%;
    width: 75px;
    transform: rotate(14deg);
}

.ds-loc-2 {
    bottom: 10%;
    left: 4%;
    width: 65px;
    transform: rotate(-18deg);
}

.ds-parallax-1 {
    bottom: 15%;
    right: 6%;
    width: 100px;
    transform: rotate(10deg);
    opacity: .15;
    z-index: 3;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 120px 48px 80px;
    background: transparent;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(229, 156, 44, .12) 0%, transparent 60%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 16, 16, .55) 30%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    flex-shrink: 0;
}

.hero-tagline {
    font-family: 'Bebas Neue', sans-serif;
    color: #E59C2C;
    letter-spacing: 4px;
    font-size: .9rem;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-sub {
    color: #bbb;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-img-wrap {
    position: relative;
    flex-shrink: 0;
    z-index: 2;
    width: 440px;
    height: 440px;
}

.hero-dish-ring {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(229, 156, 44, .3);
    box-shadow: 0 0 80px rgba(229, 156, 44, .15);
}

/* Hero Splide inside dish ring */
.hero-splide,
.hero-splide .splide__track,
.hero-splide .splide__list,
.hero-splide .splide__slide {
    width: 100%;
    height: 100%;
}

.hero-splide .splide__arrow,
.hero-splide .splide__pagination {
    display: none;
}

.hero-dish-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-pepper {
    position: absolute;
    top: -40px;
    left: -30px;
    width: 140px;
    z-index: 3;
}

.hero-sticker {
    position: absolute;
    z-index: 3;
    width: 80px;
    pointer-events: none;
}

.hs-1 {
    bottom: 20px;
    left: 0;
}

.hs-2 {
    top: 10px;
    right: 0;
    width: 60px;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll-cue span {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    font-size: .75rem;
    color: #888;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, #E59C2C, transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}

/* Float animation */
.float-anim {
    animation: floatY 4s ease-in-out infinite;
}

.float-anim-delay {
    animation: floatY 4s ease-in-out 1s infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ---------- Marquee Strips ---------- */
.marquee-strip {
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
    position: relative;
}

.marquee-orange {
    background: #E59C2C url('assets/media/textures/orange-yellow background texture .webp') center/cover;
    background-blend-mode: multiply;
    color: #101010;
}

.marquee-green {
    background: #5FA63C url('assets/media/textures/green background texture.webp') center/cover;
    background-blend-mode: multiply;
    color: #101010;
}

.marquee-dark {
    background:
        url('assets/media/textures/black background texture.webp') center/cover,
        #1A1A1A;
    background-blend-mode: multiply;
    color: #E59C2C;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-reverse {
    animation-direction: reverse;
}

.marquee-track span {
    flex-shrink: 0;
    padding: 0 48px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.marquee-sticker {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

/* ---------- About ---------- */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 16px;
}

.promo-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(229, 156, 44, .1);
    border: 1px solid rgba(229, 156, 44, .2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

.promo-sticker {
    width: 64px;
    flex-shrink: 0;
}

.promo-label {
    font-family: 'Bebas Neue', sans-serif;
    color: #E59C2C;
    letter-spacing: 2px;
    font-size: .8rem;
    display: block;
    margin-bottom: 4px;
}

.promo-text {
    font-weight: 600;
    font-size: 1.05rem;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
}

.about-img-main img {
    width: 100%;
    height: auto;
}

/* About Splide */
.about-splide .splide__arrow {
    display: none;
}

.about-splide .splide__pagination {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.about-splide .splide__pagination__page {
    background: rgba(255, 255, 255, .4);
    width: 8px;
    height: 8px;
    margin: 0 3px;
}

.about-splide .splide__pagination__page.is-active {
    background: #E59C2C;
}

.about-img-float {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #101010;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
}

.about-img-float img {
    width: 100%;
    height: auto;
}

.about-sticker {
    position: absolute;
    top: -24px;
    right: -20px;
    width: 80px;
    z-index: 3;
}

/* ---------- Menu Section ---------- */
.menu-section {
    position: relative;
}

/* Dish Splide Carousel */
.dish-carousel-wrap {
    margin-bottom: 72px;
    padding: 0 0 24px;
}

#dish-splide .splide__arrow,
#dish-splide .splide__pagination {
    display: none;
}

#dish-splide .splide__track {
    overflow: visible !important;
}

.dish-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
    transition: transform .4s, box-shadow .4s;
}

.dish-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, .6);
}

.dish-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 0%;
    background: black;
}

.dish-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .6) 25%, transparent 45%);
    pointer-events: none;
}

.dish-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
}

.dish-card-content h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.dish-card-content p {
    color: #ccc;
    font-size: .88rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.dish-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dish-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #E59C2C;
    letter-spacing: 1px;
}

/* ---------- Full Menu (Tabs) ---------- */
.full-menu {
    position: relative;
    background: rgba(26, 26, 26, .35);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 40px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    overflow: hidden;
}

.full-menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.fm-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .4));
}

.fm-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fm-tagline {
    font-family: 'Bebas Neue', sans-serif;
    color: #E59C2C;
    letter-spacing: 4px;
    font-size: .8rem;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.fm-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.fm-subtitle {
    color: #888;
    font-size: .88rem;
}

.fm-deco {
    position: absolute;
    width: 50px;
    opacity: .1;
    pointer-events: none;
    z-index: 0;
}

.fm-deco-1 {
    top: 60px;
    left: -8px;
    transform: rotate(-20deg);
}

.fm-deco-2 {
    bottom: 40px;
    right: -6px;
    transform: rotate(15deg);
    width: 60px;
}

.fm-deco-3 {
    bottom: 20px;
    left: 30px;
    transform: rotate(8deg);
    width: 45px;
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.menu-tab {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .9rem;
    letter-spacing: 2px;
    padding: 10px 24px;
    border-radius: 6px;
    background: transparent;
    color: #999;
    border: 1px solid rgba(255, 255, 255, .1);
    cursor: pointer;
    transition: all .3s;
}

.menu-tab:hover {
    color: #F4F4F4;
    border-color: rgba(229, 156, 44, .3);
}

.menu-tab.active {
    background: #E59C2C;
    color: #101010;
    border-color: #E59C2C;
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    animation: fadePanel .4s ease;
}

@keyframes fadePanel {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.menu-panel-note {
    color: #999;
    font-size: .85rem;
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    flex-wrap: wrap;
    cursor: pointer;
}

.mi-name {
    font-weight: 600;
    white-space: normal;
    min-width: 0;
    flex-shrink: 1;
}

.mi-desc {
    color: #888;
    font-size: .82rem;
    white-space: normal;
    flex-basis: 100%;
    order: 10;
    margin-top: 2px;
}

.mi-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, .15);
    min-width: 30px;
    margin: 0 4px;
    align-self: center;
}

.mi-price {
    font-family: 'Bebas Neue', sans-serif;
    color: #E59C2C;
    font-size: 1.1rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.mi-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
    cursor: pointer;
    padding: 8px 0 8px 8px;
    margin: -8px 0 -8px auto;
    border-radius: 8px;
    transition: background .2s;
}
.mi-right:hover {
    background: rgba(229,156,44,.06);
}

/* ---------- Menu Order Buttons ---------- */
.mi-order {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(229, 156, 44, .15);
    border: 1px solid rgba(229, 156, 44, .3);
    color: #E59C2C;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    position: relative;
}
.mi-order::before {
    content: '';
    position: absolute;
    inset: -10px;
}

.mi-order:hover {
    background: #E59C2C;
    color: #101010;
    transform: scale(1.1);
}

.dish-order-btn {
    font-size: .78rem;
    padding: 6px 16px;
    white-space: nowrap;
    text-decoration: none;
}

/* ---------- Dining Option Popup ---------- */
.dining-popup {
    position: fixed; inset: 0; z-index: 1500;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.75); backdrop-filter: blur(10px);
    opacity: 0; visibility: hidden; transition: all .35s;
}
.dining-popup.active { opacity: 1; visibility: visible; }
.dining-popup-content {
    background: rgba(26, 26, 26, .85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px; width: 420px; max-width: 94vw;
    padding: 36px 32px; position: relative; text-align: center;
    transform: translateY(20px) scale(.97);
    transition: transform .4s cubic-bezier(.22,.68,0,1.2);
    box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.dining-popup.active .dining-popup-content { transform: translateY(0) scale(1); }
.dining-popup-header { margin-bottom: 28px; }
.dining-popup-sticker { width: 64px; margin-bottom: 12px; opacity: .85; }
.dining-popup-header h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.15rem, 3.5vw, 1.4rem);
    color: #F4F4F4; line-height: 1.4;
}
.dining-popup-options { display: flex; gap: 14px; }
.dining-popup-call {
    display: block;
    margin-top: 20px;
    font-size: .85rem;
    color: rgba(244,244,244,.45);
    text-align: center;
}
.dining-popup-call a {
    color: #E59C2C;
    text-decoration: none;
    font-weight: 600;
    transition: color .3s;
}
.dining-popup-call a:hover { color: #fff; }
.dining-opt-card {
    flex: 1; background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; padding: 24px 16px;
    cursor: pointer; transition: all .3s;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    text-align: center; color: #ccc;
}
.dining-opt-card:hover {
    border-color: rgba(229,156,44,.4);
    background: rgba(229,156,44,.08);
    transform: translateY(-2px);
}
.dining-opt-icon { font-size: 2rem; line-height: 1; }
.dining-opt-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem; letter-spacing: 2px; color: #F4F4F4;
}
.dining-opt-desc { font-size: .75rem; color: #888; line-height: 1.4; }

/* ---------- Size / Variant Picker ---------- */
.size-picker {
    position: fixed; inset: 0; z-index: 1600;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
    opacity: 0; visibility: hidden; transition: all .35s;
    padding: 24px;
}
.size-picker.active { opacity: 1; visibility: visible; }
.size-picker-content {
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px; width: 400px; max-width: 94vw;
    padding: 32px; position: relative; overflow: visible;
    transform: translateY(20px);
    transition: transform .35s;
}
.size-picker.active .size-picker-content { transform: translateY(0); }
.size-picker-content .customize-close {
    position: absolute; top: -14px; right: -14px;
    margin: 0; width: 36px; height: 36px;
    background: #2a2a2a; border: 1px solid rgba(255,255,255,.12);
    font-size: 1.3rem;
}
.size-picker-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.1rem, 3.5vw, 1.35rem);
    color: #F4F4F4; margin-bottom: 6px; line-height: 1.3;
    text-align: center; padding: 0 32px;
}
.size-picker-sub {
    text-align: center; color: #888; font-size: .82rem;
    margin-bottom: 22px;
}
.size-picker-options {
    display: flex; flex-direction: column; gap: 0;
}
.size-picker-btn {
    width: 100%; padding: 16px 0;
    background: none; border: none;
    border-bottom: 1px solid rgba(255,255,255,.05);
    cursor: pointer; transition: background .2s;
    display: flex; align-items: center; gap: 8px;
    text-align: left;
}
.size-picker-btn:last-child { border-bottom: none; }
.size-picker-btn:hover { background: rgba(229,156,44,.06); }
.sp-label {
    font-weight: 600; font-size: .95rem; color: #F4F4F4;
    white-space: normal; flex-shrink: 1; min-width: 0;
}
.sp-dots {
    flex: 1; border-bottom: 1px dotted rgba(255,255,255,.15);
    min-width: 20px; margin: 0 4px; align-self: center;
}
.sp-price {
    font-family: 'Bebas Neue', sans-serif;
    color: #E59C2C; font-size: 1.05rem;
    letter-spacing: 1px; white-space: nowrap; flex-shrink: 0;
}

@media (max-width: 480px) {
    .size-picker-content { padding: 24px 20px; border-radius: 16px; }
    .sp-label { font-size: .88rem; }
}

@media (max-width: 480px) {
    .dining-popup-content { padding: 28px 20px; border-radius: 18px; }
    .dining-popup-options { gap: 10px; }
    .dining-opt-card { padding: 20px 12px; }
}

@media (max-width: 600px) {
    .customize-content { padding: 24px; border-radius: 16px; }
    .customize-header h3 { font-size: 1.05rem; }
}

/* ---------- Parallax Divider ---------- */
.parallax-section {
    position: relative;
    height: 50vh;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -35%;
    left: -35%;
    width: 170%;
    height: 170%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.parallax-dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 16, 16, .7);
}

.parallax-content {
    position: relative;
    z-index: 2;
}

.parallax-content h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.parallax-content p {
    color: #ccc;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

/* ---------- Restaurant Gallery — Image Marquee ---------- */
.gallery-section {
    overflow: hidden;
}

.visit-cta-btn {
    margin-top: 18px;
}

.gallery-marquee {
    overflow: hidden;
    padding: 6px 0;
}

.gallery-marquee-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: galleryScroll 45s linear infinite;
}

.gallery-marquee-track-reverse {
    animation: galleryScrollReverse 50s linear infinite;
}

@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes galleryScrollReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.gm-img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform .4s, box-shadow .4s;
}

.gm-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}

/* ---------- Reviews Splide ---------- */
.reviews-section {
    overflow: hidden;
}

.reviews-splide {
    margin-top: 16px;
}

#reviews-splide .splide__arrow,
#reviews-splide .splide__pagination {
    display: none;
}

#reviews-splide .splide__track {
    overflow: visible !important;
}

.review-card {
    background: rgba(26, 26, 26, .7);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(8px);
    transition: transform .3s, box-shadow .3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.rc-stars {
    color: #E59C2C;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.rc-text {
    color: #ccc;
    font-size: .92rem;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}

.rc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E59C2C;
    color: #101010;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
}

.rc-author strong {
    font-size: .9rem;
    display: block;
    color: #fff;
}

.rc-author span {
    font-size: .75rem;
    color: #888;
}

/* ---------- Horizontal Scroll Section ---------- */
.hscroll-section {
    position: relative;
    /* height set by JS: trackScrollWidth + 100vh */
    background: rgba(10, 10, 10, .55);
}

.hscroll-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.hscroll-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
}

.hscroll-panel {
    width: 60vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 60px 48px;
}

.hscroll-intro {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    position: relative;
}

.hscroll-sticker {
    width: 120px;
    margin-bottom: 16px;
    animation: floatY 4s ease-in-out infinite;
}

.hscroll-card-panel {
    gap: 48px;
}

.hscroll-card-img {
    width: 440px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
    flex-shrink: 0;
}

.hscroll-card-body {
    max-width: 420px;
    position: relative;
}

.hscroll-card-sticker {
    width: 72px;
    margin-bottom: 16px;
    animation: floatY 4s ease-in-out 0.5s infinite;
}

.hscroll-card-body h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.8rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hscroll-card-body p {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.8;
}

.hscroll-section.hscroll-fallback {
    overflow: visible;
    height: auto !important;
}

.hscroll-section.hscroll-fallback .hscroll-sticky {
    position: relative;
    height: auto;
    overflow: visible;
}

.hscroll-section.hscroll-fallback .hscroll-track {
    display: block;
    width: 100%;
    transform: none !important;
}

.hscroll-section.hscroll-fallback .hscroll-panel {
    width: 100%;
    min-height: auto;
    padding: 56px 24px;
}

/* ---------- Location ---------- */
.location-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: rgba(10, 10, 10, .55);
}

.location-section::before,
.location-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    pointer-events: none;
    z-index: 1;
}

.location-section::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, .7), transparent);
}

.location-section::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, .7), transparent);
}

.location-section .section-tag {
    color: #E59C2C;
}

.location-section .highlight {
    color: #E59C2C;
}

/* --- Location Toggle Tabs --- */
.location-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
}

.loc-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .12);
    background: rgba(26, 26, 26, .5);
    backdrop-filter: blur(8px);
    color: rgba(244, 244, 244, .65);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all .35s ease;
    position: relative;
}

.loc-toggle-btn:hover {
    border-color: rgba(229, 156, 44, .4);
    color: #F4F4F4;
}

.loc-toggle-btn.active {
    border-color: #E59C2C;
    background: rgba(229, 156, 44, .15);
    color: #E59C2C;
    box-shadow: 0 0 0 4px rgba(229, 156, 44, .12), 0 8px 24px rgba(0, 0, 0, .3);
}

.loc-toggle-num {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: .85rem;
    opacity: .7;
}

.loc-toggle-btn.active .loc-toggle-num {
    opacity: 1;
}

.loc-new-badge {
    font-size: .6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e53935, #ff6f00);
    color: #fff;
    animation: newBadgePulse 2s ease-in-out infinite;
}

@keyframes newBadgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

/* --- Location Panels --- */
.location-panel {
    display: none;
    animation: locPanelIn .45s ease;
}

.location-panel.active {
    display: block;
}

@keyframes locPanelIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Location Panel Hero Image --- */
.loc-panel-hero {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 36px;
    height: 280px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
}

.loc-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 6s ease;
}

.loc-panel-hero:hover .loc-hero-img {
    transform: scale(1.04);
}

.loc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, .85) 0%, rgba(10, 10, 10, .3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 36px;
}

.loc-hero-overlay h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #F4F4F4;
    margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

.loc-hero-overlay p {
    color: rgba(244, 244, 244, .7);
    font-size: .95rem;
    letter-spacing: .5px;
}

/* --- Location Info (legacy, kept for compat) --- */
.location-info {
    text-align: center;
    margin: -8px 0 34px;
}

.location-info h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 8px;
}

.location-info p {
    color: #d4d4d4;
    margin-bottom: 10px;
}

.location-info a {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.5px;
    color: #E59C2C;
    font-size: 1.15rem;
}

.location-info a:hover {
    color: #ffd089;
}

/* --- Location Cards --- */
.location-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.loc-card {
    background: rgba(26, 26, 26, .6);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    backdrop-filter: blur(8px);
}

.loc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 156, 44, .3);
    box-shadow: 0 14px 44px rgba(0, 0, 0, .45);
}

.loc-sticker-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
}

.loc-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 1rem;
    color: #E59C2C;
    margin-bottom: 12px;
}

.loc-card p {
    color: #ccc;
    line-height: 1.7;
}

.phone-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 1px;
}

.loc-link {
    display: inline-block;
    margin-top: 14px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.4px;
    color: #101010;
    background: #F4F4F4;
    padding: 9px 16px;
    border-radius: 999px;
    transition: transform .2s, background .2s;
}

.loc-link:hover {
    background: #E59C2C;
    transform: translateY(-1px);
}

/* --- Location Features Badges (Homewood) --- */
.loc-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.loc-feat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(229, 156, 44, .08);
    border: 1px solid rgba(229, 156, 44, .18);
    color: rgba(244, 244, 244, .75);
    font-size: .82rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.loc-feat-icon {
    font-size: 1rem;
}

/* --- Location Photo Strip --- */
.loc-photo-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 36px;
    border-radius: 14px;
    overflow: hidden;
}

.loc-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .35s ease, filter .35s;
    filter: brightness(.85);
    cursor: pointer;
}

.loc-photo:hover {
    transform: scale(1.06);
    filter: brightness(1);
    z-index: 2;
    position: relative;
}

/* --- Location Map --- */
.location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

/* --- Homewood Review Card Accent --- */
.rc-homewood {
    border-top: 2px solid rgba(229, 156, 44, .4);
}

/* --- Maps Modal - Dual Location --- */
.maps-location-pick {
    text-align: left;
}

.maps-loc-option {
    padding: 8px 0;
}

.maps-loc-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: #E59C2C;
    display: block;
    margin-bottom: 4px;
}

.maps-new-tag {
    font-size: .55rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 2px 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e53935, #ff6f00);
    color: #fff;
    vertical-align: middle;
    margin-left: 6px;
}

.maps-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 16px 0;
}

.maps-loc-option .maps-options {
    flex-direction: row;
    gap: 10px;
}

.maps-loc-option .maps-options .btn {
    flex: 1;
    font-size: .8rem;
    padding: 10px 14px;
}

/* --- Footer Dual Location --- */
.footer-divider-dot {
    color: rgba(244, 244, 244, .25);
    font-size: .9rem;
}

/* ---------- Floating Menu Button ---------- */
.fab-menu {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #E59C2C;
    color: #101010;
    padding: 14px 22px;
    border-radius: 50px;
    border: 2px solid #101010;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .45), 0 0 0 3px rgba(229, 156, 44, .35);
    transition: all .3s;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.fab-menu.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-menu:hover {
    background: #D98613;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5), 0 0 0 3px rgba(229, 156, 44, .5);
}

.fab-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.fab-label {
    line-height: 1;
}

/* ---------- Menu Popup Modal ---------- */
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all .35s;
}

.menu-modal.active {
    opacity: 1;
    visibility: visible;
}

.menu-modal-content {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    width: 640px;
    max-width: 94vw;
    max-height: 88vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
    transform: translateY(20px);
    transition: transform .35s;
}

.menu-modal.active .menu-modal-content {
    transform: translateY(0);
}

/* ---------- Dining Toggle (inside menu modal) ---------- */
.dining-toggle {
    display: flex;
    background: rgba(255, 255, 255, .06);
    border-radius: 50px;
    padding: 3px;
    margin-bottom: 18px;
    gap: 2px;
    width: fit-content;
}

.dining-toggle-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .85rem;
    letter-spacing: 1.2px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, .5);
    padding: 7px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
}

.dining-toggle-btn.active {
    background: #E59C2C;
    color: #101010;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(229, 156, 44, .35);
}

.dining-toggle-btn:not(.active):hover {
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .08);
}

/* ---------- Branded Order Shell ---------- */
.order-shell-modal {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s;
    /* stickers are position:absolute children of this fixed el */
}

.order-shell-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Floating backdrop stickers — positioned relative to the fixed viewport overlay */
.order-shell-float-sticker {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .55));
    opacity: .88;
    will-change: transform;
}

.osf-1 {
    /* jalapeño — bottom-left zone */
    width: 100px;
    bottom: 14vh;
    left: clamp(8px, 3vw, 56px);
    transform: rotate(-18deg);
    animation: osFloat1 4.2s ease-in-out infinite;
}

.osf-2 {
    /* chili holding taco — bottom-right */
    width: 120px;
    bottom: 10vh;
    right: clamp(8px, 3vw, 56px);
    transform: rotate(14deg);
    animation: osFloat2 5s ease-in-out 0.6s infinite;
}

.osf-3 {
    /* lime wedge pair — top-left */
    width: 80px;
    top: 12vh;
    left: clamp(8px, 2.5vw, 48px);
    transform: rotate(22deg);
    animation: osFloat1 3.8s ease-in-out 0.3s infinite;
}

.osf-4 {
    /* red chili maraca — top-right */
    width: 90px;
    top: 10vh;
    right: clamp(8px, 2.5vw, 48px);
    transform: rotate(-12deg);
    animation: osFloat2 4.6s ease-in-out 1s infinite;
}

.osf-5 {
    /* nacho cluster — mid-left, behind card */
    width: 70px;
    top: 50%;
    left: clamp(4px, 1.5vw, 28px);
    transform: translateY(-50%) rotate(8deg);
    animation: osFloat1 5.5s ease-in-out 1.8s infinite;
    opacity: .55;
}

.osf-6 {
    /* salsa fire — mid-right, behind card */
    width: 68px;
    top: 50%;
    right: clamp(4px, 1.5vw, 28px);
    transform: translateY(-50%) rotate(-20deg);
    animation: osFloat2 4.8s ease-in-out 2.2s infinite;
    opacity: .55;
}

@keyframes osFloat1 {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r, -18deg));
    }

    50% {
        transform: translateY(-14px) rotate(var(--r, -18deg));
    }
}

@keyframes osFloat2 {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r, 14deg));
    }

    50% {
        transform: translateY(-10px) rotate(var(--r, 14deg));
    }
}

/* Wrapper — gives close button a relative anchor */
.order-shell-wrap {
    position: relative;
    z-index: 2;
    width: min(1220px, 96vw);
}

/* Floating close button — sits inside the card top-left corner */
.order-shell-close-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 20;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(229, 156, 44, .55);
    background: rgba(16, 16, 16, .92);
    color: #F4F4F4;
    font-size: 1.5rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .6);
    transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
}

.order-shell-close-btn:hover {
    border-color: #E59C2C;
    color: #E59C2C;
    background: rgba(229, 156, 44, .14);
    box-shadow: 0 0 0 5px rgba(229, 156, 44, .18), 0 4px 18px rgba(0, 0, 0, .6);
}

.order-shell-content {
    width: 100%;
    height: min(92vh, 920px);
    --order-shell-crop-top: 110px;
    background: #111;
    border: 1px solid rgba(229, 156, 44, .18);
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .05);
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr auto;
}

.order-shell-frame-wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
}

/* Subtle brand-warm color tint overlaid on the iframe without pointer-event blocking. */
.order-shell-frame-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: rgba(229, 100, 0, 0.06);
    mix-blend-mode: multiply;
}

/* Stickers floating subtly over the iframe edges */
.iframe-float-sticker {
    position: absolute;
    pointer-events: none;
    z-index: 3;
    opacity: .18;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .3));
    will-change: transform;
}

.ifs-1 {
    /* waving taco — top-left */
    width: 44px;
    top: 14px;
    left: 10px;
    transform: rotate(-12deg);
    animation: ifsFloat 5s ease-in-out infinite;
}

.ifs-2 {
    /* green chili sunglasses — top-right */
    width: 38px;
    top: 18px;
    right: 54px;
    transform: rotate(16deg);
    animation: ifsFloat 4.4s ease-in-out .8s infinite;
}

.ifs-3 {
    /* lime slices — bottom-left */
    width: 34px;
    bottom: 18px;
    left: 14px;
    transform: rotate(10deg);
    animation: ifsFloat 4.8s ease-in-out 1.4s infinite;
}

.ifs-4 {
    /* running taco — bottom-right */
    width: 42px;
    bottom: 14px;
    right: 12px;
    transform: rotate(-8deg);
    animation: ifsFloat 5.2s ease-in-out .4s infinite;
}

@keyframes ifsFloat {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r, 0deg));
    }

    50% {
        transform: translateY(-8px) rotate(var(--r, 0deg));
    }
}

#order-shell-iframe {
    width: 100%;
    height: calc(100% + var(--order-shell-crop-top));
    margin-top: calc(var(--order-shell-crop-top) * -1);
    border: 0;
    display: block;
    background: #fff;
}

/* Footer strip — logo scaled up to overflow into iframe area */
.order-shell-footer {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px 10px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: linear-gradient(135deg, rgba(58, 125, 68, .12), rgba(229, 156, 44, .14));
    overflow: visible;
}

.order-shell-footer img {
    height: 110px;
    width: auto;
    opacity: .95;
    margin-top: -62px;
    filter: drop-shadow(0 6px 22px rgba(0, 0, 0, .6));
    transition: transform .25s;
}

.order-shell-footer img:hover {
    transform: scale(1.06);
}

/* ---------- Order Location Picker Modal ---------- */
.order-loc-modal {
    position: fixed;
    inset: 0;
    z-index: 1350;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: all .35s;
}

.order-loc-modal.active {
    opacity: 1;
    visibility: visible;
}

.order-loc-content {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    width: 600px;
    max-width: 94vw;
    padding: 36px 32px 28px;
    position: relative;
    text-align: center;
    transform: translateY(20px) scale(.97);
    transition: transform .4s cubic-bezier(.22,.68,0,1.2);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255,255,255,.04);
}

.order-loc-modal.active .order-loc-content {
    transform: translateY(0) scale(1);
}

.order-loc-content .customize-close {
    color: #999;
}

.order-loc-content .customize-close:hover {
    color: #F4F4F4;
}

.order-loc-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 14px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
}

.order-loc-content h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.2rem, 3.5vw, 1.55rem);
    color: #F4F4F4;
    margin-bottom: 6px;
}

.order-loc-sub {
    color: rgba(244, 244, 244, .5);
    font-size: .88rem;
    margin-bottom: 28px;
}

.order-loc-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
}

.order-loc-card {
    position: relative;
    background: rgba(30, 30, 30, .7);
    border: 2px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all .35s ease;
    text-align: left;
    padding: 0;
    color: #F4F4F4;
    font-family: inherit;
}

.order-loc-card:hover {
    border-color: #E59C2C;
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(229, 156, 44, .2), 0 0 0 3px rgba(229, 156, 44, .1);
}

.order-loc-card:active {
    transform: translateY(-2px) scale(.98);
}

.order-loc-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: brightness(.75);
    transition: filter .35s, transform .5s;
}

.order-loc-card:hover .order-loc-img {
    filter: brightness(.9);
    transform: scale(1.04);
}

.order-loc-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.order-loc-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .75rem;
    letter-spacing: 2px;
    color: #E59C2C;
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-loc-new {
    font-size: .5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 2px 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e53935, #ff6f00);
    color: #fff;
    animation: newBadgePulse 2s ease-in-out infinite;
}

.order-loc-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #F4F4F4;
}

.order-loc-addr {
    font-size: .78rem;
    color: rgba(244, 244, 244, .55);
    line-height: 1.3;
}

.order-loc-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .9rem;
    letter-spacing: 1px;
    color: rgba(244, 244, 244, .45);
    margin-top: 2px;
}

.order-loc-hint {
    color: rgba(244, 244, 244, .3);
    font-size: .78rem;
    margin: 0;
}

@media (max-width: 480px) {
    .order-loc-options {
        grid-template-columns: 1fr;
    }

    .order-loc-img {
        height: 90px;
    }

    .order-loc-content {
        padding: 28px 20px 22px;
    }
}

/* ---------- Review Location Picker Modal ---------- */
.review-loc-modal {
    position: fixed;
    inset: 0;
    z-index: 1350;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: all .35s;
}

.review-loc-modal.active {
    opacity: 1;
    visibility: visible;
}

.review-loc-modal .order-loc-content {
    transform: translateY(20px) scale(.97);
}

.review-loc-modal.active .order-loc-content {
    transform: translateY(0) scale(1);
}

/* Allow .order-loc-card as <a> tag too */
a.order-loc-card {
    text-decoration: none;
    color: #F4F4F4;
    display: block;
}

/* ---------- Maps Chooser Modal ---------- */
.maps-modal {
    position: fixed;
    inset: 0;
    z-index: 1320;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all .35s;
}

.maps-modal.active {
    opacity: 1;
    visibility: visible;
}

.maps-modal-content {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    width: 520px;
    max-width: 92vw;
    padding: 30px;
    position: relative;
    transform: translateY(16px);
    transition: transform .35s;
    text-align: center;
}

.maps-modal.active .maps-modal-content {
    transform: translateY(0);
}

.maps-modal-content h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.maps-modal-content .customize-close {
    color: #999;
}

.maps-modal-content .customize-close:hover {
    color: #F4F4F4;
}

.maps-address {
    color: #ccc;
    margin-bottom: 22px;
    line-height: 1.5;
}

.maps-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.maps-options .btn {
    width: 100%;
    justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
    position: relative;
    background: transparent;
    padding: 0;
    border-top: none;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to bottom, #101010, transparent);
}

.footer-main {
    padding: 64px 0 32px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 44px;
}

.footer-brand-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    color: #F4F4F4;
    line-height: 1.3;
}

.footer-brand-text span {
    color: #E59C2C;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .85rem;
    letter-spacing: 1.5px;
    color: rgba(244, 244, 244, .6);
    transition: color .3s;
}

.footer-nav a:hover {
    color: #E59C2C;
}

.footer-contact-inline {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: .85rem;
    color: rgba(244, 244, 244, .5);
}

.footer-contact-inline a {
    color: #E59C2C;
    font-weight: 600;
    transition: color .3s;
}

.footer-contact-inline a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(244,244,244,.5);
    transition: all .3s;
}
.footer-socials a:hover {
    background: rgba(229,156,44,.12);
    border-color: rgba(229,156,44,.4);
    color: #E59C2C;
}
.footer-socials a svg {
    width: 18px; height: 18px;
    fill: currentColor;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 0;
    border: none;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(244, 244, 244, .35);
    font-size: .78rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(244, 244, 244, .35);
    font-size: .78rem;
    transition: color .3s;
}

.footer-bottom-links a:hover {
    color: rgba(244, 244, 244, .6);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (min-width: 1400px) {

    .section-dark>.container,
    .location-section>.container {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero {
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }

    .hscroll-card-panel {
        max-width: 1200px;
        margin: 0 auto;
    }

    .gallery-marquee {
        max-width: 100%;
    }

    .full-menu {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .location-cards {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .location-map {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-inner {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .hscroll-panel {
        width: 82vw;
        padding: 56px 40px;
    }

    .hscroll-card-panel {
        gap: 28px;
    }

    .hscroll-card-img {
        width: 360px;
        aspect-ratio: 1 / 1;
    }

    .hscroll-card-body {
        max-width: 320px;
    }

    .hscroll-card-body h3 {
        font-size: 1.55rem;
    }

    .hscroll-card-body p {
        font-size: .98rem;
        line-height: 1.65;
    }
}

@media (max-width: 1024px) {
    .hero {
        gap: 22px;
        padding: 118px 26px 72px;
        justify-content: space-between;
    }

    .hero-content {
        max-width: 46vw;
    }

    .hero-title {
        font-size: clamp(2rem, 5.1vw, 3.2rem);
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-img-wrap {
        width: 320px;
        height: 320px;
    }

    .hero-dish-ring {
        width: 280px;
        height: 280px;
    }

    .hero-pepper {
        width: 120px;
        top: -28px;
        left: -20px;
    }

    .hero-sticker {
        width: 68px;
    }

    .about-layout {
        gap: 40px;
    }

    .gm-img {
        width: 220px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .menu-toggle {
        justify-self: start;
    }

    .brand {
        justify-self: center;
    }

    .nav-right {
        justify-self: end;
        gap: 0;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(16, 16, 16, .97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .32s ease, visibility .32s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links a {
        opacity: 0;
        transform: translateY(14px);
    }

    .nav-links.open a {
        animation: navLinkIn .45s ease forwards;
    }

    .nav-links.open a:nth-of-type(1) {
        animation-delay: .05s;
    }

    .nav-links.open a:nth-of-type(2) {
        animation-delay: .10s;
    }

    .nav-links.open a:nth-of-type(3) {
        animation-delay: .15s;
    }

    .nav-links.open a:nth-of-type(4) {
        animation-delay: .20s;
    }

    .nav-links.open a:nth-of-type(5) {
        animation-delay: .25s;
    }

    .nav-links.open a:nth-of-type(6) {
        animation-delay: .30s;
    }

    .nav-menu-close {
        display: inline-flex;
        position: absolute;
        top: calc(env(safe-area-inset-top, 0px) + 14px);
        left: calc(env(safe-area-inset-left, 0px) + 14px);
        width: 40px;
        height: 40px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, .18);
        background: rgba(16, 16, 16, .92);
        color: #F4F4F4;
        font-size: 1.6rem;
        line-height: 1;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

    .nav-menu-sticker {
        display: block;
        position: absolute;
        opacity: .2;
        pointer-events: none;
        animation: navStickerFloat 4.5s ease-in-out infinite;
    }

    .nms-1 {
        width: 62px;
        top: 16%;
        left: 10%;
        transform: rotate(-12deg);
    }

    .nms-2 {
        width: 56px;
        bottom: 16%;
        right: 12%;
        transform: rotate(14deg);
        animation-delay: .8s;
    }

    .nav-menu-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: min(320px, calc(100% - 48px));
        margin-top: 8px;
        z-index: 2;
    }

    .nav-menu-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-cta-call {
        border-color: rgba(229, 156, 44, .45);
        color: #E59C2C;
    }

    .nav-links.open .nav-menu-cta {
        animation: navLinkIn .45s ease forwards;
        animation-delay: .34s;
        opacity: 0;
        transform: translateY(14px);
    }

    .nav-menu-marquee {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, .08);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        background: rgba(0, 0, 0, .28);
    }

    .nav-menu-marquee-top {
        top: calc(env(safe-area-inset-top, 0px) + 66px);
    }

    .nav-menu-marquee-bottom {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
    }

    .nav-menu-marquee-track {
        display: inline-flex;
        align-items: center;
        gap: 24px;
        white-space: nowrap;
        padding: 9px 0;
        animation: navMenuMarquee 20s linear infinite;
    }

    .nav-menu-marquee-track-reverse {
        animation-direction: reverse;
    }

    .nav-menu-marquee-track span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Bebas Neue', sans-serif;
        letter-spacing: 1.2px;
        color: #E59C2C;
        font-size: .78rem;
    }

    .nav-menu-marquee .marquee-sticker {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 140px 24px 60px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-img-wrap {
        width: 260px;
        height: 260px;
        margin: 24px auto 0;
    }

    .hero-dish-ring {
        width: 240px;
        height: 240px;
    }

    .hero-pepper {
        width: 90px;
        top: -30px;
        left: -30px;
    }

    .hero-sticker {
        width: 50px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-img-float {
        position: relative;
        bottom: auto;
        left: auto;
        width: 140px;
        margin-top: -24px;
    }

    .location-cards {
        grid-template-columns: 1fr;
    }

    .loc-panel-hero {
        height: 200px;
    }

    .loc-hero-overlay {
        padding: 20px 22px;
    }

    .loc-photo-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .loc-toggle-btn {
        padding: 12px 22px;
        font-size: .92rem;
    }

    .loc-features {
        gap: 8px;
    }

    .loc-feat {
        font-size: .75rem;
        padding: 6px 12px;
    }

    .maps-loc-option .maps-options {
        flex-direction: column;
    }

    .location-info {
        margin: -4px 0 26px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-contact-inline {
        flex-direction: column;
        gap: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hscroll-panel {
        width: 85vw;
        min-height: 80vh;
        padding: 40px 24px;
    }

    .hscroll-intro {
        padding: 40px 24px;
    }

    .hscroll-sticker {
        width: 80px;
    }

    .hscroll-card-panel {
        flex-direction: column;
        gap: 24px;
    }

    .hscroll-card-img {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .hscroll-card-body {
        max-width: 100%;
    }

    .hscroll-card-body h3 {
        font-size: 1.4rem;
    }

    .hscroll-card-body p {
        font-size: .95rem;
        line-height: 1.7;
    }

    .dish-card {
        height: 457px;
    }

    .section-dark {
        padding: 72px 0;
    }

    .full-menu {
        padding: 24px;
    }

    .fm-icon {
        width: 44px;
        height: 44px;
    }

    .fm-title {
        font-size: 1.3rem;
    }

    .full-menu-header {
        gap: 14px;
        margin-bottom: 24px;
    }

    .fm-deco {
        display: none;
    }

    .deco-sticker {
        opacity: .06;
    }

    .gm-img {
        width: 180px;
        height: 120px;
    }

    .fab-menu {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: .9rem;
    }

    .fab-icon {
        width: 24px;
        height: 24px;
    }

    .menu-modal {
        align-items: flex-start;
    }

    .menu-modal-content {
        padding: 16px 24px 24px;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        height: 100dvh;
        max-height: 100dvh;
    }

    .order-shell-modal {
        align-items: flex-start;
        padding: 0;
    }

    .order-shell-content {
        width: 100%;
        max-width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
        --order-shell-crop-top: 88px;
    }

    .order-shell-close-btn {
        width: 32px;
        height: 32px;
    }

    .order-shell-footer img {
        height: 80px;
        margin-top: -46px;
    }

    .maps-modal-content {
        padding: 24px;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
    }

    #menu-modal-close,
    #maps-modal-close {
        top: calc(env(safe-area-inset-top, 0px) + 4px);
        background: rgba(16, 16, 16, .92);
        border-color: rgba(255, 255, 255, .16);
        z-index: 2001;
    }

    .mi-name {
        font-size: .9rem;
    }

    .mi-desc {
        font-size: .78rem;
    }

    .hscroll-panel {
        padding: 40px 16px;
    }

    .hscroll-card-img {
        aspect-ratio: 1 / 1;
    }

    .hscroll-card-body h3 {
        font-size: 1.25rem;
    }
}

@keyframes navLinkIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navStickerFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

@keyframes navMenuMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .dish-card {
        height: 360px;
    }

    .dish-card-content h3 {
        font-size: 1.1rem;
    }

    .menu-tab {
        padding: 8px 16px;
        font-size: .8rem;
    }

    .fm-icon {
        width: 36px;
        height: 36px;
    }

    .fm-title {
        font-size: 1.1rem;
    }

    .fm-tagline {
        font-size: .7rem;
        letter-spacing: 3px;
    }

    .fm-subtitle {
        font-size: .78rem;
    }

    .gm-img {
        width: 160px;
        height: 110px;
    }

    .fab-menu {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
    }


}

/* =========================================================
   SUBPAGE STYLES
   Solid nav, page headers, contact, about, menu, catering,
   locations, privacy/terms
   ========================================================= */

/* ---------- Subpage Body ---------- */
.subpage {
    padding-top: 64px; /* offset for fixed navbar-sub */
}

/* ---------- Subpage Navbar ---------- */
.navbar.navbar-sub {
    background: rgba(16, 16, 16, .95);
    backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .5);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.navbar-sub .nav-logo {
    --logo-scale: 1;
}

/* ---------- Page Header ---------- */
.page-header {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    background: url('assets/media/textures/black background texture.webp') center/cover;
    text-align: center;
}

.page-header .section-tag {
    margin-bottom: 12px;
}

.page-header .section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-header-sub {
    color: rgba(244, 244, 244, .65);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-header-sticker {
    position: absolute;
    width: 120px;
    pointer-events: none;
    opacity: .8;
}

/* Hero stagger — initial hidden states (GSAP animates these in) */
.page-header .section-tag,
.page-header .section-title,
.page-header .page-header-sub { opacity: 0; transform: translateY(30px); }
.page-header .page-header-sticker  { opacity: 0; transform: translateY(20px) scale(.85); }

.phs-right {
    right: 5%;
    bottom: -10px;
}

.phs-left {
    left: 5%;
    bottom: -10px;
}

/* ---------- Subpage Sections ---------- */
.subpage-section {
    padding: 80px 0;
    position: relative;
}

/* ---------- Contact Page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 28px;
    transition: transform .3s, border-color .3s;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 156, 44, .3);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    color: #E59C2C;
    margin-bottom: 8px;
}

.contact-card p {
    color: rgba(244, 244, 244, .7);
    font-size: .92rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-card-link {
    color: #E59C2C;
    font-size: .85rem;
    font-weight: 600;
    transition: color .3s;
}

.contact-card-link:hover {
    color: #fff;
}

.contact-socials {
    display: flex;
    gap: 16px;
}

.contact-socials a {
    color: #E59C2C;
    font-size: .9rem;
    font-weight: 600;
    transition: color .3s;
}

.contact-socials a:hover {
    color: #fff;
}

/* Contact Form */
.contact-form-wrap {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-wrap h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contact-form-note {
    color: rgba(244, 244, 244, .5);
    font-size: .88rem;
    margin-bottom: 28px;
}

.contact-form-note a {
    color: #E59C2C;
    text-decoration: underline;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .82rem;
    letter-spacing: 1.5px;
    color: rgba(244, 244, 244, .7);
}

.form-group .optional {
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    letter-spacing: 0;
    color: rgba(244, 244, 244, .35);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #F4F4F4;
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    transition: border-color .3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(244, 244, 244, .25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #E59C2C;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    grid-column: 1 / -1;
    justify-self: start;
}

/* Contact Map */
.contact-map {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
}

/* ---------- About Page ---------- */
.about-page-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.about-page-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-page-text h2 span {
    color: #E59C2C;
}

.about-page-text p {
    color: rgba(244, 244, 244, .7);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: .95rem;
}

.about-page-img {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
}

.about-page-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* About Values */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.about-value-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform .3s, border-color .3s;
}

.about-value-card:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 156, 44, .3);
}

.about-value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

.about-value-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    color: #E59C2C;
    margin-bottom: 8px;
}

.about-value-card p {
    color: rgba(244, 244, 244, .6);
    font-size: .88rem;
    line-height: 1.6;
}

/* ---------- Menu Page ---------- */
.menu-page-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.menu-page-intro p {
    color: rgba(244, 244, 244, .6);
    font-size: .95rem;
    line-height: 1.7;
}

.menu-page-cta {
    text-align: center;
    margin-top: 48px;
    padding: 40px;
    background: rgba(229, 156, 44, .08);
    border: 1px solid rgba(229, 156, 44, .15);
    border-radius: 16px;
}

.menu-page-cta h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.menu-page-cta p {
    color: rgba(244, 244, 244, .6);
    font-size: .9rem;
    margin-bottom: 20px;
}

/* ---------- Catering Page ---------- */

/* Split layout: image + text side by side */
.catering-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 64px;
}

.catering-split-reverse {
    direction: rtl;
}

.catering-split-reverse > * {
    direction: ltr;
}

.catering-split-media {
    position: sticky;
    top: 100px;
    align-self: start;
}

.catering-split-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.catering-split-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    min-height: 100%;
}

.catering-hero-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 480px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: 48px;
}

.catering-intro {
    text-align: left;
    max-width: none;
    margin: 0 0 16px;
}

.catering-intro h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.catering-intro p {
    color: rgba(244, 244, 244, .65);
    line-height: 1.7;
    font-size: .95rem;
}

.catering-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.catering-feat-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform .3s, border-color .3s;
}

.catering-feat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 156, 44, .3);
}

.catering-feat-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.catering-feat-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    color: #E59C2C;
    margin-bottom: 4px;
}

.catering-feat-card p {
    color: rgba(244, 244, 244, .6);
    font-size: .85rem;
    line-height: 1.5;
}

.catering-cta {
    text-align: center;
    padding: 48px;
    background: rgba(229, 156, 44, .08);
    border: 1px solid rgba(229, 156, 44, .15);
    border-radius: 16px;
}

.catering-cta h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.catering-cta p {
    color: rgba(244, 244, 244, .6);
    font-size: .9rem;
    margin-bottom: 20px;
}

.catering-cta .phone-num {
    display: block;
    font-size: 1.3rem;
    color: #E59C2C;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ---------- Why My Taco Section (About Page) ---------- */
.why-section {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: transform .3s, border-color .3s;
    position: relative;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 156, 44, .3);
}

.why-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.why-card-sticker {
    width: 48px;
    height: 48px;
    margin: -24px auto 12px;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .5));
}

.why-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    color: #E59C2C;
    margin-bottom: 8px;
    padding: 0 20px;
}

.why-card p {
    color: rgba(244, 244, 244, .6);
    font-size: .88rem;
    line-height: 1.6;
    padding: 0 20px 24px;
}

/* ---------- About Gallery Strip ---------- */
.about-gallery {
    padding: 60px 0 80px;
    overflow: hidden;
}

.about-gallery .section-header {
    margin-bottom: 32px;
    padding: 0 24px;
}

.about-gallery .gallery-marquee {
    margin-bottom: 12px;
}

/* ---------- Reviews Static Grid (About Page) ---------- */
.about-reviews {
    padding: 80px 0;
}

.reviews-static-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.reviews-static-grid .review-card {
    min-width: 0;
}

/* ---------- Catering Steps ---------- */
.catering-steps {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.step-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: transform .3s, border-color .3s;
}

.step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 156, 44, .3);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #E59C2C;
    color: #101010;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(229, 156, 44, .3);
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 12px auto 16px;
    display: block;
}

.step-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    color: #E59C2C;
    margin-bottom: 8px;
}

.step-card p {
    color: rgba(244, 244, 244, .6);
    font-size: .88rem;
    line-height: 1.6;
}

/* ---------- Catering Testimonial ---------- */
.catering-testimonial {
    padding: 70px 0;
}

.testimonial-block {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.testimonial-sticker {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    display: block;
}

.testimonial-block .rc-stars {
    margin-bottom: 20px;
}

.testimonial-block blockquote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: rgba(244, 244, 244, .85);
    margin-bottom: 16px;
}

.testimonial-block cite {
    color: rgba(244, 244, 244, .5);
    font-size: .9rem;
    font-style: normal;
}

/* ---------- Catering FAQ ---------- */
.catering-faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(229, 156, 44, .3);
}

.faq-item summary {
    padding: 18px 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: #F4F4F4;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: #E59C2C;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .3s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item[open] summary {
    background: rgba(229, 156, 44, .06);
}

.faq-item p {
    padding: 0 24px 18px;
    color: rgba(244, 244, 244, .6);
    font-size: .9rem;
    line-height: 1.7;
}

/* ---------- Locations Page ---------- */
.locations-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.locations-page-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    overflow: hidden;
}

.locations-page-hero {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.locations-page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.locations-page-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 32px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
}

.locations-page-hero-overlay h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.locations-page-hero-overlay p {
    color: rgba(244, 244, 244, .65);
    font-size: .9rem;
}

.locations-page-body {
    padding: 32px;
}

.locations-page-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.locations-page-detail h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .95rem;
    letter-spacing: 1.5px;
    color: #E59C2C;
    margin-bottom: 6px;
}

.locations-page-detail p,
.locations-page-detail a {
    color: rgba(244, 244, 244, .7);
    font-size: .9rem;
    line-height: 1.6;
}

.locations-page-detail a:hover {
    color: #E59C2C;
}

.locations-page-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.locations-page-feat {
    background: rgba(229, 156, 44, .1);
    border: 1px solid rgba(229, 156, 44, .15);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: .82rem;
    color: #E59C2C;
}

.locations-page-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
}

.locations-page-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* ---------- Legal Pages (Privacy / Terms) ---------- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    color: #E59C2C;
    margin: 32px 0 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: rgba(244, 244, 244, .65);
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    color: rgba(244, 244, 244, .65);
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content a {
    color: #E59C2C;
    text-decoration: underline;
}

.legal-last-updated {
    color: rgba(244, 244, 244, .35);
    font-size: .82rem;
    margin-bottom: 32px;
}

/* =========================================================
   SUBPAGE RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .about-page-story {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .catering-features {
        grid-template-columns: 1fr;
    }

    .catering-split {
        grid-template-columns: 1fr;
    }

    .catering-split-reverse {
        direction: ltr;
    }

    .catering-split-media {
        position: relative;
        top: 0;
    }

    .catering-split-img {
        aspect-ratio: 16 / 9;
    }

    .catering-intro {
        text-align: center;
    }

    .catering-feat-card {
        text-align: center;
        flex-direction: column;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .reviews-static-grid {
        grid-template-columns: 1fr;
    }

    .locations-page-details {
        grid-template-columns: 1fr;
    }

    .page-header .section-title {
        font-size: 2rem;
    }

    .page-header-sticker {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header .section-title {
        font-size: 1.6rem;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .locations-page-hero {
        height: 200px;
    }

    .locations-page-body {
        padding: 20px;
    }

    .locations-page-actions {
        flex-direction: column;
    }
}