@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --font-city: "Roboto Condensed", "CityBar Display", "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Roboto Condensed", "CityBar Text", "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-script: "CityBar Script", "Brush Script MT", "Segoe Script", cursive;
  --bg: #000;
  --panel: #08090b;
  --panel-soft: #0d0f12;
  --text: #f6f7fb;
  --muted: #a8b0ba;
  --line: rgba(246, 247, 251, 0.1);
  --blue: #2392ff;
  --red: #b80d19;
  --red-soft: #cf1422;
  --max: 1120px;
  --section: clamp(68px, 8vw, 104px);
  --radius: 14px;
  --hero-scroll: 0;
  --hero-scroll-lift: 0px;
  --hero-inner-lift: 0px;
  --hero-glow-scale: 1;
  --hero-glow-opacity: 0.84;
  --hero-glow-blur: 14px;
  --hero-glow-saturate: 1.08;
  --hero-yellow-alpha: 0.04;
  --hero-green-alpha: 0.035;
  --hero-purple-alpha: 0.035;
  --hero-blue-x: 20%;
  --hero-blue-y: 28%;
  --hero-red-x: 78%;
  --hero-red-y: 32%;
  --hero-blue-color: 35 146 255;
  --hero-red-color: 255 36 52;
  --pride-position: 0%;
  --pride-saturate: 1.1;
  --pride-brightness: 1;
}

@font-face {
  font-family: "CityBar Script";
  src: url("assets/fonts/Script.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

[hidden] {
  display: none !important;
}

.wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

body.nav-open .site-header {
  background: rgba(0, 0, 0, 0.94);
}

body.nav-open .site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 -320px 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.24),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.nav {
  width: min(100% - clamp(28px, 5vw, 72px), 1480px);
  min-height: 60px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 247, 251, 0.04);
  color: var(--text);
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 16px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    width 0.2s ease;
}

.nav-toggle span:first-child {
  transform: translate(-50%, -5px);
}

.nav-toggle span:last-child {
  transform: translate(-50%, 5px);
}

.nav-toggle.is-open span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
  width: 18px;
}

.nav-toggle.is-open span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 18px;
}

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

.brand img {
  width: clamp(94px, 11vw, 120px);
  border-radius: 8px;
}

.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-center {
  justify-content: flex-end;
  gap: 20px;
}

.nav-right {
  justify-content: flex-end;
  gap: 0;
}

.footer-links a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.nav-center > a {
  padding: 8px 2px;
  color: var(--muted);
  font-family: var(--font-city);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.nav-center > a:hover,
.nav-center > a:focus-visible {
  color: var(--text);
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 247, 251, 0.035);
  box-shadow: 0 0 14px rgba(35, 146, 255, 0.1);
}

.lang-button {
  min-width: 34px;
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-city);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  cursor: pointer;
}

.lang-button.is-active {
  background: rgba(35, 146, 255, 0.18);
  color: var(--text);
  box-shadow:
    0 0 16px rgba(35, 146, 255, 0.32),
    inset 0 0 12px rgba(35, 146, 255, 0.08);
}

.hero {
  min-height: clamp(520px, 78svh, 700px);
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(86px, 12vw, 128px) 0 clamp(72px, 9vw, 104px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 26%, rgba(35, 146, 255, 0.07), transparent 22rem),
    radial-gradient(circle at 74% 34%, rgba(255, 36, 52, 0.06), transparent 22rem),
    #000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -16%;
  background:
    radial-gradient(circle at var(--hero-blue-x) var(--hero-blue-y), rgb(var(--hero-blue-color) / 0.25), transparent 22rem),
    radial-gradient(circle at 46% 72%, rgb(255 237 0 / var(--hero-yellow-alpha)), transparent 18rem);
  opacity: var(--hero-glow-opacity);
  filter: blur(var(--hero-glow-blur)) saturate(var(--hero-glow-saturate));
  animation: heroGlowBlue 12s ease-in-out infinite;
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -16%;
  background:
    radial-gradient(circle at var(--hero-red-x) var(--hero-red-y), rgb(var(--hero-red-color) / 0.21), transparent 21rem),
    radial-gradient(circle at 68% 78%, rgb(0 128 38 / var(--hero-green-alpha)), transparent 18rem),
    radial-gradient(circle at 88% 22%, rgb(115 41 130 / var(--hero-purple-alpha)), transparent 16rem);
  opacity: calc(var(--hero-glow-opacity) - 0.03);
  filter: blur(var(--hero-glow-blur)) saturate(var(--hero-glow-saturate));
  animation: heroGlowRed 13.5s ease-in-out infinite;
  pointer-events: none;
  will-change: transform, opacity, filter;
}

