:root {
  color-scheme: dark;
  --void: #030303;
  --night: #080808;
  --graphite: #101011;
  --steel: #18181a;
  --ink: #f4efe7;
  --soft: #d8cfc1;
  --muted: #9d9588;
  --line: rgba(244, 239, 231, 0.13);
  --line-strong: rgba(217, 189, 120, 0.34);
  --champagne: #d9bd78;
  --champagne-2: #f0ddb1;
  --copper: #9d5732;
  --smoke: #6f7770;
  --oxblood: #2a1012;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 8%, rgba(217, 189, 120, 0.12), transparent 32rem),
    radial-gradient(circle at 48% -8%, rgba(157, 87, 50, 0.12), transparent 28rem),
    radial-gradient(circle at 12% 78%, rgba(111, 119, 112, 0.12), transparent 34rem),
    linear-gradient(180deg, #030303 0%, #080808 46%, #030303 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(217, 189, 120, 0.045), transparent 18rem),
    radial-gradient(circle at 82% 62%, rgba(97, 13, 18, 0.08), transparent 28rem),
    linear-gradient(104deg, transparent 0 42%, rgba(244, 239, 231, 0.035) 42.4%, transparent 43%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 5px);
  opacity: 0.5;
  mix-blend-mode: screen;
}

body::after {
  background:
    linear-gradient(24deg, rgba(217, 189, 120, 0.04) 0 1px, transparent 1px 18%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.04) 46%, transparent 47%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 18rem),
    repeating-radial-gradient(circle at 50% 50%, rgba(244, 239, 231, 0.018) 0 1px, transparent 1px 4px);
  opacity: 0.45;
}

a {
  color: inherit;
}

section,
header {
  scroll-margin-top: 86px;
}

main {
  position: relative;
  isolation: isolate;
}

main::before {
  position: fixed;
  inset: 72px 0 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(217, 189, 120, 0.05), transparent 17%, transparent 83%, rgba(217, 189, 120, 0.04)),
    repeating-linear-gradient(112deg, transparent 0 72px, rgba(244, 239, 231, 0.022) 72px 73px);
  opacity: 0.58;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 13px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(217, 189, 120, 0.055), transparent 26%, transparent 78%, rgba(157, 87, 50, 0.06)),
    rgba(3, 3, 3, 0.82);
  border-bottom: 1px solid rgba(244, 239, 231, 0.1);
  backdrop-filter: blur(18px) saturate(120%);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 108px;
  height: 32px;
  filter: drop-shadow(0 8px 18px rgba(217, 189, 120, 0.22));
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.main-nav a {
  min-height: 40px;
  padding: 12px 10px;
  color: rgba(244, 239, 231, 0.68);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.main-nav a:hover {
  color: var(--ink);
  background: rgba(217, 189, 120, 0.08);
  border-color: var(--champagne);
}

.night-rail {
  position: fixed;
  top: 120px;
  bottom: 34px;
  left: 16px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 28px;
  pointer-events: none;
  writing-mode: vertical-rl;
}

.night-rail span {
  color: rgba(240, 221, 177, 0.44);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.night-rail::before {
  position: absolute;
  top: 82px;
  bottom: 82px;
  left: 50%;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(217, 189, 120, 0.4), transparent);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  isolation: isolate;
  background: var(--void);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, #030303 0%, rgba(3, 3, 3, 0.98) 38%, rgba(3, 3, 3, 0.7) 68%, #030303 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0) 52%, #030303 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 68% 28%, rgba(217, 189, 120, 0.2), transparent 18rem),
    radial-gradient(circle at 90% 75%, rgba(97, 13, 18, 0.18), transparent 26rem),
    linear-gradient(110deg, transparent 0%, rgba(244, 239, 231, 0.05) 54%, transparent 55%);
  mix-blend-mode: screen;
}

.hero-media {
  position: absolute;
  inset: -4% -2%;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.88), rgba(3, 3, 3, 0.55), rgba(3, 3, 3, 0.86)),
    url("/images/neo-hero.jpg") right center / cover;
  filter: saturate(0.42) contrast(1.18) brightness(0.52);
  opacity: 0.58;
  transform: scale(1.04);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(210px, 280px);
  column-gap: clamp(28px, 6vw, 90px);
  row-gap: 16px;
  align-content: end;
  align-items: end;
  width: min(100%, 1240px);
  min-height: calc(100svh - 72px);
  padding: clamp(62px, 8vw, 112px) clamp(22px, 6vw, 86px) clamp(38px, 6vw, 74px);
}

.hero-content::before {
  position: absolute;
  top: 12%;
  right: clamp(20px, 5vw, 74px);
  width: min(38vw, 520px);
  height: 62%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(104deg, transparent 0 46%, rgba(240, 221, 177, 0.16) 47%, transparent 50%),
    radial-gradient(circle at 52% 10%, rgba(217, 189, 120, 0.18), transparent 14rem);
  filter: blur(0.2px);
  opacity: 0.58;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  grid-column: 1;
  margin-bottom: 8px;
}

.hero-logo {
  display: block;
  width: min(28vw, 210px);
  max-width: 100%;
  height: auto;
  margin: 0 0 22px -4px;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.7));
}

.hero-line {
  display: block;
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(3.65rem, 6.1vw, 6rem);
  font-weight: 900;
  line-height: 0.88;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 900;
  line-height: 0.92;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.13;
}

