:root {
  color-scheme: light;
  --ink: #302821;
  --hot: #9d3a2e;
  --cyan: #60776b;
  --lime: #6f7f3f;
  --gold: #d4a900;
  --tomato: #ff4f38;
  --charcoal: #53585b;
  --night: #f7f0e4;
  --panel: rgba(255, 250, 240, .94);
  --line: rgba(78, 62, 46, .18);
  --wood: #8a552c;
  --cream: #f4ead4;
  --steel: #7d8582;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  background:
    linear-gradient(rgba(247, 240, 228, .62), rgba(247, 240, 228, .84)),
    url("../images/dining-room.jpg") center top / cover fixed,
    #f7f0e4;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.28), transparent 18%, rgba(95,70,45,.05) 36%, transparent 60%),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(125,133,130,.08) 119px 120px);
  pointer-events: none;
  opacity: .55;
}

body::after {
  display: none;
}

a { color: inherit; }

.shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px max(14px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(78, 62, 46, .16);
  background: rgba(255, 250, 240, .92);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
}

.logo-mark {
  width: 58px;
  height: 52px;
  aspect-ratio: 1;
  object-fit: contain;
  border: 2px solid rgba(255, 212, 0, .85);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: clamp(1.3rem, 4vw, 2.15rem);
  color: var(--gold);
  text-shadow: none;
}

.brand span {
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 800;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid rgba(48, 40, 33, .28);
  color: var(--ink);
  background: rgba(255, 250, 240, .58);
  box-shadow: none;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.nav a {
  min-height: auto;
  padding: 6px 0;
  border: 0;
  background: transparent;
}

.button.primary {
  color: #140516;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.hero {
  min-height: auto;
  display: block;
  padding: 74px 0 40px;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 250, 240, .5);
  border: 0;
  box-shadow: none;
  backdrop-filter: blur(2px);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: none;
}

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

h1 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 10vw, 6.8rem);
  font-weight: 400;
  line-height: .92;
  text-transform: none;
  color: #4a3828;
  text-shadow: 0 3px 18px rgba(95, 70, 45, .22);
}

.hero-logo {
  width: clamp(112px, 20vw, 210px);
  margin: 0;
  padding: 10px;
  display: block;
  flex: 0 0 auto;
  background: #fff;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 3px #161718, 0 0 30px rgba(255,212,0,.55);
}

.brand-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 10px;
  border: 2px solid var(--gold);
  color: #5f4a12;
  background: rgba(255, 250, 240, .65);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}

.reservation-widget {
  padding: 18px 0 52px;
}

.reservation-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: end;
  padding: clamp(22px, 4vw, 34px) 0 0;
  border-top: 1px solid rgba(78, 62, 46, .24);
  border-bottom: 1px solid rgba(78, 62, 46, .18);
}

.reservation-copy h2 {
  margin: 0 0 12px;
}

.reservation-copy p {
  margin: 0 0 18px;
  max-width: 38rem;
  color: #5f5142;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.65;
}

.reservation-note {
  display: block;
  color: #8a6a0a;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background: rgba(255, 250, 240, .72);
  border: 1px solid rgba(78, 62, 46, .18);
}

.reservation-field {
  display: grid;
  gap: 7px;
}

.reservation-field label {
  color: #6b5b4a;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.reservation-field input,
.reservation-field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid rgba(48, 40, 33, .28);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  font: inherit;
}

.reservation-submit {
  align-self: end;
  width: 100%;
  min-height: 44px;
}

.reservation-helper {
  grid-column: 1 / -1;
  margin: 0;
  color: #6b5b4a;
  font-size: .82rem;
  line-height: 1.45;
}

.game-feature {
  padding: 14px 0 52px;
  display: none;
}

body.game-unlocked .game-feature {
  display: block;
}

.game-feature .cabinet {
  width: min(980px, 100%);
  margin: 0 auto;
}

.today-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  margin: 22px 0 0;
  padding: clamp(16px, 2.5vw, 22px) 0;
  border-top: 1px solid rgba(78, 62, 46, .22);
  border-bottom: 1px solid rgba(78, 62, 46, .22);
  text-align: left;
  scroll-margin-top: 110px;
}

.today-kicker {
  display: block;
  margin-bottom: 7px;
  color: #8a6a0a;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.today-card h2 {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: #4a3828;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 400;
}

