:root {
  --bg: #fdfdfd;
  --surface: #fff4d4;
  --surface-soft: #fff0bd;
  --ink: #b50113;
  --muted: #f87604;
  --line: rgba(181,1,19,.2);
  --line-strong: rgba(236,14,25,.52);
  --gold: #fd9e03;
  --gold-dark: #f87604;
  --maroon: #ec0e19;
  --maroon-dark: #b50113;
  --ember: #ec0e19;
  --leaf: #fd9e03;
  --tomato: #ec0e19;
  --panel: rgba(255,255,255,.92);
  --panel-strong: rgba(255,255,255,.98);
  --shadow: 0 18px 50px rgba(181, 1, 19, .16);
  --hero-glass: rgba(253,253,253,.82);
  --hero-text: #b50113;
  --hero-muted: rgba(181,1,19,.76);
  --radius: 14px;
  --container: 1180px;
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(236,14,25,.08) 0 12%, transparent 12% 100%),
    linear-gradient(315deg, rgba(253,158,3,.16) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #fdfdfd, #fff4d4 58%, #fdfdfd 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  transition: background .2s ease, color .2s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(253,253,253,.86), rgba(255,240,189,.9)),
    url("../../images/chinese_steak.jpg") center / cover;
  opacity: .32;
}

body > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  min-height: 112px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  color: var(--hero-text);
  background: #100f0e;
  transition: min-height .35s ease;
  touch-action: pan-y;
  padding: 18px max(16px, calc((100vw - var(--container)) / 2));
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 6.5s ease;
  background:
    radial-gradient(circle at 20% 20%, rgba(230,168,24,.2), transparent 30%),
    linear-gradient(135deg, rgba(48,4,5,.18), rgba(48,4,5,.42)),
    var(--hero-image) center / cover;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(48,4,5,.14), rgba(48,4,5,.4)),
    linear-gradient(90deg, rgba(48,4,5,.48), transparent 58%, rgba(48,4,5,.16));
}

.hero__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: left;
  padding: 0 18px 0 0;
  transition: opacity .25s ease, transform .25s ease;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .72rem;
  margin: 0;
}

.hero h1 {
  margin: 4px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: .02em;
}

.hero__tagline {
  max-width: 720px;
  margin: 0;
  color: var(--hero-muted);
  font-size: clamp(.86rem, 1.7vw, 1rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__tagline.is-typing::after {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 4px;
  background: var(--gold);
  content: "";
  vertical-align: -.12em;
  animation: type-caret .75s steps(1) infinite;
}

@keyframes type-caret {
  50% { opacity: 0; }
}

.hero__button,
.ghost-button,
.hero__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #300405;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.ui-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255,216,77,.42);
  border-radius: 16px;
  background: var(--hero-glass);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.hero__slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.hero__control {
  width: 44px;
  min-width: 44px;
  padding: 0;
  border-color: rgba(255,255,255,.42);
  background: rgba(16,15,14,.32);
  color: #fff;
}

.hero__control:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.18);
}

.hero__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.hero__dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.32);
  cursor: pointer;
}

.hero__dots button.is-active {
  background: var(--gold);
}

.app-shell {
  flex: 1 0 auto;
  display: grid;
  grid-template-areas:
    "sidebar toolbar"
    "sidebar menu";
  grid-template-columns: 232px minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 28px;
}

.menu-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(181,1,19,.18);
  background: rgba(253,253,253,.94);
  padding: 10px max(16px, calc((100vw - var(--container)) / 2));
  box-shadow: 0 10px 28px rgba(181,1,19,.12);
  backdrop-filter: blur(14px);
}

.menu-topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--maroon-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
}

.menu-topbar__brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.menu-topbar__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.menu-topbar__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--maroon-dark);
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

.menu-topbar__nav a:hover,
.menu-topbar__nav a:focus-visible,
.menu-topbar__nav a[aria-current="page"] {
  border-color: rgba(253,158,3,.58);
  background: rgba(253,158,3,.16);
  color: var(--maroon);
}

.menu-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 18px;
  z-index: 10;
  max-height: calc(100vh - 36px);
  overflow: auto;
  margin-top: 34px;
  padding: 14px;
  background: rgba(65,6,8,.86);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-sidebar__head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  padding: 4px 6px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.menu-sidebar__logo {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.menu-nav__list {
  display: grid;
  gap: 8px;
  padding: 0;
}

.menu-nav__list a {
  color: var(--ink);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: .88rem;
  line-height: 1.2;
}

.menu-nav__list a:hover,
.menu-nav__list a.is-active {
  color: var(--gold);
  border-color: var(--line-strong);
  background: rgba(255,216,77,.22);
}

.menu-layout {
  grid-area: menu;
  min-height: 68vh;
  padding: 0 0 78px;
}

#menu-root {
  min-height: 52vh;
}

