:root {
  color-scheme: dark;
  --black: #040404;
  --black-soft: #0a0a08;
  --ink: #fff3d0;
  --muted: #b7aa8a;
  --dim: #6f674f;
  --yellow: #ffe100;
  --green: #39ff14;
  --coral: #ff5348;
  --cyan: #63ffe5;
  --line: rgba(255, 225, 0, .28);
  --glass: rgba(5, 5, 4, .74);
  --header: 76px;
  --radius: 8px;
  --shadow: 0 24px 90px rgba(0, 0, 0, .72);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

html,
body {
  width: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #050505 0%, #0a0907 45%, #050505 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
  body {
    overflow-x: clip;
  }
}

body::selection {
  background: var(--yellow);
  color: #050505;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: .7rem 1rem;
  background: var(--yellow);
  color: #050505;
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-grain {
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
  opacity: .052;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 170 170' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.75'/%3E%3C/svg%3E");
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
  height: 3px;
  background: rgba(255, 255, 255, .06);
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--coral));
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(57, 255, 20, .6);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 980;
  height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0 2.6rem;
  background: linear-gradient(180deg, rgba(3, 3, 3, .92), rgba(3, 3, 3, .48), rgba(3, 3, 3, 0));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
  color: var(--yellow);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255, 225, 0, .62), 0 0 26px rgba(57, 255, 20, .26);
}

.brand img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(57, 255, 20, .28);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem;
  border: 1px solid rgba(255, 225, 0, .18);
  background: rgba(0, 0, 0, .38);
  border-radius: 999px;
}

.main-nav a {
  position: relative;
  padding: .55rem .72rem;
  color: rgba(255, 243, 208, .78);
  font-size: .74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover {
  color: #050505;
  background: var(--yellow);
}

.main-nav a.is-active {
  color: #050505;
  background: var(--green);
  box-shadow: 0 0 16px rgba(57, 255, 20, .35);
}

.main-nav a.is-active:hover {
  background: var(--green);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .26rem;
  border: 1px solid rgba(57, 255, 20, .28);
  background: rgba(0, 0, 0, .45);
  border-radius: 999px;
}

.language-switcher button {
  min-width: 2.2rem;
  min-height: 2rem;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 243, 208, .78);
  background: transparent;
  font-size: .72rem;
  font-weight: 900;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--green);
  color: #041004;
  box-shadow: 0 0 16px rgba(57, 255, 20, .46);
}

.scene {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 7rem 5rem;
}

.scene::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0), rgba(4, 4, 4, .88));
}

.scene-content {
  position: relative;
  z-index: 5;
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(57, 255, 20, .48);
}

h1,
h2,
h3,
.giant-word {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  color: var(--yellow);
  font-size: 9.5rem;
  text-shadow: 0 0 20px rgba(255, 225, 0, .7), 0 0 60px rgba(57, 255, 20, .3);
}

h2 {
  color: var(--yellow);
  font-size: 7.2rem;
  text-shadow: 0 0 20px rgba(255, 225, 0, .34);
}

h3 {
  color: var(--ink);
  font-size: 4rem;
}

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

.lede {
  max-width: 43rem;
  margin: 1.3rem auto 0;
  color: rgba(255, 243, 208, .9);
  font-size: 1.35rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 2rem;
  padding: .9rem 1rem .9rem 1.15rem;
  border: 1px solid rgba(57, 255, 20, .52);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(0, 0, 0, .46);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 225, 0, .14), 0 0 24px rgba(57, 255, 20, .16);
}

.text-link i {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #050505;
}

.giant-word {
  position: absolute;
  z-index: 3;
  color: transparent;
  font-size: 11rem;
  -webkit-text-stroke: 1px rgba(255, 225, 0, .42);
  text-stroke: 1px rgba(255, 225, 0, .42);
  opacity: .5;
  pointer-events: none;
}

.scene-sign {
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 8rem;
  text-align: center;
  background: #020202;
}

.sign-media,
.sign-bg,
.sign-logo,
.approach-layer,
.approach-layer img,
.reserve-media,
.reserve-media img {
  position: absolute;
  inset: 0;
}

.sign-media {
  z-index: 0;
}

.sign-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .62;
  filter: saturate(1.18) contrast(1.12) brightness(.72);
  transform: scale(1.1);
}

