:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-2: #0a0a0a;
  --ink: #f5f0e6;
  --muted: #b9b0a3;
  --dim: #777067;
  --line: rgba(245, 240, 230, 0.14);
  --line-strong: rgba(245, 240, 230, 0.3);
  --red: #ff342b;
  --green: #51de82;
  --cyan: #59d8ff;
  --panel: rgba(17, 17, 16, 0.78);
  --panel-strong: #121211;
  --shadow: rgba(0, 0, 0, 0.58);
  --header-height: 58px;
  --mx: 50vw;
  --my: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 52, 43, 0.1), transparent 30rem),
    radial-gradient(circle at 90% 38%, rgba(81, 222, 130, 0.07), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #050505 58%, #090706 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  background: var(--red);
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 52, 43, 0.06), transparent 28%, transparent 68%, rgba(81, 222, 130, 0.06)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 80px);
  mask-image: linear-gradient(180deg, black, transparent 86%);
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.92;
  font-weight: 920;
}

h2 {
  font-size: 5.7rem;
}

h3 {
  font-size: 1.8rem;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    repeating-radial-gradient(circle at 18% 32%, rgba(255, 255, 255, 0.78) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 34rem;
  height: 34rem;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(calc(var(--mx) - 50%), calc(var(--my) - 50%), 0);
  background:
    radial-gradient(circle, rgba(255, 52, 43, 0.14), rgba(81, 222, 130, 0.07) 28%, transparent 64%);
  mix-blend-mode: screen;
  transition: opacity 220ms ease;
}

.has-pointer .cursor-light {
  opacity: 1;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  gap: 22px;
  background: #050505;
  text-align: center;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.js .loader {
  display: grid;
}

.loader strong {
  color: var(--ink);
  font-size: 4.8rem;
  line-height: 0.88;
  text-transform: uppercase;
  animation: logo-pulse 1100ms ease both;
}

.loader span {
  position: absolute;
  bottom: 9vh;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.loader::before {
  content: "";
  position: absolute;
  inset: auto 14vw 21vh 14vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--green), transparent);
  transform: scaleX(0);
  animation: loader-line 1100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.is-loaded .loader {
  visibility: hidden;
  opacity: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 8px;
  transform: translateY(-220%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
  padding: 8px 28px;
  background: rgba(5, 5, 5, 0.68);
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 34px;
  transition: transform 160ms ease;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  justify-self: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-link--featured {
  padding: 8px 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 980;
}

.nav-links a.is-current {
  color: var(--ink);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-current::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.hero__beam {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 52, 43, 0.2) 43%, transparent 49%),
    linear-gradient(72deg, transparent 0 64%, rgba(81, 222, 130, 0.16) 65%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: beam-scan 8s ease-in-out infinite alternate;
}

.hero__image {
  position: absolute;
  inset: -7vh -5vw;
  z-index: -2;
  transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.05);
  will-change: transform;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.64) 44%, rgba(5, 5, 5, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.25) 0%, rgba(5, 5, 5, 0.86) 100%);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(48px, 0.22fr) minmax(0, 1fr) minmax(190px, 0.3fr);
  min-height: 100svh;
  padding: calc(var(--header-height) + 8px) clamp(20px, 4vw, 64px) 6px;
  align-items: center;
}

.hero__side {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__content {
  align-self: center;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-title {
  display: grid;
  max-width: 840px;
  font-size: clamp(5.5rem, 11vw, 8rem);
  line-height: 0.78;
  text-transform: uppercase;
}

.split-title span {
  display: block;
  width: fit-content;
}

.js .split-title span {
  clip-path: inset(0 0 100% 0);
  transform: translateY(112%);
}

.split-title span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 230, 0.9);
  transform-origin: left;
}

.is-loaded .split-title span {
  animation: title-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.is-loaded .split-title span:nth-child(2) {
  animation-delay: 110ms;
}

.is-loaded .split-title span:nth-child(3) {
  animation-delay: 220ms;
}

.hero__lead {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 14px;
  padding: 10px 13px;
  background: rgba(5, 5, 5, 0.48);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero__status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}

.hero__status.is-open span {
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-weight: 900;
  isolation: isolate;
  transition: border-color 180ms ease, color 180ms ease, transform 160ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: translateY(102%);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover,
.button:focus-visible {
  color: var(--bg);
  border-color: var(--ink);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateY(0);
}

.button--primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.button--line {
  background: rgba(5, 5, 5, 0.28);
}

.hero__ticker {
  align-self: center;
  justify-self: end;
  display: grid;
  gap: 8px;
  width: min(180px, 100%);
  padding-top: 0;
}

.hero__ticker span {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: skewY(-8deg);
  animation: ticker-flicker 4.8s steps(1, end) infinite;
}

.hero__ticker span:nth-child(2) {
  animation-delay: 0.6s;
}

.hero__ticker span:nth-child(3) {
  animation-delay: 1.2s;
}

.hero__ticker span:nth-child(4) {
  animation-delay: 1.8s;
}

.marquee {
  overflow: hidden;
  margin-top: -1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__track span {
  padding: 18px 28px 22px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 230, 0.56);
  font-size: 5.4rem;
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.section {
  width: min(1260px, calc(100% - 64px));
  margin-inline: auto;
  padding: 128px 0;
}

.bar-scene {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
}

.bar-scene__copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.bar-scene__copy p:not(.eyebrow),
.night-strip__copy p,
.gallery__head p,
.hours__copy p {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.pulse-stack {
  position: relative;
  display: grid;
  gap: 18px;
}

.pulse-stack::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 34px;
  width: 1px;
  background: linear-gradient(var(--red), var(--green), var(--cyan));
  opacity: 0.58;
}

.pulse-card {
  --reveal-transform: rotate(0deg);
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  min-height: 170px;
  padding: 26px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px var(--shadow);
  transform-style: preserve-3d;
}

.pulse-card:nth-child(1) {
  --reveal-transform: rotate(-1.1deg);
}

.pulse-card:nth-child(2) {
  --reveal-transform: rotate(1.2deg);
  margin-left: 54px;
}

.pulse-card:nth-child(3) {
  --reveal-transform: rotate(-0.7deg);
  margin-left: 18px;
}

.pulse-card:nth-child(4) {
  --reveal-transform: rotate(0.7deg);
  margin-left: 86px;
}

.pulse-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  transition: opacity 180ms ease;
}

.pulse-card:hover::after {
  opacity: 1;
  animation: sheen 850ms ease;
}

.pulse-card span {
  color: var(--dim);
  font-size: 0.86rem;
  font-weight: 900;
}

.pulse-card h3,
.pulse-card p {
  grid-column: 2;
}

.pulse-card h3 {
  align-self: end;
}

.pulse-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.pulse-card--red {
  border-color: rgba(255, 52, 43, 0.34);
}

.pulse-card--green {
  border-color: rgba(81, 222, 130, 0.34);
}

.pulse-card--white {
  border-color: rgba(245, 240, 230, 0.28);
}

.pulse-card--cyan {
  border-color: rgba(89, 216, 255, 0.34);
}

.menu {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.menu__intro {
  display: grid;
  align-content: start;
  gap: 18px;
}

.menu__intro p:not(.eyebrow) {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
}

.menu-teasers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.menu-teaser {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 188px;
  padding: 22px;
  overflow: hidden;
  background: rgba(14, 14, 14, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-teaser::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: rgba(245, 240, 230, 0.18);
}

.menu-teaser span {
  color: var(--dim);
  font-size: 0.76rem;
  font-weight: 900;
}

.menu-teaser h3 {
  font-size: 1.42rem;
}

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

.menu-teaser--red::before {
  background: rgba(255, 52, 43, 0.8);
}

.menu-teaser--green::before {
  background: rgba(81, 222, 130, 0.76);
}

.menu-teaser--white::before {
  background: rgba(245, 240, 230, 0.42);
}

.menu__panel {
  position: relative;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 52, 43, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(17, 17, 16, 0.8);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px var(--shadow);
}

.menu__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(81, 222, 130, 0.18), transparent 36%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px);
  mask-image: linear-gradient(180deg, black, transparent 88%);
  opacity: 0.36;
}

.menu-panel__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.menu-panel__top strong {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.menu-panel__toggle {
  min-height: 46px;
  padding: 12px 14px;
}

.menu-panel__summary {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.menu-panel__summary span {
  min-height: 34px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-catalog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.menu-catalog[hidden] {
  display: none;
}

.menu-group {
  padding: 18px;
  background: rgba(8, 8, 8, 0.58);
  border: 1px solid rgba(245, 240, 230, 0.08);
  border-radius: 8px;
}

.menu-group h3 {
  font-size: 1.24rem;
}

.menu-group ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.menu-group li {
  display: grid;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 240, 230, 0.08);
}

.menu-group li:first-child {
  padding-top: 0;
  border-top: 0;
}

.menu-group li span {
  color: var(--ink);
  font-weight: 850;
}

.menu-group li small {
  color: var(--muted);
  font-size: 0.84rem;
}

.night-strip {
  position: relative;
  display: grid;
  min-height: 84svh;
  place-items: center;
  overflow: hidden;
  padding: 70px clamp(24px, 5vw, 72px);
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.night-strip__image {
  position: absolute;
  inset: -8vh 0;
  z-index: -2;
  transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.08);
  will-change: transform;
}

.night-strip__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.38), rgba(5, 5, 5, 0.88)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.86));
}

.night-strip__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.night-strip__copy {
  width: min(880px, 100%);
  justify-self: start;
}

.night-strip__stats {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(22px, 5vw, 60px);
  display: flex;
  gap: 8px;
}

.night-strip__stats span {
  display: grid;
  place-items: center;
  width: 124px;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: slow-spin 10s linear infinite;
}

.night-strip__stats span:nth-child(2) {
  color: var(--green);
  animation-direction: reverse;
}

.night-strip__stats span:nth-child(3) {
  color: var(--red);
}

.gallery {
  width: min(1380px, calc(100% - 48px));
}

.gallery__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.gallery__head .eyebrow,
.gallery__head h2 {
  grid-column: 1;
}

.gallery__head p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
}

