:root {
  --ink: #241712;
  --muted: #6c5a4f;
  --paper: #fffaf2;
  --cream: #f7ead7;
  --gold: #c9862a;
  --tomato: #b93e22;
  --olive: #506b3f;
  --line: rgba(36, 23, 18, 0.14);
  --shadow: 0 18px 48px rgba(36, 23, 18, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 1) 620px),
    var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-page {
  background: #fffaf2;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(36, 23, 18, 0.88);
  color: #fffaf2;
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: 58px;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 9px 18px rgba(0, 0, 0, 0.32));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
  color: #fffaf2;
  font-size: 1.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255, 250, 242, 0.84);
  font-weight: 720;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 250, 242, 0.12);
  color: #fff;
}

.nav-links .nav-cta {
  background: #fffaf2;
  color: var(--ink);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  background: var(--gold);
  color: #1d120e;
}

.hero {
  min-height: calc(100svh - 72px);
  max-height: 820px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fffaf2;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 13, 8, 0.88), rgba(24, 13, 8, 0.44) 48%, rgba(24, 13, 8, 0.18)),
    linear-gradient(0deg, rgba(24, 13, 8, 0.72), transparent 55%),
    var(--hero-image) center / cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(0deg, var(--paper), transparent);
  z-index: -1;
}

.hero-content {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 clamp(56px, 9vw, 96px);
}

.hero-logo {
  width: min(390px, 78vw);
  margin: 0 0 24px;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.38));
}

.eyebrow {
  margin: 0 0 14px;
  color: #f3bd68;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 9vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.28rem, 2.6vw, 1.8rem);
}

.hero-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 250, 242, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--tomato);
  color: #fffaf2;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(185, 62, 34, 0.18);
}

.button.secondary {
  background: rgba(255, 250, 242, 0.1);
  border-color: rgba(255, 250, 242, 0.36);
  box-shadow: none;
}

.button.light {
  background: #fffaf2;
  color: var(--ink);
  box-shadow: none;
}

.section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.section.alt {
  background: #fff;
}

.section.dark {
  background: #21140f;
  color: #fffaf2;
}

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

.section-lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.dark .section-lead {
  color: rgba(255, 250, 242, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 6vw, 68px);
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: min(560px, 70vh);
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.feature {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.feature strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.feature span {
  color: var(--muted);
  font-size: 0.95rem;
}

.locations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.location {
  min-height: 128px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(36, 23, 18, 0.06);
}

.location strong {
  display: block;
  margin-bottom: 8px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 30px rgba(36, 23, 18, 0.08);
}

.stat strong {
  display: block;
  color: var(--tomato);
  font-family: Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.contact-tile {
  padding: 20px;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
}

.contact-tile small {
  display: block;
  color: #f3bd68;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-tile a {
  display: inline-block;
  margin-top: 8px;
  color: #fffaf2;
  font-size: 1.05rem;
  font-weight: 780;
  text-decoration: none;
}

.contact-tile .tile-map {
  display: block;
  margin-top: 6px;
  color: #f3bd68;
  font-size: 0.96rem;
}

.order-heading {
  margin-bottom: 24px;
}

.order-heading h2,
.order-panel-title h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

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

.order-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--tomato);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(36, 23, 18, 0.06);
}

.order-card small {
  color: var(--tomato);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.order-card h3 {
  font-size: 1.45rem;
}

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

.order-phone {
  margin-top: auto;
  color: var(--tomato);
  font-size: 1.22rem;
  font-weight: 950;
  text-decoration: none;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-actions .button {
  min-height: 42px;
  padding: 0 14px;
  box-shadow: none;
}

.button.map-button {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.contact-secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fffaf2;
  background: #21140f;
}

.page-hero .container {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-top: 74px;
  padding-bottom: 58px;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(33, 20, 15, 0.86), rgba(33, 20, 15, 0.46)),
    var(--hero-image) center / cover;
  opacity: 0.98;
}

.page-hero h1,
.page-hero p,
.page-hero .eyebrow {
  position: relative;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: 1.12rem;
}

.page-hero-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.menu-toolbar {
  position: sticky;
  top: 72px;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(14px);
}

.menu-toolbar-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
}

.menu-tabs {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.menu-tabs a {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.menu-tabs a:hover {
  border-color: rgba(185, 62, 34, 0.4);
  color: var(--tomato);
}

.menu-download-chip {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--tomato);
  color: #fffaf2;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(185, 62, 34, 0.2);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.menu-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.menu-note {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: #21140f;
  color: #fffaf2;
}

.menu-note p {
  color: rgba(255, 250, 242, 0.82);
}

.menu-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.menu-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.order-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(201, 134, 42, 0.12), rgba(255, 255, 255, 0.84));
  box-shadow: 0 10px 26px rgba(36, 23, 18, 0.06);
}