.sign-logo {
  width: 34rem;
  max-width: 70%;
  height: auto;
  margin: auto;
  opacity: .82;
  filter: drop-shadow(0 0 20px rgba(57, 255, 20, .55)) drop-shadow(0 0 34px rgba(255, 225, 0, .38));
}

.scene-sign::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .18), rgba(0, 0, 0, .82)),
    linear-gradient(180deg, rgba(0, 0, 0, .36), rgba(0, 0, 0, .84));
}

.neon-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 6px);
  opacity: .16;
}

.sign-copy {
  max-width: 66rem;
}

.scene-approach {
  background: #040404;
}

.approach-layer {
  z-index: 0;
  overflow: hidden;
}

.approach-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.12);
}

.approach-night {
  opacity: 0;
  clip-path: inset(12% 8% 12% 8%);
}

.street-glass {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, .92), rgba(4, 4, 4, .2) 48%, rgba(4, 4, 4, .78)),
    linear-gradient(180deg, rgba(4, 4, 4, .14), rgba(4, 4, 4, .92));
}

.approach-copy {
  justify-self: end;
  max-width: 41rem;
  text-align: right;
}

.approach-word {
  left: -1rem;
  bottom: 4rem;
}

.scene-enter {
  background:
    linear-gradient(90deg, #040404 0%, #0b0a07 48%, #040404 100%);
}

.door-slit {
  position: absolute;
  inset: 11% 17%;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 225, 0, .24);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 36px rgba(57, 255, 20, .17);
}

.door-slit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08) brightness(.8);
  transform: scale(1.08);
}

.door-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 50%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98), rgba(13, 11, 6, .92)),
    repeating-linear-gradient(90deg, rgba(255, 225, 0, .08) 0 1px, transparent 1px 72px);
}

.panel-left {
  left: 0;
  border-right: 1px solid rgba(255, 225, 0, .16);
}

.panel-right {
  right: 0;
  border-left: 1px solid rgba(57, 255, 20, .16);
}

.enter-copy {
  max-width: 38rem;
}

.scene-atmosphere {
  display: block;
  padding: 7rem clamp(2rem, 5vw, 6rem) 6rem;
  background:
    linear-gradient(180deg, #050505, #0c0a06 45%, #050505);
}

.atmosphere-copy {
  max-width: 58rem;
  margin: 0 0 clamp(2rem, 4vw, 4rem);
}

.atmosphere-rail {
  position: relative;
  z-index: 4;
  display: grid;
  gap: clamp(1.25rem, 3vw, 3.5rem);
  width: 100%;
  max-width: 118rem;
  margin: 0 auto;
  padding: 0;
}

.atmosphere-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 225, 0, .18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #0b0b09;
  background-position: center;
  background-size: cover;
}

.atmosphere-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .58));
  pointer-events: none;
}

.atmosphere-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.06) brightness(.84);
  transform: scale(1.03);
}

.atmosphere-frame.tall {
  width: min(44rem, 100%);
  height: min(72vh, 48rem);
  height: min(72svh, 48rem);
  min-height: 36rem;
}

.atmosphere-frame.wide {
  width: min(78rem, 100%);
  height: min(64vh, 44rem);
  height: min(64svh, 44rem);
  min-height: 34rem;
}

.atmosphere-frame:nth-child(even) {
  justify-self: end;
}

.atmosphere-frame:nth-child(3) {
  justify-self: center;
}

.atmosphere-frame figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scene-founder {
  grid-template-columns: minmax(18rem, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  background:
    radial-gradient(circle at 16% 44%, rgba(57, 255, 20, .11), transparent 35%),
    linear-gradient(180deg, #050505 0%, #0c0a06 50%, #050505 100%);
}

.scene-founder::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, .24), rgba(4, 4, 4, .82) 52%, rgba(4, 4, 4, .96)),
    repeating-linear-gradient(90deg, rgba(255, 225, 0, .035) 0 1px, transparent 1px 88px);
}

.founder-portrait {
  position: relative;
  z-index: 4;
  align-self: center;
  width: min(33rem, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 225, 0, .24);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shadow), 0 0 34px rgba(57, 255, 20, .14);
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(1.04) contrast(1.04) brightness(.92);
  transform: translateY(4%) scale(1.3);
  transform-origin: center center;
}

.founder-card {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  display: grid;
  gap: .18rem;
  padding: 1rem;
  border: 1px solid rgba(57, 255, 20, .36);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .66);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .42);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.founder-card strong {
  color: var(--yellow);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.6rem;
  line-height: .9;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 225, 0, .32);
}

