/* ===== Casa Primavera - Taberna Soares ===== */

:root {
    --color-primary: #a8241c;
    --color-primary-dark: #7d1a14;
    --color-accent: #c98f2b;
    --color-dark: #241a14;
    --color-text: #2d2620;
    --color-muted: #6b5f54;
    --color-bg: #fdfaf5;
    --color-bg-alt: #f4ece0;
    --color-border: #e4d8c6;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito Sans', Arial, sans-serif;
    --max-width: 1160px;
    --radius: 10px;
    --shadow: 0 10px 30px rgba(36, 26, 20, 0.12);
}

* { box-sizing: border-box; }


body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

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

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }

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

h1, h2, h3 { font-family: var(--font-heading); color: var(--color-dark); margin: 0 0 .5em; }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .02em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s ease;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; }
.btn-outline { background: transparent; border-color: currentColor; color: inherit; }
.btn-outline:hover { background: rgba(0,0,0,.06); }

/* ===== Page loader ===== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-primary-dark);
    background-image: radial-gradient(circle at 50% 30%, rgba(201, 143, 43, .18), transparent 60%);
    transition: opacity .6s ease, visibility .6s ease;
}
.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-ring {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
}
.page-loader-ring::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px dashed var(--color-accent);
    animation: loaderSpin 6s linear infinite;
}
.page-loader-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    animation: loaderPulse 1.8s ease-in-out infinite;
}
.page-loader-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0;
    opacity: 0;
    animation: loaderFadeIn .8s ease .3s forwards;
}
.page-loader-subtitle {
    color: var(--color-accent);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin: 6px 0 0;
    opacity: 0;
    animation: loaderFadeIn .8s ease .5s forwards;
}
.page-loader-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 90px;
}

@keyframes loaderSpin { to { transform: rotate(360deg); } }
@keyframes loaderPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes loaderFadeIn { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
    .page-loader-ring::before { animation: none; }
    .page-loader-logo { animation: none; }
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 250, 245, .96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--color-border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}
.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-dark);
    line-height: 1.1;
}
.brand-text small {
    display: block;
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .03em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(36, 26, 20, .08);
    transition: all .2s ease;
}
.lang-toggle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(168, 36, 28, .22);
}
.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .28);
    flex-shrink: 0;
    display: block;
}
.nav-lang-item { display: none; }

.main-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    color: var(--color-text);
    font-weight: 600;
    font-size: .95rem;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--color-primary);
    transition: width .2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--color-dark);
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(36,26,20,.55) 0%, rgba(36,26,20,.72) 100%);
}
.hero-content { position: relative; z-index: 1; margin: 0 auto; }
.hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: .3em;
}
.hero h1 span {
    display: block;
    font-size: .38em;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-top: .4em;
}
.hero p {
    max-width: 560px;
    margin: 0 auto 2em;
    font-size: 1.1rem;
    color: #f1e9dc;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@keyframes heroEnter {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-overlay { animation: heroFade 1s ease both; }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
.hero h1, .hero p, .hero-actions {
    opacity: 0;
    animation: heroEnter .8s ease forwards;
}
.hero h1 { animation-delay: .15s; }
.hero p { animation-delay: .35s; }
.hero-actions { animation-delay: .55s; }

@media (prefers-reduced-motion: reduce) {
    .hero-overlay, .hero h1, .hero p, .hero-actions {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
.hero .btn-outline { border-color: #fff; color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,.15); }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); text-align: center; }
.section-title-row { position: relative; }

.lang-toggle-light {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease;
}
.lang-toggle-light:hover { background: var(--color-bg-alt); border-color: var(--color-primary); }

.menu-page-link {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.menu-page-link svg { width: 22px; height: 22px; }
.menu-page-link:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
    transform: translateY(calc(-50% - 2px));
}

.section-subtitle {
    text-align: center;
    color: var(--color-muted);
    max-width: 620px;
    margin: 0 auto 3em;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-top { align-items: start; }
.split-text p { color: var(--color-text); margin-bottom: 1.1em; }
.split-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
#horarios .split-image { margin-top: 40px; }

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-hidden { display: none; }

.gallery-toggle-wrapper { display: flex; justify-content: center; margin-top: 2.2em; }
.gallery-toggle { border-color: var(--color-primary); color: var(--color-primary); }

.lightbox {
    position: fixed; inset: 0;
    background: rgba(20, 14, 10, .92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    font-size: 1.6rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ===== Menu ===== */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.5em;
}
.menu-tab {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .9rem;
    color: var(--color-muted);
    cursor: pointer;
    transition: all .2s ease;
}
.menu-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.menu-tab.active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.menu-panel { display: none; max-width: 760px; margin: 0 auto; }
.menu-panel.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 4px;
    border-bottom: 1px dashed var(--color-border);
}
.menu-item-name { font-weight: 600; }
.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted var(--color-border);
    transform: translateY(-4px);
}
.menu-item-price { font-weight: 700; color: var(--color-primary); white-space: nowrap; }
.menu-subsection-title {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    font-size: 1.15rem;
    margin: 1.8em 0 0.8em;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--color-accent);
    text-align: left;
}
.menu-note { text-align: center; color: var(--color-muted); font-size: .88rem; margin-top: 2.5em; }

