/* ==========================================================================
Monte Bianco — Demo Site Stylesheet
========================================================================== */

:root {
--bg-dark: #14100e;
--bg-darker: #0d0a09;
--gold: #c9a24b;
--gold-light: #e7cd8a;
--red: #9c2b2b;
--red-dark: #7a1f1f;
--cream: #faf6ee;
--cream-dim: #f1ead9;
--text-dark: #241f1c;
--text-muted: #6b6259;
--border-soft: rgba(201, 162, 75, 0.25);
--font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
--font-sans: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
--shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.15);
--shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.35);
}

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

/* Kill the default gray flash Android/iOS put on tap for custom buttons and
   links, so they feel like real native controls instead of unstyled HTML.
   Kept off inputs/textareas/selects deliberately -- native text fields
   should keep their normal platform tap feedback. */
a, button, .btn { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
font-family: var(--font-sans);
color: var(--text-dark);
background: var(--cream);
line-height: 1.65;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
font-family: var(--font-serif);
font-weight: 700;
line-height: 1.2;
letter-spacing: 0.02em;
}

.container {
width: 100%;
max-width: 1160px;
margin: 0 auto;
padding: 0 24px;
}

.eyebrow {
display: inline-block;
font-family: var(--font-sans);
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 14px;
}

.eyebrow::before {
content: '';
display: inline-block;
width: 28px;
height: 1px;
background: var(--gold);
margin-right: 10px;
vertical-align: middle;
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.section-head {
text-align: center;
max-width: 640px;
margin: 0 auto 56px;
}

.section-head h2 {
font-size: clamp(1.9rem, 3.4vw, 2.6rem);
color: var(--text-dark);
}

.section-head p {
margin-top: 14px;
color: var(--text-muted);
font-size: 1.02rem;
}

.section-head.on-dark h2 { color: var(--cream); }
.section-head.on-dark p { color: rgba(250, 246, 238, 0.72); }

/* ---------- Buttons ---------- */
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
font-family: var(--font-sans);
font-weight: 600;
font-size: 0.82rem;
letter-spacing: 0.14em;
text-transform: uppercase;
padding: 15px 30px;
border-radius: 3px;
border: 1px solid transparent;
cursor: pointer;
transition: all 0.25s ease;
white-space: nowrap;
}

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.btn-outline { background: transparent; color: var(--cream); border-color: rgba(250, 246, 238, 0.4); }
.btn-outline:hover { background: rgba(250, 246, 238, 0.1); border-color: var(--cream); }