.founder-card span {
  color: rgba(255, 243, 208, .78);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-copy {
  max-width: 52rem;
}

.founder-subtitle {
  margin-top: 1rem;
  color: rgba(255, 243, 208, .84);
  font-size: 1.06rem;
  font-weight: 800;
}

.founder-bio {
  display: grid;
  gap: .82rem;
  margin-top: 1.5rem;
}

.founder-bio p {
  color: rgba(255, 243, 208, .68);
  font-size: .95rem;
  line-height: 1.64;
}

.founder-bio-strong strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
}

.founder-quote {
  position: relative;
  margin: 1.7rem 0 0;
  padding: 1.15rem 1.2rem 1.1rem;
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px rgba(255, 225, 0, .1);
}

.founder-quote p {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.52;
}

.founder-quote cite {
  display: block;
  margin-top: .7rem;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-quote cite::before {
  content: "- ";
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
  margin-top: 1.2rem;
}

.founder-stats-name {
  grid-column: 1 / -1;
  margin: 0 0 .15rem;
  color: var(--green);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: .9;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(57, 255, 20, .24);
}

.founder-stats div {
  min-height: 7rem;
  padding: .82rem;
  border: 1px solid rgba(255, 225, 0, .15);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .36);
}

.founder-stats strong {
  display: block;
  color: var(--yellow);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.75rem;
  line-height: .85;
  font-variant-numeric: tabular-nums;
}

.founder-stats span {
  display: block;
  margin-top: .55rem;
  color: rgba(255, 243, 208, .72);
  font-size: .74rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.scene-signature {
  grid-template-columns: minmax(0, .82fr) minmax(26rem, 1fr);
  gap: 4.5rem;
  background:
    linear-gradient(90deg, #050505 0%, #0c0a06 45%, #050505 100%);
}

.signature-plate {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 54rem;
  justify-self: end;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, .9));
}

.signature-plate img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 225, 0, .22);
  border-radius: var(--radius);
  filter: saturate(1.08) contrast(1.08);
}

.signature-shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, .94) 0%, rgba(4, 4, 4, .62) 38%, rgba(4, 4, 4, .1) 72%, rgba(4, 4, 4, .7) 100%);
}

.signature-copy {
  z-index: 5;
  max-width: 37rem;
}

.ingredient-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.7rem;
}

.ingredient-strip span {
  padding: .62rem .76rem;
  border: 1px solid rgba(57, 255, 20, .42);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(0, 0, 0, .44);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signature-word {
  right: -2rem;
  bottom: 1.6rem;
  color: rgba(255, 83, 72, .08);
  -webkit-text-stroke-color: rgba(255, 83, 72, .54);
  text-stroke-color: rgba(255, 83, 72, .54);
}

.scene-menu {
  display: block;
  min-height: 100vh;
  min-height: 100svh;
  padding: 7rem 4rem;
  background:
    linear-gradient(180deg, #050505 0%, #0b0a07 55%, #050505 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 90px);
}

.menu-intro {
  position: relative;
  z-index: 4;
  max-width: 58rem;
  margin-bottom: 2rem;
}

.menu-theatre {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 15rem minmax(0, 1.15fr) minmax(22rem, .72fr);
  align-items: start;
  gap: 1rem;
  height: 70vh;
  height: 70svh;
  min-height: 42rem;
}

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: .52rem;
  min-height: 0;
  overflow: auto;
  padding-right: .25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(57, 255, 20, .6) rgba(255, 255, 255, .08);
}

.menu-categories button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  min-width: 0;
  min-height: 3.55rem;
  padding: .75rem .82rem;
  border: 1px solid rgba(255, 225, 0, .16);
  border-radius: var(--radius);
  color: rgba(255, 243, 208, .82);
  background: rgba(255, 255, 255, .035);
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.menu-categories button span:first-child {
  min-width: 0;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.menu-categories button span:last-child {
  flex: 0 0 auto;
  min-width: 1.45rem;
  text-align: right;
  color: var(--dim);
  font-size: .8rem;
}

.menu-categories button.active {
  border-color: rgba(57, 255, 20, .82);
  color: #051005;
  background: var(--green);
  box-shadow: 0 0 22px rgba(57, 255, 20, .22);
}

.menu-stage {
  position: sticky;
  top: calc(var(--header) + 1rem);
  overflow: hidden;
  min-width: 0;
  height: 100%;
  border: 1px solid rgba(255, 225, 0, .2);
  border-radius: var(--radius);
  background: #080806;
  box-shadow: var(--shadow);
}

.dish-feature {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.dish-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05) brightness(.82);
}

.dish-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .75)),
    linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .08));
}