.hero-subtitle {
  grid-column: 1;
  max-width: 610px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  font-weight: 700;
  line-height: 1.5;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.hero-actions {
  grid-column: 1;
}

.hero-talent {
  grid-column: 1;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 10px;
  min-height: 42px;
  margin-top: 0;
  padding: 8px 12px;
  color: rgba(244, 239, 231, 0.78);
  background:
    linear-gradient(90deg, rgba(217, 189, 120, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(3, 3, 3, 0.34);
  border: 1px solid rgba(217, 189, 120, 0.22);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-talent span {
  color: var(--soft);
}

.hero-talent a {
  color: var(--champagne-2);
  font-weight: 950;
  text-decoration: none;
}

.hero-talent a:hover {
  color: var(--ink);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.btn::after {
  position: absolute;
  inset: -40% auto -40% -36%;
  z-index: -1;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-18deg);
  transition: left 260ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 239, 231, 0.32);
}

.btn:hover::after {
  left: 102%;
}

.btn-primary {
  color: #080806;
  background: linear-gradient(135deg, var(--champagne-2) 0%, var(--champagne) 100%);
  border-color: rgba(255, 237, 183, 0.4);
  box-shadow: 0 18px 40px rgba(217, 189, 120, 0.13);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(244, 239, 231, 0.075);
  border-color: rgba(244, 239, 231, 0.2);
}

.btn-outline {
  color: var(--ink);
  background: rgba(3, 3, 3, 0.34);
  border-color: var(--line-strong);
}

.hero-collage {
  position: relative;
  grid-row: 1 / span 4;
  grid-column: 2;
  align-self: end;
  justify-self: end;
  width: min(100%, 320px);
  min-height: 430px;
  margin-bottom: 8px;
  isolation: isolate;
}

.hero-collage::before {
  position: absolute;
  inset: 12% -18% 4% -8%;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 62% 18%, rgba(217, 189, 120, 0.2), transparent 12rem),
    linear-gradient(135deg, rgba(244, 239, 231, 0.1), transparent 34%);
  filter: blur(12px);
  opacity: 0.72;
}

.torn-photo {
  position: absolute;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.04), rgba(3, 3, 3, 0.62)),
    url("/images/neo-hero.jpg") center / cover;
  border: 1px solid rgba(217, 189, 120, 0.24);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.56),
    inset 0 0 0 1px rgba(255, 255, 255, 0.055);
}

.torn-photo::before,
.torn-photo::after,
.torn-image::before,
.torn-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.torn-photo::before,
.torn-image::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(244, 239, 231, 0.14), transparent 14rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 7px),
    linear-gradient(135deg, transparent, rgba(217, 189, 120, 0.16));
  mix-blend-mode: screen;
  opacity: 0.58;
}

.torn-photo::after,
.torn-image::after {
  background:
    linear-gradient(90deg, rgba(244, 239, 231, 0.2), transparent 12%, transparent 88%, rgba(244, 239, 231, 0.15)),
    linear-gradient(180deg, rgba(244, 239, 231, 0.18), transparent 18%, transparent 84%, rgba(244, 239, 231, 0.1));
  opacity: 0.35;
}

.torn-photo-main {
  inset: 34px 0 24px 18px;
  background-position: 66% 46%;
  clip-path: polygon(0 8%, 7% 0, 16% 4%, 27% 1%, 38% 6%, 49% 2%, 60% 5%, 73% 1%, 87% 6%, 100% 0, 96% 100%, 84% 94%, 73% 98%, 61% 93%, 49% 99%, 36% 94%, 24% 100%, 11% 95%, 0 100%);
  filter: saturate(0.72) contrast(1.22) brightness(0.82);
  transform: rotate(-2.6deg);
}

.torn-photo-slice {
  top: 0;
  right: -8px;
  width: 47%;
  height: 55%;
  background-position: 38% 42%;
  clip-path: polygon(6% 0, 100% 8%, 92% 100%, 0 88%);
  filter: saturate(0.62) contrast(1.28) brightness(0.76);
  opacity: 0.92;
  transform: rotate(4deg);
}

.torn-mark {
  position: absolute;
  right: 6%;
  bottom: 11%;
  display: block;
  width: 72%;
  height: 34px;
  background:
    linear-gradient(90deg, transparent, rgba(240, 221, 177, 0.72), transparent),
    repeating-linear-gradient(90deg, rgba(244, 239, 231, 0.2) 0 1px, transparent 1px 8px);
  border: 1px solid rgba(240, 221, 177, 0.24);
  clip-path: polygon(0 22%, 8% 0, 20% 18%, 32% 0, 45% 20%, 58% 4%, 72% 22%, 84% 2%, 100% 18%, 94% 100%, 82% 74%, 68% 100%, 54% 78%, 39% 100%, 24% 76%, 10% 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
  opacity: 0.48;
  transform: rotate(-8deg);
}

.collage-caption {
  position: absolute;
  right: 7%;
  bottom: 21%;
  z-index: 4;
  display: grid;
  gap: 5px;
  width: min(78%, 220px);
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(217, 189, 120, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(3, 3, 3, 0.76);
  border: 1px solid rgba(240, 221, 177, 0.26);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  transform: rotate(2.5deg);
}

.collage-caption span {
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.collage-caption strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.02;
}

.hero-signals {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
  padding-left: 0;
  border-left: 0;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: rgba(244, 239, 231, 0.82);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-signals span:first-child {
  color: var(--champagne);
}

.rip-divider {
  position: relative;
  z-index: 5;
  height: 36px;
  margin-top: -20px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(217, 189, 120, 0.34) 42%, rgba(244, 239, 231, 0.16) 50%, rgba(217, 189, 120, 0.26) 58%, transparent 100%),
    linear-gradient(180deg, rgba(244, 239, 231, 0.08), rgba(3, 3, 3, 0));
  clip-path: polygon(0 36%, 5% 58%, 11% 38%, 18% 64%, 26% 42%, 35% 66%, 43% 35%, 52% 60%, 61% 40%, 72% 66%, 82% 36%, 92% 58%, 100% 40%, 100% 100%, 0 100%);
  pointer-events: none;
}

.pulse-marquee {
  display: flex;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  padding: 10px clamp(18px, 5vw, 74px) 0;
  color: rgba(240, 221, 177, 0.82);
  background: #030303;
  font-size: clamp(0.9rem, 1.8vw, 1.45rem);
  font-weight: 950;
  white-space: nowrap;
  animation: marqueeDrift 24s linear infinite;
}

.pulse-marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  background:
    linear-gradient(90deg, rgba(217, 189, 120, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(217, 189, 120, 0.18);
  border-radius: 8px;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 74px);
  border-top: 1px solid rgba(244, 239, 231, 0.08);
}

.section > * {
  position: relative;
  z-index: 1;
}

.section::before {
  position: absolute;
  top: 0;
  right: clamp(18px, 5vw, 74px);
  left: clamp(18px, 5vw, 74px);
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 189, 120, 0.48), transparent);
}