@keyframes heroGlowBlue {
  0% {
    transform: translate3d(-4%, calc(-5% + var(--hero-scroll-lift)), 0) scale(calc(var(--hero-glow-scale) - 0.04));
    opacity: calc(var(--hero-glow-opacity) - 0.1);
  }

  50% {
    transform: translate3d(3%, calc(4% + var(--hero-scroll-lift)), 0) scale(calc(var(--hero-glow-scale) + 0.08));
    opacity: calc(var(--hero-glow-opacity) + 0.08);
  }

  100% {
    transform: translate3d(-4%, calc(-5% + var(--hero-scroll-lift)), 0) scale(calc(var(--hero-glow-scale) - 0.04));
    opacity: calc(var(--hero-glow-opacity) - 0.1);
  }
}

@keyframes heroGlowRed {
  0% {
    transform: translate3d(4%, calc(4% + var(--hero-scroll-lift)), 0) scale(calc(var(--hero-glow-scale) - 0.02));
    opacity: calc(var(--hero-glow-opacity) - 0.14);
  }

  50% {
    transform: translate3d(-2%, calc(-3% + var(--hero-scroll-lift)), 0) scale(calc(var(--hero-glow-scale) + 0.06));
    opacity: calc(var(--hero-glow-opacity) + 0.04);
  }

  100% {
    transform: translate3d(4%, calc(4% + var(--hero-scroll-lift)), 0) scale(calc(var(--hero-glow-scale) - 0.02));
    opacity: calc(var(--hero-glow-opacity) - 0.14);
  }
}

.hero-inner {
  max-width: 920px;
  position: relative;
  z-index: 1;
  transform: translate3d(0, var(--hero-inner-lift), 0);
  transition: transform 0.12s linear;
  will-change: transform;
}

.kicker,
.section-label {
  margin: 0 0 14px;
  font-family: var(--font-script);
  font-size: clamp(21px, 2.35vw, 30px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.kicker {
  color: var(--blue);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.6),
    0 0 7px rgba(35, 146, 255, 0.55),
    0 0 14px rgba(35, 146, 255, 0.18);
  -webkit-text-stroke: 0.12px rgba(255, 255, 255, 0.12);
}

.section-label {
  color: var(--red-soft) !important;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.16),
    0 0 6px rgba(255, 36, 52, 0.36),
    0 0 14px rgba(255, 36, 52, 0.12);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: var(--font-city);
  font-size: clamp(42px, 6.1vw, 76px);
  line-height: 1.06;
  letter-spacing: 0.018em;
  font-weight: 500;
  text-transform: uppercase;
  white-space: pre-line;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.62),
    0 0 8px rgba(35, 146, 255, 0.42),
    0 0 18px rgba(35, 146, 255, 0.12);
  -webkit-text-stroke: 0.1px rgba(255, 255, 255, 0.08);
}

h2 {
  margin-bottom: 14px;
  font-family: var(--font-city);
  font-size: clamp(26px, 2.75vw, 34px);
  line-height: 1.12;
  letter-spacing: 0.025em;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.55),
    0 0 6px rgba(35, 146, 255, 0.24);
  -webkit-text-stroke: 0.08px rgba(255, 255, 255, 0.06);
}

h3 {
  font-family: var(--font-city);
  letter-spacing: 0.045em;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.4),
    0 0 4px rgba(35, 146, 255, 0.12);
}