.btn-gold { background: var(--gold); color: var(--bg-darker); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.btn-dark { background: var(--bg-dark); color: var(--cream); }
.btn-dark:hover { background: var(--bg-darker); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 500;
padding: 18px 0;
background: rgba(13, 10, 9, 0.55);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
padding: 12px 0;
background: rgba(13, 10, 9, 0.92);
box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.site-header .container {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}

.logo {
font-family: var(--font-serif);
font-size: 1.5rem;
font-weight: 700;
color: var(--cream);
letter-spacing: 0.03em;
line-height: 1;
}

.logo span {
display: block;
font-family: var(--font-sans);
font-size: 0.6rem;
letter-spacing: 0.35em;
color: var(--gold);
font-weight: 500;
margin-top: 4px;
}

.main-nav { display: flex; align-items: center; gap: 36px; }

.main-nav a {
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--cream);
position: relative;
padding-bottom: 4px;
transition: color 0.2s ease;
}

.main-nav a::after {
content: '';
position: absolute;
left: 0; bottom: 0;
width: 0;
height: 1px;
background: var(--gold);
transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active { color: var(--gold-light); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.header-phone {
color: var(--cream);
font-size: 0.85rem;
font-weight: 500;
display: flex;
align-items: center;
gap: 8px;
}
.header-phone i { color: var(--gold); }

.nav-toggle {
display: none;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 6px;
min-width: 44px;
min-height: 44px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
position: relative;
min-height: 100vh;
/* 100vh on iOS/Android mobile browsers is measured against the viewport
   WITH the address bar hidden, so a plain 100vh hero is taller than the
   space actually visible on load -- the reservation card at the bottom
   gets pushed off-screen until the user scrolls. dvh (dynamic viewport
   height) tracks the real, current visible area instead. Kept the vh
   line above as a fallback for browsers that don't support dvh yet. */
min-height: 100dvh;
display: flex;
align-items: center;
background: var(--bg-darker);
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
inset: 0;
background-image:
radial-gradient(circle at 20% 20%, rgba(201,162,75,0.10), transparent 45%),
radial-gradient(circle at 82% 70%, rgba(156,43,43,0.16), transparent 50%),
radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
background-size: auto, auto, 26px 26px;
}

.hero-content {
position: relative;
z-index: 2;
width: 100%;
padding-top: 110px;
}

.hero-slides { text-align: center; max-width: 780px; margin: 0 auto; }

.hero-slide { display: none; animation: fadeIn 0.9s ease; }
.hero-slide.is-active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: translateY(0);} }

.hero-script {
font-family: 'Playfair Display', cursive;
font-style: italic;
color: rgba(231, 205, 138, 0.18);
font-size: clamp(3rem, 9vw, 6rem);
position: absolute;
top: -30px; left: 50%;
transform: translateX(-50%);
white-space: nowrap;
z-index: -1;
}

.hero-slide h1 {
color: var(--cream);
font-size: clamp(2.4rem, 6vw, 4.4rem);
text-transform: uppercase;
letter-spacing: 0.03em;
}

.hero-slide h1 em {
font-style: normal;
color: var(--gold);
display: block;
}

.hero-slide p {
color: rgba(250, 246, 238, 0.78);
max-width: 480px;
margin: 22px auto 0;
font-size: 1.02rem;
}

.hero-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.hero-dots button {
width: 8px; height: 8px; border-radius: 50%;
border: 1px solid var(--gold);
background: transparent;
cursor: pointer;
padding: 0;
}
.hero-dots button.is-active { background: var(--gold); }

.hero-ctas {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 16px;
margin-top: 40px;
}

/* Reservation card */
.reservation-card {
position: relative;
z-index: 2;
max-width: 1000px;
margin: 64px auto 0;
background: rgba(20, 16, 14, 0.85);
border: 1px solid var(--border-soft);
border-radius: 6px;
padding: 28px 32px;
display: grid;
grid-template-columns: repeat(3, 1fr) auto;
gap: 20px;
align-items: end;
backdrop-filter: blur(6px);
}

.reservation-card h3 {
grid-column: 1 / -1;
color: var(--cream);
font-size: 1.1rem;
margin-bottom: 4px;
text-transform: uppercase;
letter-spacing: 0.1em;
}

.res-field { display: flex; flex-direction: column; gap: 8px; }
.res-field label {
font-size: 0.7rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--gold-light);
}
.res-field input, .res-field select {
background: rgba(250,246,238,0.06);
border: 1px solid rgba(250,246,238,0.2);
color: var(--cream);
padding: 13px 14px;
border-radius: 3px;
font-family: var(--font-sans);
/* iOS Safari auto-zooms the whole page in on focus for any text input
   under 16px -- jarring on a form like this one. 16px flat (not rem)
   guarantees it regardless of the page's root font size. */
font-size: 16px;
}
.res-field input::-webkit-calendar-picker-indicator { filter: invert(1); }

/* ---------- Story / intro split ---------- */
.story {
background: var(--cream);
padding: 100px 0;
}
.story-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
}
.story-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 20px; }
.story-copy p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.02rem; }

