﻿:root {
  --bg: #100f0d;
  --panel: #1a1713;
  --panel-2: #231f18;
  --text: #f8f2e8;
  --muted: #d4c7b6;
  --brand: #f01818;
  --brand-dark: #950b0b;
  --brand-hot: #ff3535;
  --accent: #ff3535;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(13, 10, 10, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  width: 100%;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: 0;
  color: #fff;
}

.brand-logo {
  width: clamp(210px, 24vw, 330px);
  height: 74px;
  justify-content: center;
}

.brand-logo img {
  width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.brand span {
  font-size: 1.45rem;
}

.brand small {
  color: var(--accent);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.site-nav a.active {
  border-bottom: 2px solid var(--brand-hot);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(40px, 7vw, 90px) clamp(18px, 6vw, 90px);
  overflow: hidden;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.94), rgba(10, 9, 8, 0.62)),
    url("../images/bg_1.jpg") center / cover;
  z-index: -2;
  transform: scale(1.04);
  transition: background-image 0.7s ease, transform 6s ease;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

.hero-bg.slide-pulse {
  transform: scale(1.09);
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent 75%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  min-width: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero.text-only {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero.text-only .hero-content {
  max-width: 820px;
  justify-self: center;
}

.hero.text-only .hero-actions,
.hero.text-only .hero-dots {
  justify-content: center;
}

.hero.text-only .hero-plate {
  display: none;
}

.hero-content.is-changing {
  opacity: 0;
  transform: translateX(-28px);
}

.hero-content.is-entering {
  animation: heroTextSlideIn 0.75s ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.3rem, 6vw, 5.2rem);
  line-height: 0.98;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.2rem;
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.split-text p,
.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.open-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 4px 0 0;
  padding: 6px 12px;
  border: 1px solid rgba(255, 53, 53, 0.38);
  border-radius: 999px;
  background: rgba(255, 53, 53, 0.1);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.open-status[data-state="closed"] {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.site-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 18px;
  background: #1d1111;
  border-bottom: 1px solid rgba(255, 53, 53, 0.28);
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.site-announcement a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  max-width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
  max-width: 100%;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-hot), var(--brand-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(240, 24, 24, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff4646, #b80d0d);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  border-color: var(--brand-hot);
  transform: translateY(-2px);
}

.hero-plate {
  position: relative;
  justify-self: center;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.5));
  animation: plateFloat 4.5s ease-in-out infinite;
}

.hero-plate img {
  width: min(520px, 86vw);
  transition: opacity 0.55s ease, transform 0.65s ease;
}

.hero-plate img.is-changing {
  opacity: 0;
  transform: translateX(70px) rotate(5deg) scale(0.92);
}

.hero-plate img.is-entering {
  animation: plateSlideIn 0.8s ease both;
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.hero-dots button {
  width: 42px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.active {
  width: 72px;
  background: var(--brand-hot);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #160d0d;
}

.quick-info > * {
  padding: 24px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.quick-info > *:last-child {
  border-right: 0;
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  color: var(--accent);
  margin-bottom: 4px;
}

.quick-info span {
  color: var(--muted);
}

.section {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 6vw, 90px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #160d0d;
}

.popular-section {
  background: #120f0d;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.popular-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.popular-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 53, 53, 0.48);
}

.popular-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: contain;
  padding: 16px;
  background: radial-gradient(circle at center, rgba(255, 53, 53, 0.14), #241c16 62%);
}

.popular-card div {
  padding: 18px;
}

.popular-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.popular-card h3 {
  margin-bottom: 8px;
}

.popular-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.food-card,
.menu-item,
.contact-card,
.contact-form,
.legal-content {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.food-card {
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.food-card:hover,
.menu-item:hover,
.delivery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 53, 53, 0.48);
}

.food-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: contain;
  padding: 16px;
  background: radial-gradient(circle at center, rgba(240, 24, 24, 0.15), var(--panel-2) 62%);
  transition: transform 0.25s ease;
}

.food-card:hover img {
  transform: scale(1.06) rotate(-2deg);
}

.food-card div {
  padding: 18px;
}

.food-card p {
  color: var(--muted);
}

.food-card strong,
.menu-item strong {
  color: var(--accent);
  font-size: 1.2rem;
}

.gallery-strip {
  overflow: hidden;
  background: #0b0a09;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: galleryMarquee 34s linear infinite;
}

.gallery-strip:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-track img {
  flex: 0 0 clamp(280px, 25vw, 480px);
  width: clamp(280px, 25vw, 480px);
  height: clamp(170px, 24vw, 320px);
  object-fit: cover;
}

.instagram-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(42px, 7vw, 90px) clamp(18px, 6vw, 90px);
  background: #120f0d;
}

.instagram-copy h2 {
  margin-bottom: 12px;
}

.instagram-copy p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 22px;
  color: var(--muted);
}

.instagram-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.instagram-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.page-hero {
  min-height: 360px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 90px 18px 60px;
  background:
    linear-gradient(rgba(16, 15, 13, 0.7), rgba(16, 15, 13, 0.82)),
    url("../images/bg_1.jpg") center / cover;
}

.page-hero h1 {
  margin-inline: auto;
}

.menu-section {
  background: #15120f;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.menu-tabs button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #201c17;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.menu-tabs button.active,
.menu-tabs button:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.menu-panel {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.menu-panel.active {
  display: grid;
}

.menu-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
}

.menu-item img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  background: #2a241d;
  border-radius: 8px;
  padding: 10px;
}

.menu-item h2 {
  margin-bottom: 6px;
  font-size: 1.28rem;
}

.menu-item p {
  margin-bottom: 6px;
  color: var(--muted);
}

.menu-item small {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #cdbfaf;
  font-size: 0.82rem;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.delivery-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.delivery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(120, 0, 0, 0.18), rgba(0, 0, 0, 0.84)),
    url("../images/bg_4.jpg") center / cover;
  z-index: -1;
  transition: transform 0.3s ease;
}

.delivery-card:hover::before {
  transform: scale(1.05);
}

.delivery-card span {
  color: var(--accent);
  font-weight: 900;
}

.delivery-card p {
  max-width: 560px;
  color: #f6ead8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  background: #15120f;
}

.contact-card,
.contact-form,
.legal-content {
  padding: clamp(22px, 4vw, 38px);
}

.contact-card p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: #100f0d;
  color: #fff;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(240, 184, 74, 0.45);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--accent);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
}