.lead {
  max-width: 600px;
  color: #dbe2ea;
  font-size: clamp(16px, 1.45vw, 18px);
  font-weight: 400;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-meta span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(35, 146, 255, 0.62);
  border-radius: 999px;
  color: var(--text);
  background:
    rgba(35, 146, 255, 0.07);
  font-family: var(--font-city);
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.48),
    0 0 10px currentColor;
  box-shadow:
    0 0 0 1px rgba(35, 146, 255, 0.18),
    0 0 16px rgba(35, 146, 255, 0.32),
    0 0 36px rgba(35, 146, 255, 0.14),
    inset 0 0 14px rgba(35, 146, 255, 0.08);
  -webkit-text-stroke: 0.08px rgba(255, 255, 255, 0.06);
}

.hero-meta span:first-child {
  color: #8fcaff;
}

.hero-meta span:nth-child(2) {
  border-color: rgba(255, 36, 52, 0.64);
  background: rgba(255, 36, 52, 0.07);
  text-shadow:
    0 0 6px rgba(255, 36, 52, 0.92),
    0 0 16px rgba(255, 36, 52, 0.55),
    0 0 32px rgba(255, 36, 52, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 36, 52, 0.16),
    0 0 16px rgba(255, 36, 52, 0.3),
    0 0 36px rgba(255, 36, 52, 0.14),
    inset 0 0 14px rgba(255, 36, 52, 0.08);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(35, 146, 255, 0.58);
  border-radius: 999px;
  background: rgba(35, 146, 255, 0.08);
  color: var(--text);
  font-family: var(--font-city);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(35, 146, 255, 0.12),
    0 0 16px rgba(35, 146, 255, 0.24),
    0 0 32px rgba(35, 146, 255, 0.1);
  -webkit-text-stroke: 0.15px rgba(255, 255, 255, 0.05);
}

.button:hover,
.button:focus-visible {
  border-color: var(--blue);
  box-shadow:
    0 0 0 1px rgba(35, 146, 255, 0.3),
    0 0 16px rgba(35, 146, 255, 0.42),
    0 0 46px rgba(35, 146, 255, 0.16);
}

.button.red {
  border-color: rgba(255, 36, 52, 0.58);
  background: rgba(255, 36, 52, 0.09);
  box-shadow:
    0 0 0 1px rgba(255, 36, 52, 0.1),
    0 0 16px rgba(255, 36, 52, 0.22),
    0 0 32px rgba(255, 36, 52, 0.1);
}

.button.red:hover,
.button.red:focus-visible {
  border-color: var(--red-soft);
  box-shadow:
    0 0 0 1px rgba(255, 36, 52, 0.24),
    0 0 16px rgba(255, 36, 52, 0.38),
    0 0 46px rgba(255, 36, 52, 0.16);
}

.pride-line {
  --pride-gradient: linear-gradient(90deg, #e40303 0%, #ff8c00 7%, #ffed00 14%, #008026 21.5%, #00a3ff 29%, #24408e 36%, #732982 43%, #e40303 50%, #ff8c00 57%, #ffed00 64%, #008026 71.5%, #00a3ff 79%, #24408e 86%, #732982 93%, #e40303 100%);
  height: 4px;
  position: relative;
  overflow: visible;
  isolation: isolate;
  background: var(--pride-gradient);
  background-size: 200% 100%;
  background-position: var(--pride-position) 50%;
  filter: saturate(var(--pride-saturate)) brightness(var(--pride-brightness));
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.22),
    0 0 18px rgba(228, 3, 3, 0.2),
    0 0 22px rgba(0, 128, 38, 0.15),
    0 0 24px rgba(36, 64, 142, 0.2),
    0 0 28px rgba(115, 41, 130, 0.18);
}

.pride-line::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, transparent 0 34%, rgba(255, 255, 255, 0.46) 46%, transparent 58% 100%);
  background-size: 220% 100%;
  mix-blend-mode: screen;
  opacity: 0.34;
  animation: prideShine 8.5s ease-in-out infinite;
  pointer-events: none;
}

.pride-line::after {
  content: "";
  position: absolute;
  inset: -7px 0;
  z-index: -1;
  background: var(--pride-gradient);
  background-size: 200% 100%;
  background-position: inherit;
  filter: blur(8px) saturate(1.35);
  opacity: 0.54;
  pointer-events: none;
}