.today-status-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #b58c23;
  box-shadow: 0 0 0 4px rgba(181, 140, 35, .13);
}

.today-card[data-state="open"] .today-status-dot {
  background: #55704b;
  box-shadow: 0 0 0 4px rgba(85, 112, 75, .14);
}

.today-card[data-state="closed"] .today-status-dot {
  background: #9d3a2e;
  box-shadow: 0 0 0 4px rgba(157, 58, 46, .12);
}

.today-card p {
  margin: 6px 0 0;
  color: #5f5142;
  line-height: 1.55;
}

.today-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 10px;
}

.today-service {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(78, 62, 46, .16);
}

.today-details b {
  display: inline-block;
  color: var(--hot);
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .04em;
}

.today-next {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  grid-column: 1 / -1;
  padding: 2px 0 0;
}

.today-next span {
  color: #4a3828;
  font-weight: 900;
  text-align: right;
}

.today-week {
  grid-column: 1 / -1;
  margin: 0 !important;
  color: #786a5b !important;
  font-size: .78rem;
}

.today-week span {
  padding: 0 5px;
  color: #b58c23;
}

.food-hero {
  margin: 36px auto 0;
  width: min(1040px, 100%);
  border: 0;
  background: #050208;
  box-shadow: 0 22px 48px rgba(73, 54, 35, .18);
  overflow: hidden;
}

.food-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.cabinet {
  position: relative;
  padding: 14px 14px 20px;
  border: 6px solid #10272c;
  border-radius: 24px 24px 10px 10px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 3px, transparent 3px 7px),
    linear-gradient(135deg, #8ca6a1, #5f7773);
  box-shadow: 0 0 0 3px #c4d4d0, 0 18px 38px rgba(16,39,44,.3), inset 0 0 24px rgba(16,39,44,.35);
}

.marquee {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 13px;
  margin-bottom: 12px;
  border: 3px solid #10272c;
  border-bottom: 6px solid #df5c53;
  border-radius: 10px 10px 0 0;
  color: #10272c;
  background: #fff0cb;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: none;
}

.marquee-logo {
  height: 42px;
  width: 42px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(16,39,44,.35);
  border-radius: 7px;
}

.screen-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 4px solid #10272c;
  border-radius: 0 0 12px 12px;
  background: #071d24;
  overflow: hidden;
  box-shadow: inset 0 0 34px rgba(95,208,193,.2);
  touch-action: none;
}

canvas {
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: auto;
  background: #071d24;
}

.overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  background: rgba(6, 25, 31, .72);
}

.overlay.hidden { display: none; }

.overlay h2 {
  margin-bottom: 8px;
  color: #f4c95f;
  font-size: clamp(1.7rem, 5vw, 3.7rem);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #df5c53;
}

.overlay p {
  max-width: 36ch;
  margin: 0 auto 18px;
  line-height: 1.45;
  color: #fff;
}