.section::after {
  position: absolute;
  right: -8%;
  bottom: -16%;
  width: min(38vw, 520px);
  height: min(32vw, 420px);
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 189, 120, 0.1), transparent 62%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 8px);
  filter: blur(1px);
  opacity: 0.42;
}

.section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-head h2 {
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.62);
}

.section-head::after {
  display: block;
  width: min(220px, 56vw);
  height: 1px;
  margin-top: 22px;
  content: "";
  background: linear-gradient(90deg, rgba(240, 221, 177, 0.76), transparent);
}

.section-head p:not(.eyebrow),
.split-copy p,
.reservation-copy p:not(.eyebrow),
.talent-copy p:not(.eyebrow),
.contact-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.week-section,
.rooms-section,
.events-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(217, 189, 120, 0.12), transparent 26rem),
    radial-gradient(circle at 16% 82%, rgba(97, 13, 18, 0.1), transparent 28rem),
    linear-gradient(180deg, rgba(3, 3, 3, 0.98), rgba(12, 12, 13, 0.96));
}

.week-grid,
.feature-grid,
.event-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.week-card,
.feature-card,
.contact-card,
.form-panel,
.event-strip article,
.vip-cta,
.experience-panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(16, 16, 17, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.week-card::before,
.feature-card::before,
.event-strip article::before,
.vip-cta::before,
.experience-panel::before {
  position: absolute;
  top: 0;
  right: 16px;
  left: 16px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 189, 120, 0.55), transparent);
}

.week-card,
.feature-card,
.event-strip article {
  overflow: hidden;
  min-height: 230px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.week-card::after,
.feature-card::after,
.event-strip article::after,
.vip-cta::after,
.experience-panel::after,
.form-panel::after,
.contact-card::after {
  position: absolute;
  right: -34%;
  bottom: -44%;
  width: 72%;
  height: 76%;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 189, 120, 0.12), transparent 62%),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.week-card:hover::after,
.feature-card:hover::after,
.event-strip article:hover::after,
.vip-cta:hover::after,
.experience-panel:hover::after,
.form-panel:hover::after,
.contact-card:hover::after {
  opacity: 1;
  transform: translate(-4%, -4%);
}

.week-card:hover,
.feature-card:hover,
.event-strip article:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 221, 177, 0.28);
  background:
    linear-gradient(180deg, rgba(217, 189, 120, 0.075), rgba(255, 255, 255, 0.024)),
    rgba(18, 18, 19, 0.88);
}

.week-card.is-featured {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(217, 189, 120, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(18, 18, 19, 0.82);
}

.card-label {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.week-card p,
.feature-card p,
.event-strip p,
.experience-panel p,
.vip-cta p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.64;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--champagne-2);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--ink);
}

.torn-gallery {
  display: grid;
  grid-template-columns: 1.16fr 0.9fr 0.78fr;
  gap: 14px;
  margin-top: clamp(34px, 5vw, 66px);
}

.torn-card {
  position: relative;
  min-height: 318px;
  margin: 0;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(217, 189, 120, 0.2);
  border-radius: 8px;
  clip-path: polygon(0 5%, 7% 0, 18% 4%, 28% 0, 41% 5%, 56% 1%, 69% 5%, 82% 0, 100% 4%, 97% 100%, 85% 96%, 74% 100%, 62% 95%, 48% 100%, 35% 96%, 22% 100%, 10% 96%, 0 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  transition: transform 200ms ease, border-color 200ms ease, filter 200ms ease;
}

.torn-card:hover {
  border-color: rgba(240, 221, 177, 0.36);
  filter: brightness(1.07);
  transform: translateY(-4px) rotate(-0.4deg);
}

.torn-card-wide {
  min-height: 360px;
}

.torn-card-slim {
  min-height: 286px;
}

.torn-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 0%, rgba(3, 3, 3, 0.22) 46%, rgba(3, 3, 3, 0.86) 100%),
    linear-gradient(90deg, rgba(244, 239, 231, 0.13), transparent 14%, transparent 86%, rgba(217, 189, 120, 0.11));
}

.torn-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(240, 221, 177, 0.68), transparent);
}

.torn-image {
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.08), rgba(3, 3, 3, 0.28)),
    url("/images/neo-hero.jpg") center / cover;
  filter: saturate(0.58) contrast(1.28) brightness(0.68);
  transform: scale(1.04);
}

.torn-image-club {
  background-position: 63% 50%;
}

.torn-image-room {
  background-position: 42% 38%;
}

.torn-image-vip {
  background-position: 78% 44%;
}

.torn-card figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 4;
  display: grid;
  gap: 8px;
}

.torn-card figcaption span {
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.torn-card figcaption strong {
  max-width: 18rem;
  color: var(--ink);
  font-size: clamp(1.32rem, 2.1vw, 2rem);
  line-height: 0.96;
  text-wrap: balance;
}

.week-pulse,
.split-signal,
.event-cuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(26px, 4vw, 44px);
}

.week-pulse span,
.split-signal span,
.event-cuts span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: rgba(244, 239, 231, 0.84);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 189, 120, 0.2);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 90% 24%, rgba(217, 189, 120, 0.12), transparent 24rem),
    radial-gradient(circle at 8% 84%, rgba(97, 13, 18, 0.14), transparent 26rem),
    linear-gradient(180deg, rgba(3, 3, 3, 0) 0 54%, rgba(217, 189, 120, 0.035) 54% 55%, rgba(3, 3, 3, 0) 55%),
    linear-gradient(105deg, transparent 0%, rgba(244, 239, 231, 0.05) 48%, transparent 49%),
    linear-gradient(180deg, #050505 0%, #0b0b0c 100%);
}

.split-section .split-signal {
  grid-column: 1 / -1;
  margin-top: 0;
}

.split-copy {
  max-width: 760px;
}

.split-copy .btn {
  margin-top: 14px;
}

.experience-panel {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-color: rgba(217, 189, 120, 0.22);
}

.experience-panel::after {
  opacity: 0.36;
}

.experience-panel div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.experience-panel div:last-child {
  border-bottom: 0;
}

.experience-panel span {
  grid-row: span 2;
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 900;
}

.experience-panel h3,
.experience-panel p {
  margin-bottom: 0;
}