/* ===== Beer taps ===== */
.beer-taps {
    max-width: 420px;
    margin: 3.5em auto 2.5em;
}
.beer-taps-svg { width: 100%; height: auto; display: block; overflow: visible; }
.beer-tap { cursor: pointer; }
.beer-tap:focus { outline: none; }
.beer-tap:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 4px; }
.beer-tap .tap-foam,
.beer-tap .tap-bubble { opacity: 0; }
.beer-tap .tap-stream {
    transform-box: fill-box;
    transform-origin: 50% 0%;
    transform: scaleY(0);
}
.beer-tap.is-pouring .tap-stream { animation: tapStream 2.4s ease forwards; }
.beer-tap.is-pouring .tap-foam { animation: tapFoam 2.4s ease forwards; }
.beer-tap.is-pouring .tap-bubble-1 { animation: tapBubble 1.1s ease-out 2 both; }
.beer-tap.is-pouring .tap-bubble-2 { animation: tapBubble 1.1s ease-out .3s 2 both; }
.beer-tap.is-pouring .tap-bubble-3 { animation: tapBubble 1.1s ease-out .6s 2 both; }
.beer-tap.is-pouring .tap-handle { animation: tapHandlePull 2.4s ease; }

@keyframes tapHandlePull {
    0% { transform: rotate(0deg); }
    8% { transform: rotate(20deg); }
    82% { transform: rotate(20deg); }
    96% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}
@keyframes tapStream {
    0% { transform: scaleY(0); opacity: 0; }
    8% { opacity: 1; }
    25% { transform: scaleY(1); }
    85% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}
