:root {
  color-scheme: dark;
  --black: #020203;
  --ink: #f8f3ea;
  --soft: #c8bfb5;
  --line: rgba(248, 243, 234, .22);
  --gold: #e6c068;
  --red: #d7193f;
  --max: 1180px;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--ink);
  font-family: "Aptos Narrow", "Bahnschrift", "DIN Condensed", "Trebuchet MS", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  background: var(--ink);
  color: #050505;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 3.4rem);
  color: rgba(248, 243, 234, .9);
  background: linear-gradient(180deg, rgba(0,0,0,.72), transparent);
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 900;
}

.home-link { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: clamp(.9rem, 2.4vw, 2.2rem); }
.nav-links a { color: rgba(248, 243, 234, .76); transition: color .45s var(--ease); }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--gold); }

.club-hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: 8rem 1rem 5rem;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -8;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.12) brightness(.42);
}

.hero-shade {
  z-index: -7;
  background:
    radial-gradient(circle at 50% 35%, rgba(230,192,104,.16), transparent 18rem),
    linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.24) 42%, rgba(0,0,0,.86)),
    linear-gradient(90deg, rgba(0,0,0,.82), transparent 42%, rgba(0,0,0,.82));
}

.hero-glass {
  position: absolute;
  z-index: -5;
  width: clamp(12rem, 23vw, 22rem);
  height: clamp(18rem, 38vw, 36rem);
  object-fit: cover;
  opacity: .28;
  filter: grayscale(.1) contrast(1.2) brightness(.86);
}

.hero-glass-one { left: clamp(-3rem, 6vw, 7rem); top: 18%; transform: rotate(-7deg); }
.hero-glass-two { right: clamp(-4rem, 5vw, 6rem); bottom: 12%; transform: rotate(6deg); }

.hero-logo-mark {
  position: absolute;
  z-index: -4;
  width: clamp(25rem, 58vw, 58rem);
  opacity: .24;
  filter: drop-shadow(0 0 58px rgba(230, 192, 104, .24));
}

.hero-logo-front {
  width: clamp(9rem, 17vw, 15rem);
  margin: 0 auto 2.2rem;
  filter: drop-shadow(0 0 26px rgba(230, 192, 104, .2));
}

.hero-copy-block {
  width: min(980px, 100%);
  text-align: center;
  transform: translateY(1.2rem);
}

.hero-copy-block h1,
.hero-copy-block h2,
.event-copy h2,
.event-copy h3,
.other-dates h2,
.inquiry-copy h2 {
  margin: 0;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-copy-block h1 {
  font-size: clamp(2.35rem, 7vw, 6.4rem);
  color: var(--ink);
}

.hero-copy-block h2 {
  margin-top: .72rem;
  font-size: clamp(2.1rem, 6.4vw, 5.9rem);
  color: var(--ink);
}

.hero-actions,
.event-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .88rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(0,0,0,.48);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: color .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}

.button:hover,
.button:focus-visible { border-color: var(--gold); color: var(--gold); }
.button:active { transform: translateY(1px); }
.button-primary { background: rgba(215,25,63,.92); border-color: rgba(215,25,63,.92); color: #fff; }
.button-primary:hover, .button-primary:focus-visible { background: var(--red); border-color: var(--gold); color: #fff; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.event-feature {
  position: relative;
  min-height: 96dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 9rem) 1rem;
  text-align: center;
  background: #050505;
}

.event-shadow {
  position: absolute;
  z-index: 0;
  width: clamp(24rem, 55vw, 56rem);
  opacity: .08;
  transform: rotate(8deg);
}

.event-media {
  position: absolute;
  inset: 8% auto auto 7%;
  z-index: 0;
  width: clamp(9rem, 17vw, 16rem);
  height: clamp(17rem, 30vw, 29rem);
  opacity: .28;
  overflow: hidden;
}

.event-media img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.14) brightness(.8); }

.event-copy {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
}

.event-copy h2 {
  font-size: clamp(2.1rem, 6.2vw, 5.6rem);
}

.event-copy h3 {
  margin-top: 1.8rem;
  font-size: clamp(1.65rem, 4vw, 3.4rem);
  color: var(--gold);
}