.menu-loading {
  display: grid;
  min-height: 52vh;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.menu-loading__spinner {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.menu-loading__spinner::after {
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(230,168,24,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  content: "";
  animation: menu-loading-spin .8s linear infinite;
}

.menu-loading__spinner img { width: 32px; height: 32px; object-fit: contain; }

@keyframes menu-loading-spin {
  to { transform: rotate(360deg); }
}

.pdf-progress {
  position: fixed;
  z-index: 60;
  inset: 50% auto auto 50%;
  display: grid;
  width: min(320px, calc(100% - 32px));
  justify-items: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(48,4,5,.97);
  color: var(--muted);
  padding: 22px;
  box-shadow: 0 24px 70px rgba(15,0,1,.68);
  text-align: center;
  transform: translate(-50%, -50%);
}
.pdf-progress[hidden] { display: none; }
.pdf-progress strong { color: var(--gold); font-family: "Playfair Display", Georgia, serif; font-size: 1.7rem; }
.pdf-progress__track { width: 100%; height: 7px; overflow: hidden; border-radius: 999px; background: rgba(230,168,24,.18); }
.pdf-progress__track span { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--gold); transition: width .2s ease; }

.toolbar {
  grid-area: toolbar;
  display: grid;
  justify-items: end;
  gap: 12px;
  margin-top: 34px;
  padding: 0;
}

.search {
  width: 100%;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 14px;
  box-shadow: var(--shadow);
  font-size: .85rem;
  color: var(--muted);
  font-weight: 700;
}

.search__field {
  position: relative;
  display: flex;
  align-items: center;
}

.search__field .ui-icon {
  position: absolute;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
}

.search input {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  min-height: 48px;
  padding: 0 44px;
  font: inherit;
  outline: none;
  background: rgba(48,4,5,.74);
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.18);
}

.search input::-webkit-search-decoration,
.search input::-webkit-search-cancel-button {
  appearance: none;
}

.search__clear {
  position: absolute;
  right: 8px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(230,168,24,.14);
  color: var(--gold);
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.search__clear[hidden] {
  display: none;
}

.search__status {
  min-height: 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
}

.ghost-button {
  background: transparent;
  color: var(--gold-dark);
}

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

.menu-actions--bottom {
  margin: 42px 0 0;
}

.toolbar__download {
  gap: 8px;
  flex: 0 0 auto;
  min-width: 0;
  width: auto;
  padding-inline: 16px;
  border-color: var(--gold);
  background: var(--gold);
  color: var(--maroon-dark);
  white-space: nowrap;
}

.toolbar__download:disabled {
  cursor: progress;
  opacity: .72;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 26px 0 0;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255,216,77,.16), transparent 38%),
    var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(88,24,18,.11);
  color: var(--muted);
  font-weight: 700;
}

.pagination:empty {
  display: none;
}

.pagination__controls {
  display: flex;
  min-width: 0;
  justify-content: center;
  gap: 10px;
}

.pagination__pages {
  display: flex;
  min-width: 0;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(48,4,5,.5);
}

.pagination button {
  min-height: 40px;
  min-width: 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}

.pagination__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 14px;
  background: var(--maroon) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(185,41,50,.2);
}

.pagination button[aria-current="page"] {
  border-color: var(--maroon);
  background: linear-gradient(135deg, var(--maroon), var(--ember));
  color: #fff;
  box-shadow: 0 8px 18px rgba(185,41,50,.2);
}

.pagination button:not(:disabled):hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255,216,77,.26);
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: .38;
  box-shadow: none;
  transform: none;
}

.menu-section {
  scroll-margin-top: 92px;
  display: grid;
  margin-bottom: 0;
  touch-action: pan-y;
}

.section-menu {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(65,6,8,.86);
  box-shadow: var(--shadow);
}

.section-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  overflow: hidden;
  margin-bottom: 0;
  padding: 28px;
  border-radius: 0;
  background:
    radial-gradient(
      ellipse at center,
      rgba(132,18,23,.98) 0%,
      rgba(92,8,11,.88) 38%,
      rgba(65,6,8,.44) 68%,
      transparent 100%
    );
  color: #fff;
  box-shadow: none;
}

.section-header.has-gallery {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr);
}

.section-header__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 132px;
  text-align: center;
}

.section-header h2 {
  margin: 8px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-brand {
  display: grid;
  justify-items: center;
  color: var(--ink);
  line-height: .9;
  text-transform: uppercase;
}

.section-brand span {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.55rem, 4vw, 2.7rem);
  font-weight: 900;
  letter-spacing: .12em;
  text-shadow: 0 2px 0 rgba(230,168,24,.72), 0 4px 16px rgba(15,0,1,.45);
}

.section-brand em {
  margin-top: 4px;
  color: var(--gold-dark);
  font-family: "Great Vibes", "Playfair Display", cursive;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
  text-shadow: 0 2px 10px rgba(15,0,1,.5);
  animation: vorani-soft-glow 9s ease-in-out infinite;
}

@keyframes vorani-soft-glow {
  0%, 68%, 100% { filter: drop-shadow(0 0 0 transparent); }
  76% { filter: drop-shadow(0 0 7px rgba(255,216,77,.58)); }
  84% { filter: drop-shadow(0 0 2px rgba(255,216,77,.22)); }
}