.stat-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.stat-card {
background: #fff;
border: 1px solid rgba(36,31,28,0.08);
border-radius: 6px;
padding: 26px 22px;
box-shadow: var(--shadow-soft);
}
.stat-card i { color: var(--red); font-size: 1.5rem; margin-bottom: 12px; }
.stat-card h4 { font-size: 1.02rem; margin-bottom: 6px; }
.stat-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---------- Pizza CTA banner ---------- */
.pizza-banner {
background: linear-gradient(120deg, var(--red-dark), var(--red));
color: #fff;
padding: 70px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.pizza-banner::before {
content: '\f818';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
font-size: 18rem;
opacity: 0.08;
right: -40px;
top: -60px;
transform: rotate(15deg);
}
.pizza-banner h2 {
font-size: clamp(1.8rem, 4vw, 2.6rem);
max-width: 720px;
margin: 0 auto 12px;
position: relative;
}
.pizza-banner p { opacity: 0.85; margin-bottom: 26px; position: relative; }

/* ---------- Menu preview cards (home) ---------- */
.menu-preview { background: var(--bg-darker); padding: 100px 0; }

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

.dish-card {
background: rgba(250, 246, 238, 0.04);
border: 1px solid rgba(250, 246, 238, 0.08);
border-radius: 8px;
overflow: hidden;
transition: transform 0.25s ease, border-color 0.25s ease;
}
.dish-card:hover { transform: translateY(-6px); border-color: var(--border-soft); }

.dish-thumb {
height: 130px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.1rem;
color: rgba(250,246,238,0.35);
}

.dish-body { padding: 18px 20px 22px; }
.dish-body .dish-top {
display: flex;
justify-content: space-between;
align-items: baseline;
gap: 10px;
margin-bottom: 8px;
}
.dish-body h4 {
font-size: 0.95rem;
color: var(--cream);
text-transform: uppercase;
letter-spacing: 0.03em;
}
.dish-price { color: var(--gold); font-weight: 600; font-family: var(--font-serif); font-size: 1.05rem; }
.dish-body p { color: rgba(250,246,238,0.6); font-size: 0.86rem; margin: 0; }

.see-more-wrap { text-align: center; margin-top: 48px; }
.footnote { text-align: center; color: rgba(250,246,238,0.4); font-size: 0.78rem; margin-top: 18px; letter-spacing: 0.02em; }

/* ---------- Info strip (footer content, all pages) ---------- */
.info-strip { background: var(--bg-dark); padding: 80px 0 40px; }

.info-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
padding-bottom: 50px;
border-bottom: 1px solid rgba(250,246,238,0.08);
}

.info-col h4 {
color: var(--gold);
font-size: 0.78rem;
letter-spacing: 0.18em;
text-transform: uppercase;
margin-bottom: 16px;
}
.info-col p, .info-col address {
color: rgba(250,246,238,0.72);
font-style: normal;
font-size: 0.92rem;
margin-bottom: 6px;
}
.info-col .hours-row { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 8px; font-size: 0.88rem; color: rgba(250,246,238,0.72); }
.info-col .hours-row span:first-child { color: var(--cream); font-weight: 500; }

.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
width: 44px; height: 44px;
border: 1px solid rgba(250,246,238,0.25);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
color: var(--cream);
transition: all 0.2s ease;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--bg-darker); }

.footer-bottom {
padding-top: 26px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 10px;
font-size: 0.78rem;
color: rgba(250,246,238,0.4);
}
.footer-bottom a { color: rgba(250,246,238,0.55); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Page header (interior pages) ---------- */
.page-header {
background: var(--bg-darker);
padding: 170px 0 80px;
text-align: center;
position: relative;
overflow: hidden;
}
.page-header::before {
content: '';
position: absolute; inset: 0;
background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
background-size: 26px 26px;
}
.page-header .eyebrow { position: relative; }
.page-header h1 {
position: relative;
color: var(--cream);
font-size: clamp(2.2rem, 5vw, 3.2rem);
text-transform: uppercase;
}
.breadcrumb { position: relative; margin-top: 14px; color: rgba(250,246,238,0.55); font-size: 0.85rem; }
.breadcrumb a { color: var(--gold-light); }

/* ---------- About page ---------- */
.about-lead { max-width: 760px; margin: 0 auto; text-align: center; }
.about-lead p { color: var(--text-muted); font-size: 1.08rem; margin-bottom: 18px; }

.value-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 22px;
margin-top: 60px;
}
.value-card {
text-align: center;
padding: 32px 20px;
border: 1px solid rgba(36,31,28,0.08);
border-radius: 8px;
background: #fff;
box-shadow: var(--shadow-soft);
}
.value-card i {
width: 56px; height: 56px;
margin: 0 auto 16px;
border-radius: 50%;
background: rgba(156,43,43,0.08);
color: var(--red);
display: flex; align-items: center; justify-content: center;
font-size: 1.3rem;
}
.value-card h4 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 0.88rem; }

