/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Colores - Urban/Industrial Palette */
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --accent: #D4AF37;
    /* Dorado Urbano */
    --accent-hover: #AA8C2C;

    /* Tipografía */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Espaciado */
    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* =========================================
   2. UTILITIES & BUTTONS
   ========================================= */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Clip-path estilo ticket/urbano */
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-4px) translateX(2px);
    box-shadow: -4px 4px 0 rgba(255, 255, 255, 0.1);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-dark);
    transform: translateY(-4px);
}

/* =========================================
   3. NAVBAR (Glassmorphism)
   ========================================= */
nav {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.85);
    /* Fallback */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding 0.3s ease;
}

nav.scrolled {
    padding: 1rem 0;
    background: rgba(18, 18, 18, 0.95);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-main);
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary)::hover::after {
    width: 100%;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
#burger-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    background: radial-gradient(circle at center, #2e2e2e 0%, #121212 100%);
    overflow: hidden;
}

.sticky-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#burger-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
    /* Slightly darken for text readability */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    pointer-events: auto;
    width: 100%;
    padding: 0 1rem;
}

#burger-hero h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(30px);
}

#burger-hero h1 .highlight {
    color: var(--accent);
    display: block;
    font-size: 0.6em;
    letter-spacing: 5px;
    margin-top: 5px;
}

#burger-hero p {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
}

.hero-btns {
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.5s;
    pointer-events: auto;
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    #burger-hero h1 {
        font-size: 3rem;
    }

    #burger-hero p {
        font-size: 1rem;
    }
}

/* =========================================
   5. SECTIONS: IDENTITY
   ========================================= */
#identity {
    background-color: var(--bg-dark);
    position: relative;
    padding-top: 8rem;
}

.subtitle {
    display: block;
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.identity-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.identity-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.identity-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 560px;
}

/* Imágenes asimétricas */
.identity-visual {
    position: relative;
    min-height: 520px;
}

.identity-img {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.identity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.identity-img:hover img {
    transform: scale(1.05);
}

.img-1 {
    position: absolute;
    top: 20px;
    right: 0;
    width: 100%;
    height: 420px;
    z-index: 2;
}

.identity-note {
    position: absolute;
    right: 0;
    bottom: 16px;
    width: 64%;
    background: rgba(16, 16, 16, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1rem 0.85rem;
    border-radius: 4px;
    z-index: 3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.identity-note h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.identity-note p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* =========================================
   6. SECTION: MENU
   ========================================= */
#menu {
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: visible;
    /* Cambiado a visible para que el hover no se corte si sale mucho */
    padding: 10rem 0;
    /* Más espacio vertical */
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.menu-content p {
    margin-bottom: 0;
}

.cta-wrapper {
    margin-top: 3rem;
    /* Separación solicitada */
}

.cta-wrapper .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.menu-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* layout 2x2 */
    gap: 1.5rem;
    padding-top: 30px;
    /* Espacio para el offset negativo */
}

.menu-card-visual {
    background: var(--bg-dark);
    padding: 1.5rem;
    width: 220px;
    /* Ancho original */
    height: 240px;
    /* REDUCIDO de 300px */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    /* Transition para el hover scale */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0s;
    cursor: default;
}

/* Efecto Hover Solicitado: Hacerse más grande */
.menu-card-visual:hover {
    transform: scale(1.1) translateY(-10px);
    z-index: 10;
    /* Asegurar que quede por encima de la otra */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Aplicar estilo Alterno a los elementos pares (2 y 4) */
.menu-card-visual:nth-child(even) {
    transform: translateY(-40px);
    /* Un poco más exagerado para que se note en el grid */
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
}

/* Hover específico para mantener el offset en los pares */
.menu-card-visual:nth-child(even):hover {
    transform: translateY(-50px) scale(1.1);
}

.dish-img {
    width: 120px;
    /* Reducido de 140px */
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: -50px;
    /* Ajustado */
    /* Pull up */
    margin-right: -40px;
    /* Pull right */
    align-self: flex-end;
    box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--bg-card);
    transition: transform 0.4s ease;
}

.menu-card-visual:nth-child(even) .dish-img {
    border-color: var(--accent);
}

.menu-card-visual:hover .dish-img {
    transform: scale(1.1) rotate(10deg);
}

.card-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    line-height: 1;
}

.card-info p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    opacity: 0.8;
}

/* =========================================
   7. SECTION: GALLERY (Mosaic)
   ========================================= */
#gallery {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.gallery-header {
    margin-bottom: 3rem;
    text-align: center;
}

.gallery-header h2 {
    font-size: 4rem;
    line-height: 0.9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(20%) contrast(110%);
    /* Look urbano */
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(100%);
}

/* Mosaic spans */
.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

/* =========================================
   7B. GALLERY LIGHTBOX
   ========================================= */