.section-brand__divider {
  position: relative;
  width: min(230px, 72%);
  height: 9px;
  margin-top: 10px;
}

.section-brand__divider::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  content: "";
}

.section-brand__divider::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  background: var(--maroon-dark);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.section-header__details {
  display: grid;
  justify-items: center;
}

.section-header--featured {
  grid-template-columns: 160px minmax(0, 1fr) 160px;
  align-items: start;
  background:
    radial-gradient(circle at 50% 45%, rgba(230,168,24,.12), transparent 30%),
    radial-gradient(
      ellipse at center,
      rgba(121,14,18,.98) 0%,
      rgba(74,5,7,.88) 40%,
      rgba(33,1,2,.38) 70%,
      transparent 100%
    );
}

.section-header--featured .section-header__copy {
  grid-column: 2;
  min-height: 156px;
}

.section-header__chef {
  grid-column: 1;
  align-self: start;
  width: 140px;
  height: 140px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  background: var(--maroon-dark);
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(15,0,1,.38);
}

.section-header__eyebrow {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-header--featured h2 {
  margin-top: 10px;
  color: #fff7e5;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: .04em;
  text-transform: none;
}

.section-header--featured p {
  max-width: 620px;
  margin: 12px 0 0;
  color: #efd8b0;
  font-size: .9rem;
  line-height: 1.6;
}

.section-header__details .section-brand__divider {
  margin-top: 12px;
}

.section-header__gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 132px;
  gap: 8px;
  min-width: 0;
}

.section-header__gallery.image-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-header__gallery.image-count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-header__gallery .food-photo--primary {
  grid-row: auto;
}

.subsection {
  position: relative;
  margin: 30px 20px 22px;
  padding: 30px 22px 20px;
  background: rgba(48,4,5,.24);
  border: 2px solid var(--line-strong);
  border-left: 0;
  border-radius: 0 16px 16px 0;
  box-shadow: none;
  overflow: visible;
}

.subsection:last-child {
  border-bottom: 2px solid var(--line-strong);
}

.subsection__head {
  position: absolute;
  top: -17px;
  left: 0;
  display: flex;
  max-width: calc(100% - 18px);
  align-items: center;
  gap: 12px;
  margin: 0;
}