.vip-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(217, 189, 120, 0.12), transparent 24rem),
    radial-gradient(circle at 86% 72%, rgba(97, 13, 18, 0.16), transparent 24rem),
    linear-gradient(180deg, #070707 0%, #030303 100%);
}

.vip-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vip-poster {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.1), rgba(3, 3, 3, 0.84)),
    url("/images/neo-hero.jpg") 72% 50% / cover;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 84% 94%, 72% 100%, 60% 95%, 48% 100%, 36% 94%, 22% 100%, 10% 95%, 0 100%);
}

.vip-poster::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 62% 16%, rgba(240, 221, 177, 0.28), transparent 10rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 9px);
  mix-blend-mode: screen;
  opacity: 0.42;
}

.vip-poster::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(240, 221, 177, 0.7), transparent);
}

.vip-poster span {
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vip-poster strong {
  max-width: 18rem;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  line-height: 0.95;
}

.vip-cta {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 26px;
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(217, 189, 120, 0.11), rgba(244, 239, 231, 0.02)),
    rgba(14, 14, 15, 0.92);
}

.vip-cta h3 {
  font-size: 1.45rem;
}

.reservation-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
  background:
    radial-gradient(circle at 85% 12%, rgba(217, 189, 120, 0.1), transparent 25rem),
    linear-gradient(180deg, #050505, #0e0e0f);
}

.reservation-copy {
  position: sticky;
  top: 96px;
  max-width: 720px;
}

.reservation-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.reservation-cues span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: rgba(244, 239, 231, 0.86);
  background:
    linear-gradient(90deg, rgba(217, 189, 120, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(217, 189, 120, 0.22);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rooms-nightcap {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 190px;
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(217, 189, 120, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.88), rgba(3, 3, 3, 0.42), rgba(3, 3, 3, 0.9)),
    url("/images/neo-hero.jpg") center 56% / cover;
}

.rooms-nightcap::after {
  position: absolute;
  inset: auto 0 0;
  height: 34px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(240, 221, 177, 0.34), transparent);
  clip-path: polygon(0 35%, 7% 55%, 16% 36%, 25% 62%, 36% 42%, 48% 66%, 60% 38%, 72% 62%, 84% 34%, 100% 56%, 100% 100%, 0 100%);
}

.rooms-nightcap span {
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rooms-nightcap strong {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 0.92;
}

.form-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(3, 3, 3, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--champagne) 50%) calc(100% - 18px) 20px / 7px 7px no-repeat,
    linear-gradient(135deg, var(--champagne) 50%, transparent 50%) calc(100% - 13px) 20px / 7px 7px no-repeat,
    rgba(3, 3, 3, 0.76);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(217, 189, 120, 0.18);
  border-color: rgba(217, 189, 120, 0.58);
}

input[type="file"] {
  min-height: 58px;
  padding: 9px;
  color: transparent;
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  min-height: 38px;
  margin-right: 12px;
  padding: 0 14px;
  color: #080806;
  background: linear-gradient(135deg, var(--champagne-2), var(--champagne));
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.file-hint {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-note a {
  color: var(--champagne-2);
  font-weight: 900;
}

.events-section .btn {
  margin-top: 24px;
}

.event-cuts {
  margin-top: 24px;
}

.event-poster {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 210px;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(217, 189, 120, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.48), rgba(3, 3, 3, 0.88)),
    url("/images/neo-hero.jpg") 56% 48% / cover;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 92% 100%, 82% 94%, 71% 100%, 60% 94%, 49% 100%, 37% 94%, 25% 100%, 12% 94%, 0 100%);
}

.event-poster::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 68% 18%, rgba(240, 221, 177, 0.22), transparent 12rem),
    linear-gradient(110deg, transparent 0 46%, rgba(244, 239, 231, 0.11) 47%, transparent 50%);
  mix-blend-mode: screen;
}

.event-poster span,
.event-poster strong {
  position: relative;
  z-index: 1;
}

.event-poster span {
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.event-poster strong {
  max-width: 640px;
  color: var(--ink);
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: 0.9;
}

.shows-section {
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 189, 120, 0.14), transparent 26rem),
    radial-gradient(circle at 84% 8%, rgba(97, 13, 18, 0.18), transparent 24rem),
    linear-gradient(115deg, transparent 0%, rgba(244, 239, 231, 0.055) 48%, transparent 49%),
    linear-gradient(180deg, #070707 0%, #030303 100%);
}

.show-stage {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.show-poster,
.show-board,
.show-types article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(16, 16, 17, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.show-poster {
  display: grid;
  align-content: end;
  min-height: 540px;
  padding: clamp(28px, 5vw, 52px);
  border-color: var(--line-strong);
  isolation: isolate;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 86% 96%, 75% 100%, 63% 95%, 50% 100%, 37% 95%, 24% 100%, 12% 96%, 0 100%);
}

.show-poster::before,
.show-board::before,
.show-types article::before {
  position: absolute;
  top: 0;
  right: 16px;
  left: 16px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 189, 120, 0.58), transparent);
}

.show-poster::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.12), rgba(3, 3, 3, 0.88)),
    radial-gradient(circle at 54% 24%, rgba(240, 221, 177, 0.28), transparent 12rem),
    url("/images/neo-hero.jpg") 56% 42% / cover;
  filter: saturate(0.72) contrast(1.32) brightness(0.62);
  opacity: 0.78;
}

.poster-light {
  position: absolute;
  top: -26%;
  right: -20%;
  z-index: -1;
  width: 58%;
  height: 92%;
  background:
    linear-gradient(106deg, transparent 0%, rgba(240, 221, 177, 0.22) 44%, transparent 58%),
    radial-gradient(circle at 50% 0%, rgba(217, 189, 120, 0.32), transparent 16rem);
  filter: blur(1px);
  transform: rotate(9deg);
  animation: slowSweep 8s ease-in-out infinite alternate;
}

.show-poster h3 {
  max-width: 520px;
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  line-height: 0.88;
}

.show-poster p {
  max-width: 560px;
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.58;
}

.show-poster .btn {
  width: fit-content;
  min-width: 250px;
  margin-top: 18px;
}