.order-panel-title {
  align-self: center;
}

.order-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-grid-compact .order-card {
  padding: 16px;
}

.order-grid-compact .order-phone {
  font-size: 1.08rem;
}

.category-media {
  padding: 18px 18px 0;
}

.category-media img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(36, 23, 18, 0.08);
}

.category-media-wide img {
  aspect-ratio: 16 / 6;
  max-height: 270px;
}

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

.snacking-gallery img {
  height: 100%;
  aspect-ratio: 4 / 3;
}

.snacking-gallery img:first-child {
  grid-column: span 2;
}

.category {
  scroll-margin-top: 152px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(36, 23, 18, 0.06);
}

.category-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(201, 134, 42, 0.14), rgba(80, 107, 63, 0.1));
}

.category-header p {
  margin: 8px 0 0;
  color: var(--muted);
}

.category-price {
  flex: 0 0 auto;
  min-width: 106px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--tomato);
  color: #fffaf2;
  text-align: center;
  font-weight: 900;
  font-size: 1.25rem;
}

.menu-list {
  padding: 8px 18px 18px;
}

.menu-group-title {
  margin: 18px 4px 6px;
  color: var(--olive);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(36, 23, 18, 0.1);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.2;
}

.menu-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.price {
  min-width: 76px;
  color: var(--tomato);
  font-weight: 950;
  font-size: 1.12rem;
  text-align: right;
  white-space: nowrap;
}

.side-panel {
  position: sticky;
  top: 146px;
}

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

.side-panel .menu-poster {
  aspect-ratio: 1 / 1.42;
  object-fit: contain;
  background: #fff;
  padding: 8px;
}

.side-panel .button {
  width: 100%;
  margin-top: 14px;
}

.side-callout {
  margin-top: 14px;
  padding: 18px;
  border-radius: 8px;
  background: #21140f;
  color: #fffaf2;
}

.side-callout strong {
  color: #f3bd68;
}

.allergens {
  margin-top: 28px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(80, 107, 63, 0.12);
  border: 1px solid rgba(80, 107, 63, 0.2);
}

.allergens strong {
  display: block;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 14px;
}

.allergen-item {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 12px 8px;
  border: 1px solid rgba(185, 62, 34, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.74);
  text-align: center;
}

.allergen-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.allergen-item span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.15;
}

.allergens p {
  margin: 16px 0 0;
  color: var(--muted);
}

.legal {
  max-width: 780px;
}

.legal h2 {
  margin-top: 30px;
  font-size: 1.65rem;
}

