:root {
  color-scheme: dark;
  --ink: #fff7ec;
  --muted: rgba(255, 247, 236, 0.68);
  --soft: rgba(255, 247, 236, 0.1);
  --paper: #090909;
  --panel: rgba(18, 18, 16, 0.78);
  --panel-strong: rgba(24, 23, 21, 0.94);
  --line: rgba(255, 247, 236, 0.14);
  --line-strong: rgba(255, 247, 236, 0.28);
  --accent: #ff7900;
  --accent-soft: #ffad4d;
  --red: #cf1e28;
  --green: #7f9165;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.18), rgba(9, 9, 9, 0.82)),
    url("../img/trem-pattern.png") center top / 760px auto repeat,
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: manipulation;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 121, 0, 0.13), transparent 22rem),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.56));
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -20vw -30vh -20vw;
  height: 60vh;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 121, 0, 0.12), transparent 64%);
  filter: blur(28px);
  opacity: 0.85;
  z-index: 0;
}

body.access-pending .site-header,
body.access-pending .menu-top,
body.access-pending main,
body.access-pending .footer {
  visibility: hidden;
}

@keyframes page-spinner-spin {
  to { transform: rotate(360deg); }
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(8px);
  color: var(--ink);
  text-align: center;
}

.page-spinner {
  width: 46px;
  height: 46px;
  border: 4px solid rgba(255, 247, 236, 0.18);
  border-top-color: var(--accent);
  border-radius: 999px;
  animation: page-spinner-spin 720ms linear infinite;
  box-shadow: 0 0 32px rgba(255, 121, 0, 0.22);
}

.page-loader strong {
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: none;
  touch-action: manipulation;
}

a { color: inherit; }

img,
svg,
video,
canvas {
  max-width: 100%;
}

input,
textarea,
select {
  font-size: 16px;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

.site-header {
  min-height: 92vh;
  color: var(--ink);
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;
}

.home-page .site-header {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.72)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.12) 34%, rgba(5, 5, 5, 0.12) 66%, rgba(5, 5, 5, 0.62)),
    url("../img/home-hero.jpg") center bottom / cover no-repeat;
  overflow: hidden;
}

.home-page .site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255, 121, 0, 0.12), transparent 22rem);
  pointer-events: none;
}

.nav,
.hero,
.status-band,
.filters,
.menu-shell,
.footer {
  width: min(1120px, calc(100% - 32px));
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.nav {
  min-height: 64px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.admin-link,
.area-link,
.jump-link,
.ghost-link,
.footer a {
  min-height: 44px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.admin-link:hover,
.area-link:hover,
.jump-link:hover,
.ghost-link:hover,
.footer a:hover {
  transform: translateY(-1px);
}

.admin-link,
.area-link,
.ghost-link,
.footer a {
  background: rgba(255, 247, 236, 0.055);
  color: rgba(255, 247, 236, 0.84);
  backdrop-filter: blur(12px);
}

.jump-link {
  border-color: var(--accent);
  background: var(--accent);
  color: #160f09;
}

.hero {
  display: grid;
  align-items: center;
  padding: 26px 0 132px;
}

.hero-copy {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-logo {
  width: min(390px, 74vw);
  height: auto;
  display: block;
  margin: 0 auto 24px;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.62));
}

.section-heading h2::first-letter,
.category h3::first-letter {
  color: var(--accent);
}

.hero-text {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 247, 236, 0.78);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  text-wrap: balance;
}

.home-promo {
  width: min(860px, 100%);
  margin: 28px auto 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0;
  border: 2px solid rgba(255, 121, 0, 0.86);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 205, 128, 0.38), transparent 27%),
    radial-gradient(circle at 92% 10%, rgba(255, 121, 0, 0.42), transparent 30%),
    linear-gradient(135deg, rgba(255, 121, 0, 0.5), rgba(44, 18, 4, 0.98) 39%, rgba(8, 8, 7, 0.96));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(255, 247, 236, 0.12) inset,
    0 0 68px rgba(255, 121, 0, 0.42);
  backdrop-filter: blur(20px);
  text-align: left;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-promo.has-image {
  grid-template-columns: minmax(210px, 34%) minmax(0, 1fr);
}

