/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0d0905;
  --bg-card:     #181208;
  --bg-alt:      #110e06;
  --flame:       #e05000;
  --flame-lt:    #f07820;
  --amber:       #d4830a;
  --gold:        #e8a020;
  --text:        #f2ede5;
  --text-muted:  #998b7a;
  --border:      rgba(220,160,60,0.1);
  --border-soft: rgba(220,160,60,0.06);
  --radius:      12px;
  --max-w:       1160px;
  --nav-h:       68px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Utilities ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section     { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(224,80,0,.14);
  color: var(--flame-lt);
  border: 1px solid rgba(224,80,0,.28);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

.flame-text {
  background: linear-gradient(100deg, var(--flame), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 9px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s, transform .18s, box-shadow .2s;
  white-space: nowrap;
}

.btn:hover { opacity: .88; transform: translateY(-2px); }

.btn-flame {
  background: linear-gradient(135deg, var(--flame), var(--flame-lt));
  color: #fff;
  box-shadow: 0 4px 20px rgba(224,80,0,.3);
}

.btn-flame:hover {
  box-shadow: 0 6px 28px rgba(224,80,0,.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(220,160,60,.2);
}

.btn-outline:hover {
  border-color: rgba(220,160,60,.45);
  background: rgba(220,160,60,.05);
}

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

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

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Navigation ────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(13,9,5,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .3s, border-color .3s;
}

#nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 40px rgba(0,0,0,.6);
}

#nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.nav-logo span { color: var(--flame-lt); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--flame-lt);
  transition: width .25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-links a.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}

.mobile-menu.open {
  max-height: 400px;
  padding: 24px 24px 28px;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}

.mobile-menu a:hover { color: var(--text); }

/* ── Hero ──────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 75% 55%, rgba(224,80,0,.16) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 25% 85%, rgba(212,131,10,.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 50% 10%, rgba(224,80,0,.06) 0%, transparent 60%),
    var(--bg);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 26px;
  letter-spacing: -.02em;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btns .btn {
  padding: 14px 30px;
  font-size: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bobble 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
}

@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── About ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: .97rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  transition: border-color .25s;
}

.stat-card:hover { border-color: rgba(224,80,0,.35); }

.stat-card .icon-wrap {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(224,80,0,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  color: var(--flame-lt);
}

.stat-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
}

.about-visual { position: relative; }

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(224,80,0,.12) 0%, transparent 70%);
  pointer-events: none;
}

.flame-symbol {
  font-size: 96px;
  line-height: 1;
  filter: drop-shadow(0 0 50px rgba(224,80,0,.55));
  position: relative;
}

.about-card-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  padding: 0 28px;
  position: relative;
}

.about-card-sub {
  font-size: .85rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0 28px;
  position: relative;
}

/* ── Menu ──────────────────────────────────────────────── */
.menu-header { margin-bottom: 44px; }

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: .83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .22s;
}

.tab-btn:hover {
  color: var(--text);
  border-color: rgba(220,160,60,.3);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--flame), var(--flame-lt));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 12px rgba(224,80,0,.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
  gap: 14px;
}

.menu-category { display: none; }
.menu-category.active { display: contents; }

.menu-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  transition: border-color .22s, transform .22s, box-shadow .22s;
}

.menu-item:hover {
  border-color: rgba(224,80,0,.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}

.menu-item-info { flex: 1; }

.menu-item-name {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 5px;
  line-height: 1.35;
}

.menu-item-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.menu-item-spicy {
  display: inline-block;
  font-size: .7rem;
  margin-left: 5px;
  vertical-align: middle;
}

.menu-item-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .98rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-note {
  margin-top: 28px;
  font-size: .84rem;
  color: var(--text-muted);
}

.menu-subhead {
  grid-column: 1 / -1;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--flame-lt);
  padding: 12px 0 6px;
  border-bottom: 1px solid var(--border);
  margin-top: 8px;
  opacity: .85;
}

.menu-subhead:first-child { margin-top: 0; }

.menu-addon {
  grid-column: 1 / -1;
  font-size: .82rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  margin-top: 4px;
}

.tab-group-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: .55;
  padding: 6px 2px 0;
  align-self: center;
  white-space: nowrap;
}

/* ── Hours ─────────────────────────────────────────────── */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-soft);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 15px 0;
  font-size: .95rem;
}

.hours-table .day { color: var(--text-muted); }
.hours-table .time { text-align: right; font-weight: 500; }

.hours-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hours-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .22s;
}

.hours-info-card:hover { border-color: var(--border); }

.hours-info-card .icon {
  color: var(--flame-lt);
  flex-shrink: 0;
  margin-top: 2px;
}

