:root {
  --bg: #fff8ef;
  --bg-strong: #2b1410;
  --paper: #fffdf8;
  --ink: #22110d;
  --muted: #6d5d55;
  --line: #ead8c8;
  --brand: #b72524;
  --brand-dark: #7b1719;
  --gold: #e4a32f;
  --green: #13865b;
  --shadow: 0 24px 70px rgba(68, 30, 15, .14);
  --radius: 24px;
  --shell: min(1180px, calc(100vw - 32px));
  font-family: "Avenir Next", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top left, #fff2da 0, var(--bg) 36%, #ffffff 100%);
  color: var(--ink);
  line-height: 1.55;
}
a { color: inherit; }
img, video { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.shell { width: var(--shell); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
}
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 239, .84);
  border-bottom: 1px solid rgba(120, 66, 38, .12);
}
.site-header.compact { background: rgba(255, 255, 255, .92); }
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: 1.05rem;
}
.brand img {
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(101, 30, 18, .14);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a, .nav-links button.ghost {
  border: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.nav-links a:hover, .nav-links a:focus-visible, .nav-links button.ghost:hover {
  background: rgba(183, 37, 36, .08);
}
.nav-toggle { display: none; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 56px 0 74px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
}
h1, h2, h3 { line-height: 1.05; margin: 0; letter-spacing: -.045em; }
h1 { font-size: clamp(3.1rem, 8vw, 6.8rem); }
h2 { font-size: clamp(2rem, 4.4vw, 4rem); }
h3 { font-size: 1.35rem; }
.hero-lead {
  margin: 22px 0 30px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--muted);
  max-width: 650px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.button, .call-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  min-height: 48px;
  background: var(--brand);
  color: white;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(183, 37, 36, .22);
}
.button:hover, .call-button:hover { transform: translateY(-1px); }
.button.secondary, .call-button.secondary {
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(36, 16, 10, .14);
}
.button.ghost { box-shadow: none; }
.button.small { min-height: 38px; padding: 8px 12px; font-size: .92rem; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}
.hero-facts div, .feature-card, .contact-card, .card-panel {
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-facts div { padding: 16px; box-shadow: none; }
dt { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--brand); font-weight: 900; }
dd { margin: 5px 0 0; color: var(--muted); font-weight: 650; }
.hero-media {
  position: relative;
  min-height: 620px;
}
.hero-media video {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255, 255, 255, .7);
}
.hero-card {
  position: absolute;
  width: 178px;
  height: 220px;
  object-fit: cover;
  border-radius: 28px;
  border: 8px solid white;
  box-shadow: var(--shadow);
}
.hero-card-one { left: -28px; bottom: 16px; transform: rotate(-5deg); }
.hero-card-two { right: -10px; top: 28px; transform: rotate(6deg); }
.section { padding: 72px 0; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.row-between {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  max-width: none;
}
.text-link {
  color: var(--brand);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  white-space: nowrap;
}
.feature-grid, .cards-grid, .admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card { padding: 26px; }
.feature-card p { color: var(--muted); margin-bottom: 0; }
.cards-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.item-card {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(60, 30, 12, .08);
}
.item-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #f3e5d4;
}
.item-card-body { padding: 18px; }
.item-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.item-card p { color: var(--muted); margin: 0 0 12px; font-size: .94rem; }
.price {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(183, 37, 36, .09);
  color: var(--brand-dark);
  font-weight: 900;
}
.sold-out { filter: grayscale(1); opacity: .62; }
.gallery-section { overflow: hidden; }
.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 320px);
  gap: 18px;
  overflow-x: auto;
  padding: 0 max(16px, calc((100vw - 1180px) / 2)) 20px;
  scroll-snap-type: x mandatory;
}
.gallery-strip img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 28px;
  scroll-snap-align: start;
  box-shadow: 0 18px 40px rgba(60, 30, 12, .08);
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.contact-card { padding: 28px; }
.site-footer {
  background: var(--bg-strong);
  color: #fff4e6;
  padding: 30px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.footer-grid p { margin: 0; }
.footer-grid a { color: #fff4e6; }

/* Menu page */
.menu-page { padding-top: 58px; }
.tabs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; margin-top: 22px; }
.tab-button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}
.tab-button.active { background: var(--brand); color: white; border-color: var(--brand); }
.menu-root { display: grid; gap: 34px; }
.menu-category {
  scroll-margin-top: 110px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
}
.menu-category-header { margin-bottom: 18px; }
.menu-category-header p { color: var(--muted); margin: 8px 0 0; }
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.menu-list-item {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 16px;
  align-items: center;
  background: white;
  border: 1px solid #f0dfd0;
  border-radius: 22px;
  padding: 12px;
}
.menu-list-item img { width: 104px; height: 92px; border-radius: 16px; object-fit: cover; background: #f3e5d4; }
.menu-list-item h3 { font-size: 1.05rem; }
.menu-list-item p { color: var(--muted); margin: 6px 0 0; font-size: .92rem; }

/* Digital board */
.board-body {
  background: #120907;
  color: white;
  overflow: hidden;
}
.board {
  height: 100vh;
  height: 100svh;
  max-height: 100vh;
  max-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(340px, 30vw) minmax(0, 1fr);
  background:
    radial-gradient(circle at 20% 20%, rgba(228, 163, 47, .16), transparent 34%),
    linear-gradient(135deg, #1a0c08 0%, #34120e 45%, #120907 100%);
}
.board-sidebar {
  min-width: 0;
  min-height: 0;
  padding: clamp(20px, 2.35vw, 44px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(16px, 1.8vw, 30px);
  border-right: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.board-brand { display: flex; gap: clamp(12px, 1.2vw, 20px); align-items: center; min-width: 0; }
.board-brand img {
  width: clamp(68px, 5vw, 96px);
  height: clamp(68px, 5vw, 96px);
  border-radius: 999px;
  background: white;
  flex: 0 0 auto;
}
.board-brand h1 {
  font-size: clamp(2.2rem, 3.4vw, 4.25rem);
  line-height: .93;
  letter-spacing: -.06em;
}
.board-location {
  color: #f4c66d;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: clamp(.78rem, .95vw, 1.05rem);
}
.board-featured { min-height: 0; }
.board-feature-card {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: clamp(22px, 2vw, 36px);
  overflow: hidden;
  background: #2f1710;
  box-shadow: 0 30px 80px rgba(0,0,0,.38);
}
.board-feature-card img, .board-feature-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}
.board-feature-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(18px, 1.9vw, 32px);
  background: linear-gradient(transparent, rgba(0,0,0,.86));
}
.board-feature-copy p { margin: 0 0 8px; color: #ffd485; font-weight: 900; }
.board-feature-copy h2 {
  font-size: clamp(1.8rem, 3.05vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.05em;
}
.board-clock { font-size: clamp(1.1rem, 1.45vw, 1.8rem); font-weight: 900; color: #ffe6b8; }
.board-main {
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: clamp(20px, 2.45vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.4vw, 28px);
}
.board-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 0;
  flex: 0 0 auto;
  font-size: clamp(.98rem, 1.18vw, 1.45rem);
  color: #ffe1a7;
  font-weight: 850;
  margin: 0;
}
.board-topline span { min-width: 0; }
#board-phones { white-space: nowrap; }
.board-menu-grid {
  min-height: 0;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: clamp(14px, 1.55vw, 28px);
  align-content: stretch;
}
.board-category {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: clamp(20px, 1.65vw, 30px);
  padding: clamp(16px, 1.35vw, 28px);
}
.board-category h2 {
  color: #ffcd62;
  font-size: clamp(1.45rem, 2.2vw, 2.95rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: clamp(8px, .8vw, 16px);
  flex: 0 0 auto;
}
.board-lines {
  min-height: 0;
  overflow: hidden;
  display: grid;
  align-content: start;
}
.board-line {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: clamp(10px, 1vw, 18px);
  align-items: baseline;
  padding: clamp(6px, .46vw, 10px) 0;
  border-bottom: 1px dashed rgba(255,255,255,.18);
  font-size: clamp(1rem, 1.22vw, 1.58rem);
  line-height: 1.13;
  font-weight: 850;
}
.board-line > span:first-child { min-width: 0; overflow: hidden; }
.board-line small {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(255,255,255,.64);
  font-size: .52em;
  font-weight: 650;
  line-height: 1.18;
  margin-top: 3px;
}
.board-line .price {
  background: transparent;
  color: white;
  padding: 0;
  font-size: .96em;
  white-space: nowrap;
}
.board-ticker {
  flex: 0 0 auto;
  height: clamp(42px, 3.25vw, 64px);
  margin: 0;
  overflow: hidden;
  border-radius: 999px;
  background: var(--brand);
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: clamp(1rem, 1.22vw, 1.6rem);
  font-weight: 900;
}
.board-ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 22s linear infinite;
}
@keyframes ticker { to { transform: translateX(-100%); } }

@media (max-height: 860px), (max-width: 1450px) {
  .board { grid-template-columns: minmax(280px, 27vw) minmax(0, 1fr); }
  .board-sidebar { padding: clamp(16px, 1.8vw, 30px); gap: 14px; }
  .board-brand img { width: clamp(54px, 4.6vw, 76px); height: clamp(54px, 4.6vw, 76px); }
  .board-brand h1 { font-size: clamp(1.9rem, 3.1vw, 3.35rem); }
  .board-feature-copy { padding: 18px; }
  .board-feature-copy h2 { font-size: clamp(1.45rem, 2.65vw, 3.2rem); }
  .board-main { padding: clamp(16px, 1.9vw, 32px); gap: 14px; }
  .board-category { padding: clamp(13px, 1.1vw, 20px); }
  .board-category h2 { font-size: clamp(1.35rem, 2vw, 2.35rem); }
  .board-line { font-size: clamp(.96rem, 1.08vw, 1.28rem); padding: 6px 0; }
  .board-line small { display: none; }
  .board-ticker { height: 42px; }
}

/* Admin */
.admin-shell { padding-top: 54px; }
.hidden { display: none !important; }
.card-panel { padding: 26px; }
.admin-login { max-width: 520px; margin: 0 auto; }
.stacked-form { display: grid; gap: 14px; }
.stacked-form label { display: grid; gap: 6px; color: var(--muted); font-weight: 800; }
.stacked-form input, .stacked-form textarea, .stacked-form select, .editor-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: white;
  color: var(--ink);
}
.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.two-cols .wide { grid-column: 1 / -1; }
.form-message { color: var(--brand-dark); font-weight: 850; }
.admin-grid { grid-template-columns: 1.3fr .7fr; align-items: start; margin-bottom: 22px; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.media-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.media-library { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-height: 420px; overflow: auto; }
.media-tile { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: white; }
.media-tile img, .media-tile video { width: 100%; height: 96px; object-fit: cover; background: #eee; }
.media-tile button { width: 100%; border: 0; background: #fff; padding: 8px; font-size: .78rem; cursor: copy; color: var(--muted); }
.menu-editor-panel { margin-top: 24px; }
.menu-editor { display: grid; gap: 18px; margin-top: 18px; }
.editor-category { border: 1px solid var(--line); border-radius: 22px; padding: 16px; background: #fffaf4; }
.editor-category-head { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; align-items: center; }
.editor-items { display: grid; gap: 10px; margin-top: 14px; }
.editor-item {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr .6fr 1fr auto;
  gap: 8px;
  align-items: center;
  background: white;
  border: 1px solid #f0dfd0;
  border-radius: 16px;
  padding: 10px;
}
.check-group { display: flex; gap: 10px; align-items: center; font-size: .82rem; color: var(--muted); }
.icon-button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  min-width: 40px;
  min-height: 40px;
  cursor: pointer;
}
.muted { color: var(--muted); }
code { background: rgba(0,0,0,.06); padding: 2px 6px; border-radius: 6px; }

@media (max-width: 940px) {
  .hero, .contact-section, .admin-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { min-height: 460px; }
  .hero-media video { height: 420px; }
  .cards-grid, .feature-grid, .menu-list { grid-template-columns: 1fr 1fr; }
  .hero-facts { grid-template-columns: 1fr; }
  .editor-item { grid-template-columns: 1fr; }
  .editor-category-head { grid-template-columns: 1fr; }
  .media-library { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav { min-height: 68px; }
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 12px;
    background: white;
    font-weight: 850;
  }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .nav-links.open, .nav-links.visible { display: flex; }
  .hero { padding-top: 34px; gap: 24px; }
  h1 { font-size: clamp(2.6rem, 14vw, 4.6rem); }
  .cards-grid, .feature-grid, .menu-list { grid-template-columns: 1fr; }
  .menu-list-item { grid-template-columns: 88px 1fr; }
  .menu-list-item .price { grid-column: 2; width: fit-content; }
  .row-between, .footer-grid { align-items: start; flex-direction: column; }
  .two-cols { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}

/* Production admin/order additions */
.public-order-form textarea,
.stacked-form textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: white;
  color: var(--ink);
}
.order-card { grid-column: 1 / -1; }
.menu-order-panel { margin-top: 34px; }
.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.metric-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(60, 30, 12, .06);
}
.metric-card strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  color: var(--brand-dark);
}
.metric-card span {
  color: var(--muted);
  font-weight: 850;
}
.order-admin-panel { margin-bottom: 22px; }
.orders-list { display: grid; gap: 12px; margin-top: 18px; }
.order-card-admin {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  background: #fffaf4;
  border: 1px solid #f0dfd0;
  border-radius: 18px;
  padding: 14px;
}
.order-main p { margin: 8px 0; }
.order-main small { color: var(--muted); font-weight: 750; }
.order-actions {
  display: grid;
  gap: 8px;
  min-width: 170px;
}
.order-actions select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: white;
  color: var(--ink);
}
.status-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(183, 37, 36, .1);
  color: var(--brand-dark);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}
.status-confirmed, .status-ready { background: rgba(19, 134, 91, .12); color: var(--green); }
.status-cancelled { background: rgba(0, 0, 0, .1); color: var(--muted); }
.audit-panel { margin-top: 22px; }
.audit-list { display: grid; gap: 8px; margin-top: 14px; }
.audit-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.audit-row strong { color: var(--ink); }
.editor-input, .stacked-form input, .stacked-form textarea, .order-actions select { min-width: 0; }
button:disabled { opacity: .6; cursor: wait; transform: none; }

/* Mobile and small-screen polish */
@media (max-width: 940px) {
  .admin-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .order-card-admin { grid-template-columns: 1fr; }
  .order-actions { min-width: 0; grid-template-columns: 1fr auto; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 24px, 1180px); }
  body { overflow-x: hidden; }
  .brand span { max-width: 52vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav-links.visible {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
  }
  .nav-links.visible a,
  .nav-links.visible button { padding: 8px 10px; }
  .hero-media { min-height: auto; padding-bottom: 0; }
  .hero-media video { height: min(74vh, 440px); border-radius: 26px; border-width: 5px; }
  .hero-card { width: 120px; height: 148px; border-width: 5px; border-radius: 20px; }
  .hero-card-one { left: 4px; bottom: 10px; }
  .hero-card-two { right: 4px; top: 14px; }
  .hero-actions .button,
  .hero-actions .call-button { width: 100%; }
  .menu-category { padding: 16px; border-radius: 22px; }
  .menu-list-item { gap: 12px; padding: 10px; align-items: start; }
  .menu-list-item img { width: 82px; height: 82px; }
  .menu-list-item h3 { font-size: 1rem; letter-spacing: -.02em; }
  .menu-list-item p { font-size: .86rem; }
  .price { font-size: .92rem; }
  .admin-metrics { grid-template-columns: 1fr 1fr; }
  .media-library { grid-template-columns: 1fr 1fr; max-height: 300px; }
  .order-actions { grid-template-columns: 1fr; }
  .audit-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { padding-top: 24px; }
  h1 { font-size: clamp(2.1rem, 13vw, 3.4rem); }
  h2 { font-size: clamp(1.65rem, 9vw, 2.4rem); }
  .card-panel, .contact-card { padding: 18px; border-radius: 20px; }
  .admin-metrics { grid-template-columns: 1fr; }
  .media-library { grid-template-columns: 1fr; }
  .footer-grid { font-size: .92rem; }
}

@media (max-width: 900px), (orientation: portrait) {
  .board-body { overflow: auto; }
  .board {
    height: auto;
    min-height: 100svh;
    max-height: none;
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .board-sidebar {
    min-height: auto;
    grid-template-rows: auto minmax(220px, 36vh) auto;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .board-brand img { width: 64px; height: 64px; }
  .board-brand h1 { font-size: clamp(2rem, 10vw, 4rem); }
  .board-feature-card { min-height: 220px; }
  .board-clock { font-size: clamp(1.2rem, 5vw, 2rem); }
  .board-main { height: auto; min-height: auto; overflow: visible; padding: 22px; }
  .board-topline { flex-direction: column; align-items: flex-start; gap: 8px; }
  .board-menu-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 16px; }
  .board-category { padding: 18px; border-radius: 22px; overflow: visible; }
  .board-line { font-size: clamp(1rem, 4.4vw, 1.5rem); grid-template-columns: minmax(0, 1fr) max-content; gap: 12px; padding: 9px 0; }
  .board-line small { display: none; }
  .board-ticker { height: 52px; }
}

/* v4 board repair: default board is now scrollable on every viewport.
   The previous desktop rules forced 100vh and overflow:hidden, so content below
   the fold was clipped and the browser could not scroll. */
.board-body {
  min-height: 100svh;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}
.board {
  height: auto !important;
  min-height: 100svh;
  max-height: none !important;
  overflow: visible !important;
  align-items: stretch;
}
.board-main {
  height: auto !important;
  min-height: 100svh;
  overflow: visible !important;
  gap: clamp(12px, 1.15vw, 22px);
}
.board-menu-grid {
  flex: 0 0 auto !important;
  grid-auto-rows: auto !important;
  align-content: start !important;
}
.board-category,
.board-lines {
  overflow: visible !important;
}
.board-category {
  padding: clamp(14px, 1.15vw, 23px);
}
.board-category h2 {
  font-size: clamp(1.5rem, 1.85vw, 2.65rem);
  margin-bottom: clamp(8px, .65vw, 14px);
}
.board-line {
  font-size: clamp(.95rem, 1.02vw, 1.36rem);
  padding: clamp(7px, .42vw, 9px) 0;
  line-height: 1.12;
}
.board-line small {
  font-size: .5em;
  line-height: 1.12;
}
.board-ticker {
  margin-top: clamp(8px, .9vw, 18px);
}

@media (min-width: 901px) and (orientation: landscape) {
  .board {
    grid-template-columns: minmax(250px, 24vw) minmax(0, 1fr);
  }
  .board-sidebar {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 0;
    overflow: hidden !important;
    padding: clamp(18px, 1.6vw, 34px);
    grid-template-rows: auto minmax(180px, 1fr) auto;
    gap: clamp(12px, 1.1vw, 22px);
  }
  .board-brand img {
    width: clamp(56px, 4.25vw, 82px);
    height: clamp(56px, 4.25vw, 82px);
  }
  .board-brand h1 {
    font-size: clamp(2rem, 3.05vw, 3.75rem);
  }
  .board-location {
    font-size: clamp(.72rem, .75vw, .95rem);
  }
  .board-feature-card {
    height: 100%;
    min-height: 180px;
  }
  .board-feature-copy h2 {
    font-size: clamp(1.45rem, 2.25vw, 3.1rem);
  }
  .board-main {
    padding: clamp(18px, 1.65vw, 34px);
  }
}

@media (max-width: 700px) {
  .board-main { padding: 16px; }
  .board-sidebar { padding: 16px; }
  .board-brand { align-items: flex-start; }
  .board-brand h1 { letter-spacing: -.045em; }
  .board-menu-grid { gap: 14px; }
  .board-line {
    grid-template-columns: 1fr;
    gap: 3px;
    align-items: start;
  }
  .board-line .price {
    justify-self: start;
    font-size: .95em;
  }
  #board-phones { white-space: normal; }
}



/* v8 mobile-first visual polish */
:root {
  --cream-glow: rgba(255, 236, 204, .72);
  --glass: rgba(255, 255, 255, .82);
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  box-shadow: 0 10px 30px rgba(43, 20, 16, .045);
}

.brand img {
  outline: 3px solid rgba(255,255,255,.72);
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -12%;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(183,37,36,.11), transparent 68%);
  pointer-events: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-lead {
  font-weight: 650;
  letter-spacing: -.018em;
}

.hero-facts div,
.contact-card,
.card-panel,
.menu-category,
.item-card,
.menu-list-item {
  backdrop-filter: blur(12px);
}

.cards-grid .item-card,
.menu-list-item,
.contact-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cards-grid .item-card:hover,
.menu-list-item:hover,
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 37, 36, .22);
}

.call-button,
.button {
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

@media (max-width: 940px) {
  .hero {
    padding: 34px 0 46px;
    gap: 30px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-lead {
    max-width: 620px;
  }

  .hero-media {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .contact-section {
    gap: 16px;
  }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 1180px); }

  body {
    background:
      radial-gradient(circle at top left, rgba(255,224,170,.9) 0, rgba(255,248,239,.96) 34%, #fff 100%);
  }

  .site-header {
    background: rgba(255,248,239,.94);
  }

  .nav {
    min-height: 64px;
    gap: 12px;
  }

  .brand {
    gap: 10px;
    font-size: .98rem;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .nav-toggle {
    min-height: 40px;
    padding: 8px 13px;
    box-shadow: 0 8px 22px rgba(43, 20, 16, .08);
  }

  .nav-links {
    left: 14px;
    right: 14px;
    top: 68px;
    padding: 8px;
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
  }

  .nav-links a,
  .nav-links button.ghost {
    padding: 13px 14px;
    border-radius: 15px;
    font-size: 1rem;
  }

  .hero {
    padding: 26px 0 38px;
    gap: 22px;
  }

  .eyebrow {
    font-size: .72rem;
    letter-spacing: .14em;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4.15rem);
    letter-spacing: -.06em;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.75rem);
  }

  .hero-lead {
    margin: 16px 0 20px;
    font-size: 1.04rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .call-button,
  .button {
    min-height: 50px;
    width: 100%;
    border-radius: 18px;
    padding: 13px 16px;
    font-size: .98rem;
  }

  .hero-facts {
    margin-top: 22px;
    gap: 10px;
  }

  .hero-facts div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.86);
  }

  dt { font-size: .7rem; }
  dd { font-size: .95rem; }

  .hero-media {
    min-height: 330px;
  }

  .hero-media video {
    height: 315px;
    border-radius: 26px;
    border-width: 5px;
  }

  .hero-card {
    width: 108px;
    height: 134px;
    border-width: 5px;
    border-radius: 18px;
  }

  .hero-card-one {
    left: -2px;
    bottom: 2px;
  }

  .hero-card-two {
    right: -2px;
    top: 10px;
  }

  .section {
    padding: 42px 0;
  }

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

  .row-between {
    gap: 12px;
  }

  .text-link {
    display: inline-flex;
    padding: 8px 0;
  }

  .cards-grid,
  .feature-grid,
  .menu-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .item-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    min-height: 132px;
    border-radius: 22px;
  }

  .item-card img {
    height: 100%;
    min-height: 132px;
  }

  .item-card-body {
    padding: 14px;
  }

  .item-card h3 {
    font-size: 1.03rem;
  }

  .item-card p {
    font-size: .88rem;
    line-height: 1.4;
  }

  .gallery-strip {
    grid-auto-columns: minmax(170px, 72vw);
    gap: 12px;
    padding-bottom: 14px;
    scroll-padding-inline: 14px;
  }

  .gallery-strip img {
    height: 250px;
    border-radius: 22px;
  }

  .contact-card,
  .card-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .stacked-form {
    gap: 12px;
  }

  .stacked-form input,
  .stacked-form textarea,
  .stacked-form select,
  .editor-input {
    min-height: 48px;
    border-radius: 13px;
    font-size: 16px;
  }

  .menu-page {
    padding-top: 36px;
  }

  .tabs {
    margin-top: 18px;
    gap: 8px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

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

  .tab-button {
    padding: 9px 13px;
    font-size: .92rem;
    box-shadow: 0 8px 22px rgba(43, 20, 16, .05);
  }

  .menu-root {
    gap: 18px;
  }

  .menu-category {
    padding: 16px;
    border-radius: 24px;
  }

  .menu-category-header h2 {
    font-size: clamp(1.55rem, 9vw, 2.35rem);
  }

  .menu-list-item {
    grid-template-columns: 86px 1fr;
    gap: 11px;
    padding: 10px;
    border-radius: 18px;
  }

  .menu-list-item img {
    width: 86px;
    height: 86px;
    border-radius: 14px;
  }

  .menu-list-item .price {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 96px;
  }

  .price {
    font-size: .9rem;
    min-height: 28px;
  }

  .footer-grid {
    gap: 8px;
  }
}

@media (max-width: 390px) {
  :root { --shell: min(100% - 20px, 1180px); }

  .brand span { max-width: 46vw; }

  h1 {
    font-size: clamp(2.25rem, 15vw, 3.3rem);
  }

  .hero-media {
    min-height: 288px;
  }

  .hero-media video {
    height: 276px;
    border-radius: 22px;
  }

  .hero-card {
    width: 88px;
    height: 112px;
  }

  .item-card {
    grid-template-columns: 96px 1fr;
  }

  .item-card img {
    min-height: 126px;
  }

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

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

  .menu-list-item .price {
    margin-left: 86px;
  }
}

/* v9: restore customer-facing access to the digital menu board from the menu page */
.menu-access-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 18px 0 6px;
}
.menu-access-row span {
  color: var(--muted);
  font-weight: 750;
  font-size: .98rem;
}
.board-access-button {
  box-shadow: 0 14px 34px rgba(36, 16, 10, .16);
}
@media (max-width: 720px) {
  .menu-access-row {
    margin-top: 16px;
    gap: 8px;
  }
  .menu-access-row .button {
    width: 100%;
  }
  .menu-access-row span {
    font-size: .9rem;
    padding-inline: 2px;
  }
}