.dish-feature-copy {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 2;
}

.dish-feature-copy span,
.menu-list-top span {
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dish-feature-copy h3 {
  max-width: 42rem;
  margin-top: .35rem;
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(255, 225, 0, .3);
}

.dish-feature-copy p {
  max-width: 38rem;
  margin-top: .75rem;
  color: rgba(255, 243, 208, .82);
}

.dish-price {
  display: inline-flex;
  margin-top: 1.1rem;
  padding: .55rem .7rem;
  border-radius: 999px;
  color: #050505;
  background: var(--yellow);
  font-weight: 900;
}

.menu-list-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 225, 0, .16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .34);
}

.menu-list-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.6rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255, 225, 0, .14);
}

.menu-list-top strong {
  color: var(--yellow);
}

.menu-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: .45rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(57, 255, 20, .6) rgba(255, 255, 255, .08);
}

.dish-row {
  display: grid;
  grid-template-columns: 4.8rem 1fr auto;
  gap: .75rem;
  align-items: center;
  width: 100%;
  padding: .5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.dish-row:hover,
.dish-row.active {
  border-color: rgba(57, 255, 20, .45);
  background: rgba(57, 255, 20, .06);
}

.dish-row img {
  width: 4.8rem;
  height: 4rem;
  border-radius: 6px;
  object-fit: cover;
}

.dish-row strong {
  display: block;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.dish-row small {
  display: block;
  margin-top: .22rem;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.dish-row span {
  min-width: 0;
}

.dish-row b {
  color: var(--yellow);
  font-size: .86rem;
  white-space: nowrap;
}

.scene-events {
  display: block;
  padding: 7rem 4rem;
  background: #050505;
}

.events-heading {
  max-width: 58rem;
}

.event-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  padding-top: 3rem;
}

.atmosphere-rail::after,
.event-strip::after {
  content: "";
  display: none;
}

.event-poster {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: min(68vh, 46rem);
  min-height: min(68svh, 46rem);
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid rgba(255, 225, 0, .2);
  border-radius: var(--radius);
  background-color: #0a0a08;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.event-poster:nth-child(2) {
  margin-top: 4rem;
}

.event-poster:nth-child(3) {
  margin-top: 1.8rem;
}

.event-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .83)),
    linear-gradient(90deg, rgba(0, 0, 0, .54), rgba(0, 0, 0, .08));
}

.event-poster span,
.event-poster h3,
.event-poster p {
  position: relative;
  z-index: 2;
}

.event-poster span {
  width: fit-content;
  margin-bottom: .8rem;
  padding: .45rem .58rem;
  border-radius: 999px;
  color: #050505;
  background: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-poster h3 {
  color: var(--ink);
  text-shadow: 0 0 24px rgba(255, 225, 0, .24);
}

.event-poster p {
  max-width: 26rem;
  color: rgba(255, 243, 208, .84);
}

.event-poster.salsa {
  background-image: url("../foto/eventi/Salsa Night.png");
}

.event-poster.drag {
  background-image: url("../foto/eventi/Drag Night.png");
}

.event-poster.mystery {
  background-image: url("../foto/eventi/Murder Mystery Party.png");
}

.scene-reserve {
  grid-template-columns: minmax(0, .95fr) minmax(22rem, .72fr);
  gap: 3rem;
  background: #050505;
}

.reserve-media {
  z-index: 0;
  opacity: .58;
}

.reserve-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08) brightness(.56);
}

.scene-reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, .94), rgba(3, 3, 3, .72) 48%, rgba(3, 3, 3, .42)),
    linear-gradient(180deg, rgba(3, 3, 3, .4), rgba(3, 3, 3, .9));
}

.reserve-copy {
  align-self: center;
}

.reservation-form {
  position: relative;
  z-index: 5;
  display: grid;
  gap: .85rem;
  width: 100%;
  max-width: 34rem;
  justify-self: end;
  padding: 1rem;
  border: 1px solid rgba(57, 255, 20, .3);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .62);
  box-shadow: var(--shadow), 0 0 34px rgba(57, 255, 20, .12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.reservation-form label {
  display: grid;
  gap: .36rem;
}

.reservation-form label span {
  color: rgba(255, 243, 208, .8);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 225, 0, .18);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(4, 4, 4, .72);
  padding: .76rem .82rem;
}