.subsection h3 {
  margin: 0;
  padding: 6px 22px 5px 12px;
  border-radius: 0 999px 999px 0;
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.subsection__note {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
  margin: 0 0 16px;
  overflow-wrap: anywhere;
}

.subsection__layout {
  display: grid;
  grid-template-columns: minmax(175px, .3fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.subsection.is-full .subsection__layout {
  grid-template-columns: minmax(0, 1fr);
}

.subsection.has-centered-items .subsection__items {
  align-self: center;
}

.subsection__gallery {
  position: sticky;
  top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: 170px;
  gap: 14px;
  align-content: space-evenly;
  align-self: stretch;
  min-width: 0;
}

.subsection__gallery .food-photo--primary {
  grid-column: auto;
  min-height: 170px;
}

.subsection__gallery.image-count-1,
.subsection__gallery.image-count-2 {
  position: static;
}

.subsection__gallery.image-count-3,
.subsection__gallery.image-count-4 {
  grid-column: 1 / -1;
  position: static;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-auto-rows: 150px;
}

.subsection__gallery.image-count-3 + .subsection__items,
.subsection__gallery.image-count-4 + .subsection__items {
  grid-column: 1 / -1;
}

.subsection.has-stacked-gallery .subsection__gallery.image-count-3,
.subsection.has-stacked-gallery .subsection__gallery.image-count-4 {
  grid-column: auto;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: 170px;
  height: 100%;
}

.subsection.has-stacked-gallery .subsection__gallery.image-count-3 + .subsection__items,
.subsection.has-stacked-gallery .subsection__gallery.image-count-4 + .subsection__items {
  grid-column: auto;
}

.food-photo {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(230,168,24,.38);
  border-radius: 15px;
  background: var(--surface-soft);
  box-shadow: 0 12px 28px rgba(15,0,1,.24);
}

.food-photo:nth-child(4n + 2) { border-radius: 999px; }
.food-photo:nth-child(4n + 3) { border-radius: 50%; }
.food-photo:nth-child(4n + 4) { border-radius: 32px 8px 32px 8px; }

.special-circle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 20px;
  align-items: start;
}

.special-product-circle {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(230,168,24,.72);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(121,14,18,.96), rgba(48,4,5,.98));
  box-shadow: 0 18px 36px rgba(15,0,1,.42);
  animation: special-circle-float 5.4s ease-in-out infinite;
  animation-delay: calc(var(--circle-index, 0) * -.48s);
}

.special-product-circle:nth-child(2n) { animation-delay: -1.2s; }
.special-product-circle:nth-child(3n) { animation-delay: -2.4s; }
.special-product-circle.is-featured,
.featured-product-card.is-featured {
  border-width: 2px;
  border-color: var(--gold);
  box-shadow: 0 20px 42px rgba(15,0,1,.5), 0 0 0 4px rgba(230,168,24,.15);
}

.special-product-card__badge {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 5px 9px;
  font-family: Inter, sans-serif;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.special-product-circle__media {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  place-items: center;
  border: 0;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  background:
    radial-gradient(circle at 38% 28%, rgba(230,168,24,.35), transparent 30%),
    linear-gradient(145deg, #8d141a, #300405);
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    0 0 0 5px rgba(230,168,24,.12),
    0 20px 38px rgba(15,0,1,.48);
  transition: transform .3s ease, box-shadow .3s ease;
}

.special-product-circle__media::after {
  content: none;
}

.special-product-circle__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-product-circle:hover .special-product-circle__media {
  transform: translateY(-5px) scale(1.025);
  box-shadow:
    0 0 0 7px rgba(230,168,24,.2),
    0 24px 42px rgba(15,0,1,.5);
}

.special-product-circle__caption {
  display: grid;
  align-content: start;
  gap: 6px;
  justify-items: center;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff7e5;
  padding: 14px;
  box-shadow: none;
  text-align: center;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.special-product-circle:hover .special-product-circle__caption {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.special-product-circle__caption strong {
  color: #fff7e5;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  line-height: 1.3;
  text-shadow: 0 2px 7px rgba(15,0,1,.8);
}

.special-product-circle__caption > span {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  justify-content: center;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(15,0,1,.8);
}

.special-product-circle__split-caption {
  display: grid;
  grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
  align-self: stretch;
  width: 100%;
  min-height: 82px;
}

.special-product-circle__split-caption strong,
.special-product-circle__split-caption > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 12px;
  text-align: center;
}

.special-product-circle__split-caption strong {
  background: var(--maroon-dark);
  color: #fff7e5;
  font-family: "Playfair Display", Georgia, serif;
  font-size: .92rem;
  line-height: 1.3;
}

.special-product-circle__split-caption > span {
  flex-wrap: wrap;
  gap: 4px 10px;
  border-left: 1px solid rgba(48,4,5,.28);
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: .74rem;
  font-weight: 900;
  line-height: 1.35;
}

.special-product-circle__split-caption > span span {
  color: inherit;
}

.special-product-circle__details {
  position: relative;
  z-index: 2;
  width: min(100%, 290px);
  margin-top: 10px;
  border: 1px solid rgba(230,168,24,.55);
  border-radius: 14px;
  background: rgba(48,4,5,.92);
  color: #fff7e5;
  padding: 0 14px 14px;
  box-shadow: 0 12px 24px rgba(15,0,1,.3);
  text-align: center;
}

.special-product-circle__detail-price {
  display: grid;
  gap: 5px 12px;
  justify-content: center;
  margin: 0 -14px 12px;
  border-radius: 13px 13px 0 0;
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 9px 12px;
  font-size: .75rem;
  font-weight: 900;
}

.special-product-circle__detail-price strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: .9rem;
  line-height: 1.25;
}

.special-product-circle__details .special-product-circle__detail-price span {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  justify-content: center;
  margin: 0;
  color: var(--maroon-dark);
  font-size: .72rem;
  letter-spacing: 0;
  text-transform: none;
}

.special-product-circle__details span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.special-product-circle__details p {
  margin: 0;
  color: #fff7e5;
  font-size: .72rem;
  line-height: 1.55;
}

.special-showcase-divider {
  position: relative;
  width: min(240px, 76%);
  height: 13px;
  margin: 9px auto 12px;
}

.special-showcase-divider::before,
.special-showcase-divider::after {
  position: absolute;
  top: 6px;
  width: calc(50% - 12px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  content: "";
}

.special-showcase-divider::before { left: 0; }
.special-showcase-divider::after { right: 0; transform: scaleX(-1); }
.special-showcase-divider span {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: var(--maroon-dark);
  transform: translateX(-50%) rotate(45deg);
}

.featured-subsection {
  position: relative;
  overflow: hidden;
  margin: 22px;
  border: 2px solid var(--gold);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 14%, rgba(230,168,24,.16), transparent 28%),
    linear-gradient(145deg, #7b1015, #300405 72%);
  color: #fff7e5;
  padding: 42px;
}

.special-page-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
  text-align: center;
}

.special-page-hero__chef {
  grid-column: 1;
  width: 140px;
  height: 140px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  background: var(--maroon-dark);
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(15,0,1,.38);
}
.special-page-hero__copy { grid-column: 2; display: grid; justify-items: center; min-width: 0; }
.special-page-hero__eyebrow { color: var(--gold); font-size: .68rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.special-page-hero h3 { margin: 8px 0 0; color: #fff7e5; font-family: "Playfair Display", serif; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.special-page-hero p { max-width: 580px; margin: 0; color: #efd8b0; line-height: 1.6; }

.featured-product-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.featured-product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(230,168,24,.72);
  border-radius: 18px;
  background: linear-gradient(155deg, #650d11, #43080b);
  box-shadow: 0 18px 36px rgba(15,0,1,.42);
  animation: featured-card-float 6.4s ease-in-out infinite;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.featured-product-card:nth-child(2n) { animation-delay: -1.7s; }
.featured-product-card:nth-child(3n) { animation-delay: -3.1s; }

.featured-product-card:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 44px rgba(15,0,1,.52), 0 0 0 3px rgba(230,168,24,.12);
  transform: translateY(-6px);
}

.featured-product-card__media {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  place-items: center;
  border-bottom: 1px solid var(--gold);
  background: linear-gradient(145deg, #8d141a, #300405);
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.featured-product-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .35s ease, transform .45s ease;
}

.featured-product-card:hover .featured-product-card__media img {
  filter: saturate(1.08) brightness(1.05);
  transform: scale(1.045);
}

.featured-product-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  text-align: center;
}

.featured-product-card__body strong {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
}

.featured-product-card__divider {
  display: block;
  width: 76%;
  height: 1px;
  margin: 2px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.featured-product-card__divider--before-price {
  width: 58%;
  margin-top: 5px;
}

.featured-product-card__details {
  border: 1px solid rgba(230,168,24,.72);
  border-radius: 10px;
  background: rgba(253,253,253,.88);
  padding: 9px 10px;
}

.featured-product-card__body p {
  margin: 0;
  color: #fff7e5;
  font-size: .72rem;
  line-height: 1.55;
}

.featured-product-card__price {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 12px;
  margin-top: 2px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  text-align: center;
}

.featured-product-card__price span + span::before {
  margin: 0 5px;
  content: "·";
}

@keyframes featured-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.sizzling-showcase {
  position: relative;
  overflow: hidden;
  margin: 22px;
  border: 2px solid var(--gold);
  border-radius: 26px;
  background:
    radial-gradient(circle at 15% 5%, rgba(230,168,24,.22), transparent 24%),
    radial-gradient(circle at 92% 96%, rgba(121,14,18,.78), transparent 38%),
    linear-gradient(145deg, #4a0507, #210102);
  padding: 30px 36px 36px;
  box-shadow: inset 0 0 70px rgba(121,14,18,.26);
}

.sizzling-showcase::before,
.sizzling-showcase::after {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(230,168,24,.2);
  border-radius: 50%;
  content: "";
}
.sizzling-showcase::before { top: -80px; right: -45px; }
.sizzling-showcase::after { bottom: -90px; left: -55px; }

.menu-section.has-special-lead .section-menu { padding-top: 1px; }

@keyframes special-circle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (prefers-reduced-motion: reduce) {
  .special-product-circle,
  .featured-product-card { animation: none; }
}

.swipe-guide {
  position: fixed;
  z-index: 20;
  right: 14px;
  bottom: 72px;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(48,4,5,.94);
  color: var(--gold);
  padding: 9px 13px;
  font-size: .72rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.swipe-guide.is-visible { opacity: 1; transform: translateY(0); }

.food-photo__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.menu-item__image { width: 58px; height: 58px; flex: 0 0 58px; border: 2px solid rgba(249,168,37,.45); border-radius: 12px; object-fit: cover; }
.menu-item__availability { display: block; margin-top: 3px; color: #c62828; font-size: .62rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }

.food-photo:hover .food-photo__image {
  transform: scale(1.035);
}

.subsection__items {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, auto);
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 40px;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid rgba(230,168,24,.28);
  border-radius: 0;
  width: 100%;
  background: transparent;
  color: inherit;
  box-shadow: none;
  transition: border-color .18s ease, background .18s ease;
}

.menu-item:hover {
  border-color: var(--gold);
  background: rgba(230,168,24,.08);
}

.menu-item.is-featured {
  border-color: var(--gold);
  background: rgba(230,168,24,.1);
  color: #fff;
  box-shadow: inset 3px 0 0 var(--gold);
}

.menu-nav__list a:focus-visible,
.hero__button:focus-visible,
.hero__control:focus-visible,
.pagination button:focus-visible {
  outline: 3px solid rgba(255,216,77,.58);
  outline-offset: 2px;
}

.menu-item__copy {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  padding: 0;
}

.menu-item__name {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.menu-item__prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 12px;
  min-width: 0;
}

.menu-option {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  color: var(--ink);
  font-size: .82rem;
  max-width: 300px;
}

.menu-option__label {
  color: var(--muted);
  line-height: 1.3;
  text-align: right;
  overflow-wrap: anywhere;
}

.menu-option__price {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.menu-item__ask {
  color: var(--muted);
  font-size: .82rem;
  font-style: italic;
}

.site-footer {
  flex: 0 0 auto;
  margin-top: auto;
  border-top: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 50% 0, rgba(230,168,24,.18), transparent 44%),
    linear-gradient(180deg, rgba(48,4,5,.96), #1d0203);
  color: rgba(255,255,255,.78);
  padding: 34px 0;
}

.footer-panel {
  display: grid;
  grid-template-columns: auto minmax(210px, .8fr) minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(230,168,24,.09), transparent 38%),
    rgba(82,10,12,.72);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.footer-logo {
  width: 82px;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(15,0,1,.28);
}

.footer-copy {
  min-width: 0;
}

.footer-brand {
  justify-items: start;
}

.footer-catering {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--gold-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(.72rem, 1.2vw, .9rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 0 10px rgba(230,168,24,.55);
  white-space: nowrap;
}

.footer-contacts {
  display: grid;
  justify-items: start;
  gap: 8px;
  max-width: 390px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(48,4,5,.56);
  padding: 11px 14px;
  justify-self: end;
}

.footer-contacts__phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px 12px;
}

.footer-contacts__location {
  display: grid;
  justify-items: start;
  gap: 4px;
  text-align: left;
}

.footer-contacts a {
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-contacts a:hover,
.footer-contacts a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

.footer-sitemap {
  display: grid;
  justify-items: start;
  gap: 8px;
  max-width: 390px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(253,253,253,.16);
  padding: 11px 14px;
  justify-self: stretch;
}

.footer-sitemap span {
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-sitemap a {
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-sitemap a:hover,
.footer-sitemap a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Vorani style-guide palette overrides for the public demo. */
.menu-sidebar,
.search,
.pagination,
.section-menu,
.subsection {
  background: rgba(253,253,253,.94);
  color: var(--maroon-dark);
}

.menu-sidebar {
  border-color: rgba(236,14,25,.22);
}

.menu-sidebar__head,
.menu-nav__list a,
.search,
.search__status,
.subsection__note {
  color: var(--maroon-dark);
}

.menu-nav__list a:hover,
.menu-nav__list a.is-active {
  color: var(--maroon);
  border-color: rgba(236,14,25,.36);
  background: #fff0bd;
}

.search input,
.pagination__pages {
  background: #fdfdfd;
  color: var(--maroon-dark);
}

.search input::placeholder {
  color: rgba(181,1,19,.56);
}

.section-header,
.section-header--featured,
.featured-subsection {
  background: linear-gradient(135deg, rgba(236,14,25,.96), rgba(181,1,19,.98));
  color: #fdfdfd;
}

.section-brand,
.section-brand span,
.section-header--featured h2,
.special-page-hero h3 {
  color: #fdfdfd;
  text-shadow: none;
}

.section-brand em,
.section-header__eyebrow,
.special-page-hero__eyebrow {
  color: var(--gold);
  text-shadow: none;
}

.subsection {
  border-color: rgba(236,14,25,.32);
  background: #fff6dd;
}

.menu-item,
.menu-item.is-featured {
  color: var(--maroon-dark);
}

.menu-item.is-featured {
  background: rgba(253,158,3,.14);
}

.special-product-circle,
.featured-product-card {
  background:
    linear-gradient(145deg, rgba(253,158,3,.08), rgba(253,253,253,.98) 42%, rgba(255,244,212,.96));
  box-shadow: 0 18px 36px rgba(181,1,19,.16);
}

.special-product-circle__media,
.featured-product-card__media {
  background:
    radial-gradient(circle at 30% 20%, rgba(253,158,3,.28), transparent 34%),
    linear-gradient(145deg, #fdfdfd, var(--surface-soft));
  color: var(--maroon-dark);
  box-shadow: 0 14px 28px rgba(181,1,19,.14);
}

.special-product-circle__caption,
.featured-product-card__body,
.special-product-circle__caption strong,
.featured-product-card__body strong,
.featured-product-card__body p,
.special-product-circle__details p {
  color: var(--maroon-dark);
  text-shadow: none;
}

.special-product-circle__caption > span,
.featured-product-card__price {
  color: var(--gold-dark);
  text-shadow: none;
}

.special-product-circle__split-caption strong {
  background: var(--maroon);
  color: #fff;
}

.special-product-circle__split-caption > span {
  background: var(--gold);
  color: var(--maroon-dark);
}

.featured-subsection,
.sizzling-showcase {
  background:
    radial-gradient(circle at 86% 12%, rgba(253,158,3,.18), transparent 30%),
    linear-gradient(145deg, rgba(253,253,253,.98), rgba(255,244,212,.96));
  color: var(--maroon-dark);
  box-shadow: 0 18px 44px rgba(181,1,19,.14);
}

.special-page-hero h3,
.special-page-hero p {
  color: var(--maroon-dark);
}

.special-product-circle__details {
  background: #fdfdfd;
  color: var(--maroon-dark);
}

.featured-product-card__details {
  background: rgba(253,253,253,.9);
  border-color: rgba(181,1,19,.16);
}

.site-footer {
  background: var(--maroon);
  color: #fdfdfd;
}

.footer-panel,
.footer-contacts,
.footer-sitemap {
  background: rgba(253,253,253,.12);
  color: #fdfdfd;
}

.footer-contacts a,
.footer-contacts a:hover,
.footer-contacts a:focus-visible,
.footer-sitemap span,
.footer-sitemap a,
.footer-catering {
  color: #fdfdfd;
  text-shadow: none;
}

.pwa-corner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 24;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(48,4,5,.9);
  padding: 6px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.pwa-corner:has(.pwa-install[hidden]) {
  display: none;
}

.pwa-install {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon-dark);
  cursor: pointer;
  animation: pwa-install-bounce 2.4s ease-in-out infinite;
}

.pwa-install[hidden] {
  display: none;
}

.pwa-install:disabled {
  cursor: wait;
  opacity: .65;
  animation: none;
}

.employee-link {
  justify-self: end;
  color: var(--gold-dark);
  padding: 2px 0 0;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.employee-link:hover,
.employee-link:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

@keyframes pwa-install-bounce {
  0%, 75%, 100% { transform: translateY(0); }
  82% { transform: translateY(-4px); }
  90% { transform: translateY(1px); }
}

.empty-state {
  padding: 30px;
  background: var(--panel-strong);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 40;
  bottom: 24px;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 32px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--ink);
  padding: 10px 15px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease;
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 720px) {
  .menu-topbar {
    position: static;
    display: grid;
    gap: 10px;
    padding: 10px 12px;
  }

  .menu-topbar__brand {
    justify-self: center;
  }

  .menu-topbar__nav {
    justify-content: center;
    gap: 6px;
  }

  .menu-topbar__nav a {
    min-height: 32px;
    padding-inline: 8px;
    font-size: .72rem;
  }

  .app-shell {
    grid-template-areas:
      "toolbar"
      "sidebar"
      "menu";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 0;
    padding-top: 0;
  }

  .toolbar {
    justify-items: stretch;
    margin: 0;
    padding: 12px;
    background: rgba(48,4,5,.96);
  }

  .search {
    gap: 0;
    border: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .search__label,
  .search__status:empty {
    display: none;
  }

  .search input {
    min-height: 44px;
    border-radius: 999px;
    background: var(--panel);
  }

  .menu-sidebar {
    position: static;
    z-index: 20;
    max-height: none;
    margin-top: 0;
    border-radius: 0;
    border-right: 0;
    border-left: 0;
  }

  .menu-sidebar__head {
    display: none;
  }

  .menu-nav__list {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .menu-nav__list::-webkit-scrollbar {
    display: none;
  }

  .menu-nav__list a {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 154px;
    padding-inline: 12px;
  }

  .hero__content {
    padding: 0;
  }

  .hero__bottom {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 10px;
  }

  .hero__bottom .hero__button {
    min-width: 0;
    padding-inline: 14px;
  }

  .hero__slider-controls {
    flex: 1 1 100%;
    justify-content: space-between;
    gap: 7px;
  }

  .hero__dots {
    flex: 1;
    justify-content: center;
    gap: 5px;
  }

  .hero__dots button {
    width: clamp(12px, 5.2vw, 24px);
  }

  .hero__control {
    min-height: 38px;
    width: 38px;
    min-width: 38px;
  }

  .pagination {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .pagination__controls {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
  }

  .pagination__pages {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-block: 2px;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .pagination__pages::-webkit-scrollbar {
    display: none;
  }

  .pagination button {
    min-height: 40px;
    scroll-snap-align: center;
  }

  .pagination__step {
    width: 40px;
    min-width: 40px;
    padding-inline: 0;
  }

  .pagination__step span:not(.pagination__icon) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .section-header,
  .section-menu {
    border-radius: 8px;
  }

  .section-header {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px 18px;
  }

  .section-header--featured {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 14px;
  }

  .section-header--featured .section-header__copy {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    min-height: 0;
  }

  .section-header__chef {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    width: 112px;
    height: 112px;
  }

  .section-header.has-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-header__gallery {
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
    grid-template-rows: 96px;
  }

  .section-header__gallery .food-photo--primary {
    grid-row: auto;
  }

  .subsection {
    margin: 30px 10px 20px;
    padding: 34px 14px 18px;
  }

  .subsection__layout {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .subsection__gallery {
    position: static;
    grid-template-columns: 1fr;
    grid-auto-rows: 92px;
    gap: 7px;
    height: 100%;
  }

  .subsection__gallery .food-photo--primary {
    grid-column: auto;
    min-height: 92px;
  }

  .subsection__gallery.image-count-2,
  .subsection__gallery.image-count-3,
  .subsection__gallery.image-count-4 {
    grid-column: auto;
    display: grid;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .subsection__gallery.image-count-2 .food-photo,
  .subsection__gallery.image-count-3 .food-photo,
  .subsection__gallery.image-count-4 .food-photo {
    width: 100%;
    height: 82px;
  }

  .subsection__gallery.image-count-2 + .subsection__items,
  .subsection__gallery.image-count-3 + .subsection__items,
  .subsection__gallery.image-count-4 + .subsection__items {
    grid-column: auto;
  }

  .special-circle-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .special-product-circle { width: 100%; max-width: 440px; justify-self: center; }
  .special-product-circle__media { width: 100%; border-width: 0 0 1px; border-radius: 0; }
  .special-product-circle__caption { gap: 4px; margin-top: 0; padding: 10px 8px; }
  .special-product-circle__caption strong { font-size: .78rem; }
  .special-product-circle__caption > span { font-size: .65rem; }
  .special-product-circle__split-caption { grid-template-columns: minmax(0, .48fr) minmax(0, .52fr); min-height: 74px; }
  .special-product-circle__split-caption strong { padding: 10px 8px; font-size: .78rem; }
  .special-product-circle__split-caption > span { padding: 10px 8px; font-size: .68rem; }
  .special-product-circle__details { margin-top: 10px; padding: 0 10px 10px; }
  .special-product-circle__detail-price { margin: 0 -10px 9px; padding: 7px; font-size: .66rem; }
  .special-product-circle__detail-price strong { font-size: .76rem; }
  .special-product-circle__details p { font-size: .66rem; }
  .sizzling-showcase { margin: 12px; padding: 28px 10px; }
  .featured-subsection { min-height: 0; margin: 12px; padding: 20px 14px; }
  .special-page-hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "chef"
      "copy";
    justify-items: center;
    gap: 12px;
  }
  .special-page-hero__chef {
    grid-area: chef;
    justify-self: center;
    width: 112px;
    height: 112px;
  }
  .special-page-hero__copy {
    grid-area: copy;
    width: 100%;
  }
  .special-page-hero h3 { font-size: 1.35rem; }
  .featured-product-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .featured-product-card { width: 100%; max-width: 440px; justify-self: center; }
  .featured-product-card__body { padding: 12px 10px 10px; }
  .featured-product-card__body strong { font-size: .78rem; }
  .featured-product-card__body p { font-size: .64rem; }
  .featured-product-card__price { margin: 0 8px 8px; font-size: .65rem; }

  .subsection__items {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .menu-item__copy {
    padding: 0;
  }

  .menu-item__name {
    font-size: .96rem;
  }

  .menu-option {
    font-size: .78rem;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 17px;
  }

  .footer-catering {
    padding-top: 12px;
    white-space: normal;
  }

  .footer-contacts {
    max-width: none;
    justify-self: stretch;
  }

  .footer-contacts__phones {
    justify-content: flex-start;
  }

  .footer-contacts__location {
    justify-items: start;
    text-align: left;
  }

  .footer-sitemap {
    max-width: none;
  }

  .employee-link {
    justify-self: start;
  }

}

@media (max-width: 480px) {
  .menu-topbar__brand span {
    font-size: .98rem;
  }

  .menu-topbar__nav a {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }

  .section-header--featured {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .section-header--featured .section-header__copy,
  .section-header__chef { grid-column: 1; }

  .section-header__gallery {
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
    grid-template-rows: 76px;
  }

  .subsection__layout {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 8px;
  }

  .subsection__gallery {
    grid-auto-rows: 72px;
  }

  .subsection__gallery .food-photo--primary {
    min-height: 72px;
  }

  .menu-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    padding-inline: 7px;
  }

  .menu-item__prices {
    justify-content: flex-start;
    gap: 5px 12px;
  }

  .menu-option__label {
    text-align: left;
  }
}

@media print {
  @page {
    margin: 12mm;
  }

  * {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  body {
    background: #fff;
    color: #111;
    font-size: 10pt;
  }

  .hero,
  .menu-sidebar,
  .toolbar,
  .menu-actions,
  .pagination {
    display: none !important;
  }

  .container {
    width: 100%;
  }

  .menu-layout {
    padding: 0;
  }

  .menu-layout::before {
    content: "Vorani · Smarter Restaurant Service.";
    display: block;
    margin: 0 0 10mm;
    color: var(--maroon);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30pt;
    font-weight: 800;
    line-height: 1;
  }

  .menu-section {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 7mm;
  }

  .section-header,
  .subsection {
    box-shadow: none;
    border-radius: 0;
  }

  .section-menu {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .section-header {
    grid-template-columns: minmax(0, 1fr);
    padding: 5mm;
    margin-bottom: 3mm;
  }

  .section-header.has-gallery {
    grid-template-columns: minmax(0, 1fr) 68mm;
  }

  .section-header__gallery {
    grid-template-rows: repeat(2, 16mm);
  }

  .section-header h2 {
    font-size: 22pt;
  }

  .subsection {
    padding: 4mm;
    margin-bottom: 4mm;
  }

  .subsection__layout {
    grid-template-columns: 38mm minmax(0, 1fr);
    gap: 4mm;
  }

  .subsection__gallery {
    position: static;
    grid-auto-rows: 24mm;
  }

  .subsection__gallery .food-photo--primary {
    min-height: 38mm;
  }

  .menu-item {
    padding: 2.2mm 0;
  }

  .site-footer {
    background: #fff;
    color: #111;
    padding: 6mm 0 0;
    border-top: 1px solid #ddd;
  }

  .pwa-corner {
    display: none;
  }

  .footer-panel {
    border: 0;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__tagline.is-typing::after,
  .menu-loading__spinner,
  .pwa-install {
    animation: none;
  }
}
