:root {
  --ink: #050302;
  --night: #100604;
  --smoke: #1a0d08;
  --panel: rgba(255, 238, 215, 0.065);
  --panel-strong: rgba(18, 8, 5, 0.9);
  --cream: #fff0dc;
  --muted: #bda996;
  --line: rgba(255, 240, 220, 0.16);
  --gold: #d7a047;
  --ember: #ff6038;
  --ember-dark: #b63320;
  --max: 1220px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 6%, rgba(255, 96, 56, 0.18), transparent 25rem),
    radial-gradient(circle at 84% 12%, rgba(215, 160, 71, 0.13), transparent 24rem),
    linear-gradient(180deg, #070302 0%, #130704 45%, #050302 100%);
  color: var(--cream);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(255, 96, 56, 0.22);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.vga-preview-bar {
  position: sticky;
  top: 0;
  z-index: 72;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 max(16px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 240, 220, 0.12);
  background:
    linear-gradient(90deg, rgba(255,96,56,0.2), rgba(215,160,71,0.08)),
    #050302;
  color: rgba(255, 240, 220, 0.78);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vga-preview-bar strong {
  color: var(--cream);
}

.vga-preview-bar a {
  color: var(--gold);
}

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

a:focus-visible,
button:focus-visible,
label:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(215, 160, 71, 0.76);
  outline-offset: 4px;
}

a,
button,
label,
summary {
  touch-action: manipulation;
}

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

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

.topbar {
  position: sticky;
  top: 36px;
  z-index: 70;
  height: 74px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 3, 2, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 205px;
}

.brand-logo {
  width: 72px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}

.brand-copy strong {
  display: block;
  line-height: 1;
  font-size: 0.93rem;
  letter-spacing: 0.04em;
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.3vw, 28px);
  color: rgba(255, 240, 220, 0.76);
  font-size: 0.94rem;
  white-space: nowrap;
}

.navlinks a[aria-current="page"],
.navlinks a:hover,
.navlinks a:focus-visible {
  color: var(--cream);
}

.navlinks a {
  position: relative;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.32);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.navlinks a:hover::after,
.navlinks a:focus-visible::after,
.navlinks a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hamburger-label,
.mobile-drawer {
  display: none;
}

.hamburger-label {
  width: 96px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 240, 220, 0.22);
  background: rgba(255, 240, 220, 0.055);
  cursor: pointer;
  align-items: center;
  justify-content: flex-start;
  padding-left: 17px;
  position: relative;
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 850;
}

.hamburger-label::before {
  content: "Menu";
}

.hamburger-label span:not(.sr-only) {
  position: absolute;
  right: 17px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--cream);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.hamburger-label span:nth-child(2) {
  transform: translateY(-6px);
}

.hamburger-label span:nth-child(3) {
  transform: translateY(0);
}

.hamburger-label span:nth-child(4) {
  transform: translateY(6px);
}

.menu-toggle:checked + .hamburger-label span:nth-child(2) {
  transform: rotate(45deg);
}

.menu-toggle:checked + .hamburger-label span:nth-child(3) {
  opacity: 0;
}

.menu-toggle:checked + .hamburger-label span:nth-child(4) {
  transform: rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-drawer {
  position: fixed;
  top: 110px;
  left: 12px;
  right: 12px;
  z-index: 95;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255,96,56,0.12), transparent 28%),
    rgba(7, 4, 3, 0.96);
  box-shadow: 0 28px 80px rgba(0,0,0,0.58);
  backdrop-filter: blur(18px);
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.mobile-drawer-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 4px 12px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mobile-drawer-label span:last-child {
  color: rgba(255, 240, 220, 0.58);
}

.mobile-drawer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-radius: 18px;
  padding: 0 16px;
  color: rgba(255, 240, 220, 0.82);
  font-size: 1.05rem;
  font-weight: 820;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mobile-drawer a:hover,
.mobile-drawer a:focus-visible {
  color: var(--cream);
  background: rgba(255, 240, 220, 0.08);
  transform: translateX(3px);
}

.mobile-drawer a + a {
  margin-top: 6px;
}