.reservation-form textarea {
  resize: vertical;
  min-height: 6.2rem;
}

.reservation-form button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-radius: 6px;
  padding: .88rem 1rem;
  color: #050505;
  background: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.form-status {
  min-height: 1.5rem;
  color: var(--cyan);
  font-size: .9rem;
  font-weight: 800;
}

.scene-location {
  grid-template-columns: minmax(0, .62fr) minmax(27rem, 1fr);
  gap: 3rem;
  background:
    radial-gradient(circle at 72% 45%, rgba(57, 255, 20, .12), transparent 34%),
    linear-gradient(180deg, #050505, #0b0906);
}

.location-details {
  display: grid;
  gap: .8rem;
  margin-top: 1.35rem;
  padding: 1rem;
  border: 1px solid rgba(255, 225, 0, .15);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .34);
}

.location-details strong {
  color: var(--yellow);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.6rem;
  line-height: .9;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 225, 0, .32);
}

.location-details a {
  color: var(--ink);
  font-weight: 800;
}

.location-details p span,
.hours span {
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hours {
  display: grid;
  gap: .35rem;
  color: var(--muted);
}

.hours p {
  color: rgba(255, 243, 208, .74);
}

.location-map-shell {
  position: relative;
  z-index: 4;
  min-height: 39rem;
  overflow: hidden;
  border: 1px solid rgba(255, 225, 0, .22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(57, 255, 20, .08), transparent 42%),
    #070706;
  box-shadow: var(--shadow), 0 0 34px rgba(57, 255, 20, .12);
}

.location-map-frame {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 39rem;
  min-height: 100%;
  border: 0;
  background: #070706;
  filter: grayscale(1) invert(.92) brightness(.7) contrast(1.08) saturate(.45);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 4rem;
  border-top: 1px solid rgba(255, 225, 0, .14);
  background: #030303;
}

.site-footer strong {
  color: var(--yellow);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.4rem;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255, 243, 208, .62);
}