.gallery-wall {
  counter-reset: shot;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-shot {
  counter-increment: shot;
  position: relative;
  aspect-ratio: 0.92;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 24px 70px var(--shadow);
}

.gallery-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.72)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 6px);
  opacity: 0.36;
  pointer-events: none;
}

.gallery-shot::before {
  content: "0" counter(shot);
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  min-width: 34px;
  padding: 6px 8px;
  background: rgba(5, 5, 5, 0.58);
  border: 1px solid rgba(245, 240, 230, 0.12);
  border-radius: 999px;
  color: rgba(245, 240, 230, 0.76);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(12px);
}

.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1), filter 760ms ease;
}

.gallery-shot span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: rgba(245, 240, 230, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-shot:hover img,
.gallery-shot:focus-visible img {
  transform: scale(1.07);
  filter: saturate(1.18) contrast(1.12);
}

.gallery-shot:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.news {
  display: grid;
  gap: 38px;
  border-top: 1px solid var(--line);
}

.news__head {
  display: grid;
  gap: 14px;
  align-items: start;
}

.news__head .eyebrow,
.news__head h2 {
  grid-column: 1;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.news__lede {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.news-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 52, 43, 0.1), transparent 44%),
    rgba(17, 17, 16, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 26px 70px var(--shadow);
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid rgba(81, 222, 130, 0.9);
  opacity: 0.86;
  pointer-events: none;
}

.news-card__media {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 220px;
  background: #090909;
  border-bottom: 1px solid rgba(245, 240, 230, 0.08);
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.42)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 8px);
  pointer-events: none;
}