.stage-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.stage-signals span {
  min-height: 34px;
  padding: 8px 10px;
  color: rgba(244, 239, 231, 0.82);
  background: rgba(3, 3, 3, 0.46);
  border: 1px solid rgba(217, 189, 120, 0.22);
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.show-board {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 540px;
  padding: clamp(22px, 3vw, 34px);
}

.show-board-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.show-board-head span {
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.show-board-head strong {
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  line-height: 0.94;
}

.show-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.show-types article {
  min-height: 190px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(217, 189, 120, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 9, 0.76);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.show-types article:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 221, 177, 0.34);
  background:
    linear-gradient(180deg, rgba(217, 189, 120, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(13, 13, 14, 0.86);
}

.show-types span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 900;
}

.show-types h3,
.show-types p {
  margin-bottom: 0;
}

.show-types p {
  color: var(--muted);
  line-height: 1.62;
}

.talent-marquee {
  display: flex;
  gap: 10px;
  width: max-content;
  margin-top: clamp(24px, 4vw, 42px);
  color: rgba(240, 221, 177, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  font-weight: 950;
  white-space: nowrap;
  animation: marqueeDrift 18s linear infinite;
}

.talent-marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(217, 189, 120, 0.2);
  border-radius: 8px;
}

.talent-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(400px, 0.86fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
  background:
    radial-gradient(circle at 82% 16%, rgba(217, 189, 120, 0.16), transparent 26rem),
    radial-gradient(circle at 12% 84%, rgba(97, 13, 18, 0.16), transparent 26rem),
    linear-gradient(180deg, #050505 0%, #0d0d0e 100%);
}

.talent-copy {
  position: sticky;
  top: 96px;
  max-width: 760px;
}

.talent-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.talent-steps span {
  min-height: 42px;
  padding: 10px 12px;
  color: rgba(244, 239, 231, 0.84);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(217, 189, 120, 0.22);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.talent-form {
  overflow: hidden;
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(217, 189, 120, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(13, 13, 14, 0.9);
}

.talent-form::after {
  position: absolute;
  right: -18%;
  bottom: -18%;
  width: 52%;
  height: 42%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(217, 189, 120, 0.13), transparent 70%);
  filter: blur(12px);
}

.talent-form-head {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244, 239, 231, 0.1);
}

.talent-form-head span {
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.talent-form-head strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.02;
}

@keyframes slowSweep {
  from {
    transform: translateX(-4%) rotate(8deg);
    opacity: 0.48;
  }

  to {
    transform: translateX(5%) rotate(13deg);
    opacity: 0.78;
  }
}

@keyframes marqueeDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-18%);
  }
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.7fr);
  gap: 18px;
  align-items: stretch;
  background:
    radial-gradient(circle at 72% 5%, rgba(217, 189, 120, 0.08), transparent 22rem),
    linear-gradient(180deg, #070707, #030303);
}

.contact-card {
  padding: clamp(28px, 5vw, 52px);
  overflow: hidden;
}