/* v10: QR code management, print and mobile UI */
.qr-admin-panel {
  overflow: hidden;
}

.qr-tools-head {
  align-items: flex-start;
  gap: 18px;
}

.qr-tools-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 18px;
}

.qr-form select,
.qr-form input[readonly] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

.qr-form input[readonly] {
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
}

.qr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.qr-actions .button,
.qr-public-actions .button {
  min-height: 42px;
}

.qr-preview-card {
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
  padding: 22px;
  border: 1px dashed rgba(200, 50, 40, .34);
  border-radius: 26px;
  background: linear-gradient(145deg, #fff, #fff7ed);
}

.qr-preview-card img,
.qr-public-image {
  width: min(100%, 330px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(36, 16, 10, .1);
  box-shadow: 0 20px 50px rgba(36, 16, 10, .12);
}

.qr-preview-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 750;
}

.qr-public-page {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
}

.qr-poster-card {
  width: min(760px, 100%);
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 38px;
  padding: clamp(28px, 6vw, 56px);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.qr-poster-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5rem);
}

.qr-poster-copy {
  color: var(--muted);
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  max-width: 560px;
  margin: 12px auto 24px;
}

.qr-url-line {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-weight: 800;
  margin: 18px 0 0;
}

.qr-public-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.disabled {
  pointer-events: none;
  opacity: .55;
}

