/* Menu Filter Buttons */
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  color: var(--ink);
  border: 2px solid #f1e0db;
  border-radius: 999px;
  padding: 8px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.9rem;
}

.filter-btn:hover {
  background: var(--light-red);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.menu-block {
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
}

.menu-block.hidden {
  display: none !important;
}

.menu-detailed { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.menu-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; background: var(--white); border: 1px solid #f1e0db; border-radius: 14px; padding: 12px; }
.menu-row .item { margin: 0; font-weight: 700; }
.menu-row .desc { margin: 6px 0 4px; color: var(--muted); }
.menu-row .a-icons { display: flex; gap: 6px; align-items: center; margin-top: 6px; }
.menu-row .a-icons img { width: 22px; height: 22px; }
.menu-row .prices { display: grid; justify-items: end; align-content: center; gap: 6px; }
.price-row { display: flex; align-items: center; gap: 8px; }
.price-row .label { background: var(--light-red); color: var(--primary); padding: 2px 8px; border-radius: 999px; font-size: 0.85rem; font-weight: 800; }
.price-row .amount { font-weight: 900; color: var(--primary); }
.price-row.meal .label { background: #ffe3e3; color: var(--accent); }
.price-row.meal .amount { color: var(--accent); }
:root {
  /* Brand palette */
  --primary: #C62828; /* Primair Rood */
  --accent: #D32F2F;  /* Accent Rood */
  --light-red: #FFCDD2; /* Licht rood patroon */
  --bg: #FFF8F0; /* Crème achtergrond */
  --white: #FFFFFF;
  --pill-bg: #FFF3E0; /* Geel pill */
  --pill-text: #795548; /* Bruin pill tekst */

  /* Text + effects */
  --ink: #333333; /* Body tekst */
  --muted: #616161;
  --primary-ink: #ffffff;
  --ring: rgba(211, 47, 47, 0.25);
  --shadow: 0 6px 24px rgba(2, 17, 36, 0.08);
  --radius: 16px;
  --radius-lg: 20px;

  /* Surfaces */
  --card: var(--white);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; border-radius: 12px; background: var(--light-red); }
/* Smooth lazy image reveal */
.lazy-animate { opacity: 0; transform: translateY(4px); transition: opacity .35s ease, transform .35s ease; }
.lazy-animate.is-loaded { opacity: 1; transform: none; }
.card, .menu-media img, .t-card, .location-block, .brand-mark, .site-nav a { transition: transform .25s ease, box-shadow .25s ease, filter .25s ease; will-change: transform; }
@media (hover:hover) and (pointer:fine) {
  .menu-media img:hover { transform: translateY(-2px) scale(1.01); filter: saturate(1.02); box-shadow: 0 10px 24px rgba(2,17,36,.12); }
  .card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(2,17,36,.12); }
  .t-card:hover { transform: translateY(-2px); }
  .location-block:hover { transform: translateY(-2px); }
  .brand-mark:hover { transform: rotate(-3deg) scale(1.03); }
  .site-nav a:hover { transform: translateY(-1px); }
}
@media (hover:none) {
  .menu-media img:active { transform: translateY(-1px) scale(1.005); }
}

.container { width: min(1100px, 92%); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: white; box-shadow: var(--shadow); transition: background .3s ease, box-shadow .3s ease;
}
.header-inner { display: flex; align-items: center; justify-content: center; padding: 18px 0; }
.nav-bubble { width: 100%; background: var(--bg); border: 1.5px solid var(--light-red); border-radius: 999px; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--primary); font-weight: 800; font-size: 18px; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; background: var(--primary); color: var(--primary-ink); border-radius: 10px; font-weight: 900; }
.brand-logo { width: 26px; height: 26px; object-fit: contain; background: transparent; border-radius: 6px; }
.site-nav { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.site-nav a { color: var(--ink); text-decoration: none; padding: 8px 12px; border-radius: 10px; }
.site-nav a:hover { background: var(--light-red); color: var(--primary); }
.nav-toggle { display: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0.75rem 1.5rem; border-radius: 0.5rem; border: 2px solid transparent; text-decoration: none; font-weight: 600; font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; font-size: 1rem; }
.btn-primary { background: var(--primary); color: var(--primary-ink); box-shadow: 0 8px 20px var(--ring); }
.btn-primary:hover { background: var(--accent); }
.btn-ghost { background: var(--white); border-color: var(--primary); color: var(--primary); }
.btn-ghost:hover { background: var(--light-red); border-color: var(--accent); color: var(--accent); }
/* Desktop-only helper */
@media (max-width: 900px) { .desktop-only { display: none; } }
/* Mobile-only helper */
.mobile-only { display: none; }
@media (max-width: 900px) {
  .mobile-only { display: flex; gap: 8px; }
  .mobile-only .btn { padding: 0.35rem 0.7rem; font-size: 0.8rem; border-width: 1.5px; }
  /* Ensure mobile buttons are visible inside specials copy */
  .card-special .mobile-only { margin-top: 8px; }
}

/* Topbar */
.topbar { background: var(--primary); color: #fff; padding: 8px 0; }
.topbar-inner { display: flex; align-items: center; gap: 10px; justify-content: center; font-size: 0.95rem; }
.topbar .stars { letter-spacing: 2px; color: #ffd166; }
.topbar .sep { opacity: 0.7; }
.rating-pills { display: flex; align-items: center; gap: 10px; color: #fff; flex-wrap: wrap; justify-content: center; }
.rating-pills .pill { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.35); padding: 4px 10px; border-radius: 999px; color: #fff; text-decoration: none; }
.rating-pills .pill:hover { background: rgba(255,255,255,0.22); }
.rating-pills .provider { opacity: 0.9; }

/* Hero */
.hero { padding: 28px 0 8px; }
.hero-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center; }
.hero-left { display: grid; gap: 12px; }
.uber-rating { display: inline-flex; align-items: center; gap: 10px; color: #00c161; font-weight: 600; }
.uber-dot { width: 10px; height: 10px; display: inline-block; border-radius: 50%; background: #000; color: transparent; }
.hero h1 { font-family: "Fredoka One", cursive; color: var(--primary); font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1.2; margin: 0; font-weight: 400; }
.hero-bullets { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; margin-top: 6px; }
.hero-media .media-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
/* Force perfectly equal squares regardless of intrinsic size */
.hero-media .media-2x2 img { width: 100%; aspect-ratio: 1 / 1; height: 100%; object-fit: cover; border-radius: 18px; box-shadow: 0 0 0 rgba(0,0,0,0); transition: transform .28s ease, filter .28s ease, box-shadow .28s ease; will-change: transform; }
@media (hover:hover) and (pointer:fine) {
  .hero-media .media-2x2 img:hover { filter: saturate(1.05) contrast(1.02); box-shadow: 0 10px 24px rgba(2,17,36,.12); transform: scale(1.06); }
  /* Ensure hero_6 explicitly gets the same hover effect */
  .hero-media img[data-img-key="hero_6"]:hover { filter: saturate(1.05) contrast(1.02); box-shadow: 0 10px 24px rgba(2,17,36,.12); transform: scale(1.06); }
}
/* Fine-tuned crops for hero images (per user request) */
.hero-media img[data-img-key="hero_1"] { object-position: 70% 30%; }
.hero-media img[data-img-key="hero_2"] { transform-origin: 50% 50%; }
.hero-media img[data-img-key="hero_3"] { transform-origin: 50% 50%; }
.hero-media img[data-img-key="hero_4"] { object-position: 50% 80%; transform-origin: 50% 80%; }
/* Ensure new hero_6 follows same behavior */
.hero-media img[data-img-key="hero_6"] { transform: none; transform-origin: 50% 50%; }

/* Sections */
.section { padding: 36px 0; }
.section-title { font-family: "Fredoka One", cursive; color: var(--primary); font-size: clamp(2rem, 2.6vw, 2.5rem); line-height: 1.2; margin: 0 0 12px; font-weight: 400; text-align: center; }
.section-title-lg { font-size: clamp(2.2rem, 3vw, 3rem); }
.section-header p { color: var(--muted); }
.feature-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding: 0; list-style: none; }
.feature-list li { background: var(--pill-bg); border: 1px solid #ffe3bf; color: var(--pill-text); border-radius: 999px; padding: 10px 14px; box-shadow: 0 2px 0 rgba(0,0,0,0.03); display: flex; align-items: center; gap: 8px; justify-content: center; text-align: center; }
.feature-list strong { display: block; font-weight: 700; margin-bottom: 4px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.card { background: var(--card); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow); border: 1px solid #f1e0db; }
.card h3 { margin-top: 0; margin-bottom: 8px; }
.muted { color: var(--muted); }

/* Menu lists */
.menu-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.menu-item { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; background: var(--white); border-radius: 12px; padding: 10px 12px; border: 1px solid #f1e0db; }
.menu-item .price { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--primary); }

/* Detailed menu rows */
.menu-detailed { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.menu-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; background: var(--white); border: 1px solid #f1e0db; border-radius: 14px; padding: 12px; }
.menu-row .item { margin: 0; font-weight: 700; }
.menu-row .desc { margin: 6px 0 4px; color: var(--muted); }
.menu-row .contains { margin: 0; color: #8b5e3c; font-size: 0.92rem; }
.menu-row .prices { display: grid; justify-items: end; align-content: center; gap: 6px; }
.menu-row .prices .price { color: var(--primary); font-weight: 800; }
.menu-row .prices .meal { color: var(--accent); font-weight: 700; }

/* Specials */
.card-special { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; align-items: center; }
.special-media img { width: 100%; height: 280px; object-fit: cover; }
/* Show special image in full (no crop) */
.card-special .special-media img { height: auto; object-fit: contain; background: transparent; }

/* Testimonials */
.eyebrow { color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
.t-rail { position: relative; }
.testimonial-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 44px; -ms-overflow-style: none; scrollbar-width: none; }
.testimonial-scroller::-webkit-scrollbar { display: none; }
.t-card { background: var(--card); border: 1px solid var(--light-red); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); scroll-snap-align: start; }
.t-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--light-red); background: var(--white); color: var(--primary); cursor: pointer; }
.t-nav.prev { left: 0; }
.t-nav.next { right: 0; }
.t-stars { color: #ffd166; letter-spacing: 2px; margin-bottom: 10px; }
.t-card .quote { color: var(--ink); }
.t-card .author { margin-top: 14px; color: var(--muted); font-weight: 700; }

/* Base reveal (always on; disabled under reduced motion) */
.reveal { opacity: 0; transform: translateY(14px) scale(.985); transition: opacity .55s ease, transform .55s cubic-bezier(.22,.75,.25,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-stagger > * { opacity: 0; transform: translateY(10px); transition: opacity .45s ease, transform .45s ease; }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .18s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }

/* Desktop: make reveals iets duidelijker maar nog subtiel */
@media (min-width: 1024px) {
  .reveal { transform: translateY(18px) scale(.982); transition-duration: .7s; }
}

/* Alternating menu section */
.menu-section .menu-block { display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; align-items: stretch; margin-bottom: 26px; }
.menu-section .menu-block.alt { grid-template-columns: 1fr 1.1fr; }
.menu-media { height: 100%; }
.menu-media img { width: 100%; border-radius: 18px; height: 100%; min-height: 260px; object-fit: cover; }
.menu-panel h3 { margin-top: 0; font-family: "Fredoka One", cursive; color: var(--primary); font-weight: 400; }
.allergens { display: flex; gap: 8px; align-items: center; margin-top: 10px; opacity: 0.9; }
.allergens img { width: 22px; height: 22px; object-fit: contain; background: transparent; }
/* Allergen tooltips */
.a-icons, .allergens { position: relative; }
.a-icon { position: relative; display: inline-flex; align-items: center; }
.a-icon .bb-tip { position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(6px) scale(.98); opacity: 0; pointer-events: none; background: var(--white); color: var(--ink); border: 1px solid #f1e0db; border-radius: 10px; padding: 6px 8px; box-shadow: var(--shadow); white-space: nowrap; font-size: 0.85rem; line-height: 1.2; z-index: 10; transition: opacity .2s ease, transform .2s ease; }
.a-icon .bb-tip::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 7px solid #f1e0db; }
.a-icon .bb-tip::before { content: ""; position: absolute; top: calc(100% - 1px); left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid var(--white); }
.a-icon:hover .bb-tip, .a-icon:focus-within .bb-tip { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
@media (prefers-reduced-motion: no-preference) {
  .menu-block.reveal .menu-row { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; will-change: opacity, transform; }
  .menu-block.reveal.is-visible .menu-row { opacity: 1; transform: none; }
  .menu-block.reveal.is-visible .menu-row:nth-child(1) { transition-delay: .04s; }
  .menu-block.reveal.is-visible .menu-row:nth-child(2) { transition-delay: .10s; }
  .menu-block.reveal.is-visible .menu-row:nth-child(3) { transition-delay: .16s; }
  .menu-block.reveal.is-visible .menu-row:nth-child(4) { transition-delay: .22s; }
  .menu-block.reveal.is-visible .menu-row:nth-child(5) { transition-delay: .28s; }
  .menu-block.reveal .menu-media img { opacity: 0; transform: translateY(6px) scale(1.01); transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1); will-change: opacity, transform; }
  .menu-block.reveal.is-visible .menu-media img { opacity: 1; transform: translateY(0) scale(1); }
}

/* Schedule */
.schedule ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.schedule li { display: flex; justify-content: space-between; padding: 10px 12px; background: var(--white); border-radius: 12px; border: 1px solid #f1e0db; }

/* Contact grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 16px; align-items: start; }
.contact-card address { font-style: normal; color: var(--muted); }
.map-card { display: grid; gap: 12px; }
.map-card iframe { width: 100%; min-height: 280px; border: 0; border-radius: 12px; }
.location-photo { width: 100%; height: 180px; object-fit: cover; }

/* Locations */
.location-block { display: grid; grid-template-columns: 1fr 1.2fr; gap: 16px; margin-bottom: 16px; }
.location-details h3 { margin: 0 0 6px; }
.location-details h4 { margin: 10px 0 4px; color: var(--primary); }
.location-details address { font-style: normal; }
.location-details .buttons { margin: 8px 0 12px; }
.location-map iframe { width: 100%; min-height: 320px; border: 0; border-radius: 12px; }

/* FAQ */
.faq { scroll-margin-top: 90px; }
.faq .section-title { margin-bottom: 14px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { position: relative; background: var(--card); border: 1px solid #f5d0d5; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 20px rgba(2,17,36,.06); transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease; }
.faq-item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--light-red); transition: background .25s ease, width .25s ease; border-top-left-radius: 16px; border-bottom-left-radius: 16px; }
.faq-item:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(2,17,36,.10); }
.faq-item.open { border-color: #f1b7bf; }
.faq-item.open::before { background: var(--primary); width: 6px; }
.faq-q { width: 100%; text-align: left; padding: 18px 20px; background: linear-gradient(180deg, #ffeaee, #ffd9df); border: 0; color: var(--primary); display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-q span { font-family: "Fredoka One", cursive; font-weight: 400; letter-spacing: .2px; }
.faq-q::after { content: "\203A"; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 999px; background: #fff; border: 2px solid var(--accent); color: var(--accent); font-weight: 900; font-size: 18px; transform: rotate(90deg); transition: transform .3s ease, background .3s ease; }
.faq-item.open .faq-q::after { transform: rotate(-90deg); background: #ffe9eb; }
.faq-q:focus-visible { outline: 3px solid rgba(198,40,40,.25); outline-offset: 2px; border-radius: 12px; }
.faq-a { padding: 0 20px; color: var(--ink); background: linear-gradient(180deg, #fff, #fff7f5); border-top: 1px solid #f5d0d5; max-height: 0; overflow: hidden; transition: max-height .5s ease, padding .25s ease; line-height: 1.7; }
.faq-item.open .faq-a { padding: 16px 20px 18px; max-height: 520px; }

/* Locations grid for two columns */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer { margin-top: 40px; padding: 22px 0; background: var(--white); box-shadow: var(--shadow); position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 14px; background: repeating-linear-gradient(45deg, var(--primary) 0 16px, var(--light-red) 16px 32px); border-top-left-radius: 12px; border-top-right-radius: 12px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.footer-nav { display: flex; gap: 12px; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .card-special { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-scroller { grid-auto-columns: 60%; }
  .menu-section .menu-block, .menu-section .menu-block.alt { grid-template-columns: 1fr; }
}

/* Promo */
.promo-card { background: var(--pill-bg); border: 2px dashed var(--primary); color: var(--pill-text); border-radius: 16px; padding: 14px; text-align: center; font-weight: 700; box-shadow: var(--shadow); }

@media (max-width: 720px) {
  .hero-split { grid-template-columns: 1fr; }
  .site-nav { position: absolute; right: 4%; top: 56px; background: white; padding: 12px; border-radius: 12px; box-shadow: var(--shadow); min-width: 220px; z-index: 40;
    display: grid; grid-auto-rows: min-content; gap: 6px; visibility: hidden; opacity: 0; transform: translateY(6px) scale(.98); pointer-events: none; transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s; }
  .site-nav.open { visibility: visible; opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; transition: opacity .25s ease, transform .25s ease, visibility 0s; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 10px; border: 1px solid #e5e7eb; background: white; }
  .testimonial-scroller { grid-auto-columns: 88%; }
}

/* iPhone/mobile tweaks */
@media (max-width: 480px) {
  /* Topbar refinement */
  .topbar-inner { font-size: 0.9rem; flex-direction: column; gap: 6px; align-items: center; }
  .rating-pills { 
    gap: 8px; 
    justify-content: center; 
    width: 100%; 
    max-width: 460px; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    align-items: center;
  }
  .rating-pills .stars { grid-column: 1 / -1; margin-bottom: 2px; text-align: center; }
  .rating-pills .provider { grid-column: 1 / -1; text-align: center; }
  .rating-pills .sep { display: none; }
  .rating-pills .pill { 
    display: block; 
    width: 100%; 
    text-align: center; 
    padding: 6px 12px; 
    border-radius: 999px; 
    border: 1px solid rgba(255,255,255,.4); 
    background: rgba(255,255,255,.12);
  }
  .rating-pills .pill .pill-top { display: block; line-height: 1.1; }
  .rating-pills .pill .pill-bottom { display: block; font-weight: 800; line-height: 1.15; }

  .header-inner { padding: 12px 0; }
  /* Symmetric navbar bubble */
  .nav-bubble { padding: 10px 12px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border: 1px solid var(--light-red); background: var(--white); }
  .brand { grid-column: 2; justify-self: center; gap: 8px; }
  .brand-mark { width: 32px; height: 32px; border-radius: 50%; }
  .nav-toggle { grid-column: 3; justify-self: end; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .menu-section .menu-block { gap: 12px; }
  .menu-media img { height: 220px; border-radius: 14px; }
  .menu-row { grid-template-columns: 1fr; }
  .menu-row .prices { justify-items: start; }

  .location-block { grid-template-columns: 1fr; }
  .location-map iframe { min-height: 240px; }

  .footer-inner { flex-direction: column; gap: 8px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}