.upgrade-choices {
  width: min(680px, 100%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.upgrade-choices[hidden] { display: none; }

.upgrade-choice {
  min-height: 94px;
  padding: 12px 10px;
  border: 2px solid rgba(95,208,193,.72);
  color: #fff0cb;
  background: rgba(7,29,36,.94);
  font: inherit;
  text-align: center;
  box-shadow: inset 0 0 18px rgba(95,208,193,.1);
}

.upgrade-choice:hover,
.upgrade-choice:focus-visible {
  border-color: #f4c95f;
  box-shadow: 0 0 18px rgba(244,201,95,.28), inset 0 0 18px rgba(244,201,95,.1);
}

.upgrade-choice strong,
.upgrade-choice span { display: block; }

.upgrade-choice strong {
  margin-bottom: 5px;
  color: #f4c95f;
  text-transform: uppercase;
  font-size: .82rem;
}

.upgrade-choice span {
  color: rgba(255,240,203,.8);
  font-size: .72rem;
  line-height: 1.35;
}

.hud {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: #63d0c2;
}

.hud span {
  padding: 8px;
  background: #0a252c;
  border: 1px solid rgba(171,200,195,.28);
  text-align: center;
}

.hud .accuracy-stat {
  color: #f4c95f;
  border-color: rgba(244,201,95,.42);
}

.touch-controls {
  display: none;
  grid-template-columns: repeat(3, minmax(68px, 1fr));
  gap: 8px;
  margin-top: 10px;
  user-select: none;
  -webkit-user-select: none;
}

.touch-controls button {
  min-height: 58px;
  border: 2px solid #63d0c2;
  color: #fff0cb;
  background: #0a252c;
  box-shadow: inset 0 0 18px rgba(95,208,193,.13), 0 0 12px rgba(95,208,193,.2);
  font: 900 1.05rem "Trebuchet MS", Verdana, sans-serif;
  text-transform: uppercase;
  touch-action: none;
}

.touch-controls button:active,
.touch-controls button.is-pressed {
  color: #10272c;
  background: #f4c95f;
  border-color: #f4c95f;
  box-shadow: 0 0 16px rgba(244,201,95,.65);
}

.touch-controls [data-key="Space"] {
  grid-column: 1 / -1;
  min-height: 64px;
  border-color: #f4c95f;
  color: #f4c95f;
}

.game-tip {
  margin: 10px 0 0;
  color: rgba(255,240,203,.78);
  font-size: .86rem;
  text-align: center;
}

section {
  padding: 70px 0;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  color: #4a3828;
  font-weight: 400;
  text-transform: none;
  text-shadow: none;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.panel {
  border: 0;
  border-top: 1px solid rgba(78, 62, 46, .2);
  background: rgba(255, 250, 240, .72);
  padding: 18px 0 0;
  box-shadow: none;
}

.panel h3 {
  margin-bottom: 10px;
  color: #8a6a0a;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .05em;
}

.panel img,
.menu-photo {
  width: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  background: #050208;
}

.panel img {
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
}

.menu-photo {
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  margin-top: 24px;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
  border: 0;
  background: #050208;
}

.social-note {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid rgba(78, 62, 46, .2);
}

.social-copy {
  max-width: 42rem;
}

.social-copy p {
  margin-bottom: 18px;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  min-width: 112px;
}

.memory-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.memory-wall figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 250, 240, .55);
}

.memory-wall a {
  display: block;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 250, 240, .55);
}

.memory-wall img,
.memory-wall a > img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
}