.home-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 247, 236, 0.24), transparent 19%, transparent 70%, rgba(255, 121, 0, 0.3)),
    linear-gradient(90deg, rgba(255, 121, 0, 0.95) 0 7px, transparent 7px);
  pointer-events: none;
  z-index: 1;
}

.home-promo::after {
  content: attr(data-badge);
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9b2f, #ff5f00);
  color: #120b05;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow:
    0 12px 28px rgba(255, 121, 0, 0.48),
    0 0 0 1px rgba(255, 247, 236, 0.22) inset;
}

.home-promo[hidden],
.home-review[hidden],
.review-cta[hidden] {
  display: none;
}

.home-promo img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  border-radius: 0;
  object-fit: cover;
  border: 0;
  box-shadow: none;
  filter: saturate(1.15) contrast(1.12);
  position: relative;
  z-index: 0;
}

.home-promo > div {
  min-width: 0;
  padding: 34px 66px 32px 30px;
  align-self: center;
  position: relative;
  z-index: 2;
}

.home-promo:not(.has-image) > div {
  padding-left: 38px;
}

.home-promo span,
.home-review span,
.review-cta span {
  display: block;
  color: var(--accent-soft);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-promo strong {
  display: block;
  max-width: 12ch;
  margin-top: 8px;
  color: #fff7ec;
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.58);
}

.home-promo p {
  max-width: 34ch;
  margin: 14px 0 0;
  color: rgba(255, 247, 236, 0.9);
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.34;
}

.home-promo button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 247, 236, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.home-review {
  min-height: 128px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 121, 0, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 121, 0, 0.12), transparent 52%),
    rgba(10, 10, 9, 0.68);
  color: rgba(255, 247, 236, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  text-align: left;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.home-review::before {
  content: "★";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 121, 0, 0.14);
  color: var(--accent-soft);
  border: 1px solid rgba(255, 121, 0, 0.28);
}

.home-review small {
  display: block;
  max-width: calc(100% - 40px);
  color: rgba(255, 247, 236, 0.68);
  font-size: 0.76rem;
  font-weight: 780;
  line-height: 1.18;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-review a,
.review-cta a {
  min-height: 38px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 121, 0, 0.44);
  border-radius: 999px;
  color: var(--accent-soft);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-review a {
  min-height: 32px;
  padding: 7px 11px;
  width: fit-content;
  margin-top: 0;
  font-size: 0.68rem;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-admin-link {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 14px);
  right: 14px;
  z-index: 8;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 121, 0, 0.34);
  border-radius: 999px;
  background: rgba(10, 10, 9, 0.58);
  color: transparent;
  font-size: 0;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  text-decoration: none;
}

.hero-admin-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 121, 0, 0.75);
}

.macro-grid {
  width: min(860px, 100%);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.macro-card {
  min-width: 0;
  min-height: 128px;
  padding: 18px;
  display: grid;
  align-content: end;
  gap: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 121, 0, 0.12), transparent 48%),
    rgba(255, 247, 236, 0.055);
  color: inherit;
  text-decoration: none;
  text-align: left;
  backdrop-filter: blur(16px);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.macro-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 121, 0, 0.44);
  background:
    linear-gradient(145deg, rgba(255, 121, 0, 0.2), transparent 48%),
    rgba(255, 247, 236, 0.075);
}

.macro-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.54;
  filter: saturate(0.72);
}

.macro-card.is-disabled:hover {
  transform: none;
  border-color: var(--line);
  background:
    linear-gradient(145deg, rgba(255, 121, 0, 0.08), transparent 48%),
    rgba(255, 247, 236, 0.04);
}

.macro-card span {
  color: rgba(255, 247, 236, 0.82);
  font-size: clamp(1.12rem, 2vw, 1.36rem);
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.macro-card small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.status-band {
  min-height: 92px;
  margin-top: -54px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 121, 0, 0.18), transparent 48%),
    rgba(15, 15, 14, 0.84);
  border: 1px solid rgba(255, 121, 0, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateZ(0);
  display: grid;
  align-items: center;
  gap: 6px;
}

.status-band span,
.search-wrap label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-band strong {
  display: block;
  margin-top: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}

.filters {
  padding: 30px 0 10px;
  position: sticky;
  top: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.97), rgba(9, 9, 9, 0.82));
  backdrop-filter: blur(16px);
}