@keyframes prideShine {
  0%,
  100% {
    background-position: 135% 50%;
  }

  50% {
    background-position: -35% 50%;
  }
}

section {
  padding: var(--section) 0;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.75, 0.18, 1),
    transform 0.9s cubic-bezier(0.2, 0.75, 0.18, 1),
    filter 0.9s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-lift {
  transition-duration: 1s;
}

.reveal-fade {
  transform: none;
}

.reveal-left {
  transform: translate3d(-24px, 18px, 0) scale(0.985);
}

.reveal-right {
  transform: translate3d(24px, 18px, 0) scale(0.985);
}

.reveal-down {
  transform: translate3d(0, -18px, 0);
}

.reveal-hero-kicker {
  transform: translate3d(-18px, 20px, 0);
  filter: blur(9px);
  transition-duration: 0.95s;
}

.reveal-hero-title {
  transform: translate3d(0, 34px, 0) scale(0.972);
  filter: blur(13px);
  transition-duration: 1.08s;
}

.reveal-hero-meta {
  transform: translate3d(0, 22px, 0) scale(0.985);
  filter: blur(10px);
  transition-duration: 0.98s;
}

.reveal-line {
  transform: scaleX(0.72);
  transform-origin: center;
  filter: blur(6px) saturate(1.4);
}

@keyframes softReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split,
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.section-head {
  max-width: 720px;
}

.section-head h2 {
  max-width: 700px;
  font-size: clamp(30px, 3.25vw, 42px);
  line-height: 1.08;
  text-wrap: balance;
}

#vibe .section-head {
  max-width: 860px;
}

.section-head.compact {
  margin-bottom: 32px;
}

.section-head p {
  color: var(--muted);
}

.section-copy p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.panel-section {
  border-block: 1px solid var(--line);
  background: #030303;
}

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

.gallery-collage {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.85fr;
  grid-auto-rows: minmax(170px, auto);
  gap: 18px;
}

.gallery-photo {
  min-height: 210px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  overflow: hidden;
  transform: translateZ(0);
}

.gallery-photo {
  margin: 0;
  border: 1px solid rgba(246, 247, 251, 0.1);
  background: var(--panel);
  box-shadow: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.35s ease;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.18, 1);
}

.gallery-photo:hover,
.gallery-photo:focus-within {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.gallery-photo:hover img,
.gallery-photo:focus-within img,
.gallery-photo.is-visible img {
  transform: scale(1);
}

.gallery-photo.large {
  grid-row: span 2;
  min-height: 420px;
}

.gallery-photo.tall {
  grid-row: span 2;
}

.feature-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.feature-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  justify-items: start;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: none;
  text-align: left;
  transition:
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.feature-item:hover,
.feature-item:focus-within {
  border-color: rgba(35, 146, 255, 0.34);
  background: rgba(35, 146, 255, 0.045);
  box-shadow:
    0 0 0 1px rgba(35, 146, 255, 0.08),
    0 12px 34px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.feature-icon::before {
  content: "";
  width: 36px;
  aspect-ratio: 1;
  display: block;
  background-color: currentColor;
  mask-image: var(--icon);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: var(--icon);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.72))
    drop-shadow(0 0 8px rgba(35, 146, 255, 0.9))
    drop-shadow(0 0 18px rgba(35, 146, 255, 0.5))
    drop-shadow(0 0 34px rgba(35, 146, 255, 0.22));
}

.icon-wifi {
  --icon: url("assets/free-wifi.png");
  color: var(--blue);
}

.icon-cashless {
  --icon: url("assets/cashless.png");
  color: var(--blue);
}

.icon-lgbtq {
  --icon: url("assets/lgtbq-friendly.png");
  color: var(--blue);
}

.icon-lgbtq::before {
  background: currentColor;
}

.feature-item p {
  margin: 0;
  color: rgba(246, 247, 251, 0.84);
  font-size: 16px;
  font-weight: 500;
}

.menu-cta {
  margin-top: 24px;
  border-radius: 999px;
}