.news-card__media--1,
.news-card__media--0 {
  grid-template-columns: 1fr;
}

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

.news-card__media--3 {
  grid-template-columns: 1.3fr 0.9fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.news-card__media--3 .news-card__thumb:first-child {
  grid-row: 1 / span 2;
}

.news-card__thumb,
.news-card__placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 52, 43, 0.22), transparent 12rem),
    radial-gradient(circle at 80% 24%, rgba(81, 222, 130, 0.18), transparent 14rem),
    #090909;
  border: 0;
}

.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.news-card__media-title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
}

.news-card__media-title span {
  max-width: 82%;
  color: rgba(245, 240, 230, 0.96);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 950;
  line-height: 0.94;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.56);
}

.news-card__thumb:hover img,
.news-card__thumb:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.news-card__thumb:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
}

.news-card__placeholder {
  gap: 10px;
  min-height: 220px;
  color: rgba(245, 240, 230, 0.68);
  text-transform: uppercase;
}

.news-card__placeholder strong {
  font-size: 2rem;
  line-height: 1;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
}

.news-card time {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card h3 {
  font-size: 1.6rem;
  line-height: 0.96;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 6px;
}

.news-card__link,
.news-card__count {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 240, 230, 0.1);
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.news-card__link:hover,
.news-card__link:focus-visible {
  color: var(--green);
  background: rgba(81, 222, 130, 0.08);
  border-color: rgba(81, 222, 130, 0.28);
  transform: translateY(-1px);
}

.news-card__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.news-card__link--ghost {
  visibility: hidden;
}

.news-card__count {
  min-height: 32px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 240, 230, 0.1);
  border-radius: 999px;
  color: var(--muted);
}