.event-copy p {
  max-width: 46rem;
  margin: .8rem auto 0;
  color: var(--soft);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.4;
}

.other-dates {
  min-height: 42dvh;
  display: grid;
  place-items: center;
  gap: 1.4rem;
  padding: 5rem 1rem;
  text-align: center;
  background: #030303;
  border-top: 1px solid rgba(248,243,234,.12);
  border-bottom: 1px solid rgba(248,243,234,.12);
}

.other-dates h2 {
  max-width: 820px;
  font-size: clamp(1.65rem, 4vw, 3.6rem);
}

.event-actions.compact { margin-top: 0; }

.inquiry {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 0;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.inquiry-copy h2 { font-size: clamp(2.5rem, 7vw, 5.8rem); }
.inquiry-copy p { max-width: 34rem; color: var(--soft); line-height: 1.55; font-size: 1.1rem; }

.vip-form {
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(248,243,234,.16);
  background: rgba(8,8,10,.92);
}

.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
label { display: grid; gap: .48rem; color: rgba(248,243,234,.88); font-size: .76rem; font-weight: 950; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(248,243,234,.18);
  border-radius: 0;
  background: #030304;
  color: var(--ink);
  padding: .9rem .95rem;
  outline: none;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
textarea { resize: vertical; margin-top: 1rem; line-height: 1.45; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: #08080a; }
::placeholder { color: #a79e94; opacity: 1; }
.form-submit { width: 100%; margin-top: 1rem; cursor: pointer; }
.form-note { margin: 1rem 0 0; color: var(--soft); line-height: 1.5; }

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.2rem 0 3.2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(248,243,234,.14);
  color: var(--soft);
}
.site-footer strong { color: var(--ink); text-transform: uppercase; }
.site-footer p { margin: .5rem 0 0; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem; font-weight: 900; text-transform: uppercase; font-size: .76rem; }
.site-footer a:hover { color: var(--gold); }

.legal-page { min-height: 100dvh; display: grid; place-items: center; padding: 2rem; }
.legal-panel { width: min(760px, 100%); border: 1px solid var(--line); background: #08080a; padding: clamp(1.4rem, 4vw, 3rem); }
.legal-panel h1 { margin: 0 0 1rem; font-size: clamp(2.4rem, 8vw, 5rem); line-height: .9; text-transform: uppercase; letter-spacing: -.04em; }
.legal-panel p { color: var(--soft); line-height: 1.6; }
.legal-panel a { color: var(--gold); font-weight: 900; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  .site-header { height: auto; min-height: 70px; align-items: flex-start; }
  .nav-links { flex-wrap: wrap; justify-content: flex-end; max-width: 16rem; gap: .55rem .9rem; font-size: .66rem; }
  .club-hero { padding-top: 8rem; }
  .hero-glass { opacity: .18; }
  .hero-glass-one { left: -5rem; }
  .hero-glass-two { right: -6rem; }
  .hero-logo-mark { width: 34rem; opacity: .18; }
  .hero-logo-front { width: 9rem; margin-bottom: 1.4rem; }
  .hero-copy-block h1 { font-size: clamp(2.2rem, 12vw, 4.5rem); }
  .hero-copy-block h2 { font-size: clamp(2rem, 11vw, 4rem); }
  .event-feature { min-height: 84dvh; }
  .event-media { opacity: .18; left: -3rem; }
  .inquiry { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 470px) {
  .home-link { display: none; }
  .site-header { justify-content: center; }
  .nav-links { justify-content: center; }
  .hero-actions, .event-actions { width: min(100%, 320px); margin-left: auto; margin-right: auto; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
  .hero-video { display: none; }
  .club-hero { background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.88)), url("../images/hero-poster.jpg") center / cover no-repeat; }
  .reveal { opacity: 1; transform: none; }
}

.event-preview {
  position: relative;
  padding: clamp(5.5rem, 10vw, 8rem) clamp(1rem, 4vw, 3.4rem);
  background: #030304;
  border-top: 1px solid rgba(248,243,234,.12);
}

.preview-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 2.4rem;
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: clamp(1rem, 4vw, 4rem);
  align-items: end;
}

.preview-heading span,
.table-copy > span {
  color: var(--gold);
  font-size: .74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.preview-heading h2,
.table-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5.8vw, 5.1rem);
  line-height: .9;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.preview-list {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  border-top: 1px solid rgba(248,243,234,.18);
}

.preview-list article {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(248,243,234,.18);
}

.preview-list img {
  width: 128px;
  height: 88px;
  object-fit: cover;
  filter: contrast(1.12) brightness(.88) saturate(1.08);
}

.preview-list p {
  margin: 0 0 .28rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.preview-list h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3.2vw, 3rem);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.preview-list span {
  display: block;
  margin-top: .38rem;
  color: var(--soft);
}

.preview-list a {
  min-width: 108px;
  padding: .82rem 1rem;
  border: 1px solid rgba(248,243,234,.2);
  color: var(--ink);
  text-align: center;
  font-size: .74rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: border-color .35s var(--ease), color .35s var(--ease);
}

.preview-list a:hover,
.preview-list a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.table-map {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 8.5rem) 0;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.table-copy p {
  max-width: 34rem;
  color: var(--soft);
  line-height: 1.52;
  font-size: 1.06rem;
}

.table-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
  margin-top: 1.6rem;
}

.table-legend b {
  padding: .7rem .8rem;
  border: 1px solid rgba(248,243,234,.16);
  color: var(--ink);
  font-size: .74rem;
  text-transform: uppercase;
}

.floor-plan {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(248,243,234,.22);
  background:
    linear-gradient(rgba(248,243,234,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248,243,234,.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 54%, rgba(215,25,63,.2), transparent 12rem),
    #050506;
  background-size: 42px 42px, 42px 42px, auto, auto;
  overflow: hidden;
}

.floor-plan::before,
.floor-plan::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.floor-plan::before {
  inset: 7%;
  border: 1px solid rgba(230,192,104,.24);
}

.floor-plan::after {
  left: 50%;
  top: 16%;
  width: 1px;
  height: 68%;
  background: linear-gradient(transparent, rgba(230,192,104,.45), transparent);
}

.floor-label {
  position: absolute;
  z-index: 2;
  padding: .5rem .65rem;
  border: 1px solid rgba(248,243,234,.18);
  background: rgba(0,0,0,.54);
  color: var(--soft);
  font-size: .68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.floor-label.entrance { left: 7%; bottom: 6%; }
.floor-label.dj { right: 7%; top: 6%; color: var(--gold); }

.zone-floor {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 1;
  width: min(45%, 290px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(215,25,63,.52);
  background: rgba(215,25,63,.09);
  color: rgba(248,243,234,.68);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.table-node {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: .2rem;
  min-width: 108px;
  min-height: 70px;
  padding: .7rem;
  border: 1px solid rgba(248,243,234,.24);
  border-radius: 0;
  background: rgba(4,4,5,.86);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}

.table-node span {
  color: var(--gold);
  font-size: .72rem;
}

.table-node:hover,
.table-node:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(16,12,8,.95);
}

.table-node.booth { border-color: rgba(215,25,63,.54); }
.table-node.lounge { border-color: rgba(230,192,104,.42); }
.table-node.bar { border-color: rgba(248,243,234,.24); }
.b1 { left: 9%; top: 18%; }
.b2 { right: 9%; top: 22%; }
.l1 { left: 12%; bottom: 23%; }
.l2 { right: 12%; bottom: 20%; }
.t1 { left: 38%; top: 9%; }
.t2 { left: 42%; bottom: 9%; }

@media (max-width: 820px) {
  .preview-heading,
  .table-map {
    grid-template-columns: 1fr;
  }

  .preview-list article {
    grid-template-columns: 88px 1fr;
  }

  .preview-list img {
    width: 88px;
    height: 88px;
  }

  .preview-list a {
    grid-column: 1 / -1;
  }

  .floor-plan {
    min-height: 560px;
  }

  .table-node {
    min-width: 92px;
    min-height: 62px;
    font-size: .68rem;
  }

  .b1 { left: 5%; top: 18%; }
  .b2 { right: 5%; top: 22%; }
  .l1 { left: 6%; bottom: 23%; }
  .l2 { right: 6%; bottom: 20%; }
  .t1 { left: 34%; top: 9%; }
  .t2 { left: 35%; bottom: 9%; }
}