.memory-wall figcaption,
.social-caption {
  display: block;
  padding: 10px 0 0;
  color: rgba(48, 40, 33, .76);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.social-caption strong,
.social-caption span {
  display: block;
}

.social-caption span {
  margin-top: 4px;
  color: rgba(48, 40, 33, .58);
  font-size: .72rem;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.social-status {
  min-height: 1.1em;
  margin: 10px 0 0;
  color: rgba(48, 40, 33, .54);
  font-size: .78rem;
}

.menu-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(78, 62, 46, .24);
}

.menu-list b { color: #55652f; }
.menu-list span { color: #6b5b4a; text-align: right; }

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-leaderboard {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 16px;
  border-top: 1px solid rgba(78, 62, 46, .2);
  border-bottom: 1px solid rgba(78, 62, 46, .16);
  background: rgba(255, 250, 240, .82);
  text-align: left;
}

.footer-leaderboard-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 58px 0 46px;
}

.footer-leaderboard .section-title {
  margin-bottom: 8px;
  text-align: center;
}

.leaderboard-intro {
  max-width: 42rem;
  margin: 0 auto 30px;
  color: #5d5044;
  text-align: center;
  line-height: 1.65;
}

.leaderboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
  width: 100%;
}

.leaderboard-card,
.footer-card {
  border-top: 2px solid rgba(48, 40, 33, .78);
  border-bottom: 1px solid rgba(78, 62, 46, .22);
  background: rgba(255, 250, 240, .52);
}

.leaderboard-card {
  padding: 16px 0 0;
  min-width: 0;
}

.footer-card {
  padding: 16px 0 0;
  min-width: 0;
}

.footer-card h3 {
  margin-bottom: 12px;
  color: #8a6a0a;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-card p {
  margin-bottom: 12px;
  line-height: 1.55;
}

.footer-note {
  color: #6b5b4a;
  font-size: .9rem;
}

.leaderboard {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: leaderboard;
}

.leaderboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.leaderboard-tabs button {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(78, 62, 46, .32);
  color: var(--ink);
  background: rgba(255, 250, 240, .56);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .7rem;
  letter-spacing: .04em;
}

.leaderboard-tabs button.is-active {
  color: #140516;
  border-color: var(--gold);
  background: var(--gold);
}

.leaderboard-status {
  min-height: 18px;
  margin: 14px 0 0;
  color: #6b5b4a;
  font-size: .82rem;
}

.leaderboard li {
  counter-increment: leaderboard;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(78, 62, 46, .18);
  color: var(--ink);
  font-weight: 900;
}

.leaderboard li::before {
  content: counter(leaderboard, decimal-leading-zero);
  color: #8a6a0a;
  font-size: .75rem;
  letter-spacing: .08em;
}

.leaderboard-name {
  color: #302821;
  font-size: 1rem;
  letter-spacing: .08em;
  min-width: 0;
  overflow-wrap: anywhere;
}

.leaderboard-score {
  color: #8a6a0a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.secret-slice {
  appearance: none;
  width: 96px;
  margin: 12px auto 0;
  padding: 0;
  display: grid;
  gap: 0;
  border: 0;
  color: #f8ead1;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  transform-origin: center bottom;
  transition: transform .18s ease, filter .18s ease;
}

.secret-slice.is-placed {
  opacity: .94;
  filter: drop-shadow(0 14px 22px rgba(48, 40, 33, .18));
  animation: cabinet-idle 5.5s ease-in-out infinite;
}

body.game-unlocked .secret-slice {
  display: none;
}

.secret-cabinet-dock {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 148px;
  padding: 10px;
}

.secret-cabinet-dock.in-hero {
  min-height: 0;
  padding: 4px 0 0;
}

.secret-cabinet-dock.in-panel {
  min-height: 172px;
  border-top: 1px solid rgba(78, 62, 46, .2);
  background: rgba(255, 250, 240, .46);
}

.memory-wall .secret-cabinet-dock {
  aspect-ratio: 1;
  min-height: 0;
  padding: 10px;
  background:
    linear-gradient(rgba(255, 250, 240, .7), rgba(255, 250, 240, .56)),
    repeating-linear-gradient(45deg, rgba(78, 62, 46, .08) 0 1px, transparent 1px 10px);
}

.secret-cabinet-dock.in-footer {
  min-height: 0;
  padding: 0;
}

.memory-wall .secret-slice,
.secret-cabinet-dock.in-panel .secret-slice {
  margin: 0;
  width: 88px;
}

.secret-slice:hover,
.secret-slice:focus-visible {
  transform: translateY(-3px) rotate(-1deg);
  filter: drop-shadow(0 14px 18px rgba(48, 40, 33, .18));
  outline: 0;
}

.mini-cabinet-top {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6px 8px;
  background: #161310;
  border: 2px solid #302821;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  box-shadow: inset 0 -3px 0 var(--gold);
}

.mini-cabinet-top span {
  display: block;
  color: var(--gold);
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-shadow: none;
}

.mini-cabinet-body {
  position: relative;
  z-index: 1;
  padding: 10px 9px 9px;
  min-height: 102px;
  background: #191714;
  border: 2px solid #302821;
  border-radius: 0 0 10px 10px;
  box-shadow:
    inset 5px 0 0 var(--gold),
    inset -5px 0 0 rgba(244, 234, 212, .12);
}

.mini-cabinet-body::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 20px;
  width: 13px;
  height: 43px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 0, 62% 38%, 100% 38%, 25% 100%, 45% 56%, 0 56%);
  opacity: .95;
}

.mini-cabinet-body::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 8px;
  bottom: 29px;
  height: 21px;
  background: var(--hot);
  border-radius: 4px;
}