.legal-content h3 {
  margin-top: 34px;
  color: var(--accent);
}

.site-footer {
  padding: 38px clamp(18px, 6vw, 90px) 90px;
  text-align: center;
  background: #0b0a09;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer h2 {
  color: #fff;
  font-size: 1.5rem;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
}

.not-found-section {
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(56px, 8vw, 110px) clamp(18px, 6vw, 90px);
  background:
    radial-gradient(circle at 80% 30%, rgba(240, 24, 24, 0.22), transparent 34%),
    linear-gradient(135deg, #17100d 0%, #2b100d 48%, #0b0a09 100%);
  border-bottom: 1px solid var(--line);
}

.not-found-content {
  max-width: 680px;
}

.not-found-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.95;
}

.not-found-content p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.12rem;
}

.not-found-plate {
  display: grid;
  place-items: center;
}

.not-found-plate img {
  width: min(430px, 100%);
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.48));
}

.company,
.copyright,
.allergens {
  font-size: 0.92rem;
}

.allergen-details {
  max-width: 880px;
  margin: 0 auto 20px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.allergen-details summary {
  cursor: pointer;
  padding: 14px 18px;
  color: #fff;
  font-weight: 900;
}

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-order {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: #0b0a09;
  border-top: 1px solid var(--line);
}

.mobile-order a {
  min-height: 54px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
}

.mobile-order a:first-child {
  background: #26a85d;
}

.mobile-order a:last-child {
  background: var(--brand);
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}

.promo-modal.show {
  display: flex;
}

.promo-dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: min(720px, calc(100svh - 36px));
  overflow: auto;
  border-radius: 8px;
  background: linear-gradient(145deg, #2a1111, #11100e);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.promo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.promo-media {
  height: 250px;
  background:
    linear-gradient(180deg, rgba(16, 15, 13, 0.03), rgba(16, 15, 13, 0.48)),
    url("../images/promo-burger.png") center / cover no-repeat;
}

.promo-content {
  padding: clamp(24px, 5vw, 42px);
  text-align: center;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 53, 53, 0.14);
  color: var(--accent);
  font-weight: 900;
}

.promo-content h2 {
  margin: 16px auto 12px;
  font-size: clamp(2rem, 8vw, 3.7rem);
}

.promo-content p {
  color: var(--muted);
}

.promo-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.promo-actions .bolt {
  background: #26a85d;
}

.promo-actions .bistro {
  background: var(--brand);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes plateFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(1.5deg);
  }
}

@keyframes heroTextSlideIn {
  from {
    opacity: 0;
    transform: translateX(34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes plateSlideIn {
  from {
    opacity: 0;
    transform: translateX(-80px) rotate(-5deg) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
  }
}

@keyframes galleryMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .not-found-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .not-found-content {
    margin: 0 auto;
  }

  .not-found-content .hero-actions {
    justify-content: center;
  }

  .hero,
  .split,
  .instagram-strip,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-plate {
    order: -1;
  }

  .quick-info,
  .popular-grid,
  .featured-grid,
  .allergen-grid,
  .menu-panel,
  .delivery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-item {
    grid-template-columns: 92px 1fr;
  }

  .menu-item strong {
    grid-column: 2;
  }
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 76px;
  }

  .brand-logo {
    width: 190px;
    height: 56px;
  }

  .brand-logo img {
    max-height: 56px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 44px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: #100f0d;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(34px, 8vw, 70px) clamp(18px, 5vw, 44px);
  }

  .hero-content {
    max-width: min(100%, 680px);
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 4rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-content p:not(.eyebrow) {
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 520px);
  }

  .hero-plate {
    order: -1;
    justify-self: center;
  }

  .hero-plate img {
    width: min(420px, 82vw);
  }

  .mobile-order {
    display: grid;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .brand-logo {
    width: 190px;
    height: 56px;
  }

  .brand-logo img {
    max-height: 56px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: #100f0d;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 14vw, 3.6rem);
  }

  .quick-info,
  .popular-grid,
  .featured-grid,
  .instagram-photos,
  .allergen-grid,
  .menu-panel,
  .delivery-grid,
  .promo-actions {
    grid-template-columns: 1fr;
  }

  .quick-info > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info > *:last-child {
    border-bottom: 0;
  }

  .gallery-track {
    animation-duration: 26s;
  }

  .gallery-track img {
    flex-basis: 82vw;
    width: 82vw;
    height: 210px;
  }

  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .menu-tabs button {
    flex: 0 0 auto;
  }

  .menu-item {
    grid-template-columns: 84px minmax(0, 1fr);
    align-items: start;
  }

  .menu-item img {
    width: 84px;
    height: 84px;
  }

  .menu-item strong {
    grid-column: 1 / -1;
  }

  .mobile-order {
    display: grid;
  }

  .promo-media {
    height: 190px;
  }
}