.news-card--empty-state {
  grid-column: 1 / -1;
  min-height: 260px;
}

.news-card__empty {
  display: grid;
  align-content: center;
  gap: 12px;
  height: 100%;
  padding: 28px;
}

.news-card__empty span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card__empty h3 {
  font-size: 2rem;
}

.news-card__empty p {
  max-width: 480px;
}

.hours {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}

.hours-card {
  padding: 28px;
  background: rgba(17, 17, 16, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hours-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.hours-card div {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 15px 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008));
  border: 1px solid rgba(245, 240, 230, 0.08);
  border-radius: 8px;
}

.hours-card div.is-today {
  padding-left: 28px;
  background: linear-gradient(90deg, rgba(81, 222, 130, 0.09), rgba(81, 222, 130, 0.028) 58%, rgba(255, 255, 255, 0.01));
  border-color: rgba(81, 222, 130, 0.22);
  box-shadow: inset 0 1px 0 rgba(81, 222, 130, 0.06);
}

.hours-card div.is-today::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(81, 222, 130, 0.5);
  transform: translateY(-50%);
}

.hours__copy {
  display: grid;
  align-content: start;
  gap: 18px;
  align-self: start;
  padding-top: 8px;
}

.hours__copy .eyebrow {
  margin: 0;
}

.hours__copy h2 {
  max-width: 600px;
  font-size: clamp(3.7rem, 7vw, 6.2rem);
  line-height: 0.88;
}

.hours__copy p:not(.eyebrow) {
  margin: 0;
}

.hours-card dt,
.hours-card dd {
  margin: 0;
}

.hours-card dt {
  color: var(--muted);
  font-weight: 800;
}

.hours-card dd {
  color: var(--ink);
  font-weight: 900;
}