/* ---------- Menu page ---------- */
.menu-nav {
position: sticky;
top: 74px;
z-index: 100;
background: var(--cream);
border-bottom: 1px solid rgba(36,31,28,0.1);
padding: 16px 0;
}
.menu-nav-list {
display: flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}
.menu-nav-list a {
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 12px 18px;
border-radius: 30px;
border: 1px solid rgba(36,31,28,0.15);
color: var(--text-dark);
transition: all 0.2s ease;
}
.menu-nav-list a:hover, .menu-nav-list a.active { background: var(--red); border-color: var(--red); color: #fff; }

.menu-category { padding: 70px 0; }
.menu-category:nth-child(even) { background: #f6f1e6; }
.menu-category-head { text-align: center; margin-bottom: 44px; }
.menu-category-head h2 {
font-size: clamp(1.6rem, 3vw, 2.1rem);
text-transform: uppercase;
letter-spacing: 0.08em;
}
.menu-category-head span {
display: block;
color: var(--gold);
font-family: var(--font-serif);
font-style: italic;
font-size: 1.1rem;
margin-top: 6px;
}

.menu-items {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px 50px;
max-width: 980px;
margin: 0 auto;
}
.menu-item { border-bottom: 1px dashed rgba(36,31,28,0.18); padding-bottom: 14px; }
.menu-item-top { display: flex; align-items: baseline; gap: 8px; }
.menu-item-top h4 {
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 0.03em;
white-space: nowrap;
}
.menu-item-top .dots { flex: 1; border-bottom: 1px dotted rgba(36,31,28,0.3); transform: translateY(-4px); }
.menu-item-top .price { font-family: var(--font-serif); color: var(--red); font-weight: 700; white-space: nowrap; }
.menu-item p { color: var(--text-muted); font-size: 0.88rem; margin-top: 6px; }

.menu-addons {
max-width: 980px;
margin: 36px auto 0;
text-align: center;
font-size: 0.85rem;
color: var(--text-muted);
background: rgba(201,162,75,0.08);
border: 1px dashed var(--border-soft);
border-radius: 6px;
padding: 16px 20px;
}
.menu-addons strong { color: var(--text-dark); }

/* ---------- Gallery page ---------- */
.gallery-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px;
}
.gallery-tile {
position: relative;
aspect-ratio: 1 / 1;
border-radius: 8px;
overflow: hidden;
display: flex;
align-items: flex-end;
padding: 18px;
color: #fff;
cursor: default;
}
.gallery-tile::after {
content: '';
position: absolute; inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 55%);
}
.gallery-tile i {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -60%);
font-size: 2.4rem;
opacity: 0.5;
}
.gallery-tile span { position: relative; font-family: var(--font-serif); font-size: 1rem; letter-spacing: 0.02em; }
.gallery-tile:hover i { opacity: 0.75; transform: translate(-50%, -65%) scale(1.06); transition: all 0.3s ease; }