.menu-card {
  padding: 24px;
  border: 1px solid rgba(35, 146, 255, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
  box-shadow:
    0 0 0 1px rgba(35, 146, 255, 0.18),
    0 0 16px rgba(35, 146, 255, 0.32),
    0 0 36px rgba(35, 146, 255, 0.14),
    inset 0 0 14px rgba(35, 146, 255, 0.08);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.menu-card:hover,
.menu-card:focus-within {
  border-color: rgba(35, 146, 255, 0.78);
  box-shadow:
    0 0 0 1px rgba(35, 146, 255, 0.22),
    0 0 20px rgba(35, 146, 255, 0.38),
    0 0 48px rgba(35, 146, 255, 0.16),
    inset 0 0 16px rgba(35, 146, 255, 0.1);
  transform: translateY(-3px);
}

.menu-card h3 {
  margin-bottom: 18px;
  color: rgba(246, 247, 251, 0.92);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.26),
    0 0 6px rgba(35, 146, 255, 0.14);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid rgba(35, 146, 255, 0.14);
  color: var(--muted);
  font-size: 15px;
}

.menu-item span:first-child {
  color: rgba(246, 247, 251, 0.9);
}

.menu-item strong {
  display: block;
  color: rgba(246, 247, 251, 0.95);
  font-weight: 600;
}

.menu-item small {
  display: block;
  margin-top: 4px;
  color: rgba(168, 176, 186, 0.92);
  font-size: 13px;
  line-height: 1.45;
}

.menu-item span:last-child {
  color: #dbe9ff;
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.allergen-pill {
  color: var(--red-soft);
  font-weight: 700;
  white-space: nowrap;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.1),
    0 0 5px rgba(255, 36, 52, 0.12);
}

.menu-item span.allergen-pill,
.menu-item small .allergen-pill,
.allergen-grid .allergen-pill {
  color: var(--red-soft);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.1),
    0 0 5px rgba(255, 36, 52, 0.12);
}

.allergen-card {
  grid-column: 1 / -1;
  border-color: rgba(255, 36, 52, 0.56);
  box-shadow:
    0 0 0 1px rgba(255, 36, 52, 0.16),
    0 0 16px rgba(255, 36, 52, 0.28),
    0 0 34px rgba(255, 36, 52, 0.12),
    inset 0 0 14px rgba(255, 36, 52, 0.08);
}

.allergen-card h3 {
  color: rgba(255, 233, 236, 0.96);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.24),
    0 0 6px rgba(255, 36, 52, 0.18);
}

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
}

.allergen-grid p {
  margin: 0;
  color: rgba(246, 247, 251, 0.86);
  font-size: 14px;
  line-height: 1.5;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.hours {
  margin: 0;
  color: var(--text);
  font-family: var(--font-city);
  font-size: clamp(36px, 5.2vw, 68px);
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 1;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.4),
    0 0 6px rgba(35, 146, 255, 0.2),
    0 0 12px rgba(35, 146, 255, 0.08);
  -webkit-text-stroke: 0.08px rgba(255, 255, 255, 0.04);
}

.neon-hours {
  color: #72bdff;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.72),
    0 0 8px rgba(35, 146, 255, 0.78),
    0 0 18px rgba(35, 146, 255, 0.3),
    0 0 34px rgba(35, 146, 255, 0.12);
  -webkit-text-stroke: 0.08px rgba(255, 255, 255, 0.04);
}

.map-frame {
  width: 100%;
  min-height: 360px;
  margin-top: 22px;
  display: block;
  border: 1px solid rgba(35, 146, 255, 0.34);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(35, 146, 255, 0.08),
    0 0 18px rgba(35, 146, 255, 0.14);
}

.map-wide {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

address {
  color: var(--muted);
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 20px;
}

.legal-hero,
.room-hero,
.menu-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(76px, 9vw, 104px) 0 clamp(44px, 6vw, 64px);
  background:
    radial-gradient(circle at 16% 24%, rgba(35, 146, 255, 0.055), transparent 20rem),
    radial-gradient(circle at 78% 34%, rgba(255, 36, 52, 0.045), transparent 19rem),
    #000;
}

.legal-hero::before,
.room-hero::before,
.menu-hero::before,
.legal-hero::after,
.room-hero::after,
.menu-hero::after {
  content: "";
  position: absolute;
  inset: -24%;
  z-index: 0;
  pointer-events: none;
  filter: blur(18px) saturate(1.08);
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.2, 0.75, 0.18, 1);
  will-change: transform, opacity;
}