.search-wrap {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.search-wrap input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  background: rgba(16, 16, 15, 0.84);
  color: var(--ink);
  font: inherit;
  outline-color: var(--accent);
}

.search-wrap input::placeholder {
  color: rgba(255, 247, 236, 0.42);
}

.chips {
  display: flex;
  max-width: 100%;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 0 4px;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}

.chip {
  min-height: 40px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 236, 0.055);
  color: var(--ink);
  padding: 8px 13px;
  font: inherit;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease);
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 121, 0, 0.38);
}

.chip[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #14100d;
}

.subchips {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 247, 236, 0.12);
  border-radius: 8px;
  background: rgba(16, 16, 15, 0.72);
}

.subchip {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 247, 236, 0.76);
  padding: 9px 12px;
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
}

.subchip[aria-pressed="true"] {
  background: rgba(255, 121, 0, 0.92);
  color: #14100d;
}

.menu-shell {
  min-width: 0;
  padding: 34px 0 64px;
}

.section-heading {
  min-width: 0;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.detail-hint {
  margin: 0;
  color: rgba(255, 247, 236, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 6vw, 4.9rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-content {
  display: grid;
  min-width: 0;
  gap: 38px;
}

.category {
  min-width: 0;
  max-width: 100%;
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.category-media {
  margin: 0 0 18px;
  height: clamp(170px, 24vw, 260px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f1e9;
  overflow: hidden;
}

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

.category-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  gap: 16px;
  align-items: end;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.category h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.category-description {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
  white-space: normal;
  overflow-wrap: anywhere;
}

.category-time {
  color: var(--accent-soft);
  font-weight: 900;
  white-space: nowrap;
}

.items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  gap: 12px;
  border-top: 0;
}

.item {
  position: relative;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  min-height: 112px;
  padding: 15px;
  background: rgba(15, 17, 18, 0.9);
  border: 1px solid rgba(255, 247, 236, 0.1);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.item.has-image {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}

.item-media {
  margin: 0;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(255, 247, 236, 0.1);
  border-radius: 0;
  background: #f6f1e9;
}

.item-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.item-body {
  min-width: 0;
  display: grid;
  gap: 9px;
}

.item.has-image .item-body {
  padding: 14px;
}

.item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 121, 0, 0.36);
  background: rgba(20, 22, 23, 0.94);
}

.item:focus-visible {
  outline: 2px solid rgba(255, 121, 0, 0.72);
  outline-offset: 3px;
}

.item-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  gap: 12px;
  align-items: start;
}

.item h4 {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.price {
  padding: 5px 8px;
  background: rgba(255, 121, 0, 0.12);
  color: var(--accent-soft);
  border: 1px solid rgba(255, 121, 0, 0.22);
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.description {
  margin: 0;
  color: rgba(255, 247, 236, 0.7);
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.item-detail-label {
  width: fit-content;
  color: rgba(255, 121, 0, 0.78);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.item:hover .item-detail-label,
.item:focus-visible .item-detail-label {
  color: var(--accent-soft);
}

.availability-badge {
  width: fit-content;
  border: 1px solid rgba(255, 247, 236, 0.24);
  background: rgba(255, 247, 236, 0.08);
  color: rgba(255, 247, 236, 0.82);
  padding: 4px 8px;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.meta {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  border: 1px solid rgba(255, 247, 236, 0.15);
  color: rgba(255, 247, 236, 0.64);
  padding: 3px 7px;
  font-size: 0.75rem;
  font-weight: 800;
}

.tag.highlight {
  border-color: rgba(255, 121, 0, 0.34);
  color: var(--accent-soft);
}

.unavailable { opacity: 0.56; }

.empty-state {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(18, 18, 16, 0.84);
  color: var(--muted);
  text-align: center;
}

.review-cta {
  width: min(1120px, calc(100% - 32px));
  max-width: 100%;
  margin: 14px auto 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 121, 0, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 121, 0, 0.11), transparent 52%),
    rgba(18, 18, 16, 0.72);
  position: relative;
  z-index: 1;
}

.review-cta p {
  margin: 3px 0 0;
  color: rgba(255, 247, 236, 0.7);
}

.dialog-open {
  overflow: hidden;
}

.item-dialog {
  position: fixed;
  inset: 0;
  z-index: 20;
  padding: 18px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.item-dialog-panel {
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(255, 121, 0, 0.34);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 121, 0, 0.13), transparent 42%),
    rgba(16, 16, 14, 0.98);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.54);
  position: relative;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 247, 236, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.44);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.dialog-media {
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 247, 236, 0.14);
  aspect-ratio: 4 / 3;
  background: rgba(255, 247, 236, 0.06);
}

.dialog-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.dialog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.dialog-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.dialog-description {
  margin: 12px 0 0;
  color: rgba(255, 247, 236, 0.76);
}

.dialog-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.dialog-section h3 {
  margin: 0 0 8px;
  color: var(--accent-soft);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dialog-section p {
  margin: 0;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer span {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.allergen-dialog-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.allergen-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(32px, 7vw, 72px) 0 52px;
}

.allergen-hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(22px, 5vw, 36px);
  margin-bottom: 22px;
}

.allergen-hero h1 {
  margin: 8px 0 14px;
  color: var(--ink);
  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.allergen-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 247, 236, 0.76);
  font-size: clamp(1rem, 2.8vw, 1.18rem);
  line-height: 1.55;
}

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

.allergen-grid article {
  min-width: 0;
  border: 1px solid rgba(255, 247, 236, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 121, 0, 0.1), transparent 50%),
    rgba(255, 247, 236, 0.045);
  padding: 16px;
}

.allergen-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.allergen-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.allergen-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.allergen-source {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.allergen-source a {
  color: var(--accent-soft);
  font-weight: 850;
  text-decoration: none;
}

.locked-page {
  min-height: 100vh;
  min-height: 100dvh;
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.locked-card {
  width: 100%;
  min-width: 0;
  padding: clamp(28px, 6vw, 46px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 121, 0, 0.1), transparent 44%),
    rgba(10, 10, 9, 0.88);
  box-shadow: var(--shadow);
  text-align: center;
}

.locked-card img {
  width: min(260px, 76%);
  height: auto;
  display: block;
  margin: 0 auto 22px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.48));
}