.mobile-drawer a[aria-current="page"] {
  color: #fff8f1;
  background: linear-gradient(135deg, rgba(255,96,56,0.32), rgba(215,160,71,0.12));
  border: 1px solid rgba(255, 96, 56, 0.32);
}

.mobile-drawer a::after {
  content: "→";
  color: var(--gold);
}

.menu-toggle:checked ~ .mobile-drawer {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  color: var(--cream);
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: linear-gradient(135deg, #ff714c, #ff946b);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  border-color: rgba(255, 240, 220, 0.38);
  background: rgba(255, 240, 220, 0.095);
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn.primary {
  color: #fff9f2;
  background: linear-gradient(135deg, var(--ember), #ff8759);
  box-shadow: 0 18px 44px rgba(255, 96, 56, 0.28);
}

.btn.ghost {
  border-color: rgba(255, 240, 220, 0.22);
  background: rgba(255, 240, 220, 0.055);
}

.page-hero {
  width: min(1440px, calc(100% - 32px));
  min-height: calc(100dvh - 74px);
  margin: 0 auto;
  padding: 38px 0 76px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
}

.page-hero.compact {
  min-height: 560px;
  grid-template-columns: 1fr;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

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

h1 {
  max-width: 720px;
  font-size: clamp(4rem, 8.4vw, 8rem);
  line-height: 0.89;
  letter-spacing: -0.073em;
  text-wrap: balance;
}

.page-hero.compact h1 {
  max-width: 980px;
}

.hero-copy p,
.lead {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(255, 240, 220, 0.78);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
}

.hero-actions,
.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.hero-media {
  position: relative;
  min-height: 650px;
  border-radius: 44px;
  overflow: hidden;
  isolation: isolate;
  background: #160a07;
  box-shadow: 0 44px 110px rgba(0,0,0,0.5);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(0deg, rgba(5,3,2,0.88), transparent 58%),
    var(--hero-image) center / cover no-repeat;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.025);
  transform-origin: 50% 50%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 240, 220, 0.14);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.hero-home {
  --hero-image: url("hq-assets/hq-nightclub-hero.png");
}

.hero-menu {
  --hero-image: url("hq-assets/drinks-hero.jpg");
}

.hero-visit {
  --hero-image: url("hq-assets/venue-bar.jpg");
}

.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 240, 220, 0.18);
  border-radius: 28px;
  background: rgba(255, 240, 220, 0.13);
  backdrop-filter: blur(16px);
}

.live-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(255, 240, 220, 0.18);
  border-radius: 999px;
  background: rgba(5, 3, 2, 0.72);
  color: var(--cream);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}

.live-badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ember);
  box-shadow: 0 0 0 6px rgba(255, 96, 56, 0.14);
}