.footer {
  padding: 34px 0;
  background: #160e0a;
  color: rgba(255, 250, 242, 0.82);
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: #fffaf2;
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--tomato);
  color: #fffaf2;
  font-size: 1.35rem;
  box-shadow: 0 12px 26px rgba(36, 23, 18, 0.22);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.admin-page {
  min-height: 100vh;
  background: #fff7ec;
  color: var(--ink);
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px min(32px, 5vw);
  border-bottom: 1px solid rgba(36, 23, 18, 0.1);
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(14px);
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.admin-brand img {
  width: 58px;
  height: 42px;
  object-fit: contain;
}

.admin-topbar nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-topbar nav a,
.admin-secondary-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(36, 23, 18, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

.admin-shell-narrow {
  max-width: 500px;
}

.admin-page-title,
.admin-section-head,
.admin-category-head,
.admin-sticky-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-page-title {
  margin-bottom: 18px;
}

.admin-page-title h1,
.admin-card h1,
.admin-card h2 {
  margin: 0;
}

.admin-card {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid rgba(36, 23, 18, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(36, 23, 18, 0.07);
}

.admin-card p {
  margin: 7px 0 0;
  color: var(--muted);
}

.admin-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(80, 107, 63, 0.18);
  border-radius: 8px;
  background: rgba(80, 107, 63, 0.1);
  font-weight: 850;
}

.admin-alert-error {
  border-color: rgba(185, 62, 34, 0.22);
  background: rgba(185, 62, 34, 0.1);
  color: var(--tomato);
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-form label {
  display: grid;
  gap: 7px;
}

.admin-form label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(36, 23, 18, 0.16);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.admin-form textarea {
  min-height: 92px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus {
  outline: 3px solid rgba(201, 134, 42, 0.22);
  border-color: rgba(185, 62, 34, 0.5);
}

.admin-grid,
.admin-location-row,
.admin-row,
.admin-password-form {
  display: grid;
  gap: 12px;
}

.admin-grid-two,
.admin-password-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-grid-four,
.admin-location-row {
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1.7fr;
}

.admin-location-list,
.admin-group {
  display: grid;
  gap: 14px;
}

.admin-menu-card {
  padding-bottom: 12px;
}

.admin-category-head {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(36, 23, 18, 0.1);
}

.admin-category-head a {
  color: var(--tomato);
  font-weight: 900;
  text-decoration: none;
}

.admin-group {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(36, 23, 18, 0.1);
}

.admin-row {
  grid-template-columns: minmax(150px, 0.8fr) minmax(240px, 1.7fr) minmax(96px, 0.45fr);
  align-items: end;
}

.admin-row-head {
  padding: 0 2px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-row label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.admin-secondary {
  justify-self: start;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(36, 23, 18, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.admin-sticky-actions {
  position: sticky;
  bottom: 14px;
  z-index: 10;
  margin: 18px 0;
  padding: 12px;
  border: 1px solid rgba(36, 23, 18, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.95);
  box-shadow: 0 14px 34px rgba(36, 23, 18, 0.14);
  backdrop-filter: blur(14px);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 8px;
    background: rgba(36, 23, 18, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: center;
  }

  .split,
  .menu-layout,
  .menu-intro {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .locations,
  .stats,
  .contact-strip,
  .order-grid,
  .order-grid-compact,
  .order-panel {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .menu-toolbar {
    top: 72px;
  }

  .category {
    scroll-margin-top: 148px;
  }

  .admin-page-title,
  .admin-section-head,
  .admin-category-head,
  .admin-sticky-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-grid-two,
  .admin-grid-four,
  .admin-location-row,
  .admin-row,
  .admin-password-form {
    grid-template-columns: 1fr;
  }

  .admin-row-head {
    display: none;
  }

  .admin-row label span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .nav-shell {
    width: min(100% - 24px, 1160px);
  }

  .hero-content,
  .container,
  .footer-inner {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    min-height: calc(100svh - 72px);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(24, 13, 8, 0.9), rgba(24, 13, 8, 0.62)),
      linear-gradient(0deg, rgba(24, 13, 8, 0.74), transparent 55%),
      var(--hero-image) center / cover;
  }

  .menu-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-toolbar-inner {
    padding: 10px 12px;
  }

  .menu-download-chip {
    padding: 0 13px;
  }

  .snacking-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snacking-gallery img:first-child {
    grid-column: span 2;
  }

  .category-media {
    padding: 12px 12px 0;
  }

  .category-media-wide img {
    aspect-ratio: 4 / 3;
  }

  .category-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-price {
    width: 100%;
    font-size: 1.36rem;
  }

  .menu-list {
    padding: 8px 12px 16px;
  }

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

  .menu-item strong {
    font-size: 1rem;
  }

  .menu-item p {
    font-size: 0.92rem;
  }

  .price {
    min-width: 68px;
    font-size: 1.08rem;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 22px;
  }

  .admin-card {
    padding: 16px;
  }
}