.locked-card h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
}

.locked-card p:not(.eyebrow) {
  max-width: 420px;
  margin: 18px auto 0;
  color: var(--muted);
}

.locked-card .ghost-link {
  margin-top: 24px;
}

.menu-top {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 6;
}

.menu-home-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.menu-home-link img {
  width: 132px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.menu-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-link {
  border-color: rgba(255, 121, 0, 0.56);
  color: var(--accent-soft);
}

.menu-page .status-band {
  margin-top: 14px;
}

@media (max-width: 760px) {
  body {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.12), rgba(9, 9, 9, 0.9)),
      url("../img/trem-pattern.png") center top / 620px auto repeat,
      var(--paper);
  }

  body::before {
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 121, 0, 0.1), transparent 16rem),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.7));
  }

  body::after {
    display: none;
  }

  .site-header {
    min-height: 100vh;
    min-height: 100dvh;
    grid-template-rows: 1fr;
  }

  .home-page .site-header {
    min-height: 100vh;
    min-height: 100dvh;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.38), rgba(5, 5, 5, 0.78)),
      url("../img/home-hero.jpg") center bottom / cover no-repeat;
  }

  .nav,
  .hero,
  .menu-top,
  .status-band,
  .filters,
  .menu-shell,
  .footer {
    width: calc(100% - 24px);
    max-width: 1120px;
  }

  .nav {
    display: none;
  }

  .menu-top {
    padding: 14px 0 6px;
  }

  .menu-home-link img {
    width: 116px;
  }

  .menu-actions {
    gap: 6px;
  }

  .menu-top .admin-link,
  .menu-top .area-link {
    display: inline-flex;
  }

  .admin-link,
  .area-link {
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    border-color: rgba(255, 247, 236, 0.2);
    font-size: 0.64rem;
    background: rgba(255, 247, 236, 0.045);
    color: rgba(255, 247, 236, 0.7);
  }

  .area-link {
    border-color: rgba(255, 121, 0, 0.42);
    color: var(--accent-soft);
  }

  .hero {
    align-items: center;
    padding: max(28px, env(safe-area-inset-top, 0px)) 0 44px;
  }

  .hero-logo {
    width: min(236px, 66vw);
    margin-bottom: 18px;
  }

  .home-promo {
    width: 100%;
    min-height: 168px;
    margin: 22px auto 22px;
    border-radius: 16px;
  }

  .home-promo.has-image {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .home-promo img {
    height: 100%;
    min-height: 168px;
  }

  .home-promo > div {
    padding: 44px 46px 22px 16px;
  }

  .home-promo:not(.has-image) > div {
    padding-left: 18px;
  }

  .home-promo::after {
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    font-size: 0.58rem;
  }

  .home-promo strong {
    max-width: 10.5ch;
    font-size: 1.42rem;
    line-height: 0.92;
  }

  .home-promo p {
    margin-top: 9px;
    font-size: 0.84rem;
    line-height: 1.24;
  }

  .home-promo button {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .home-review {
    min-height: 78px;
    padding: 14px;
    gap: 6px;
  }

  .home-review a {
    min-height: 30px;
    width: fit-content;
    font-size: 0.7rem;
  }

  .home-review small {
    display: none;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    color: rgba(255, 121, 0, 0.9);
  }

  .hero-text {
    margin-top: 0;
    font-size: 0.94rem;
    max-width: 330px;
    color: rgba(255, 247, 236, 0.74);
  }

  .macro-grid {
    width: min(320px, 100%);
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .macro-card {
    min-height: 78px;
    padding: 14px;
    border-radius: 8px;
  }

  .macro-card span {
    font-size: 1rem;
  }

  .macro-card small {
    font-size: 0.78rem;
  }

  .hero-admin-link {
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    right: 10px;
    width: 34px;
    height: 34px;
  }

  .status-band {
    min-height: auto;
    margin-top: 0;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(14, 14, 13, 0.72);
    border-color: rgba(255, 247, 236, 0.12);
    box-shadow: none;
  }

  .menu-page .status-band {
    margin-top: 10px;
  }

  .status-band span {
    font-size: 0.66rem;
  }

  .status-band strong {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.98rem;
  }

  .category {
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .category-media {
    margin: 0 0 14px;
    height: 132px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
      linear-gradient(90deg, rgba(9, 9, 9, 0.16), rgba(9, 9, 9, 0.02)),
      rgba(255, 247, 236, 0.06);
  }

  .filters {
    padding-top: 22px;
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.99), rgba(9, 9, 9, 0.92));
  }

  .search-wrap input,
  .chip,
  .item,
  .price,
  .tag {
    border-radius: 8px;
  }

  .chips {
    max-width: 100%;
    gap: 9px;
    padding-top: 12px;
    padding-right: 18px;
    mask-image: linear-gradient(90deg, #000 calc(100% - 22px), transparent);
  }

  .chip {
    min-height: 42px;
    padding: 8px 14px;
    background: rgba(255, 247, 236, 0.075);
  }

  .menu-shell {
    overflow-x: hidden;
    padding-top: 26px;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-heading .eyebrow {
    max-width: 100%;
    font-size: 0.66rem;
    line-height: 1.35;
    white-space: normal;
  }

  .section-heading h2,
  .category h3 {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
  }

  .section-heading h2 {
    font-size: clamp(2.05rem, 10vw, 2.9rem);
  }

  .menu-content {
    gap: 24px;
  }

  .items { grid-template-columns: 1fr; }

  .category-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .category-header > div,
  .item-main > * {
    min-width: 0;
    max-width: 100%;
  }

  .price {
    width: fit-content;
    text-align: left;
  }

  .item {
    min-height: 0;
    max-width: 100%;
    padding: 13px;
    background: rgba(15, 17, 18, 0.92);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  }

  .item.has-image {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .item-media {
    width: 100%;
    height: 168px;
  }

  .item h4 {
    font-size: 0.98rem;
  }

  .description {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .item.has-image .item-body {
    padding: 12px;
  }

  .item-detail-label {
    font-size: 0.66rem;
  }

  .review-cta {
    width: calc(100% - 24px);
    margin-top: 10px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .review-cta p {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .item-dialog {
    padding: 12px;
    align-items: center;
  }

  .item-dialog-panel {
    max-height: calc(100vh - 24px);
    padding: 16px;
  }

  .dialog-media {
    aspect-ratio: 4 / 3;
  }

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

  .category-time { white-space: normal; }

  .footer { flex-direction: column; }

  .locked-card h1 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.08;
  }
}