.live-badge strong {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-badge small {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
}

.hero-card.two {
  grid-template-columns: 1fr 1fr;
}

.hero-stat {
  padding: 22px;
  background: rgba(5, 3, 2, 0.78);
}

.label {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.48rem, 2.7vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-stat span:not(.label) {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.quick-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: -40px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(12, 6, 4, 0.88);
  backdrop-filter: blur(18px);
}

.quick-strip > * {
  min-height: 108px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-strip > *:last-child {
  border-right: 0;
}

.quick-strip strong {
  display: block;
  font-size: 1.28rem;
  letter-spacing: -0.045em;
  line-height: 1;
}

.quick-strip span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.signal-marquee {
  width: 100%;
  margin: 96px 0 18px;
  display: flex;
  gap: 34px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 240, 220, 0.035);
}

.signal-marquee div {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: max-content;
  padding: 18px 0;
}

.signal-marquee span {
  color: rgba(255, 240, 220, 0.84);
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tonight-section {
  padding-top: 72px;
}

.tonight-head {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: clamp(20px, 5vw, 70px);
  align-items: end;
}

.tonight-head .label {
  align-self: start;
}

.tonight-head h2 {
  grid-column: 1;
}

.tonight-head .lead {
  grid-column: 2;
  margin-top: 0;
  padding-bottom: 12px;
}

.tonight-composition {
  position: relative;
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.tonight-photo {
  min-height: 660px;
  margin-left: max(-68px, calc((var(--max) - 100vw) / 2));
  border: 1px solid var(--line);
  border-radius: 0 42px 42px 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5,3,2,0.02), rgba(5,3,2,0.88)),
    var(--panel-image) center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 44px 110px rgba(0,0,0,0.34);
}

.tonight-photo h3 {
  max-width: 620px;
  font-size: clamp(2.35rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.tonight-photo p {
  max-width: 420px;
  margin-top: 14px;
  color: rgba(255, 240, 220, 0.78);
}

.lineup-panel {
  align-self: center;
  border: 1px solid rgba(215, 160, 71, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 4%, rgba(255, 96, 56, 0.1), transparent 28%),
    rgba(12, 6, 4, 0.96);
  overflow: hidden;
  backdrop-filter: blur(18px);
  --final-transform: translateX(-38px);
  --reveal-start: translateX(-38px) translateY(24px);
  transform: var(--final-transform);
  box-shadow: 0 32px 74px rgba(0,0,0,0.34);
}

.lineup-row {
  display: grid;
  gap: 7px;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(255, 240, 220, 0.1);
  transition: background 0.18s ease, transform 0.18s ease;
}

.lineup-row:last-child {
  border-bottom: 0;
}

.lineup-row:hover {
  background: rgba(255, 240, 220, 0.055);
  transform: translateX(4px);
}

.lineup-row span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lineup-row strong {
  display: block;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.lineup-row small {
  max-width: 440px;
  color: rgba(255, 240, 220, 0.66);
  font-size: 0.92rem;
}

.lineup-row.live {
  background:
    radial-gradient(circle at 92% 20%, rgba(255,96,56,0.18), transparent 34%),
    rgba(255, 240, 220, 0.055);
}

.transition-copy {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 0;
}

.transition-copy p {
  max-width: 960px;
  color: rgba(255, 240, 220, 0.88);
  font-size: clamp(1.55rem, 3.7vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

h2 {
  max-width: 870px;
  font-size: clamp(2.55rem, 5.5vw, 6rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.grid-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.panel,
.bottle-card,
.visit-card,
.role-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  overflow: hidden;
}

.panel {
  padding: clamp(26px, 4vw, 48px);
}

.image-panel {
  min-height: 520px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(5,3,2,0.08), rgba(5,3,2,0.88)),
    var(--panel-image) center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: clamp(26px, 4vw, 48px);
}

.image-stage {
  --panel-image: url("hq-assets/hq-current-02.jpg");
}

.image-drinks {
  --panel-image: url("hq-assets/drinks-hero.jpg");
}

.image-venue {
  --panel-image: url("hq-assets/venue-bar.jpg");
}

.image-panel h3 {
  max-width: 600px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.99;
  letter-spacing: -0.058em;
}

.image-panel p,
.panel p,
.bottle-card p,
.visit-card p,
.role-card p {
  margin-top: 12px;
  color: rgba(255, 240, 220, 0.72);
}

.bottle-card {
  min-height: 310px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 88% 12%, rgba(215,160,71,0.12), transparent 34%),
    rgba(255, 240, 220, 0.055);
}

.bottle-card,
.menu-row {
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.bottle-card:hover,
.bottle-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(215, 160, 71, 0.36);
  background:
    radial-gradient(circle at 88% 12%, rgba(215,160,71,0.16), transparent 34%),
    rgba(255, 240, 220, 0.075);
}

.bottle-image {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.bottle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bottle-card h3,
.visit-card h3,
.role-card h3,
.panel h3 {
  margin-top: 18px;
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.052em;
}

.price {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 950;
}

.menu-list {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 18px 20px;
  border: 1px solid rgba(255, 240, 220, 0.1);
  border-radius: 20px;
  background: rgba(5, 3, 2, 0.28);
}

.menu-row:hover {
  transform: translateX(4px);
  border-color: rgba(215, 160, 71, 0.28);
  background: rgba(255, 240, 220, 0.055);
}

.menu-row strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.menu-row small {
  color: var(--muted);
}

.menu-row span {
  color: var(--gold);
  font-weight: 900;
}

.form-card {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
  border: 1px solid rgba(215, 160, 71, 0.26);
  background:
    radial-gradient(circle at 16% 0%, rgba(215,160,71,0.14), transparent 30%),
    rgba(12, 6, 4, 0.94);
  box-shadow: 0 34px 74px rgba(0,0,0,0.34);
}

.form-card h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
}

.fields {
  display: grid;
  gap: 13px;
  margin-top: 26px;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 240, 220, 0.9);
  font-size: 0.88rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 240, 220, 0.17);
  background: rgba(255, 240, 220, 0.08);
  color: var(--cream);
  padding: 12px 14px;
  outline: none;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 240, 220, 0.46);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(215, 160, 71, 0.78);
  box-shadow: 0 0 0 4px rgba(215, 160, 71, 0.14);
}

select option {
  background: var(--cream);
  color: var(--ink);
}

.small-note {
  color: rgba(255, 240, 220, 0.56);
  font-size: 0.78rem;
}

.visit-card,
.role-card {
  min-height: 310px;
  padding: clamp(26px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-frame {
  min-height: 420px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(5,3,2,0.1), rgba(5,3,2,0.8)),
    url("hq-assets/venue-bar.jpg") center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: clamp(26px, 4vw, 46px);
}

.final {
  position: relative;
  min-height: 430px;
  border-radius: 42px;
  border: 1px solid rgba(215, 160, 71, 0.22);
  padding: clamp(32px, 6vw, 70px);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 55%, rgba(215,160,71,0.32), transparent 26%),
    url("hq-assets/hq-current-64.png") right bottom / 42% auto no-repeat,
    rgba(255, 240, 220, 0.065);
}

.vip-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.vip-feature-photo {
  min-height: 540px;
  border-radius: 42px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5,3,2,0.05), rgba(5,3,2,0.9)),
    url("hq-assets/hq-nightclub-hero.png") 42% center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 5vw, 56px);
  --final-transform: translateX(-20px);
  --reveal-start: translateX(-20px) translateY(24px) scale(0.985);
  transform: var(--final-transform);
  box-shadow: 0 44px 110px rgba(0,0,0,0.38);
}