.qr-access-button {
  border-color: rgba(200, 50, 40, .35);
}

@media (max-width: 860px) {
  .qr-tools-grid {
    grid-template-columns: 1fr;
  }

  .qr-actions .button {
    width: 100%;
    justify-content: center;
  }

  .qr-preview-card {
    padding: 18px;
  }
}

@media (max-width: 560px) {
  .qr-poster-card {
    border-radius: 26px;
    padding: 22px;
  }

  .qr-public-image,
  .qr-preview-card img {
    width: min(100%, 280px);
    border-radius: 18px;
    padding: 12px;
  }

  .qr-public-actions .button {
    width: 100%;
  }
}

@media print {
  .no-print,
  .site-header,
  .qr-public-actions {
    display: none !important;
  }

  body {
    background: #fff !important;
  }

  .qr-public-page {
    min-height: auto;
    padding: 0;
  }

  .qr-poster-card {
    box-shadow: none;
    border: 4px solid #c83228;
    width: 100%;
    max-width: none;
    min-height: 95vh;
    display: grid;
    place-items: center;
    align-content: center;
  }

  .qr-public-image {
    width: 420px;
    max-width: 70vw;
    box-shadow: none;
  }
}

/* v11: restaurant-grade visual upgrade and stronger mobile presentation */
:root {
  --border: var(--line);
  --charcoal: #1b0b08;
  --charcoal-2: #31110d;
  --ember: #d43b2f;
  --amber: #f4b43e;
  --cream: #fff4df;
  --soft-cream: #fff9ef;
  --deep-shadow: 0 30px 90px rgba(35, 12, 8, .22);
  --card-shadow: 0 18px 50px rgba(64, 28, 12, .12);
}

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(244, 180, 62, .26), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(183, 37, 36, .12), transparent 26rem),
    linear-gradient(180deg, #fff5e4 0%, #fffaf2 36%, #ffffff 100%);
}