.hours-card strong {
  display: block;
  margin-top: 22px;
  padding: 15px;
  background: var(--red);
  border-radius: 8px;
  color: #fff;
  text-align: center;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.contact__signal {
  position: absolute;
  inset: 50px auto auto 0;
  z-index: -1;
  display: flex;
  gap: 0.04em;
  color: rgba(245, 240, 230, 0.045);
  font-size: 18rem;
  font-weight: 950;
  line-height: 0.72;
  transform: translateX(-4%);
}

.contact__copy {
  display: grid;
  align-content: start;
  gap: 18px;
  align-self: start;
  padding-top: 8px;
}

.contact__copy .eyebrow {
  margin: 0;
}

.contact__copy h2 {
  max-width: 460px;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-link {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 24px;
  overflow: hidden;
  background: rgba(14, 14, 14, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: translateX(-102%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--bg);
  border-color: var(--ink);
  transform: translateX(-8px);
}

.contact-link:hover::before,
.contact-link:focus-visible::before {
  transform: translateX(0);
}

.contact-link span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link:hover span,
.contact-link:focus-visible span {
  color: #265236;
}

.contact-link strong {
  font-size: 1.28rem;
  line-height: 1.16;
}

.message {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.message__copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.message__copy p:not(.eyebrow) {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.12rem;
}

.message-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(81, 222, 130, 0.06), transparent 34%),
    rgba(17, 17, 16, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--wide,
.message-form__note {
  grid-column: 1 / -1;
}

.field span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 16px 18px;
  background: #0b0b0b;
  border: 1px solid rgba(245, 240, 230, 0.1);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 176px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(81, 222, 130, 0.35);
  box-shadow: 0 0 0 1px rgba(81, 222, 130, 0.12);
}

.message-form button {
  width: fit-content;
  margin-top: 4px;
}

.message-form__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 28px clamp(20px, 4vw, 54px);
  color: var(--dim);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer div:last-child {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--muted);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(1120px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 44px;
  padding: 10px 14px;
  cursor: pointer;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  color: var(--bg);
  font-weight: 900;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px) var(--reveal-transform, translateZ(0));
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) var(--reveal-transform, translateZ(0));
}

@keyframes title-rise {
  to {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes loader-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes logo-pulse {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes beam-scan {
  from {
    transform: translateX(-4%);
    opacity: 0.46;
  }

  to {
    transform: translateX(4%);
    opacity: 0.76;
  }
}

@keyframes ticker-flicker {
  0%,
  100% {
    border-color: var(--line);
    color: var(--muted);
  }

  8% {
    border-color: rgba(255, 52, 43, 0.9);
    color: #fff;
  }

  9% {
    border-color: var(--line);
    color: var(--muted);
  }

  12% {
    border-color: rgba(81, 222, 130, 0.8);
    color: var(--green);
  }

  14% {
    border-color: var(--line);
    color: var(--muted);
  }
}

@keyframes sheen {
  to {
    transform: translateX(100%);
  }
}

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

@media (max-width: 1120px) {
  h2 {
    font-size: 4.2rem;
  }

  h3 {
    font-size: 1.55rem;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 56px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .hero__side {
    align-self: start;
    flex-direction: row;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .split-title {
    font-size: clamp(4.8rem, 11vw, 6rem);
  }

  .hero__ticker {
    align-self: end;
    justify-self: start;
    display: flex;
    width: 100%;
    padding-top: 0;
  }

  .hero__ticker span {
    flex: 1 1 0;
    min-height: 58px;
  }

  .bar-scene,
  .menu,
  .hours,
  .message,
  .contact {
    grid-template-columns: 1fr;
  }

  .bar-scene__copy {
    position: static;
  }

  .menu-teasers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .gallery-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact__signal {
    font-size: 11rem;
  }
}

@media (max-width: 720px) {
  h2 {
    font-size: 2.7rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .cursor-light,
  .grain {
    display: none;
  }

  .loader strong {
    font-size: 2.8rem;
  }

  .site-header {
    align-items: center;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    min-height: var(--header-height);
    padding: 8px 14px;
  }

  .brand {
    width: 30px;
  }

  .nav-links {
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    font-size: 0.66rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero__grid {
    min-height: 100svh;
    padding: calc(var(--header-height) + 8px) 18px 8px;
  }

  .hero__image {
    inset: 0;
  }

  .split-title {
    font-size: clamp(3.7rem, 14vw, 4.4rem);
  }

  .hero__lead {
    max-width: 350px;
    font-size: 1.02rem;
  }

  .hero__status {
    width: 100%;
  }

  .hero__ticker {
    display: none;
  }

  .marquee__track span {
    padding-inline: 18px;
    font-size: 3rem;
  }

  .section {
    width: min(100% - 32px, 1260px);
    padding: 74px 0;
  }

  .pulse-stack::before {
    left: 20px;
  }

  .pulse-card {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    min-height: 176px;
    margin-left: 0;
    padding: 22px;
    --reveal-transform: translateZ(0);
  }

  .night-strip {
    min-height: 76svh;
    place-items: end start;
    padding: 80px 18px 36px;
  }

  .night-strip__stats {
    position: static;
    margin-top: 34px;
  }

  .night-strip__stats span {
    width: 78px;
  }

  .menu-teasers,
  .menu-catalog,
  .message-form {
    grid-template-columns: 1fr;
  }

  .menu-panel__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-panel__toggle,
  .message-form button {
    width: 100%;
  }

  .gallery {
    width: calc(100% - 24px);
  }

  .gallery__head,
  .news__head {
    grid-template-columns: 1fr;
  }

  .gallery__head .eyebrow,
  .gallery__head h2,
  .gallery__head p:not(.eyebrow),
  .news__head .eyebrow,
  .news__head h2,
  .news__lede {
    grid-column: 1;
    grid-row: auto;
  }

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

  .hours-card {
    padding: 20px;
  }

  .hours-card div {
    align-items: center;
    padding: 14px 16px;
  }

  .hours-card div.is-today {
    padding-left: 24px;
  }

  .contact__signal {
    inset: 30px auto auto -10px;
    flex-wrap: wrap;
    max-width: 100%;
    font-size: 7rem;
  }

  .contact-link:hover,
  .contact-link:focus-visible {
    transform: none;
  }

  .site-footer,
  .site-footer div,
  .site-footer div:last-child {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .nav-link--featured {
    font-size: 0.74rem;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox__close {
    top: 14px;
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .loader {
    display: none;
  }

  .split-title span,
  .js [data-reveal] {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