.site-footer a {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

@media (min-width: 1500px) {
  h1 {
    font-size: 12rem;
  }

  h2 {
    font-size: 8.8rem;
  }

  .scene {
    padding-left: 6.5rem;
    padding-right: 6.5rem;
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 1rem;
    padding: 0 1.2rem;
  }

  .main-nav {
    gap: 0;
  }

  .main-nav a {
    padding-inline: .42rem;
    font-size: .68rem;
  }

  h1 {
    font-size: 7.4rem;
  }

  h2 {
    font-size: 5.8rem;
  }

  .menu-theatre {
    grid-template-columns: 12rem minmax(0, 1fr);
    height: auto;
    min-height: 0;
  }

  .menu-stage {
    position: relative;
    top: auto;
    height: min(58vh, 36rem);
    height: min(58svh, 36rem);
    min-height: 30rem;
  }

  .menu-list-wrap {
    grid-column: 1 / -1;
    min-height: 20rem;
    height: 24rem;
  }

  .menu-list {
    max-height: none;
  }

  .scene-founder {
    gap: 2.5rem;
  }

  .founder-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-strip {
    grid-template-columns: 1fr;
    max-width: 58rem;
    margin-inline: auto;
  }

  .event-poster,
  .event-poster:nth-child(2),
  .event-poster:nth-child(3) {
    margin-top: 0;
    min-height: 34rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header: 64px;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .brand span {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .scene,
  .scene-menu,
  .scene-events {
    min-height: auto;
    padding: 5.5rem 1.15rem 4rem;
  }

  .scene-sign {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 6rem;
  }

  .scene::after {
    height: 20%;
  }

  h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 4.5rem;
  }

  h3 {
    font-size: 3.1rem;
  }

  .lede {
    font-size: 1.04rem;
  }

  .giant-word {
    font-size: 5.4rem;
  }

  .sign-logo {
    max-width: 86%;
  }

  .approach-layer,
  .approach-layer img {
    position: absolute;
  }

  .approach-copy,
  .enter-copy,
  .signature-copy {
    justify-self: start;
    text-align: left;
  }

  .approach-word {
    left: .8rem;
    bottom: 1.4rem;
  }

  .door-slit {
    position: relative;
    inset: auto;
    z-index: 4;
    width: 100%;
    height: 52vh;
    height: 52svh;
    margin-bottom: 2rem;
  }

  .door-panel {
    display: none;
  }

  .scene-enter {
    display: block;
  }

  .scene-atmosphere {
    padding: 5.5rem 1.15rem 4rem;
  }

  .atmosphere-copy {
    margin: 0 0 1.5rem;
  }

  .atmosphere-rail {
    display: grid;
    width: auto;
    padding: 0;
  }

  .atmosphere-rail::after {
    display: none;
  }

  .atmosphere-frame,
  .atmosphere-frame.tall,
  .atmosphere-frame.wide {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .atmosphere-frame.wide {
    aspect-ratio: 16 / 10;
  }

  .atmosphere-frame img {
    object-position: center center;
    transform: none;
  }

  .atmosphere-frame:nth-child(2) img,
  .atmosphere-frame:nth-child(2) {
    object-position: 40% center;
    background-position: 40% center;
  }

  .atmosphere-frame:nth-child(3) img,
  .atmosphere-frame:nth-child(3) {
    object-position: 48% center;
    background-position: 48% center;
  }

  .atmosphere-frame:nth-child(4) img,
  .atmosphere-frame:nth-child(4) {
    object-position: 36% center;
    background-position: 36% center;
  }

  .atmosphere-frame:nth-child(5) img,
  .atmosphere-frame:nth-child(5) {
    object-position: 50% center;
    background-position: 50% center;
  }

  .scene-signature {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .scene-founder {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .scene-founder::before {
    background:
      linear-gradient(180deg, rgba(4, 4, 4, .2), rgba(4, 4, 4, .9)),
      repeating-linear-gradient(90deg, rgba(255, 225, 0, .032) 0 1px, transparent 1px 76px);
  }

  .founder-portrait {
    width: min(28rem, 100%);
    justify-self: center;
  }

  .founder-bio p {
    font-size: .92rem;
  }

  .signature-plate {
    position: relative;
    top: auto;
    right: auto;
    order: 2;
    width: 100%;
    max-width: none;
    transform: none;
  }

  .signature-copy {
    order: 1;
  }

  .signature-shadow {
    background: linear-gradient(180deg, rgba(4, 4, 4, .5), rgba(4, 4, 4, .88));
  }

  .signature-word {
    right: .8rem;
  }

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

  .menu-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .menu-categories button {
    padding: .78rem .86rem;
  }

  .menu-categories button span:first-child {
    max-width: calc(100% - 2rem);
    font-size: .9rem;
  }

  .menu-stage {
    height: 28rem;
    min-height: 28rem;
  }

  .menu-list-wrap {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .menu-list {
    overflow: visible;
  }

  .dish-feature-copy {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .dish-row {
    grid-template-columns: 4.1rem 1fr auto;
  }

  .dish-row img {
    width: 4.1rem;
    height: 3.4rem;
  }

  .event-strip {
    display: grid;
    width: auto;
    gap: .9rem;
    padding: 1.5rem 0 0;
  }

  .event-strip::after {
    display: none;
  }

  .event-poster {
    width: 100%;
    min-height: 30rem;
  }

  .scene-reserve,
  .scene-location {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reserve-media {
    opacity: .38;
  }

  .reservation-form {
    max-width: none;
    justify-self: stretch;
  }

  .location-map-frame {
    height: 28rem;
  }

  .location-map-shell {
    min-height: 28rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem 1.15rem;
  }
}

@media (max-width: 520px) {
  .language-switcher {
    justify-self: end;
    width: max-content;
    gap: .12rem;
    padding: .18rem;
  }

  .language-switcher button {
    min-width: 1.68rem;
    min-height: 1.78rem;
    padding-inline: .08rem;
    font-size: .64rem;
  }

  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 3.55rem;
  }

  h3 {
    font-size: 2.55rem;
  }

  .event-poster,
  .event-poster:nth-child(2),
  .event-poster:nth-child(3) {
    min-height: 0;
    aspect-ratio: 1 / 1;
    background-position: center top;
  }

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

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

  .ingredient-strip span {
    width: 100%;
  }

  .founder-stats {
    grid-template-columns: 1fr;
  }

  .founder-stats div {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .site-grain {
    display: none;
  }

  .approach-night {
    opacity: .42;
  }
}

.motion-reduced .approach-night {
  opacity: .42;
  clip-path: inset(0);
}

.motion-reduced .door-panel {
  display: none;
}

.motion-reduced .door-slit img,
.motion-reduced .sign-bg,
.motion-reduced .sign-logo {
  transform: none;
}