.site-header {
  border-bottom: 1px solid rgba(49, 17, 13, .09);
  background: rgba(255, 249, 239, .8);
}

.nav {
  min-height: 82px;
}

.brand {
  font-size: 1.08rem;
}

.brand img {
  background: white;
  box-shadow: 0 12px 30px rgba(183, 37, 36, .16);
}

.nav-links a,
.nav-links button.ghost {
  font-weight: 850;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links button.ghost:hover {
  background: rgba(183, 37, 36, .1);
  color: var(--brand-dark);
}

.hero.shell {
  width: min(1240px, calc(100vw - 32px));
  margin-top: clamp(18px, 3vw, 42px);
}

.hero {
  min-height: auto;
  padding: clamp(34px, 5vw, 72px);
  border-radius: clamp(28px, 4vw, 54px);
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 8%, rgba(244, 180, 62, .22), transparent 20rem),
    radial-gradient(circle at 92% 22%, rgba(212, 59, 47, .22), transparent 21rem),
    linear-gradient(135deg, var(--charcoal) 0%, #2a0d09 48%, #522117 100%);
  box-shadow: var(--deep-shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  inset: -10% auto auto -8%;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(244, 180, 62, .17), transparent 68%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 232, 189, .16);
  border-radius: inherit;
  pointer-events: none;
}

.hero .eyebrow,
.hero-copy .eyebrow {
  color: #ffd274;
}

.hero h1 {
  color: #fffaf1;
  text-shadow: 0 18px 48px rgba(0,0,0,.26);
}

.hero-lead {
  color: rgba(255, 244, 223, .86);
  max-width: 700px;
}

.hero-actions .call-button:first-child,
.button:not(.secondary):not(.ghost) {
  background: linear-gradient(135deg, var(--ember), #9e1f1f);
  box-shadow: 0 18px 40px rgba(212, 59, 47, .3);
}

.hero-actions .call-button.secondary,
.button.secondary {
  background: linear-gradient(135deg, #2b1410, #120806);
}

.hero-facts div {
  background: rgba(255, 250, 241, .1);
  border-color: rgba(255, 236, 195, .18);
  color: white;
}

.hero-facts dt {
  color: #ffd274;
}

.hero-facts dd {
  color: rgba(255, 244, 223, .8);
}

.hero-media {
  min-height: 560px;
}

.hero-media video {
  height: 540px;
  border: 8px solid rgba(255,255,255,.22);
  box-shadow: 0 36px 90px rgba(0,0,0,.35);
  filter: saturate(1.08) contrast(1.04);
}

.hero-card {
  border-color: rgba(255, 250, 241, .92);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.section-heading h2,
.menu-category-header h2,
.contact-section h2,
.qr-poster-card h1 {
  color: #20100b;
}

.menu-preview,
.contact-section,
.menu-page,
.qr-public-page {
  position: relative;
}

.menu-preview::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 34px auto auto -90px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244,180,62,.18), transparent 70%);
  pointer-events: none;
}

.item-card,
.menu-list-item,
.contact-card,
.card-panel,
.menu-category {
  box-shadow: var(--card-shadow);
}

.item-card {
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #fff9ef);
}

.item-card img,
.gallery-strip img,
.menu-list-item img {
  filter: saturate(1.08) contrast(1.02);
}

.item-card-body {
  display: grid;
  align-content: start;
}

.price {
  background: linear-gradient(135deg, rgba(244,180,62,.22), rgba(183,37,36,.12));
  border: 1px solid rgba(183,37,36,.12);
}

.gallery-section {
  padding-block: 78px;
  background:
    linear-gradient(180deg, rgba(43, 20, 16, .03), rgba(43,20,16,.06)),
    #fffaf2;
}

.gallery-strip img {
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 24px 64px rgba(43,20,16,.14);
}

.contact-section {
  align-items: start;
}

.contact-section > div:first-child {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 12%, rgba(244,180,62,.2), transparent 18rem),
    linear-gradient(135deg, #fff8eb, #fffdf9);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}

.contact-card {
  background: rgba(255,255,255,.88);
}

.site-footer {
  background:
    radial-gradient(circle at 8% 0%, rgba(244,180,62,.18), transparent 24rem),
    linear-gradient(135deg, #160806, #34110c);
}

/* Menu page premium layout */
.menu-page > .menu-hero-head {
  max-width: none;
  margin-bottom: 30px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: clamp(26px, 4vw, 44px);
  color: var(--cream);
  background:
    radial-gradient(circle at 10% 8%, rgba(244,180,62,.24), transparent 22rem),
    linear-gradient(135deg, #220b07, #45170f 62%, #190806);
  border: 1px solid rgba(255, 231, 184, .16);
  box-shadow: var(--deep-shadow);
  overflow: hidden;
}

.menu-page > .menu-hero-head h1,
.menu-page > .menu-hero-head h2,
.menu-page > .menu-hero-head p:not(.eyebrow),
.menu-page > .menu-hero-head span {
  color: inherit;
}

.menu-page > .menu-hero-head .eyebrow,
.menu-page > .menu-hero-head .text-link {
  color: #ffd274;
}

.menu-page > .menu-hero-head p:not(.eyebrow) {
  max-width: 850px;
  color: rgba(255, 244, 223, .84);
}

.menu-access-row .button.secondary {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.2);
  color: #fffaf1;
  box-shadow: none;
}

.menu-access-row .qr-access-button {
  background: linear-gradient(135deg, var(--ember), #9b1e1d);
}

.tabs {
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.14);
}

.tab-button {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.92);
  color: var(--ink);
}

.tab-button.active {
  background: linear-gradient(135deg, var(--amber), #ffce73);
  color: #2a100b;
  border-color: transparent;
}

.menu-category {
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,237,.88));
  border-radius: 34px;
  padding: clamp(22px, 3vw, 34px);
}

.menu-category-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.menu-category-header::after {
  content: "Somar Selection";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(183,37,36,.08);
  color: var(--brand-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.menu-category-header p {
  grid-column: 1 / -1;
}

.menu-list-item {
  position: relative;
  overflow: hidden;
  background: #fffdf8;
  border-color: rgba(74, 31, 15, .1);
}

.menu-list-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--amber), var(--ember));
  opacity: .75;
}