.hours-info-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 5px;
  color: var(--text);
}

.hours-info-card p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hours-info-card a:hover { color: var(--flame-lt); }

/* ── Catering ──────────────────────────────────────────── */
.catering-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.catering-inner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(224,80,0,.08) 0%, transparent 70%);
  pointer-events: none;
}

.catering-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.catering-inner p {
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 10px;
  font-size: .97rem;
}

.catering-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.catering-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .87rem;
  color: var(--text-muted);
}

.catering-feat i { color: var(--flame-lt); }

.catering-cta {
  flex-shrink: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.catering-cta .btn { padding: 14px 34px; font-size: 1rem; }
.catering-cta small { font-size: .82rem; color: var(--text-muted); }

/* ── Order CTA ─────────────────────────────────────────── */
.order-section {
  text-align: center;
  padding: 100px 0;
}

.order-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.order-section p  { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 44px; }

.order-platforms {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s;
}

.platform-btn:hover {
  border-color: var(--flame);
  background: rgba(224,80,0,.07);
  transform: translateY(-2px);
}

.platform-btn .p-logo { font-size: 1.3rem; }

.platform-btn-primary {
  background: linear-gradient(135deg, var(--flame), var(--flame-lt));
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(224,80,0,.3);
}

.platform-btn-primary:hover {
  opacity: .9;
  box-shadow: 0 6px 28px rgba(224,80,0,.4);
}

/* ── Contact ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .22s;
}

.contact-card:hover { border-color: var(--border); }

.contact-card .icon {
  color: var(--flame-lt);
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 7px;
}

.contact-card p,
.contact-card a { font-size: .97rem; line-height: 1.6; }

.contact-card a:hover { color: var(--flame-lt); }

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 390px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(.9) hue-rotate(180deg) saturate(.75);
}

/* ── Footer ────────────────────────────────────────────── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-logo span { color: var(--flame-lt); }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color .2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: .8rem; color: var(--text-muted); }

/* ── Hero photo ────────────────────────────────────────── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 600px; }

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-food-card {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(220,160,60,.2);
  box-shadow:
    0 40px 100px rgba(0,0,0,.55),
    0 0 0 1px rgba(224,80,0,.1),
    0 20px 50px rgba(224,80,0,.18);
  transform: perspective(900px) rotateY(-8deg) rotateX(3deg);
  transition: transform .5s ease;
}

.hero-food-card:hover {
  transform: perspective(900px) rotateY(-2deg) rotateX(1deg);
}

.hero-food-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.hero-photo-badge {
  position: absolute;
  bottom: 16px;
  right: -8px;
  background: linear-gradient(135deg, var(--flame), var(--flame-lt));
  color: #fff;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 8px 28px rgba(224,80,0,.45);
  border: 2px solid rgba(255,255,255,.15);
}

/* ── About photo collage ───────────────────────────────── */
.about-collage {
  position: relative;
  height: 500px;
}

.collage-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-img-1 {
  width: 72%;
  height: 54%;
  top: 0;
  left: 0;
  transform: rotate(-2.5deg);
  z-index: 1;
}

.collage-img-2 {
  width: 66%;
  height: 50%;
  bottom: 0;
  right: 0;
  transform: rotate(2deg);
  z-index: 2;
}

.collage-img-3 {
  width: 46%;
  height: 36%;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%) rotate(-1deg);
  z-index: 3;
  border: 2px solid rgba(224,80,0,.4);
  box-shadow: 0 12px 40px rgba(224,80,0,.25);
}

/* ── Gallery ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
  grid-auto-flow: dense;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

.gallery-item.col-span-2 { grid-column: span 2; }

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

.gallery-item:hover img { transform: scale(1.07); }

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(0,0,0,.72) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-caption span {
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
}

/* ── Menu photo cards ──────────────────────────────────── */
.menu-item.has-photo {
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.menu-item-photo {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.menu-item.has-photo:hover .menu-item-photo img { transform: scale(1.07); }

.menu-item-body {
  padding: 14px 18px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links, .nav-links + .btn { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo-wrap { display: none; }
  .about-grid, .hours-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .about-collage { height: 320px; }
  .collage-img-1 { width: 68%; height: 52%; }
  .collage-img-2 { width: 62%; height: 50%; }
  .collage-img-3 { display: none; }
  .catering-inner { grid-template-columns: 1fr; padding: 40px 32px; gap: 28px; }
  .catering-cta { align-self: flex-start; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-collage { height: 260px; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .order-platforms { flex-direction: column; align-items: center; }
  .order-platforms .platform-btn { width: 100%; max-width: 320px; justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.col-span-2 { grid-column: span 1; }
}