.contact-stamp {
  display: grid;
  gap: 5px;
  width: fit-content;
  max-width: 100%;
  margin: 24px 0 4px;
  padding: 13px 15px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(217, 189, 120, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(3, 3, 3, 0.56);
  border: 1px solid rgba(217, 189, 120, 0.24);
  border-radius: 8px;
  transform: rotate(-1.2deg);
}

.contact-stamp span {
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-stamp strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
}

.contact-link {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-link {
  display: grid;
  gap: 4px;
  min-width: min(100%, 260px);
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-link:hover {
  transform: translateY(-2px);
  background: rgba(217, 189, 120, 0.075);
  border-color: rgba(240, 221, 177, 0.3);
}

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

.contact-link strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.compact {
  box-shadow: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 74px);
  color: var(--ink);
  background: #030303;
  border-top: 1px solid var(--line);
}

.site-footer p,
.site-footer span {
  margin: 0;
}

.site-footer p {
  font-weight: 900;
}

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

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  text-decoration: none;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1120px) {
  .night-rail {
    display: none;
  }

  .main-nav a {
    padding-inline: 8px;
    font-size: 0.78rem;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content::before {
    right: 8%;
    width: 70%;
  }

  .hero-collage {
    grid-row: auto;
    grid-column: 1;
    justify-self: stretch;
    width: min(100%, 680px);
    min-height: 250px;
    margin-top: 8px;
    margin-bottom: 0;
  }

  .torn-photo-main {
    inset: 0 30% 0 0;
  }

  .torn-photo-slice {
    top: 24px;
    right: 0;
    width: 39%;
    height: 74%;
  }

  .torn-mark {
    right: 24%;
    bottom: 9%;
    width: 42%;
  }

  .hero-signals {
    grid-row: auto;
    grid-column: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
    border-left: 0;
  }

  .hero-signals span {
    min-height: 36px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

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

  .vip-poster {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(8, 8, 8, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 44px;
    padding: 12px;
    font-size: 0.95rem;
    border-bottom: 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    min-height: 720px;
  }

  .hero-media {
    background-position: center;
    opacity: 0.45;
  }

  .week-grid,
  .feature-grid,
  .event-strip,
  .torn-gallery,
  .show-stage,
  .talent-section,
  .split-section,
  .reservation-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-section .split-signal {
    grid-column: 1;
  }

  .torn-card,
  .torn-card-wide,
  .torn-card-slim {
    min-height: 280px;
  }

  .reservation-copy {
    position: static;
  }

  .talent-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  main::before {
    top: 68px;
    opacity: 0.42;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 82px;
    height: 26px;
  }

  .brand-copy small {
    display: none;
  }

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

  .main-nav {
    top: 68px;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    padding: 64px 20px 94px;
  }

  .hero-content::before {
    top: 18%;
    right: -18%;
    width: 80%;
    height: 44%;
    opacity: 0.42;
  }

  .hero-logo {
    width: 142px;
    margin: 0 0 18px -2px;
  }

  .hero-line {
    font-size: clamp(3rem, 13.6vw, 3.85rem);
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  h2 {
    font-size: 2.42rem;
  }

  h3 {
    font-size: 1.14rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-talent {
    display: grid;
    width: 100%;
    gap: 5px;
    text-align: center;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .hero-signals {
    display: none;
  }

  .hero-collage {
    display: block;
    width: 100%;
    min-height: 142px;
    margin-top: 2px;
  }

  .hero-collage::before {
    inset: -12% -14% -8%;
    opacity: 0.45;
  }

  .torn-photo-main {
    inset: 0 28% 0 0;
    transform: rotate(-1.6deg);
  }

  .torn-photo-slice {
    top: 10px;
    right: 0;
    width: 38%;
    height: 82%;
    transform: rotate(3deg);
  }

  .torn-mark {
    display: none;
  }

  .collage-caption {
    right: 8px;
    bottom: 14px;
    width: min(58%, 190px);
    padding: 10px;
  }

  .collage-caption strong {
    font-size: 0.92rem;
  }

  .section {
    padding: 64px 18px;
  }

  .pulse-marquee {
    padding-inline: 18px;
    font-size: 0.88rem;
  }

  .pulse-marquee span {
    min-height: 34px;
    padding-inline: 10px;
  }

  .rip-divider {
    height: 28px;
    margin-top: -14px;
  }

  .torn-gallery {
    margin-top: 30px;
  }

  .torn-card,
  .torn-card-wide,
  .torn-card-slim {
    min-height: 222px;
  }

  .torn-card figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .torn-card figcaption strong {
    font-size: 1.28rem;
  }

  .week-card,
  .feature-card,
  .event-strip article,
  .show-poster,
  .show-board,
  .show-types article,
  .vip-poster,
  .vip-cta,
  .contact-card {
    padding: 22px;
  }

  .vip-layout,
  .show-types,
  .experience-panel {
    grid-template-columns: 1fr;
  }

  .show-poster,
  .show-board {
    min-height: 350px;
  }

  .show-poster .btn {
    width: 100%;
    min-width: 0;
  }

  .rooms-nightcap {
    min-height: 170px;
  }

  .rooms-nightcap strong {
    font-size: 2rem;
  }

  .event-poster {
    min-height: 172px;
  }

  .event-poster strong {
    font-size: 2rem;
  }

  .week-pulse,
  .split-signal,
  .event-cuts,
  .reservation-cues {
    gap: 8px;
  }

  .week-pulse span,
  .split-signal span,
  .event-cuts span,
  .reservation-cues span {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .show-board-head strong {
    font-size: 1.75rem;
  }

  .talent-marquee {
    display: none;
  }

  .experience-panel div {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
  }

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

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    background: rgba(3, 3, 3, 0.92);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    color: #080806;
    background: linear-gradient(135deg, var(--champagne-2), var(--champagne));
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 900;
    text-decoration: none;
  }
}

@media (max-width: 380px) {
  .brand-copy strong {
    display: none;
  }

  .hero-line {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.12rem;
  }
}

/* Premium landing refresh */
:root {
  --void: #050505;
  --night: #080607;
  --graphite: #111010;
  --steel: #191312;
  --ink: #f5f1e8;
  --soft: #f5e3b0;
  --muted: #8c8c8c;
  --champagne: #d6a84f;
  --champagne-2: #f5e3b0;
  --oxblood: #18080b;
  --line: rgba(245, 227, 176, 0.14);
  --line-strong: rgba(214, 168, 79, 0.38);
}

body {
  background:
    radial-gradient(circle at 76% 5%, rgba(214, 168, 79, 0.18), transparent 28rem),
    radial-gradient(circle at 18% 36%, rgba(80, 18, 22, 0.3), transparent 34rem),
    radial-gradient(circle at 50% 95%, rgba(214, 168, 79, 0.08), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #100507 42%, #050505 100%);
}

body::before {
  background:
    radial-gradient(circle at 44% 18%, rgba(245, 227, 176, 0.06), transparent 18rem),
    radial-gradient(circle at 92% 50%, rgba(214, 168, 79, 0.08), transparent 24rem),
    linear-gradient(112deg, transparent 0 46%, rgba(245, 227, 176, 0.05) 46.4%, transparent 47%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.027) 0 1px, transparent 1px 9px);
  opacity: 0.72;
}

body::after {
  background:
    radial-gradient(ellipse at 36% 12%, rgba(255, 255, 255, 0.08), transparent 34rem),
    radial-gradient(ellipse at 78% 36%, rgba(214, 168, 79, 0.1), transparent 24rem),
    repeating-radial-gradient(circle at 50% 40%, rgba(245, 227, 176, 0.018) 0 1px, transparent 1px 5px);
  opacity: 0.52;
}

.site-header {
  background:
    linear-gradient(90deg, rgba(214, 168, 79, 0.08), transparent 32%, rgba(24, 8, 11, 0.58)),
    rgba(5, 5, 5, 0.84);
  border-bottom-color: rgba(245, 227, 176, 0.13);
}

.neo-hero {
  min-height: calc(100svh - 72px);
  background:
    radial-gradient(circle at 72% 18%, rgba(214, 168, 79, 0.18), transparent 22rem),
    radial-gradient(circle at 88% 82%, rgba(75, 14, 16, 0.42), transparent 30rem),
    linear-gradient(120deg, #050505 0%, #0a0606 42%, #18080b 100%);
}

.neo-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.74) 46%, rgba(24, 8, 11, 0.34) 100%),
    radial-gradient(circle at 72% 18%, rgba(245, 227, 176, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0) 66%, #050505 100%);
}

.neo-hero::after {
  background:
    radial-gradient(ellipse at 70% 22%, rgba(245, 227, 176, 0.16), transparent 20rem),
    linear-gradient(106deg, transparent 0 54%, rgba(245, 227, 176, 0.09) 55%, transparent 58%),
    linear-gradient(20deg, rgba(214, 168, 79, 0.04) 0 1px, transparent 1px 18%);
  animation: heroLightDrift 8s ease-in-out infinite alternate;
}

.neo-hero .hero-media {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.72), rgba(24, 8, 11, 0.76)),
    url("/images/neo-hero.jpg") center / cover;
  filter: saturate(0.55) contrast(1.18) brightness(0.42);
  opacity: 0.5;
}

.neo-hero .hero-content {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  width: min(100%, 1340px);
  min-height: calc(100svh - 72px);
  padding-top: clamp(46px, 6vw, 86px);
  padding-bottom: clamp(46px, 6vw, 86px);
}

.neo-hero .hero-content::before {
  right: 26%;
  width: min(38vw, 540px);
  height: 72%;
  background:
    radial-gradient(circle at 50% 12%, rgba(245, 227, 176, 0.22), transparent 12rem),
    linear-gradient(106deg, transparent 0 48%, rgba(245, 227, 176, 0.16) 49%, transparent 52%);
  opacity: 0.44;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  max-width: 760px;
}

.neo-hero .hero-logo {
  width: min(34vw, 250px);
  margin-bottom: 20px;
  filter:
    drop-shadow(0 20px 46px rgba(0, 0, 0, 0.74))
    drop-shadow(0 0 22px rgba(214, 168, 79, 0.28));
}

.neo-hero .hero-line {
  max-width: 780px;
  font-size: clamp(4.2rem, 7vw, 7.6rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.neo-hero .hero-subtitle {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(245, 241, 232, 0.84);
  font-size: clamp(1.08rem, 1.75vw, 1.42rem);
}

.neo-hero .hero-actions {
  margin-top: 28px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: rgba(245, 227, 176, 0.9);
  background:
    linear-gradient(90deg, rgba(214, 168, 79, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.44);
  border: 1px solid rgba(214, 168, 79, 0.24);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: stretch;
  height: clamp(520px, calc(100svh - 130px), 740px);
  min-height: 0;
  max-height: none;
  overflow: hidden;
  border: 1px solid rgba(214, 168, 79, 0.26);
  border-radius: 8px;
  background: #050505;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(214, 168, 79, 0.12),
    inset 0 0 0 1px rgba(245, 227, 176, 0.055);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 86% 96%, 76% 100%, 64% 95%, 52% 100%, 40% 95%, 27% 100%, 14% 96%, 0 100%);
}

.hero-visual picture,
.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-visual img {
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(1.04) contrast(1.08) brightness(0.92);
  transform: scale(1.02);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero-visual::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.34)),
    radial-gradient(circle at 54% 18%, rgba(245, 227, 176, 0.26), transparent 13rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
  opacity: 0.62;
}

.hero-visual::after {
  background:
    linear-gradient(90deg, rgba(245, 227, 176, 0.18), transparent 13%, transparent 88%, rgba(214, 168, 79, 0.16)),
    linear-gradient(180deg, transparent 72%, rgba(5, 5, 5, 0.5));
}

.visual-route,
.visual-note {
  position: absolute;
  z-index: 3;
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(5, 5, 5, 0.64);
  border: 1px solid rgba(245, 227, 176, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.visual-route {
  top: 22px;
  right: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
}

.visual-route span {
  min-height: 36px;
  padding: 9px 10px;
  color: rgba(245, 241, 232, 0.84);
  border: 1px solid rgba(245, 227, 176, 0.13);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.visual-note {
  left: 22px;
  bottom: 26px;
  width: min(76%, 320px);
  padding: 16px;
}

.visual-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.visual-note strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1;
}

.btn-primary {
  color: #090706;
  background: linear-gradient(135deg, #f5e3b0 0%, #d6a84f 58%, #f1c66c 100%);
  border-color: rgba(245, 227, 176, 0.5);
  box-shadow: 0 18px 48px rgba(214, 168, 79, 0.18);
}

.btn-secondary,
.btn-outline {
  background:
    linear-gradient(135deg, rgba(245, 227, 176, 0.08), rgba(24, 8, 11, 0.18)),
    rgba(5, 5, 5, 0.4);
}

.pulse-marquee {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(24, 8, 11, 0.98), #050505, rgba(24, 8, 11, 0.98));
  border-top: 1px solid rgba(214, 168, 79, 0.18);
  border-bottom: 1px solid rgba(214, 168, 79, 0.14);
}

.section {
  background:
    radial-gradient(circle at 84% 18%, rgba(214, 168, 79, 0.1), transparent 26rem),
    radial-gradient(circle at 18% 86%, rgba(24, 8, 11, 0.54), transparent 34rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(10, 8, 8, 0.98));
}

.section-head-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(22px, 5vw, 74px);
  align-items: end;
  max-width: none;
}

.section-head-row > p {
  margin-bottom: 10px;
}

.event-card-grid,
.room-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.event-card,
.room-card,
.night-path article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 227, 176, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(17, 16, 16, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(245, 227, 176, 0.08);
  backdrop-filter: blur(12px);
}

.event-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  min-height: 260px;
  padding: 26px;
}

.event-card.is-featured {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(214, 168, 79, 0.12), rgba(255, 255, 255, 0.018)),
    rgba(18, 12, 11, 0.9);
}

.event-card::before,
.room-card::before,
.night-path article::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(245, 227, 176, 0.62), transparent);
}

.event-date {
  display: grid;
  place-items: center;
  align-self: start;
  min-height: 96px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 227, 176, 0.24), transparent 70%),
    rgba(5, 5, 5, 0.5);
  border: 1px solid rgba(214, 168, 79, 0.28);
  border-radius: 8px;
}

.event-date span {
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.event-date strong {
  font-size: 1.65rem;
  line-height: 1;
}

.event-card h3,
.room-card h3,
.night-path h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.hotel-club-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(24, 8, 11, 0.6)),
    radial-gradient(circle at 84% 50%, rgba(214, 168, 79, 0.14), transparent 24rem),
    image-set(url("/images/neo-night-composition.webp") type("image/webp"), url("/images/neo-night-composition.png") type("image/png")) right center / auto 112% no-repeat,
    #050505;
}