.menu-order-panel {
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(244,180,62,.18), transparent 20rem),
    #fffdf8;
}

/* Mobile restaurant polish */
@media (max-width: 940px) {
  .hero.shell,
  .menu-page > .menu-hero-head {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    grid-template-columns: 1fr;
    padding: clamp(26px, 6vw, 42px);
  }

  .hero-media {
    min-height: 420px;
    order: -1;
  }

  .hero-media video {
    height: 410px;
  }

  .contact-section > div:first-child {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .site-header {
    background: rgba(255, 250, 242, .96);
  }

  .nav {
    min-height: 66px;
  }

  .nav-links.open {
    display: grid;
    gap: 4px;
  }

  .hero.shell {
    width: min(100% - 20px, 1180px);
    margin-top: 12px;
  }

  .hero {
    border-radius: 30px;
    padding: 18px 18px 24px;
    gap: 18px;
  }

  .hero::after {
    inset: 9px;
    border-radius: 24px;
  }

  .hero-media {
    min-height: 274px;
    width: 100%;
  }

  .hero-media video {
    height: 272px;
    border-width: 4px;
    border-radius: 24px;
  }

  .hero-card {
    width: 92px;
    height: 112px;
    border-width: 4px;
  }

  .hero-card-one { bottom: -4px; left: 4px; }
  .hero-card-two { top: 8px; right: 4px; }

  .hero .eyebrow {
    margin-top: 4px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 15vw, 4.05rem);
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .hero-actions .call-button,
  .hero-actions .button,
  .button,
  .call-button {
    border-radius: 16px;
  }

  .hero-facts {
    margin-top: 18px;
  }

  .hero-facts div {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.16);
  }

  .section-heading p:not(.eyebrow) {
    font-size: .98rem;
  }

  .item-card {
    grid-template-columns: 104px 1fr;
    border-radius: 20px;
  }

  .item-card img {
    min-height: 136px;
  }

  .gallery-section {
    padding-block: 48px;
  }

  .contact-section > div:first-child,
  .contact-card,
  .card-panel {
    border-radius: 22px;
  }

  .menu-page {
    padding-top: 20px;
  }

  .menu-page > .menu-hero-head {
    width: min(100% - 20px, 1180px);
    padding: 22px 18px;
    border-radius: 28px;
  }

  .menu-page > .menu-hero-head h1 {
    color: #fffaf1;
  }

  .menu-access-row {
    margin: 16px 0 4px;
  }

  .tabs {
    margin-inline: -6px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(255,255,255,.09);
  }

  .tab-button {
    border-radius: 14px;
  }

  .menu-category {
    border-radius: 24px;
    padding: 16px;
  }

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

  .menu-category-header::after {
    width: max-content;
  }

  .menu-list-item {
    grid-template-columns: 78px 1fr;
    min-height: 104px;
    border-radius: 18px;
  }

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

  .menu-list-item .price {
    grid-column: 2;
    margin-left: 0;
  }
}