.legal-hero::before,
.room-hero::before,
.menu-hero::before {
  background:
    radial-gradient(circle at 22% 30%, rgba(35, 146, 255, 0.22), transparent 20rem);
  animation: pageGlowBlue 12s ease-in-out infinite;
}

.legal-hero::after,
.room-hero::after,
.menu-hero::after {
  background:
    radial-gradient(circle at 78% 34%, rgba(255, 36, 52, 0.18), transparent 20rem);
  animation: pageGlowRed 13.5s ease-in-out infinite;
}

body.is-loaded .legal-hero::before,
body.is-loaded .room-hero::before,
body.is-loaded .menu-hero::before {
  opacity: 0.54;
}

body.is-loaded .legal-hero::after,
body.is-loaded .room-hero::after,
body.is-loaded .menu-hero::after {
  opacity: 0.46;
}

.legal-hero > .wrap,
.room-hero > .wrap,
.menu-hero > .wrap {
  position: relative;
  z-index: 2;
}

@keyframes pageGlowBlue {
  0% {
    transform: translate3d(-3%, -4%, 0) scale(0.98);
  }

  50% {
    transform: translate3d(3%, 3%, 0) scale(1.08);
  }

  100% {
    transform: translate3d(-3%, -4%, 0) scale(0.98);
  }
}

@keyframes pageGlowRed {
  0% {
    transform: translate3d(4%, 3%, 0) scale(0.98);
  }

  50% {
    transform: translate3d(-3%, -3%, 0) scale(1.07);
  }

  100% {
    transform: translate3d(4%, 3%, 0) scale(0.98);
  }
}

.legal-hero h1,
.room-hero h1,
.menu-hero h1 {
  font-size: clamp(38px, 4.8vw, 60px);
}

.menu-content {
  padding-top: 0;
}

.legal-content {
  padding-top: 0;
}

.legal-card {
  max-width: 880px;
  padding: clamp(26px, 4vw, 44px);
}