.mini-cabinet-screen {
  position: relative;
  z-index: 2;
  min-height: 43px;
  display: grid;
  place-items: center;
  padding: 4px;
  border: 3px solid #f4ead4;
  color: var(--gold);
  background:
    linear-gradient(132deg, transparent 0 40%, rgba(255, 250, 240, .56) 41% 50%, transparent 51%),
    #0f0d0b;
  box-shadow: inset 0 0 0 1px rgba(212, 169, 0, .42);
  font-size: .58rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.mini-cabinet-screen img {
  width: 92%;
  max-height: 24px;
  object-fit: contain;
  display: block;
  padding: 2px;
  background: rgba(255, 250, 240, .92);
  border: 1px solid rgba(212, 169, 0, .65);
}

.mini-cabinet-screen span {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-size: .42rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.mini-cabinet-controls {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
  padding-right: 7px;
}

.mini-cabinet-joystick {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow:
    0 8px 0 -5px #f4ead4,
    0 12px 0 -6px #302821;
}

.mini-cabinet-button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 13px 0 0 var(--hot);
}

.mini-cabinet-base {
  position: relative;
  z-index: 2;
  height: 31px;
  width: 86%;
  margin: -2px auto 0;
  background: #191714;
  border: 2px solid #302821;
  border-top: 0;
  border-radius: 0 0 7px 7px;
}

.mini-cabinet-base::before {
  content: "";
  position: absolute;
  left: 32%;
  top: 7px;
  width: 39%;
  height: 16px;
  border: 3px solid #f4ead4;
  background:
    linear-gradient(90deg, var(--hot) 0 24%, transparent 24% 38%, var(--hot) 38% 61%, transparent 61% 76%, var(--gold) 76% 100%);
  border-radius: 3px;
}

.secret-slice-hint {
  display: block;
  margin-top: 7px;
  color: rgba(48, 40, 33, .55);
  font-size: .54rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.secret-slice.is-placed .secret-slice-hint {
  color: rgba(48, 40, 33, .46);
}

@keyframes cabinet-idle {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(24, 21, 18, .52);
  backdrop-filter: blur(5px);
}

.splash.hidden { display: none; }

.splash-card {
  width: min(560px, 100%);
  padding: clamp(24px, 5vw, 44px);
  background: rgba(255, 250, 240, .96);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(24, 21, 18, .32);
  text-align: center;
  position: relative;
}

.splash-kicker {
  display: block;
  margin-bottom: 12px;
  color: #8a6a0a;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.splash h2 {
  margin-bottom: 14px;
  color: #4a3828;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 400;
  line-height: .98;
}

.splash p {
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  color: #5d5044;
}

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

.splash-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #5d5044;
  font-size: 1.6rem;
  line-height: 1;
}

.splash-muted {
  display: block;
  margin-top: 16px;
  color: #6b5b4a;
  font-size: .82rem;
}

.splash-muted input { margin-right: 6px; }

footer {
  padding: 0;
  color: rgba(48, 40, 33, .68);
  text-align: center;
}

@media (max-width: 880px) {
  html { scroll-padding-top: 16px; }

  .hero,
  .reservation-panel,
  .grid,
  .menu-board,
  .photo-strip,
  .social-note,
  .leaderboard-layout {
    grid-template-columns: 1fr;
  }

  .social-note {
    align-items: start;
  }

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

  .nav { justify-content: flex-start; }
  .today-card { grid-template-columns: 1fr; gap: 16px; }
  .touch-controls { display: grid; }
}

@media (max-width: 560px) {
  .topbar {
    gap: 8px;
    padding-top: 9px;
    padding-bottom: 8px;
  }
  .brand { width: auto; }
  .logo-mark { width: 44px; height: 40px; }
  .brand strong { font-size: 1.45rem; }
  .brand span { font-size: .68rem; }
  .nav {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 0;
    font-size: .7rem;
    white-space: nowrap;
  }
  .hero { padding-top: 26px; }
  h1 { font-size: clamp(2.7rem, 16vw, 4.8rem); }
  .today-card { margin-top: 18px; padding: 14px 0; }
  .today-card h2 { font-size: 1.8rem; }
  .today-details { column-gap: 16px; }
  .today-next { align-items: baseline; }
  .today-next span { font-size: .88rem; }
  .cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-row .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 8px;
    font-size: .74rem;
    line-height: 1.1;
  }
  .reservation-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .footer-leaderboard-inner { padding-top: 42px; }
  .leaderboard-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .leaderboard-tabs button { width: 100%; padding-inline: 8px; }
  .leaderboard li { grid-template-columns: 38px minmax(0, 1fr) auto; }
  .leaderboard-score { font-size: 1.15rem; }
  .cabinet { margin-left: -7px; margin-right: -7px; padding: 10px; }
  .marquee { font-size: .74rem; gap: 8px; }
  .marquee-logo { display: none; }
  .screen-wrap { aspect-ratio: 4 / 3; }
  .hud { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .overlay .button {
    width: min(230px, 100%);
    min-height: 50px;
  }
  .upgrade-choices { grid-template-columns: 1fr; gap: 7px; }
  .upgrade-choice { min-height: 66px; padding: 9px; }

  .splash { padding: 12px; }
  .splash-card { padding: 28px 20px 24px; }
  .splash h2 { font-size: clamp(2rem, 11vw, 3rem); }
}

@media (pointer: coarse) {
  .touch-controls { display: grid; }
}