/* ---------- Contact page ---------- */
.contact-grid {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 56px;
}
.contact-form { background: #fff; border: 1px solid rgba(36,31,28,0.08); border-radius: 10px; padding: 40px; box-shadow: var(--shadow-soft); }
.contact-form h3 { font-size: 1.4rem; margin-bottom: 10px; }
.contact-form > p { color: var(--text-muted); margin-bottom: 26px; font-size: 0.95rem; }

.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-row input, .form-row textarea {
width: 100%;
padding: 13px 16px;
border: 1px solid rgba(36,31,28,0.15);
border-radius: 4px;
font-family: var(--font-sans);
/* 16px flat, not rem -- same iOS auto-zoom-on-focus fix as the reservation
   card fields. */
font-size: 16px;
color: var(--text-dark);
background: #fdfcf9;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 14px; text-align: center; }

.contact-info-card {
background: var(--bg-darker);
color: var(--cream);
border-radius: 10px;
padding: 40px 34px;
height: fit-content;
}
.contact-info-card .info-row { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-card .info-row i {
width: 42px; height: 42px; flex-shrink: 0;
border-radius: 50%;
background: rgba(201,162,75,0.15);
color: var(--gold);
display: flex; align-items: center; justify-content: center;
}
.contact-info-card .info-row h5 { font-size: 0.9rem; margin-bottom: 4px; color: var(--gold-light); }
.contact-info-card .info-row p { font-size: 0.9rem; color: rgba(250,246,238,0.75); margin: 0; }

.map-embed { border-radius: 10px; overflow: hidden; margin-top: 40px; border: 1px solid rgba(36,31,28,0.08); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- Modal ---------- */
.demo-modal-overlay {
position: fixed; inset: 0;
background: rgba(13,10,9,0.72);
display: none;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 20px;
}
.demo-modal-overlay.is-open { display: flex; }
.demo-modal {
background: var(--cream);
border-radius: 10px;
max-width: 420px;
width: 100%;
padding: 38px 32px;
text-align: center;
position: relative;
box-shadow: var(--shadow-strong);
animation: fadeIn 0.25s ease;
}
.demo-modal i.modal-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 16px; }
.demo-modal h3 { font-size: 1.25rem; margin-bottom: 10px; }
.demo-modal p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 22px; }
/* There are two elements with this class: the small corner "×" icon button
   and the full "Close" button lower down, which also carries .btn.
   Both used to inherit position:absolute;top:14px;right:14px from a single
   bare .modal-close rule, so the "Close" button rendered pinned in the
   same corner as the × instead of in normal flow below the text --
   they overlapped. :not(.btn) scopes the corner placement (and the
   enlarged 44px tap target) to just the icon button; the real Close
   button gets its own rule further down that puts it back in normal flow. */
.modal-close:not(.btn) {
position: absolute; top: 8px; right: 8px;
width: 44px; height: 44px;
display: flex; align-items: center; justify-content: center;
background: none; border: none; font-size: 1.2rem; color: var(--text-muted); cursor: pointer;
}
.demo-modal .btn.modal-close {
position: static;
margin-top: 4px;
}

/* ---------- Footer note ---------- */
.demo-disclaimer {
background: var(--bg-darker);
color: rgba(250,246,238,0.35);
text-align: center;
font-size: 0.72rem;
padding: 14px 20px;
border-top: 1px solid rgba(250,246,238,0.06);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
.dish-grid { grid-template-columns: repeat(2, 1fr); }
.info-grid { grid-template-columns: repeat(2, 1fr); }
.value-grid { grid-template-columns: repeat(2, 1fr); }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.story-grid { grid-template-columns: 1fr; }
.contact-grid { grid-template-columns: 1fr; }
.reservation-card { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
.main-nav, .header-phone { display: none; }
.nav-toggle { display: flex; }
.main-nav.is-open {
display: flex;
flex-direction: column;
position: fixed;
top: 66px; left: 0; right: 0;
background: rgba(13,10,9,0.97);
padding: 24px;
gap: 20px;
}
.menu-items { grid-template-columns: 1fr; }
.dish-grid { grid-template-columns: 1fr 1fr; }
.gallery-grid { grid-template-columns: repeat(2, 1fr); }
.reservation-card { grid-template-columns: 1fr; }
.info-grid { grid-template-columns: 1fr 1fr; }
.value-grid { grid-template-columns: 1fr; }
.menu-nav { top: 60px; }
}

@media (max-width: 500px) {
.dish-grid, .gallery-grid, .info-grid { grid-template-columns: 1fr; }
.section { padding: 64px 0; }
.reservation-card { padding: 22px; }
}