.hotel-club-section .split-copy {
  max-width: 820px;
}

.night-path {
  display: grid;
  gap: 12px;
}

.night-path article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  min-height: 142px;
  padding: 24px;
}

.night-path span {
  grid-row: span 2;
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 950;
}

.premium-vip-layout {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
}

.premium-vip-layout .vip-poster,
.event-poster,
.room-image {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.72)),
    image-set(url("/images/neo-night-composition.webp") type("image/webp"), url("/images/neo-night-composition.png") type("image/png")) center / cover;
}

.premium-vip-layout .vip-poster {
  min-height: 330px;
  background-position: 52% 36%;
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.8fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
}

.event-feature > div:first-child {
  max-width: 780px;
}

.event-feature p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.event-feature .btn {
  margin-top: 20px;
}

.event-feature .event-poster {
  min-height: 430px;
  margin-top: 0;
  align-content: end;
  background-position: 58% 42%;
}

.event-feature .event-poster strong {
  max-width: 560px;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
}

.room-card {
  display: grid;
  grid-template-rows: 260px auto;
  min-height: 500px;
}

.room-image {
  display: block;
  min-height: 260px;
  border-bottom: 1px solid rgba(245, 227, 176, 0.12);
  filter: saturate(0.92) contrast(1.08) brightness(0.88);
}