@media (max-width: 390px) {
  .hero {
    padding: 16px 14px 22px;
  }

  .hero-media {
    min-height: 238px;
  }

  .hero-media video {
    height: 238px;
  }

  .hero-card {
    width: 78px;
    height: 96px;
  }

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

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

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

/* v12 menu page: remove the boxed wrapper and give the category switcher a true full-width restaurant bar */
body[data-page="menu"] {
  background:
    radial-gradient(circle at 18% 8%, rgba(244, 180, 62, .18), transparent 28rem),
    linear-gradient(180deg, #fff7e9 0%, #fffdf8 42%, #fff8ef 100%);
}

body[data-page="menu"] .menu-page.shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 72px;
}

body[data-page="menu"] .menu-page > .menu-hero-head {
  width: 100%;
  max-width: none;
  margin: 0 0 34px;
  padding: clamp(26px, 4vw, 54px) max(18px, calc((100vw - 1180px) / 2 + 16px)) 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 246, 231, .98), rgba(255, 249, 241, .72) 68%, rgba(255, 249, 241, 0));
  box-shadow: none;
  overflow: visible;
}

body[data-page="menu"] .menu-page > .menu-hero-head::before {
  content: "";
  display: block;
  width: 76px;
  height: 5px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--ember, #c83228), var(--amber, #f4b43e));
}