.vip-feature-photo h2 {
  max-width: 720px;
}

.vip-feature-panel {
  border: 1px solid rgba(215, 160, 71, 0.24);
  border-radius: 42px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255,96,56,0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 240, 220, 0.08), rgba(255, 240, 220, 0.035)),
    rgba(12, 6, 4, 0.96);
  padding: clamp(26px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  --final-transform: translateY(46px);
  --reveal-start: translateY(70px);
  transform: var(--final-transform);
  box-shadow: 0 34px 90px rgba(0,0,0,0.32);
}

.vip-feature-panel h3 {
  margin-top: 0;
  max-width: 440px;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.058em;
}

.vip-list {
  display: grid;
  gap: 12px;
}

.vip-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 240, 220, 0.1);
  border-radius: 20px;
  background: rgba(5, 3, 2, 0.26);
}

.vip-list strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #fff8f1;
  background: linear-gradient(135deg, var(--ember), #ff8759);
  font-size: 0.9rem;
}

.vip-list span {
  color: rgba(255, 240, 220, 0.78);
}

footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 112px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.vga-credit {
  color: var(--gold);
}

.mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 75;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 240, 220, 0.17);
  background: rgba(5, 3, 2, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.45);
}

.mobile-bar .btn {
  min-height: 48px;
  padding: 0 12px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy .kicker,
  .hero-copy h1,
  .hero-copy p,
  .hero-actions,
  .hero-media,
  .quick-strip,
  .bottle-card,
  .form-card,
  .visit-card,
  .role-card,
  .map-frame,
  .final {
    animation: rise 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-copy h1 {
    animation-delay: 0.08s;
  }

  .hero-copy p {
    animation-delay: 0.16s;
  }

  .hero-actions {
    animation-delay: 0.24s;
  }

  .hero-media {
    animation-delay: 0.14s;
  }

  .live-badge {
    animation: badge-in 0.68s 0.36s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .live-badge span {
    animation: live-pulse 2.4s ease-in-out infinite;
  }

  .hero-media::before,
  .tonight-photo,
  .vip-feature-photo {
    animation-name: slow-crop;
    animation-duration: 18s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }

  .signal-marquee div {
    animation: marquee 28s linear infinite;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: var(--reveal-start, translateY(18px));
    transition:
      transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.72s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
  }

  .reveal-ready [data-reveal="type"] {
    filter: blur(0.01px);
  }

  .reveal-ready [data-reveal].is-visible {
    transform: var(--final-transform, none);
    filter: none;
  }

  @keyframes rise {
    from {
      opacity: 0.01;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes badge-in {
    from {
      opacity: 0.01;
      transform: translateY(-10px) scale(0.96);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes live-pulse {
    0%, 100% {
      box-shadow: 0 0 0 5px rgba(255, 96, 56, 0.12);
    }
    50% {
      box-shadow: 0 0 0 9px rgba(255, 96, 56, 0.04);
    }
  }

  @keyframes slow-crop {
    from {
      background-position: 44% 50%;
    }
    to {
      background-position: 56% 50%;
    }
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - 34px));
    }
  }
}

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

  [data-reveal] {
    opacity: 1 !important;
    transform: var(--final-transform, none) !important;
    clip-path: none !important;
  }
}

@media (max-width: 1100px) {
  .navlinks {
    display: none;
  }

  .hamburger-label {
    display: inline-flex;
  }

  .page-hero,
  .grid-two,
  .vip-feature,
  .tonight-head,
  .tonight-composition {
    grid-template-columns: 1fr;
  }

  .tonight-head h2,
  .tonight-head .lead {
    grid-column: auto;
  }

  .tonight-head .lead {
    margin-top: 18px;
    padding-bottom: 0;
  }

  .tonight-photo {
    margin-left: 0;
    border-radius: 34px;
  }

  .lineup-panel {
    --final-transform: none;
    --reveal-start: translateY(18px);
    transform: var(--final-transform);
  }

  .vip-feature-photo,
  .vip-feature-panel {
    --final-transform: none;
    --reveal-start: translateY(18px);
    transform: var(--final-transform);
  }

  .quick-strip,
  .grid-menu {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-strip > * {
    border-bottom: 1px solid var(--line);
  }

  .quick-strip > *:nth-child(2n) {
    border-right: 0;
  }

  .quick-strip > *:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .topbar {
    height: 66px;
    top: 34px;
  }

  .vga-preview-bar {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.58rem;
  }

  .vga-preview-bar span:nth-child(2) {
    display: none;
  }

  .nav,
  .page-hero,
  .quick-strip,
  .section,
  footer {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-logo {
    width: 55px;
    height: 40px;
  }

  .brand-copy span,
  .nav-actions {
    display: none;
  }

  .mobile-drawer {
    top: 100px;
  }

  .brand-copy strong {
    font-size: 0.78rem;
  }

  .nav-actions .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .page-hero {
    min-height: auto;
    padding: 42px 0 76px;
  }

  h1 {
    font-size: clamp(3.25rem, 15.4vw, 5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .hero-actions,
  .actions-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 520px;
    border-radius: 30px;
  }

  .live-badge {
    top: 14px;
    left: 14px;
    right: 14px;
    justify-content: center;
  }

  .hero-card,
  .hero-card.two {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 24px;
  }

  .hero-stat {
    padding: 18px;
  }

  .quick-strip,
  .grid-menu {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: -34px;
    border-radius: 24px;
  }

  .signal-marquee {
    margin-top: 70px;
  }

  .signal-marquee div {
    gap: 22px;
  }

  .signal-marquee span {
    font-size: 0.76rem;
  }

  .quick-strip > * {
    min-height: auto;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip > *:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .tonight-section {
    padding-top: 54px;
  }

  .tonight-photo {
    min-height: 500px;
  }

  .lineup-row {
    padding: 20px;
  }

  .transition-copy {
    width: min(100% - 24px, var(--max));
    padding-top: 0;
  }

  .panel,
  .bottle-card,
  .visit-card,
  .role-card,
  .form-card,
  .map-frame,
  .final,
  .vip-feature-photo,
  .vip-feature-panel {
    border-radius: 24px;
    padding: 24px;
  }

  .vip-feature-photo {
    min-height: 440px;
  }

  .image-panel {
    min-height: 460px;
    border-radius: 24px;
    padding: 24px;
  }

  .bottle-card {
    min-height: 260px;
  }

  footer {
    flex-direction: column;
    padding-bottom: 120px;
  }

  .mobile-bar {
    display: grid;
  }
}
