:root {
    --primary-red: #E10600;
    --accent-yellow: #FFCC00;
    --navy-blue: #002A5C;
    --dark-bg: #121212;
    --light-bg: #FAFAFA;
    --text-dark: #1A1A1A;
    --text-light: #F0F0F0;
    --text-muted: #666666;
    --white: #FFFFFF;

    --font-heading: 'Alfa Slab One', cursive;
    /* Bold, reliable look */
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Offset anchor jumps for the fixed header */
section[id] {
    scroll-margin-top: 90px;
}

/* Skip-to-content link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 6px;
    z-index: 2000;
    font-weight: 600;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 12px;
    outline: 3px solid var(--accent-yellow);
    outline-offset: 2px;
}

/* Brand focus ring — visible on keyboard nav only */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Inline SVG icon sizing */
.icon {
    width: 1.15em;
    height: 1.15em;
    vertical-align: -0.2em;
    margin-right: 0.35em;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

/* Star icons */
.stars {
    display: inline-flex;
    gap: 3px;
    color: var(--accent-yellow);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.stars .star {
    width: 22px;
    height: 22px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 0 auto 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b30500;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--navy-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #001a38;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border-color: var(--navy-blue);
    color: var(--navy-blue);
}

.btn-outline:hover {
    background-color: var(--navy-blue);
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    height: 80px;
    display: flex;
    align-items: center;
    transition: height 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header.scrolled {
    height: 64px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.header.scrolled .logo img {
    height: 48px;
}

.logo img {
    transition: height 0.25s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--navy-blue);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    animation: kenburns 22s ease-out infinite alternate;
    will-change: transform;
}

@keyframes kenburns {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.08) translate(-1.5%, -1%);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(120% 90% at 50% 100%, rgba(0, 0, 0, 0.55), transparent 60%),
        linear-gradient(135deg, rgba(0, 42, 92, 0.72), rgba(225, 6, 0, 0.5));
}

/* Subtle noise texture over hero for warmth */
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.35;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero-info .info-link,
.hero-info .info-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-info .icon {
    width: 20px;
    height: 20px;
    color: var(--accent-yellow);
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Menu Section */
.menu {
    background-color: var(--white);
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.menu-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.menu-card.highlight {
    border: 2px solid var(--accent-yellow);
    background: #fffdf5;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 10px;
}

.menu-card-header h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
}

.menu-card-header .icon {
    font-size: 2rem;
}

.menu-card-header .menu-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.menu-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Specials Section */
.specials {
    background-color: var(--light-bg);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.special-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.special-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.special-item .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-yellow);
    color: var(--navy-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.special-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.special-info {
    padding: 25px;
}

.special-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.special-info p {
    color: var(--text-muted);
}

.special-info .price {
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--navy-blue);
    letter-spacing: 0.5px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Reviews Section */
.reviews {
    background: var(--navy-blue);
    color: var(--white);
    /* static image — background-attachment: fixed breaks on iOS Safari */
    background-image: linear-gradient(rgba(0, 42, 92, 0.94), rgba(0, 20, 55, 0.98)), url('../images/ezbrgr-overlaybg.jpg');
    background-image: linear-gradient(rgba(0, 42, 92, 0.94), rgba(0, 20, 55, 0.98)),
        image-set(url('../images/ezbrgr-overlaybg.webp') type('image/webp'),
            url('../images/ezbrgr-overlaybg.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    position: relative;
}

.reviews .section-title {
    color: var(--white);
}

.reviews .section-line {
    background-color: var(--accent-yellow);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.review-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.review-author {
    font-weight: 600;
    color: var(--accent-yellow);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info .phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.hours {
    margin: 2rem 0;
    padding: 20px;
    background: var(--white);
    border-left: 4px solid var(--accent-yellow);
    box-shadow: var(--shadow-sm);
}

.hours h4 {
    margin-bottom: 0.5rem;
}

.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 50px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 2rem;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--text-light);
    font-weight: 600;
}

.footer-social a:hover {
    color: var(--primary-red);
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        border-top: 1px solid #eee;
    }

    .nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-toggle {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
        width: 100%;
        height: 2px;
        background-color: var(--navy-blue);
        position: absolute;
        transition: var(--transition);
    }

    .hamburger {
        top: 9px;
    }

    .hamburger::before {
        content: '';
        top: -9px;
    }

    .hamburger::after {
        content: '';
        top: 9px;
    }

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .mobile-hide {
        display: none;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-bg img {
        object-position: center;
    }

    .mobile-sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        background: var(--white);
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        display: flex;
        justify-content: center;
    }

    .mobile-sticky-bar .btn {
        width: 100%;
        max-width: 400px;
    }

    /* Add padding to body to prevent content being hidden behind sticky bar on mobile */
    body {
        padding-bottom: 80px;
    }
}

/* Sticky mobile order bar — hidden on desktop, shown <=600px via media query above */
.mobile-sticky-bar {
    display: none;
}

@media (max-width: 600px) {
    .mobile-sticky-bar {
        display: flex;
    }
}

/* =====================
   Phase 3 — Design Polish
   ===================== */

/* Gallery items were divs; now they're <button>s. Reset button chrome. */
.gallery-item {
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font: inherit;
    display: block;
    width: 100%;
}

/* Micro-interaction: press state on buttons */
.btn:active {
    transform: translateY(1px);
    filter: brightness(0.95);
}

/* Footer socials — icon + label pill */
.footer-social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Scroll-reveal — starts hidden, fades up when .is-visible is added */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger children (menu cards, specials, gallery, reviews) */
.reveal-stagger.is-visible>* {
    animation: staggerFade 0.7s ease both;
}

.reveal-stagger.is-visible>*:nth-child(1) {
    animation-delay: 0.05s;
}

.reveal-stagger.is-visible>*:nth-child(2) {
    animation-delay: 0.15s;
}

.reveal-stagger.is-visible>*:nth-child(3) {
    animation-delay: 0.25s;
}

.reveal-stagger.is-visible>*:nth-child(4) {
    animation-delay: 0.35s;
}

.reveal-stagger.is-visible>*:nth-child(5) {
    animation-delay: 0.45s;
}

.reveal-stagger.is-visible>*:nth-child(6) {
    animation-delay: 0.55s;
}

.reveal-stagger.is-visible>*:nth-child(7) {
    animation-delay: 0.65s;
}

.reveal-stagger.is-visible>*:nth-child(8) {
    animation-delay: 0.75s;
}

@keyframes staggerFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: lbFade 0.2s ease;
}

.lightbox[hidden] {
    display: none;
}

@keyframes lbFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-figure {
    max-width: 92vw;
    max-height: 88vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lightbox-figure img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lbZoom 0.3s ease;
}

@keyframes lbZoom {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-caption {
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: center;
    max-width: 80ch;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(8px);
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
    width: 22px;
    height: 22px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.06);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.06);
}

/* Menu card icon polish — subtle bg circle behind the cartoon icon */
.menu-card-header .menu-icon {
    background: rgba(0, 42, 92, 0.06);
    border-radius: 50%;
    padding: 6px;
}

/* Small mobile tweaks for lightbox controls */
@media (max-width: 600px) {

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* =====================
   Phase 5 — Delight extras
   ===================== */

/* Open Now / Closed pill in header */
.open-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 42, 92, 0.06);
    color: var(--navy-blue);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.open-status .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #999;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.open-status.is-open {
    background: rgba(0, 168, 68, 0.1);
    color: #086b32;
}

.open-status.is-open .dot {
    background: #22a24b;
    box-shadow: 0 0 0 4px rgba(34, 162, 75, 0.18);
    animation: pulseDot 2s ease-in-out infinite;
}

.open-status.is-closed {
    background: rgba(225, 6, 0, 0.08);
    color: var(--primary-red);
}

.open-status.is-closed .dot {
    background: var(--primary-red);
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(34, 162, 75, 0.18);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(34, 162, 75, 0.06);
    }
}

@media (max-width: 900px) {
    .open-status {
        display: none;
    }
}

/* Tabbed menu */
.menu-tabs {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.menu-tablist {
    display: flex;
    gap: 6px;
    border-bottom: 2px solid #e6e6e6;
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0;
}

.menu-tablist::-webkit-scrollbar {
    display: none;
}

.menu-tab {
    flex-shrink: 0;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    margin-bottom: -2px;
}

.menu-tab::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.menu-tab:hover {
    color: var(--navy-blue);
}

.menu-tab[aria-selected="true"] {
    color: var(--navy-blue);
}

.menu-tab[aria-selected="true"]::after {
    transform: scaleX(1);
}

.menu-panel {
    animation: panelFade 0.25s ease;
}

.menu-panel[hidden] {
    display: none;
}

@keyframes panelFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.menu-panel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.menu-panel-header .menu-icon {
    width: 48px;
    height: 48px;
    padding: 4px;
}

.menu-panel-note {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    margin: 0;
}

.menu-items {
    columns: 2;
    column-gap: 32px;
    padding: 0;
    list-style: none;
}

.menu-items li {
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    color: var(--text-dark);
    break-inside: avoid;
    line-height: 1.4;
}

.menu-items li:last-child {
    border-bottom: none;
}

.menu-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0 auto 2rem;
    max-width: 640px;
    padding: 0 20px;
}

@media (max-width: 700px) {
    .menu-items {
        columns: 1;
    }

    .menu-tabs {
        padding: 20px 16px;
    }

    .menu-tab {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

/* Print stylesheet */
@media print {

    .header,
    .mobile-sticky-bar,
    .hero-bg,
    .overlay,
    .hero-buttons,
    .footer-social,
    .footer-logo,
    .menu-cta,
    .lightbox,
    .skip-link,
    .nav-toggle,
    .gallery,
    .specials,
    .reviews,
    .map-container,
    .menu-tablist {
        display: none !important;
    }

    body,
    .section {
        padding: 0 !important;
        margin: 0 !important;
        background: #fff !important;
        color: #000 !important;
    }

    .hero {
        min-height: 0 !important;
        height: auto !important;
        color: #000 !important;
        padding: 20px 0 !important;
    }

    .hero-title {
        color: #000 !important;
        text-shadow: none !important;
        font-size: 2rem;
    }

    .hero-subtitle,
    .hero-info,
    .info-link,
    .info-text {
        color: #000 !important;
        text-shadow: none !important;
    }

    .container {
        max-width: 100% !important;
    }

    a {
        color: #000 !important;
        text-decoration: underline !important;
    }

    a[href^="tel:"]::after {
        content: " (" attr(href) ")";
    }

    section {
        page-break-inside: avoid;
    }

    .menu-panel {
        display: block !important;
    }

    .menu-panel[hidden] {
        display: block !important;
    }

    .menu-items {
        columns: 2;
    }

    .footer {
        background: #fff !important;
        color: #000 !important;
        border-top: 1px solid #000;
    }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {

    .hero-img,
    .reveal,
    .reveal-stagger.is-visible>*,
    .lightbox,
    .lightbox-figure img,
    .header,
    .btn,
    .special-item,
    .menu-card,
    .gallery-item img {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}