body.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 2000;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    width: min(92vw, 1200px);
    height: min(88vh, 900px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    background: rgba(255, 255, 255, 0.03);
}

.lightbox-close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.9);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.05);
    background: rgba(35, 35, 35, 0.95);
}

.lightbox-close:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* =========================================
   8. SECTION: LOCATION
   ========================================= */
#location {
    background-color: var(--bg-dark);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.location-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-block p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.location-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #1f1f1f;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
    filter: grayscale(0.15) contrast(1.05);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    font-size: 2rem;
    background-image: repeating-linear-gradient(45deg, #2a2a2a 0, #2a2a2a 10px, #252525 10px, #252525 20px);
}

/* =========================================
   9. FOOTER
   ========================================= */
footer {
    background-color: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-col h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.social-links a:hover {
    color: var(--accent);
}

/* =========================================
   10. SECTION: CONTACT
   ========================================= */
#contact {
    padding-top: 5rem;
}

.small-container {
    max-width: 800px;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 3.5rem;
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 0;
    /* Sharp edges */
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
    border: none;
    margin-top: 1rem;
}

/* =========================================
   11. ANIMATIONS (Scroll Reveal)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay para hijos (opcional) */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Pulse animation para detalles */
@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 77, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 0, 0);
    }
}

.btn-primary.pulse {
    animation: pulse-soft 2s infinite;
}

/* =========================================
   12. RESPONSIVE / MOBILE FIRST OVERRIDES
   ========================================= */

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
    display: none;
    /* Hidden on Desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Base Mobile Styles (applied mainly via max-width override strategy for retrofitting) */
@media (max-width: 768px) {

    /* 1. Global & Typography */
    body {
        overflow-x: hidden;
        /* Prevent horizontal scroll */
    }

    h1 {
        font-size: clamp(2.5rem, 8vw, 4rem) !important;
    }

    h2 {
        font-size: clamp(2rem, 6vw, 3rem) !important;
    }

    .container {
        padding: 0 16px;
    }

    /* 2. Navbar & Mobile Menu */
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        max-width: 300px;
        /* Slide out width or full? User asked for overlay/dropdown. Let's do slide-in right */
        background: var(--bg-card);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 2rem;
    }

    /* Backdrop/Overlay effect handled via body helper or separate div, 
       but for simplicity we use the slide-in. 
       Active state: */
    .nav-links.active {
        transform: translateX(0);
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

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

    .no-scroll {
        overflow: hidden;
    }

    /* 3. Hero Section */
    #burger-hero {
        min-height: 100dvh;
        /* Mobile viewport fix */
    }

    #burger-canvas {
        pointer-events: none;
        /* Ensure clicks pass through */
    }

    .hero-content {
        padding-top: 60px;
        /* Avoid nav overlap */
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-btns a {
        display: block;
        width: 100%;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
        /* Hide on small screens if needed, or keep discrete */
    }

    @media (max-height: 600px) {
        .scroll-indicator {
            display: none;
        }
    }

    /* 4. Sections Spacing & Layout */
    section {
        padding: 4rem 0 !important;
    }

    #identity,
    #contact {
        padding-top: 5rem !important;
        /* Override current specific paddings */
    }

    /* Identity */
    .identity-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .identity-visual {
        min-height: auto;
        width: 100%;
        display: grid;
        gap: 1rem;
    }

    .img-1,
    .img-2 {
        position: static;
        height: 250px;
        width: 100%;
        opacity: 1;
    }

    .identity-note {
        position: static;
        width: 100%;
    }

    /* Menu */
    #menu {
        padding: 5rem 0;
    }

    .menu-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-visual {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 4rem;
        /* More gap for the transform hack */
        margin-top: 3rem;
    }

    .menu-card-visual {
        width: 100%;
        transform: none !important;
        /* Reset offsets */
    }

    .menu-card-visual:nth-child(even) {
        transform: none !important;
    }

    .menu-card-visual:hover,
    .menu-card-visual:nth-child(even):hover {
        transform: scale(1.02) !important;
    }

    /* Gallery */
    .gallery-header h2 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-item {
        height: 250px;
    }

    .lightbox {
        padding: 1rem;
    }

    .lightbox-content {
        width: 100%;
        height: min(82vh, 700px);
    }

    .lightbox-close {
        top: -0.5rem;
        right: -0.25rem;
    }

    /* Location */
    .location-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

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

    /* Contact */
    .contact-form {
        padding: 1.5rem;
    }

    .contact-header h2 {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
}

/* Tablet Tweaks (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    h1 {
        font-size: 4rem;
    }

    .hero-btns {
        flex-direction: row;
    }

    .identity-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .identity-visual {
        min-height: 500px;
    }

    .menu-visual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .menu-card-visual {
        width: 100%;
    }

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

    .item-large,
    .item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}