body[data-page="menu"] .menu-page > .menu-hero-head h1,
body[data-page="menu"] .menu-page > .menu-hero-head h2,
body[data-page="menu"] .menu-page > .menu-hero-head p:not(.eyebrow),
body[data-page="menu"] .menu-page > .menu-hero-head span {
  color: var(--ink);
}

body[data-page="menu"] .menu-page > .menu-hero-head .eyebrow {
  color: var(--brand);
}

body[data-page="menu"] .menu-page > .menu-hero-head h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7.5vw, 6.9rem);
}

body[data-page="menu"] .menu-page > .menu-hero-head p:not(.eyebrow) {
  max-width: 760px;
  color: #5f473c;
  font-weight: 600;
}

body[data-page="menu"] .menu-access-row {
  max-width: 920px;
  margin: 22px 0 0;
}

body[data-page="menu"] .menu-access-row .button.secondary {
  background: linear-gradient(135deg, #2a100b, #5b1b12);
  border: 1px solid rgba(110, 45, 24, .2);
  color: #fff8ed;
  box-shadow: 0 14px 34px rgba(53, 16, 8, .16);
}

body[data-page="menu"] .menu-access-row .qr-access-button {
  background: linear-gradient(135deg, var(--ember, #c83228), #8e1818);
}

body[data-page="menu"] #category-tabs.tabs {
  width: 100vw;
  max-width: none;
  margin: 28px calc(50% - 50vw) 0;
  padding: 12px max(14px, calc((100vw - 1180px) / 2 + 16px));
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(255, 226, 175, .16);
  border-bottom: 1px solid rgba(55, 16, 10, .22);
  background:
    linear-gradient(90deg, #1f0805 0%, #42120c 48%, #210705 100%);
  box-shadow: 0 18px 42px rgba(52, 17, 8, .16);
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

body[data-page="menu"] #category-tabs.tabs::-webkit-scrollbar {
  display: none;
}

body[data-page="menu"] #category-tabs .tab-button {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: max-content;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 248, 238, .94);
  color: #2a100b;
  box-shadow: 0 10px 24px rgba(10, 4, 2, .12);
}

body[data-page="menu"] #category-tabs .tab-button.active {
  background: linear-gradient(135deg, var(--amber, #f4b43e), #ffd16f);
  color: #24100a;
  border-color: rgba(255, 209, 111, .62);
}

body[data-page="menu"] .menu-root,
body[data-page="menu"] .menu-order-panel {
  width: var(--shell);
  margin-left: auto;
  margin-right: auto;
}

body[data-page="menu"] .menu-category {
  background: rgba(255, 253, 248, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 52px rgba(65, 28, 10, .08);
}

@media (max-width: 720px) {
  body[data-page="menu"] .menu-page.shell {
    padding-bottom: 52px;
  }

  body[data-page="menu"] .menu-page > .menu-hero-head {
    width: 100%;
    padding: 22px 18px 0;
    border-radius: 0;
  }

  body[data-page="menu"] .menu-page > .menu-hero-head::before {
    width: 56px;
    height: 4px;
    margin-bottom: 14px;
  }

  body[data-page="menu"] .menu-page > .menu-hero-head h1 {
    color: var(--ink);
    font-size: clamp(2.7rem, 14vw, 4.25rem);
  }

  body[data-page="menu"] .menu-page > .menu-hero-head p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.58;
  }

  body[data-page="menu"] .menu-access-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 18px;
  }

  body[data-page="menu"] .menu-access-row span {
    color: #6b5145;
    font-size: .92rem;
    font-weight: 750;
  }

  body[data-page="menu"] #category-tabs.tabs {
    margin-top: 18px;
    padding: 10px 12px;
    gap: 8px;
  }

  body[data-page="menu"] #category-tabs .tab-button {
    min-height: 44px;
    padding: 9px 15px;
    border-radius: 14px;
  }

  body[data-page="menu"] .menu-root,
  body[data-page="menu"] .menu-order-panel {
    width: min(100% - 22px, 1180px);
  }
}