@keyframes tapFoam {
    0%, 22% { opacity: 0; }
    32% { opacity: .95; }
    85% { opacity: .95; }
    100% { opacity: 0; }
}
@keyframes tapBubble {
    0% { transform: translateY(0); opacity: 0; }
    15% { opacity: .9; }
    100% { transform: translateY(45px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .beer-tap.is-pouring .tap-stream,
    .beer-tap.is-pouring .tap-foam,
    .beer-tap.is-pouring .tap-bubble-1,
    .beer-tap.is-pouring .tap-bubble-2,
    .beer-tap.is-pouring .tap-bubble-3,
    .beer-tap.is-pouring .tap-handle { animation: none; }
}

/* ===== Hours ===== */
.open-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: .8em;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--color-bg-alt);
    font-size: .85rem;
    font-weight: 700;
}
.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-muted);
    flex-shrink: 0;
}
.open-status.is-open { background: #e4f4e6; }
.open-status.is-open .status-dot { background: #2e9e46; box-shadow: 0 0 0 3px rgba(46, 158, 70, .18); }
.open-status.is-open .status-text { color: #1f6b30; }
.open-status.is-closed { background: #fbe6e4; }
.open-status.is-closed .status-dot { background: var(--color-primary); }
.open-status.is-closed .status-text { color: var(--color-primary-dark); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1em; }
.hours-table td { padding: 12px 0; border-bottom: 1px solid var(--color-border); }
.hours-table td:first-child { font-weight: 700; color: var(--color-dark); }
.hours-table td:last-child { text-align: right; color: var(--color-muted); }
.hours-table tr.closed td:last-child { color: var(--color-primary); font-weight: 700; }
.hours-note {
    margin-top: 1.2em;
    font-size: .88rem;
    color: var(--color-primary-dark);
    font-weight: 700;
}

/* ===== Contact ===== */
.contactos-title { margin-bottom: 1em; }
.contact-info {
    display: flex;
    flex-direction: column;
    margin-top: 0.7em;
    margin-bottom: 2.2em;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 4px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    box-shadow: none;
    transition: background .18s ease;
}
.contact-info .contact-card:last-child { border-bottom: none; }
.contact-card:hover { background: var(--color-bg-alt); }
.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-detail { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-muted);
}
.contact-value {
    font-weight: 700;
    color: var(--color-dark);
    word-break: break-word;
}
.contact-card:hover .contact-value { color: var(--color-primary); }

.contact-email-btn { display: inline-block; }

/* ===== Map ===== */
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1.5em;
}
.map-wrapper iframe { display: block; }
.map-placeholder {
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    text-align: center;
    background: var(--color-bg-alt);
}
.map-placeholder p { max-width: 380px; color: var(--color-muted); margin: 0; }
.map-link { display: block; width: fit-content; margin: 0 auto; border-color: var(--color-primary); color: var(--color-primary); }

/* ===== Cookie banner ===== */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 560px;
    margin: 0 auto;
    background: var(--color-dark);
    color: #f1e9dc;
    padding: 20px 22px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.cookie-banner.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: .88rem; line-height: 1.5; }
.cookie-banner a { color: var(--color-accent); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; justify-content: flex-end; }
.cookie-banner-actions .btn { padding: 8px 18px; font-size: .85rem; }
.cookie-banner-actions .btn-outline { border-color: rgba(255, 255, 255, .35); color: #f1e9dc; }
.cookie-banner-actions .btn-outline:hover { background: rgba(255, 255, 255, .08); }
@media (max-width: 480px) {
    .cookie-banner-actions { justify-content: stretch; }
    .cookie-banner-actions .btn { flex: 1; }
}

/* ===== Scroll reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Footer ===== */
.site-footer {
    background: var(--color-dark);
    color: #cfc3b6;
    padding: 32px 0;
    text-align: center;
    font-size: .88rem;
}
.footer-inner p { margin: .3em 0; }
.site-footer a { color: var(--color-accent); }

.complaints-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #f1e9dc !important;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .01em;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.complaints-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.complaints-badge:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .5);
    color: #fff !important;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 32px; }
    .split-reverse { direction: ltr; }
    .split-image { order: -1; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
    .header-lang-toggle { display: none; }
    .nav-lang-item {
        display: flex;
        padding: 14px 0 6px;
        border-bottom: none;
    }
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }
    .main-nav.open { max-height: 480px; box-shadow: var(--shadow); }
    .main-nav ul { flex-direction: column; gap: 0; padding: 10px 20px 20px; }
    .main-nav li { border-bottom: 1px solid var(--color-border); }
    .main-nav a { display: block; padding: 14px 0; }

    .section { padding: 60px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.2rem; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 12px; right: 12px; }

    .hero { min-height: 78vh; }
    .hero-actions { flex-direction: column; align-items: stretch; }

    .brand-text { font-size: 1rem; }

    .menu-page-link,
    .lang-toggle-light { top: calc(50% - 14px); }
}

@media (max-width: 420px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-item { flex-wrap: wrap; }
}