.legal-card + .legal-card {
  margin-top: 24px;
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card ul {
  padding-left: 20px;
}

.room-cta {
  padding-top: 0;
  text-align: center;
}

.room-cta .section-head {
  max-width: 680px;
  margin: 0 auto;
}

.room-cta .section-head h2 {
  margin-inline: auto;
}

.room-cta .button {
  min-height: 54px;
  min-width: 212px;
  padding: 14px 24px;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.pulse-button {
  margin-top: 22px;
  border-radius: 999px;
  animation: pulseGlow 1.8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow:
      0 0 22px rgba(255, 36, 52, 0.18),
      0 0 0 0 rgba(255, 36, 52, 0.3);
  }

  50% {
    box-shadow:
      0 0 34px rgba(255, 36, 52, 0.48),
      0 0 0 8px rgba(255, 36, 52, 0);
  }
}

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

.room-gallery {
  padding-top: 0;
}

.room-photo {
  min-height: 290px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(42px, 5.5vw, 66px) 0 clamp(28px, 4vw, 42px);
  color: var(--muted);
  background: #000;
}

.footer-grid {
  width: min(100% - clamp(32px, 5vw, 72px), 1120px);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) minmax(190px, 1fr) minmax(180px, 1.1fr) minmax(120px, 0.7fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.footer-grid > div {
  display: grid;
  gap: 9px;
  align-content: start;
  min-width: 0;
}

.footer-grid strong {
  margin-bottom: 2px;
  color: var(--text);
  font-family: var(--font-city);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--text);
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-links a {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  color: var(--muted);
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--text);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-copy {
  width: 100%;
  margin-top: clamp(28px, 4vw, 42px);
  padding: 0 clamp(24px, 5vw, 72px);
  color: rgba(168, 176, 186, 0.78);
  font-size: 13.5px;
  line-height: 1.4;
  text-align: center;
}

.footer-links {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.footer-links a {
  padding: 0;
}

@media (max-width: 1060px) {
  .nav {
    position: relative;
    min-height: 62px;
    grid-template-columns: 1fr auto;
    padding: 10px 0;
    gap: 10px;
  }

  .brand img {
    width: 102px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 4px);
    background: rgba(5, 6, 7, 0.98);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(246, 247, 251, 0.04);
    z-index: 40;
  }

  .nav-menu.is-open {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px 18px;
    animation: menuReveal 0.22s ease both;
  }

  .nav-center,
  .nav-right {
    justify-content: start;
    flex-wrap: nowrap;
  }

  .nav-center {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
  }

  .nav-center > a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(246, 247, 251, 0.1);
    letter-spacing: 0.14em;
  }

  .nav-center > a:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .nav-right {
    align-self: start;
    justify-self: end;
  }

  .split,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .drink-menu-grid,
  .feature-row,
  .placeholder-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-collage {
    grid-template-columns: 1fr 1fr;
  }

  .room-cta {
    padding-block: 58px;
  }

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

  section {
    padding: 64px 0;
  }
}

@keyframes menuReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .nav {
    gap: 12px;
  }

  .brand img {
    width: 96px;
  }

  .language-switch {
    padding: 2px;
  }

  .lang-button {
    min-width: 32px;
    min-height: 30px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .reveal {
    transform: translate3d(0, 18px, 0) scale(0.992);
    filter: blur(7px);
    transition-duration: 0.82s;
  }

  .reveal-hero-kicker {
    transform: translate3d(-10px, 16px, 0);
    filter: blur(7px);
    transition-duration: 0.86s;
  }

  .reveal-hero-title {
    transform: translate3d(0, 24px, 0) scale(0.982);
    filter: blur(9px);
    transition-duration: 0.96s;
  }

  .reveal-hero-meta {
    transform: translate3d(0, 18px, 0) scale(0.992);
    filter: blur(7px);
    transition-duration: 0.86s;
  }

  .reveal-line {
    transform: scaleX(0.84);
    filter: blur(4px) saturate(1.25);
  }

  .hero {
    --hero-glow-opacity: 0.52;
    --hero-glow-blur: 20px;
    --hero-glow-saturate: 0.95;
    --hero-yellow-alpha: 0.018;
    --hero-green-alpha: 0.014;
    --hero-purple-alpha: 0.014;
    min-height: calc(100svh - 60px);
    padding: 68px 0 56px;
    align-items: center;
  }

  .legal-hero::before,
  .room-hero::before,
  .menu-hero::before,
  .legal-hero::after,
  .room-hero::after,
  .menu-hero::after {
    filter: blur(22px) saturate(0.95);
  }

  body.is-loaded .legal-hero::before,
  body.is-loaded .room-hero::before,
  body.is-loaded .menu-hero::before {
    opacity: 0.32;
  }

  body.is-loaded .legal-hero::after,
  body.is-loaded .room-hero::after,
  body.is-loaded .menu-hero::after {
    opacity: 0.28;
  }

  .hero-inner {
    transform: translateY(-18px);
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(42px, 12vw, 54px);
    line-height: 1;
    letter-spacing: 0.012em;
  }

  .hero-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 320px;
    gap: 8px;
    margin-top: 54px;
  }

  .hero-meta span {
    min-height: 48px;
    max-width: 100%;
    padding: 11px 15px;
    font-size: 16.5px;
    letter-spacing: 0.018em;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hours {
    font-size: clamp(46px, 14vw, 64px);
    letter-spacing: 0.035em;
  }

  .section-head {
    max-width: 340px;
  }

  .section-head h2 {
    max-width: 18ch;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.08;
  }

  .room-cta .section-head {
    max-width: 360px;
  }

  .gallery-collage,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-photo.large,
  .gallery-photo.tall {
    grid-row: auto;
    min-height: 230px;
  }

  .gallery-photo {
    min-height: 230px;
  }

  .button {
    width: 100%;
  }

  .room-cta .button {
    width: auto;
    min-width: 208px;
    min-height: 52px;
    padding-inline: 22px;
    font-size: 15.5px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero-inner,
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-down,
  .reveal-hero-kicker,
  .reveal-hero-title,
  .reveal-hero-meta,
  .reveal-line,
  .gallery-photo,
  .feature-item,
  .menu-card {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