.room-card-suite .room-image {
  background-position: 18% 46%;
}

.room-card-double .room-image {
  background-position: 50% 18%;
}

.room-card-group .room-image {
  background-position: 54% 70%;
}

.room-card > div {
  padding: 26px;
}

.talent-section {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(24, 8, 11, 0.5)),
    radial-gradient(circle at 82% 16%, rgba(214, 168, 79, 0.16), transparent 26rem),
    image-set(url("/images/neo-night-composition.webp") type("image/webp"), url("/images/neo-night-composition.png") type("image/png")) right center / auto 106% no-repeat,
    #050505;
}

.contact-location {
  margin-top: -8px;
  color: rgba(245, 227, 176, 0.72);
  font-size: 0.95rem;
}

.contact-map-cta {
  width: fit-content;
  min-height: 46px;
  margin: 14px 0 4px;
}

.contact-link-map {
  border-color: rgba(214, 168, 79, 0.34);
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.52);
}

.contact-link-map strong::after {
  content: "  ->";
  color: var(--champagne);
}

.map-panel {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(360px, 0.54fr);
  gap: 0;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 227, 176, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(17, 16, 16, 0.82);
  border: 1px solid rgba(214, 168, 79, 0.22);
  border-radius: 8px;
}

.map-panel::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(245, 227, 176, 0.62), transparent);
}

.map-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 48px);
}

.map-copy h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 0.92;
}

.map-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.map-copy .btn {
  width: fit-content;
  min-width: 190px;
  margin-top: 12px;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(0.65) contrast(1.08) brightness(0.72);
}

.desktop-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  gap: 2px;
  min-width: 220px;
  padding: 14px 16px;
  color: #090706;
  text-decoration: none;
  background: linear-gradient(135deg, #f5e3b0, #d6a84f);
  border: 1px solid rgba(245, 227, 176, 0.5);
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55), 0 0 44px rgba(214, 168, 79, 0.16);
}

.desktop-whatsapp span {
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.desktop-whatsapp strong {
  font-size: 0.98rem;
}

.legal-section {
  min-height: calc(100svh - 72px);
  padding-top: clamp(84px, 10vw, 150px);
}

.legal-section h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
}

.legal-section > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.legal-panel {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(245, 227, 176, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(17, 16, 16, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-panel h2 {
  margin: 18px 0 4px;
  font-size: 1.25rem;
  line-height: 1.1;
}

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

.legal-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-panel a {
  color: var(--champagne-2);
  font-weight: 900;
}

.contact-section {
  background:
    radial-gradient(circle at 76% 6%, rgba(214, 168, 79, 0.12), transparent 22rem),
    linear-gradient(180deg, #0a0707, #050505);
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(214, 168, 79, 0.06), transparent 42%, rgba(24, 8, 11, 0.6)),
    #050505;
}

.site-footer div {
  max-width: 720px;
  justify-content: flex-end;
}

@keyframes heroLightDrift {
  from {
    opacity: 0.48;
    transform: translateX(-1%);
  }

  to {
    opacity: 0.74;
    transform: translateX(1%);
  }
}

@media (max-width: 1120px) {
  .neo-hero .hero-content,
  .hotel-club-section,
  .event-feature,
  .talent-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: auto;
    min-height: 520px;
    max-height: none;
  }

  .section-head-row,
  .event-card-grid,
  .room-card-grid {
    grid-template-columns: 1fr;
  }

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

  .premium-vip-layout .vip-poster {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .hotel-club-section,
  .talent-section {
    background:
      radial-gradient(circle at 86% 16%, rgba(214, 168, 79, 0.12), transparent 20rem),
      linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(24, 8, 11, 0.72)),
      #050505;
  }

  .hero-visual {
    min-height: 430px;
  }

  .visual-route {
    grid-template-columns: 1fr;
    right: auto;
    width: 124px;
  }
}

@media (max-width: 640px) {
  .neo-hero,
  .neo-hero .hero-content {
    min-height: auto;
  }

  .neo-hero .hero-content {
    gap: 24px;
    padding: 48px 20px 104px;
  }

  .neo-hero .hero-logo {
    width: 156px;
    margin-bottom: 16px;
  }

  .neo-hero .hero-line {
    font-size: clamp(3.15rem, 16vw, 4.1rem);
  }

  .neo-hero .hero-subtitle {
    margin-top: 14px;
    font-size: 1.02rem;
  }

  .hero-chips {
    gap: 8px;
  }

  .hero-chips span {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .visual-route {
    display: none;
  }

  .visual-note {
    right: 14px;
    bottom: 16px;
    left: 14px;
    width: auto;
  }

  .pulse-marquee {
    animation: none;
    overflow: hidden;
    width: 100%;
  }

  .event-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px;
  }

  .event-date {
    width: 86px;
    min-height: 74px;
  }

  .night-path article {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding: 22px;
  }

  .premium-vip-layout {
    grid-template-columns: 1fr;
  }

  .premium-vip-layout .vip-poster,
  .event-feature .event-poster {
    min-height: 300px;
  }

  .event-feature .event-poster strong {
    font-size: 2rem;
  }

  .room-card {
    grid-template-rows: 210px auto;
    min-height: 0;
  }

  .room-image {
    min-height: 210px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .site-footer div {
    justify-content: flex-start;
  }

  .map-panel {
    grid-template-columns: 1fr;
  }

  .map-panel iframe {
    min-height: 330px;
  }

  .desktop-whatsapp {
    display: none;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .legal-nav a {
    min-height: 38px;
    padding: 9px 8px;
    font-size: 0.78rem;
  }
}