/* v13: QR centering, QR access in mobile menu, and new restaurant typography */
:root {
  --font-body: "Avenir Next", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

html,
body,
button,
input,
textarea,
select {
  font-family: var(--font-body) !important;
}

h1,
h2,
.qr-poster-card h1,
.menu-category-header h2,
.hero h1,
.section-heading h2 {
  font-family: var(--font-display) !important;
  font-weight: 800;
  letter-spacing: -.055em;
}

h3,
.brand,
.button,
.call-button,
.tab-button,
.price,
.eyebrow {
  font-family: var(--font-body) !important;
}

body[data-page="home"] .nav-links a[href="/qr"] {
  color: var(--brand-dark);
}

body[data-page="home"] .nav-links.open a[href="/qr"] {
  background: linear-gradient(135deg, rgba(244, 180, 62, .18), rgba(183, 37, 36, .08));
  border: 1px solid rgba(183, 37, 36, .12);
  font-weight: 900;
}

body[data-page="qr"] {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 8%, rgba(244, 180, 62, .22), transparent 26rem),
    radial-gradient(circle at 85% 20%, rgba(183, 37, 36, .12), transparent 24rem),
    linear-gradient(180deg, #fff9ef 0%, #fffdf8 55%, #ffffff 100%);
}

body[data-page="qr"] .site-header {
  flex: 0 0 auto;
}

body[data-page="qr"] .qr-public-page.shell {
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 82px);
  flex: 1 1 auto;
  margin: 0;
  padding: clamp(18px, 3vw, 34px);
  display: grid;
  place-items: center;
}

body[data-page="qr"] .qr-poster-card {
  width: min(720px, 100%);
  min-height: min(760px, calc(100svh - 140px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: rgba(55, 16, 10, .1);
  background:
    radial-gradient(circle at 18% 8%, rgba(244, 180, 62, .16), transparent 18rem),
    rgba(255, 255, 255, .94);
}

body[data-page="qr"] .qr-public-image {
  width: clamp(250px, 32vw, 390px);
  margin: 4px auto 0;
}

body[data-page="qr"] .qr-poster-copy {
  max-width: 520px;
  margin: 6px auto 14px;
  line-height: 1.55;
}

body[data-page="qr"] .qr-url-line {
  max-width: 100%;
  margin-top: 12px;
  text-align: center;
}

body[data-page="qr"] .qr-public-actions {
  margin-top: 18px;
}

body[data-page="menu"] .menu-page > .menu-hero-head h1 {
  font-family: var(--font-display) !important;
  line-height: .95;
}

body[data-page="menu"] #category-tabs.tabs {
  align-items: center;
}

@media (max-width: 720px) {
  body[data-page="home"] .nav-links.open a[href="/qr"]::after {
    content: "  Scan menu";
    color: var(--muted);
    font-size: .86rem;
    font-weight: 750;
  }

  body[data-page="qr"] .qr-public-page.shell {
    min-height: calc(100svh - 66px);
    padding: 14px;
  }

  body[data-page="qr"] .qr-poster-card {
    width: min(100%, 430px);
    min-height: calc(100svh - 108px);
    border-radius: 28px;
    padding: 20px 16px;
    gap: 8px;
  }

  body[data-page="qr"] .qr-poster-card h1 {
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  body[data-page="qr"] .qr-public-image {
    width: min(78vw, 315px);
    padding: 12px;
    border-radius: 20px;
  }

  body[data-page="qr"] .qr-poster-copy {
    font-size: .98rem;
    margin-bottom: 10px;
  }

  body[data-page="qr"] .qr-url-line {
    font-size: .88rem;
  }

  body[data-page="qr"] .qr-public-actions {
    width: 100%;
    margin-top: 14px;
  }
}
