﻿:root {
  --ink: #f7f2ea;
  --muted: #a9a49c;
  --paper: #080807;
  --panel: rgba(18, 18, 17, 0.74);
  --panel-2: rgba(24, 23, 21, 0.84);
  --line: rgba(247, 242, 234, 0.105);
  --red: #8f202a;
  --red-bright: #d74251;
  --brass: #d2b46d;
  --teal: #65d3cc;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.072);
  --glow: 0 0 36px rgba(101, 211, 204, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  --radius: 8px;
  --max: 1200px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #050505 0%, #0a0908 44%, #050505 100%);
  color: var(--ink);
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(180deg, rgba(210, 180, 109, 0.055), transparent 26%),
    linear-gradient(90deg, rgba(101, 211, 204, 0.035), transparent 42%);
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(247, 242, 234, 0.06);
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(247, 242, 234, 0.095);
  background: rgba(5, 5, 5, 0.94);
  box-shadow: none;
}

.site-header.is-menu-open {
  background: #050505;
  border-bottom-color: rgba(247, 242, 234, 0.12);
}

.nav {
  max-width: var(--max);
  height: 104px;
  margin: 0 auto;
  padding: 18px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header.is-scrolled .nav {
  height: 96px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 92px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
  transition: transform 180ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.02);
}

.site-header.is-scrolled .brand-logo {
  width: 78px;
  height: 78px;
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 1.35vw, 22px);
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav-links a {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 0;
  border-radius: 0;
  transition: color 160ms ease, opacity 160ms ease;
}

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

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-indicator {
  display: none;
}

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

.nav-cta {
  min-height: 38px;
  padding: 0 13px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  border: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.lang a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0;
  border-radius: 0;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lang a[aria-current="true"] {
  color: var(--ink);
  background: transparent;
}

.lang span {
  display: inline;
  color: rgba(247, 242, 234, 0.22);
}

.mobile-lang-switch {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-top: 1px solid rgba(210, 180, 109, 0.48);
  border-bottom: 1px solid rgba(210, 180, 109, 0.24);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  font-size: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(247, 242, 234, 0.16);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn.primary {
  border-color: rgba(210, 180, 109, 0.54);
  background: rgba(210, 180, 109, 0.08);
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(210, 180, 109, 0.52);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.social-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-icon:hover {
  color: var(--ink);
  border-color: transparent;
  background: transparent;
  transform: translateY(-1px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon[aria-label="Facebook"] svg {
  transform: translateX(1.5px);
}

.hero {
  min-height: calc(100vh - 76px);
  max-height: 860px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 15, 0.92) 0%, rgba(17, 16, 15, 0.58) 46%, rgba(17, 16, 15, 0.24) 100%),
    linear-gradient(0deg, rgba(17, 16, 15, 1) 0%, rgba(17, 16, 15, 0) 34%),
    url("club-hero.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 88px 0 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 750;
}

.lead {
  max-width: 620px;
  color: #dfd7cb;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
}

.hero-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 810px;
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.024);
  box-shadow: var(--glow);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.024);
}

.feature-band div {
  background: rgba(255, 255, 255, 0.025);
  padding: 22px;
  border-right: 1px solid var(--line);
}

.feature-band div:last-child {
  border-right: 0;
}

.feature-band span {
  display: block;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature-band strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.meta-item {
  background: rgba(8, 8, 7, 0.64);
  padding: 18px;
  min-height: 96px;
  border-right: 1px solid var(--line);
}

.meta-item:last-child {
  border-right: 0;
}

.event-slider {
  position: relative;
  min-height: calc(100vh - 108px);
  max-height: 860px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #070706;
}

.event-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  transition: opacity 520ms ease, visibility 520ms ease, transform 1600ms ease;
  overflow: hidden;
}

.event-slide::after {
  content: "";
  position: absolute;
  inset: -6%;
  background: inherit;
  background-position: center;
  background-size: cover;
  filter: blur(2.5px);
  opacity: 0;
  transform: scale(1.06) translate3d(0, 0, 0);
  transition: opacity 520ms ease;
  will-change: transform;
}

.event-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.94) 0%, rgba(8, 8, 7, 0.62) 48%, rgba(8, 8, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.98) 0%, rgba(8, 8, 7, 0) 42%),
    linear-gradient(120deg, rgba(101, 211, 204, 0.09), transparent 44%);
  z-index: 1;
}

.event-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.event-slide.is-active::after {
  opacity: 1;
  animation: sensualDrift 18s ease-in-out forwards;
}

.event-slide:nth-child(2).is-active::after {
  animation-name: sensualDriftReverse;
}

.event-slide:nth-child(3).is-active::after {
  animation-name: sensualDriftRise;
}

.event-slide:nth-child(4).is-active::after {
  animation-name: sensualDriftFall;
}

.slider-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 0;
  transition: opacity 360ms ease;
  transform: none;
}

.event-slide:not(.is-active) .slider-copy {
  opacity: 0;
}

.event-slide.is-active .slider-copy {
  opacity: 1;
}

.slider-copy h1 {
  max-width: 840px;
  margin-bottom: 18px;
}

.slider-controls {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 58px;
  width: min(var(--max), calc(100% - 44px));
  max-width: 100%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 7, 0.72);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.slider-controls > button {
  backdrop-filter: blur(16px);
}

.slider-controls button:hover {
  border-color: rgba(194, 160, 95, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 7, 0.58);
  backdrop-filter: blur(16px);
}

.slider-dots button {
  position: relative;
  overflow: hidden;
  width: 34px;
  height: 3px;
  min-height: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 242, 234, 0.28);
  padding: 0;
}

.slider-dots button.is-active {
  background: rgba(247, 242, 234, 0.2);
}

.slider-dots button::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: var(--brass);
}

.slider-dots button.is-active::after {
  animation: dotFill 5600ms linear forwards;
}

.meta-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 9px;
}

.meta-item strong {
  font-size: 18px;
  font-weight: 700;
}

.section {
  position: relative;
  padding: 104px 22px;
  border-bottom: 1px solid rgba(247, 242, 234, 0.055);
}

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

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(255, 255, 255, 0.004)),
    rgba(8, 8, 7, 0.34);
}

.parallax-band {
  overflow: hidden;
  isolation: isolate;
}

.parallax-band::before {
  display: none;
}

.parallax-band.parallax-reverse::before {
  display: none;
}

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

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.section-title {
  max-width: 540px;
}

.section-title h2,
.page-hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  margin-bottom: 18px;
  letter-spacing: 0;
}

.section-title p,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  border: 0;
  border-top: 1px solid rgba(247, 242, 234, 0.11);
  background: transparent;
  border-radius: 0;
  padding: 24px 0;
  min-height: 0;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateX(4px);
  border-color: rgba(210, 180, 109, 0.28);
  background: transparent;
  box-shadow: none;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.6;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.number {
  display: inline-flex;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 0;
  border: 0;
  color: var(--brass);
  font-weight: 700;
  font-size: 13px;
}

.line-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.line-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  transition: color 160ms ease, padding-left 160ms ease;
}

.line-list li:hover {
  color: var(--ink);
  padding-left: 8px;
}

.line-list strong {
  color: var(--ink);
}

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

.faq-item {
  border: 0;
  border-top: 1px solid rgba(247, 242, 234, 0.105);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 20px 0;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(194, 160, 95, 0.42);
  border-radius: 999px;
  color: var(--brass);
  font-size: 18px;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.event-strip {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.event-strip:last-child {
  border-bottom: 1px solid var(--line);
}

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

.quick-action-card,
.week-card,
.trust-item {
  border: 1px solid rgba(247, 242, 234, 0.072);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.012));
  box-shadow: none;
}

.quick-action-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 146px;
  padding: 18px;
}

.quick-action-card span,
.week-card span,
.trust-item span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-action-card strong,
.week-card strong,
.trust-item strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  line-height: 1.3;
}

.quick-action-card p,
.week-card p,
.trust-item p {
  color: var(--muted);
  line-height: 1.55;
  margin: 10px 0 0;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.week-card {
  padding: 18px;
  min-height: 190px;
}

.week-card h3 {
  margin: 12px 0 8px;
  font-size: 19px;
}

.event-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.event-audience em {
  font-style: normal;
  color: #dfe8e6;
  font-size: 12px;
  font-weight: 700;
  border: 0;
  border-bottom: 1px solid rgba(101, 211, 204, 0.32);
  border-radius: 0;
  padding: 0 0 5px;
  background: transparent;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.trust-item {
  padding: 18px;
}

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

.contact-actions-grid .btn {
  width: 100%;
}

.gallery-grid .gallery-item:nth-child(1),
.gallery-grid .gallery-item:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
}

.mobile-action-bar {
  position: fixed;
  z-index: 60;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(247, 242, 234, 0.14);
  border-radius: var(--radius);
  background: rgba(8, 8, 7, 0.94);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
}

.mobile-action-bar a {
  min-height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.045);
}

.mobile-action-bar span {
  color: var(--brass);
  font-size: 15px;
  line-height: 1;
}

.event-showcase {
  position: relative;
  --event-accent: 210 180 109;
  --event-accent-two: 101 211 204;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(247, 242, 234, 0.075);
  background:
    linear-gradient(180deg, #050505 0%, #090807 52%, #050505 100%),
    #050505;
}

.event-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(var(--event-accent) / 0.2), transparent 38%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.18) 54%, rgba(5, 5, 5, 0.72)),
    linear-gradient(180deg, rgba(255 255 255 / 0.026), transparent 42%),
    url("bg/dancefloor-bg.png") center / cover no-repeat,
    #050505;
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0);
  transition:
    background 520ms ease,
    opacity 520ms ease,
    transform 1200ms ease;
}

.event-showcase-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(0 0 0 / 0.34));
  opacity: 0.86;
}

.event-showcase.is-changing .event-showcase-bg {
  opacity: 0.84;
  transform: scale(1.012);
}

.event-showcase-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.54) 48%, rgba(5, 5, 5, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.94) 0%, transparent 34%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.35), transparent 24%);
}

.event-showcase-inner {
  width: min(var(--max), calc(100% - 68px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: end;
  padding: 96px 0 82px;
}

.event-showcase-copy {
  max-width: 670px;
}

.event-showcase-copy h2 {
  margin: 16px 0 22px;
  max-width: 760px;
  font-size: clamp(42px, 6.2vw, 84px);
  line-height: 0.95;
}

.event-showcase-copy p {
  min-height: 94px;
  max-width: 620px;
  color: #d8d0c4;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.58;
  transition: opacity 180ms ease, transform 180ms ease;
}

.event-showcase.is-changing .event-showcase-copy p {
  opacity: 0.32;
  transform: translate3d(0, 4px, 0);
}

.event-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.event-showcase-list {
  align-self: end;
  border-top: 1px solid rgba(247, 242, 234, 0.16);
}

.event-showcase-list button {
  width: 100%;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px 26px;
  align-items: baseline;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(247, 242, 234, 0.105);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.event-showcase-list button span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-showcase-list button strong {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
  font-weight: 750;
}

.event-showcase-list button em {
  grid-column: 2;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  line-height: 1.4;
}

.event-showcase-list button strong,
.event-showcase-list button em,
.event-showcase-list button span {
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.event-showcase-list button:hover strong,
.event-showcase-list button:focus-visible strong,
.event-showcase-list button.is-active strong {
  color: #fff8ec;
  transform: translateX(6px);
}

.event-showcase-list button:hover em,
.event-showcase-list button:focus-visible em,
.event-showcase-list button.is-active em {
  color: #d8d0c4;
}

.event-showcase-list button.is-active {
  border-bottom-color: rgba(210, 180, 109, 0.42);
}

.event-showcase-list button:focus-visible {
  outline: 1px solid rgba(210, 180, 109, 0.5);
  outline-offset: 6px;
}


.home-proof {
  position: relative;
  isolation: isolate;
  padding: 112px 22px 118px;
  background: #090908;
  overflow: hidden;
}

.home-proof::before,
.atmosphere-section::before,
.first-flow::before,
.quiet-trust::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.home-proof::after,
.atmosphere-section::after,
.first-flow::after,
.quiet-trust::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.48) 52%, rgba(5, 5, 5, 0.88)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.42) 48%, rgba(5, 5, 5, 0.88));
  pointer-events: none;
}

.home-proof::before {
  background-image: url("bg/lounge-bg.png");
  opacity: 0.3;
  filter: saturate(0.94) contrast(1.04) brightness(0.92);
}

.proof-layout {
  width: 100%;
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
}

.proof-copy {
  min-height: 0;
  display: block;
  padding: 0;
}

.proof-copy h2 {
  max-width: 620px;
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 0.98;
  margin-bottom: 24px;
}

.proof-copy p {
  max-width: 640px;
  color: #d8d0c4;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.58;
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 242, 234, 0.12);
}

.proof-actions a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(210, 180, 109, 0.48);
}

.proof-experience {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: end;
  min-height: 0;
  overflow: hidden;
}

.proof-photo {
  position: relative;
  display: block;
  min-height: 500px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(247, 242, 234, 0.08);
}

.proof-photo img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.82);
  transition: opacity 220ms ease, transform 700ms ease, filter 400ms ease;
}

.proof-photo:hover img {
  transform: scale(1.035);
  filter: saturate(0.92) contrast(1.08) brightness(0.94);
}

.proof-review {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  width: min(430px, calc(100% - 220px));
  padding-top: 18px;
  border-top: 1px solid rgba(210, 180, 109, 0.55);
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
  z-index: 2;
}

.proof-review span {
  display: block;
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.proof-review p {
  color: #fff8ec;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.22;
}

.proof-switcher {
  position: relative;
  display: grid;
  border-top: 1px solid rgba(247, 242, 234, 0.14);
  background: transparent;
  backdrop-filter: none;
  z-index: 1;
}

.proof-switcher button {
  position: relative;
  min-height: 74px;
  border: 0;
  border-bottom: 1px solid rgba(247, 242, 234, 0.105);
  background: transparent;
  color: var(--muted);
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, padding-left 180ms ease, border-color 180ms ease;
}

.proof-switcher button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--brass);
  opacity: 0;
}

.proof-switcher button:hover,
.proof-switcher button:focus-visible,
.proof-switcher button.is-active {
  color: var(--ink);
  border-bottom-color: rgba(210, 180, 109, 0.5);
  padding-left: 10px;
}

.proof-switcher button.is-active::after {
  opacity: 1;
  animation: dotFill 6200ms linear both;
}

.home-proof:hover .proof-switcher button.is-active::after,
.home-proof:focus-within .proof-switcher button.is-active::after {
  animation-play-state: paused;
}

.proof-switcher button:focus-visible {
  outline: 1px solid rgba(210, 180, 109, 0.5);
  outline-offset: 4px;
}

.atmosphere-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 110px;
}

.atmosphere-section::before {
  background-image: url("bg/bar-bg.png");
  opacity: 0.25;
  filter: saturate(0.9) contrast(1.04) brightness(0.94);
}

.first-flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #070706;
}

.first-flow::before {
  background-image: url("bg/corridor-bg.png");
  opacity: 0.32;
  filter: saturate(0.92) contrast(1.02) brightness(0.9);
}

.first-flow::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.46) 50%, rgba(5, 5, 5, 0.82)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.36) 46%, rgba(5, 5, 5, 0.9));
}

.atmosphere-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: end;
}

.image-corridor {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 210px 210px;
  gap: 10px;
  min-height: 430px;
}

.image-corridor a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 234, 0.08);
  background: #070706;
}

.image-corridor a:first-child {
  grid-row: span 2;
}

.image-corridor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.82);
  transition: transform 420ms ease, filter 420ms ease;
}

.image-corridor a:hover img {
  transform: scale(1.035);
  filter: saturate(0.92) contrast(1.08) brightness(0.96);
}

.flow-steps {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(247, 242, 234, 0.12);
}

.flow-steps div {
  display: grid;
  grid-template-columns: 80px 0.56fr 1fr;
  gap: 22px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(247, 242, 234, 0.085);
}

.flow-steps span,
.week-minimal span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-steps h3,
.week-minimal h3 {
  margin-bottom: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.04;
}

.flow-steps p,
.week-minimal p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.week-minimal {
  border-top: 1px solid rgba(247, 242, 234, 0.12);
}

.week-minimal article {
  padding: 22px 0;
  border-bottom: 1px solid rgba(247, 242, 234, 0.085);
}

.week-minimal h3 {
  margin: 8px 0 8px;
}

.quiet-trust {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 44px;
  padding-bottom: 56px;
}

.quiet-trust::before {
  background-image: url("bg/dancefloor-bg.png");
  background-position: center 58%;
  opacity: 0.18;
  filter: saturate(0.9) contrast(1.02) brightness(0.96);
}

.quiet-trust::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.9)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.5));
}

.quiet-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quiet-badges span {
  padding-top: 12px;
  border-top: 1px solid rgba(210, 180, 109, 0.42);
}

.home-event-fit,
.event-home-faq,
.events-section,
.partners-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-event-fit::before,
.event-home-faq::before,
.events-section::before,
.partners-section::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.13;
  filter: saturate(0.95) contrast(1.08);
  pointer-events: none;
}

.home-event-fit::after,
.event-home-faq::after,
.events-section::after,
.partners-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.72) 52%, rgba(5, 5, 5, 0.88)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.94), transparent 24%, rgba(5, 5, 5, 0.9));
  pointer-events: none;
}

.home-event-fit > *,
.event-home-faq > *,
.events-section > *,
.partners-section > * {
  position: relative;
  z-index: 1;
}

.home-event-fit::before,
.events-section::before {
  background-image: url("/assets/ambient/event-mood-bg.png");
}

.event-home-faq::before {
  background-image: url("/assets/ambient/privacy-lounge-bg.png");
  opacity: 0.115;
}

.partners-section::before {
  background-image: url("/assets/ambient/network-glow-bg.png");
  opacity: 0.12;
}

.home-event-program {
  padding-top: 96px;
  padding-bottom: 104px;
  background:
    linear-gradient(180deg, rgba(210, 180, 109, 0.04), rgba(255, 255, 255, 0.01) 38%, transparent),
    #070706;
}

.event-title-wide {
  max-width: 850px;
}

.week-board {
  margin-top: 42px;
  border-top: 1px solid rgba(210, 180, 109, 0.3);
}

.week-board article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: 26px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(247, 242, 234, 0.095);
}

.week-day {
  color: var(--brass);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.week-board h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1;
}

.week-board p,
.week-board li {
  color: var(--muted);
  line-height: 1.62;
}

.week-board p {
  max-width: 680px;
  margin-bottom: 0;
}

.week-board ul {
  display: grid;
  gap: 9px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.week-board li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
}

.week-board li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
}

.event-program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.home-event-fit {
  padding-top: 96px;
  padding-bottom: 104px;
}

.event-fit-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

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

.event-fit-grid article,
.event-faq-grid article {
  border-top: 1px solid rgba(210, 180, 109, 0.34);
  background: rgba(255, 255, 255, 0.028);
}

.event-fit-grid article {
  min-height: 290px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
}

.event-fit-grid h3,
.event-faq-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.12;
}

.event-fit-grid p,
.event-faq-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.event-fit-grid a {
  margin-top: auto;
  color: var(--brass);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-home-faq {
  padding-top: 92px;
  padding-bottom: 108px;
  background:
    linear-gradient(180deg, rgba(101, 211, 204, 0.035), transparent 42%),
    #080807;
}

.event-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.event-faq-grid article {
  padding: 22px 20px 24px;
}

.event-faq-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.events-section {
  padding-top: 66px;
}

.events-layout {
  display: grid;
  gap: 28px;
}

.events-layout .section-title {
  max-width: 860px;
}

.events-layout .section-title h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.events-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  border-top: 1px solid rgba(210, 180, 109, 0.28);
}

.event-detail {
  border: 1px solid rgba(247, 242, 234, 0.09);
  border-top-color: rgba(210, 180, 109, 0.28);
  border-radius: 0;
  padding: 24px;
  margin-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012)),
    #090908;
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  gap: clamp(22px, 3vw, 46px);
  align-items: start;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.event-detail:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(210, 180, 109, 0.035), rgba(255, 255, 255, 0.012)),
    #10100e;
}

.event-detail:hover {
  transform: none;
  border-color: rgba(210, 180, 109, 0.48);
  background:
    linear-gradient(180deg, rgba(210, 180, 109, 0.052), rgba(255, 255, 255, 0.018)),
    #11100e;
  box-shadow: none;
}

.event-detail:last-child {
  margin-bottom: 0;
}

.event-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(194, 160, 95, 0.24);
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 3 / 4;
  cursor: zoom-in;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.event-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.event-poster::after {
  content: "+";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 242, 234, 0.28);
  border-radius: 999px;
  background: rgba(17, 16, 15, 0.72);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(0.94);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.event-poster:hover img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.event-poster:hover::after,
.event-poster:focus-visible::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  border-color: rgba(194, 160, 95, 0.48);
}

.event-poster:focus-visible {
  outline: 2px solid rgba(194, 160, 95, 0.56);
  outline-offset: 3px;
}

.event-detail-body {
  min-width: 0;
}

.event-detail-head {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.event-time {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  grid-column: 3;
  padding-top: 4px;
}

.event-detail h3 {
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 0.96;
}

.event-detail p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 0;
}

.event-detail .day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-top: 1px solid rgba(210, 180, 109, 0.55);
  border-bottom: 1px solid rgba(210, 180, 109, 0.22);
  color: var(--brass);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.event-facts div {
  border: 0;
  border-top: 1px solid rgba(247, 242, 234, 0.09);
  border-radius: 0;
  background: transparent;
  padding: 10px 0 0;
}

.event-facts span {
  display: block;
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.event-facts strong {
  display: block;
  line-height: 1.25;
  font-size: 12.5px;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.price-pill {
  border: 0;
  border-top: 1px solid rgba(194, 160, 95, 0.28);
  border-radius: 0;
  padding: 10px 0 0;
  background: transparent;
}

.price-pill span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.price-pill strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.price-note {
  color: var(--muted);
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
}

#prices .event-detail {
  display: block;
  padding: 26px 24px;
}

#prices .event-detail + .event-detail {
  margin-top: 18px;
}

#prices .event-detail-head {
  grid-template-columns: 92px minmax(220px, 1fr) auto;
  align-items: start;
}

#prices .event-detail h3 {
  font-size: clamp(30px, 4vw, 48px);
}

#prices .event-detail p {
  max-width: 520px;
}

.day {
  color: var(--brass);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(63, 170, 163, 0.45);
  border-radius: 999px;
  color: #a7e2dc;
  font-size: 12px;
  font-weight: 700;
}

.quote {
  font-size: 24px;
  line-height: 1.4;
  color: #e8dfd2;
}

.page-hero {
  position: relative;
  min-height: 470px;
  padding: 118px 22px 78px;
  border-bottom: 1px solid rgba(247, 242, 234, 0.075);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.34) 58%, rgba(5, 5, 5, 0.64)),
    linear-gradient(180deg, rgba(210, 180, 109, 0.12), transparent 34%),
    #0c0908;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.2) 56%, rgba(5, 5, 5, 0.48)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.44) 64%, rgba(5, 5, 5, 0.76)),
    url("bg/corridor-bg.png") center / cover no-repeat;
  opacity: 1;
  filter: saturate(1.08) contrast(1.04) brightness(1.2);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(210, 180, 109, 0.62), transparent 62%);
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.78);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
}

.page-hero p {
  max-width: 690px;
  font-size: clamp(17px, 2vw, 22px);
  color: #d8d0c4;
}

.subnav {
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.82);
}

.subnav .wrap {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 22px;
}

.subnav a {
  color: var(--muted);
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  white-space: nowrap;
  font-size: 14px;
}

.subnav a:hover {
  color: var(--ink);
  border-color: var(--line);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  grid-auto-rows: 210px;
  gap: 12px;
}

.media-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(143, 32, 42, 0.2), rgba(101, 211, 204, 0.14)),
    url("club-hero.png") center / cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, opacity 280ms ease;
}

.media-tile:hover img {
  transform: scale(1.045);
  opacity: 0.82;
}

.media-tile:nth-child(1) {
  grid-row: span 2;
}

.media-tile:nth-child(2) {
  background-position: 65% 32%;
}

.media-tile:nth-child(3) {
  background-position: 36% 72%;
}

.media-tile:nth-child(4) {
  background-position: 76% 70%;
}

.media-tile span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--ink);
  font-weight: 700;
}

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

.gallery-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0d0c0b;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.78);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

.contact-panel {
  border: 0;
  border-top: 1px solid rgba(247, 242, 234, 0.12);
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.map-layout {
  align-items: stretch;
}

.contact-map-section {
  overflow: hidden;
}

.map-frame {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d0c0b;
  box-shadow: var(--shadow), var(--glow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: grayscale(0.24) contrast(1.08) brightness(0.9);
}

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

.footer {
  padding: 70px 22px 34px;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.96), #050505),
    radial-gradient(circle at 50% 0%, rgba(101, 211, 204, 0.12), transparent 42%),
    radial-gradient(circle at 82% 10%, rgba(143, 32, 42, 0.14), transparent 34%);
  color: var(--muted);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 42px;
  align-items: start;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  width: 84px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 390px;
  color: var(--muted);
  line-height: 1.7;
}

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

.footer-links h3 {
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links a,
.footer-links span {
  display: block;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.45;
}

.banner-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 0 0;
  border-bottom: 1px solid var(--line);
}

.banner-strip a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 14px 8px;
  border-top: 1px solid rgba(247, 242, 234, 0.075);
  border-bottom: 1px solid rgba(247, 242, 234, 0.075);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01));
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.banner-strip a::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(-60%);
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.14), transparent 68%);
  transition: opacity 180ms ease, transform 520ms ease;
}

.banner-strip a:hover {
  border-color: rgba(194, 160, 95, 0.42);
  opacity: 0.92;
  transform: translateY(-2px);
}

.banner-strip a:hover::after {
  opacity: 1;
  transform: translateX(60%);
}

.banner-strip img {
  height: 68px;
  width: 96%;
  object-fit: contain;
}

.partners-section {
  padding-top: 66px;
  padding-bottom: 70px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006));
}

.partners-section .section-title {
  max-width: 720px;
}

.partners-section .section-title h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 12px;
}

.partners-section .section-title p {
  font-size: 16px;
}

.partners-section .banner-strip {
  border-bottom: 0;
  padding: 18px 0 0;
}

.partners-section .banner-strip a {
  min-height: 100px;
}

.partners-section .banner-strip img {
  height: 68px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 13px;
}

.footer-credit a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--brass);
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    background 180ms ease;
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .reveal-item:nth-child(2n) {
  transition-delay: 70ms;
}

.motion-ready .reveal-item:nth-child(3n) {
  transition-delay: 120ms;
}

@keyframes dotFill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes sensualDrift {
  0% {
    transform: scale(1.04) translate3d(-1.4%, 0.8%, 0);
  }

  50% {
    transform: scale(1.075) translate3d(1.2%, -0.7%, 0);
  }

  100% {
    transform: scale(1.095) translate3d(2.2%, -1.1%, 0);
  }
}

@keyframes sensualDriftReverse {
  0% {
    transform: scale(1.045) translate3d(1.5%, 0.4%, 0);
  }

  50% {
    transform: scale(1.078) translate3d(-0.8%, -0.8%, 0);
  }

  100% {
    transform: scale(1.095) translate3d(-2.1%, -1.2%, 0);
  }
}

@keyframes sensualDriftRise {
  0% {
    transform: scale(1.045) translate3d(-0.6%, 1.6%, 0);
  }

  50% {
    transform: scale(1.072) translate3d(0.8%, -0.4%, 0);
  }

  100% {
    transform: scale(1.092) translate3d(1.4%, -2%, 0);
  }
}

@keyframes sensualDriftFall {
  0% {
    transform: scale(1.045) translate3d(0.8%, -1.3%, 0);
  }

  50% {
    transform: scale(1.074) translate3d(-0.7%, 0.6%, 0);
  }

  100% {
    transform: scale(1.092) translate3d(-1.6%, 1.8%, 0);
  }
}

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

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

  .parallax-band::before,
  .slider-copy,
  .event-slide::after,
  .event-showcase-bg,
  .home-event-fit::before,
  .event-home-faq::before,
  .events-section::before,
  .partners-section::before,
  .slider-dots button::after {
    background-attachment: scroll !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    border-bottom-color: rgba(247, 242, 234, 0.12);
    background: #050505;
    backdrop-filter: none;
  }

  .site-header.is-scrolled .nav {
    min-height: 104px;
    padding: 16px 24px;
  }

  .nav {
    height: auto;
    min-height: 104px;
    display: grid;
    grid-template-columns: 1fr 48px;
    padding: 16px 24px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(210, 180, 109, 0.42);
    background: rgba(210, 180, 109, 0.1);
    color: #fff8ec;
    font-size: 24px;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-menu-open .menu-toggle {
    background: rgba(210, 180, 109, 0.12);
    border-color: rgba(210, 180, 109, 0.52);
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 0;
    padding: 14px 0 10px;
    border-top: 1px solid rgba(247, 242, 234, 0.105);
    margin-left: 0;
    background: #050505;
  }

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

  .nav-links a {
    padding: 15px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(247, 242, 234, 0.055);
  }

  .nav-indicator {
    display: none;
  }

  .social-actions,
  .lang {
    display: none;
  }

  .nav-links .mobile-lang-switch {
    display: flex;
    order: -1;
    align-items: center;
    justify-content: stretch;
    gap: 8px;
    margin-bottom: 10px;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(210, 180, 109, 0.28);
    color: var(--muted);
  }

  .nav-links .mobile-lang-switch a {
    min-height: 42px;
    flex: 1;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(247, 242, 234, 0.1);
    color: var(--muted);
  }

  .nav-links .mobile-lang-switch a::after {
    display: none;
  }

  .nav-links .mobile-lang-switch a[aria-current="true"] {
    border-color: rgba(210, 180, 109, 0.46);
    color: var(--ink);
    background: rgba(210, 180, 109, 0.08);
  }

  .nav-links .mobile-lang-switch span {
    color: rgba(247, 242, 234, 0.28);
  }

  .nav-cta {
    display: none;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .brand-logo {
    width: 82px;
    height: 82px;
  }

  .hero {
    min-height: 720px;
  }

  .event-slider {
    min-height: 720px;
  }

  .event-showcase {
    min-height: auto;
  }

  .event-showcase-inner {
    width: calc(100% - 48px);
    min-height: 760px;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 78px 0 64px;
  }

  .event-showcase-list button {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .event-showcase-list button em {
    grid-column: auto;
  }

  .home-event-fit::before,
  .event-home-faq::before,
  .events-section::before,
  .partners-section::before {
    background-attachment: scroll;
    opacity: 0.09;
    inset: 0;
  }

  .hero-meta,
  .split,
  .atmosphere-layout,
  .event-fit-layout,
  .proof-layout,
  .grid.two,
  .grid.three,
  .feature-band,
  .footer-top,
  .footer-links,
  .quick-plan,
  .week-grid,
  .trust-strip,
  .contact-actions-grid {
    grid-template-columns: 1fr;
  }

  .home-proof {
    padding: 88px 24px 94px;
  }

  .proof-copy {
    min-height: auto;
    padding: 0;
  }

  .home-event-program,
  .home-event-fit,
  .event-home-faq {
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .week-board article {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px 22px;
  }

  .week-board ul {
    grid-column: 2;
  }

  .event-fit-grid,
  .event-faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-fit-grid article {
    min-height: 230px;
  }

  .proof-experience {
    grid-template-columns: 1fr;
  }

  .proof-photo,
  .proof-photo img {
    min-height: 430px;
  }

  .proof-review {
    left: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
  }

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

  .proof-switcher button {
    min-height: 58px;
    text-align: center;
  }

  .proof-switcher button:hover,
  .proof-switcher button:focus-visible,
  .proof-switcher button.is-active {
    padding-left: 0;
  }

  .event-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .image-corridor {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px;
  }

  .flow-steps div {
    grid-template-columns: 54px 1fr;
    gap: 12px 18px;
  }

  .flow-steps p {
    grid-column: 2;
  }

  .event-detail-head,
  .event-facts,
  .price-list,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .event-detail-head {
    gap: 12px;
  }

  .event-time {
    grid-column: auto;
    padding-top: 0;
  }

  .event-detail {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
    border-color: rgba(247, 242, 234, 0.12);
    border-top-color: rgba(210, 180, 109, 0.42);
  }

  .events-list {
    grid-template-columns: 1fr;
    gap: 24px;
    border-top: 0;
  }

  .event-poster {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

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

  .gallery-grid .gallery-item:nth-child(1),
  .gallery-grid .gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .partners-section .banner-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  body {
    padding-bottom: 84px;
  }

  .media-tile:nth-child(1) {
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 62px 18px;
  }

  .home-proof {
    padding: 72px 18px 76px;
  }

  .proof-copy h2 {
    font-size: 40px;
  }

  .proof-copy {
    padding: 0;
  }

  .home-event-program,
  .home-event-fit,
  .event-home-faq {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .week-board {
    margin-top: 30px;
  }

  .week-board article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .week-board ul {
    grid-column: auto;
  }

  .event-program-actions {
    flex-direction: column;
  }

  .event-fit-grid,
  .event-faq-grid {
    grid-template-columns: 1fr;
  }

  .event-fit-grid article {
    min-height: auto;
  }

  .events-section {
    padding-top: 58px;
  }

  .events-list {
    gap: 28px;
  }

  .event-detail {
    padding: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
      #0a0a09;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  }

  .event-detail:nth-child(even) {
    background:
      linear-gradient(180deg, rgba(210, 180, 109, 0.045), rgba(255, 255, 255, 0.012)),
      #11100e;
  }

  .event-detail-head {
    gap: 12px;
  }

  .event-detail .day,
  .event-time {
    width: fit-content;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(210, 180, 109, 0.34);
    background: rgba(210, 180, 109, 0.07);
  }

  .event-detail h3 {
    font-size: 32px;
    line-height: 1;
  }

  #prices .event-detail {
    padding: 18px;
  }

  #prices .event-detail-head {
    grid-template-columns: 1fr;
  }

  #prices .event-detail h3 {
    font-size: 34px;
  }

  .event-facts,
  .price-list {
    gap: 10px;
  }

  .event-facts div,
  .price-pill {
    padding: 12px;
    border: 1px solid rgba(247, 242, 234, 0.08);
    background: rgba(0, 0, 0, 0.16);
  }

  .proof-actions {
    flex-direction: column;
    gap: 14px;
  }

  .proof-photo,
  .proof-photo img {
    min-height: 360px;
  }

  .proof-review {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    padding: 18px 0 0;
    text-shadow: none;
  }

  .proof-switcher {
    grid-template-columns: 1fr;
  }

  .proof-switcher button {
    min-height: 58px;
    text-align: left;
    padding: 0 18px;
    border-right: 0;
  }

  .image-corridor {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .image-corridor a:first-child {
    grid-row: span 1;
  }

  .flow-steps div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .flow-steps p {
    grid-column: auto;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding-bottom: 36px;
  }

  .slider-copy {
    width: calc(100% - 36px);
    padding: 0;
  }

  .slider-controls {
    width: calc(100% - 36px);
    bottom: 28px;
  }

  .event-showcase-inner {
    width: calc(100% - 36px);
    min-height: 720px;
    padding: 62px 0 54px;
  }

  .event-showcase-copy h2 {
    font-size: 42px;
  }

  .event-showcase-copy p {
    min-height: 0;
  }

  .event-showcase-actions {
    flex-direction: column;
  }

  .event-showcase-list button {
    padding: 18px 0;
  }

  .hero-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .line-list li {
    flex-direction: column;
    gap: 4px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
    height: 360px;
  }

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


  .partners-section .banner-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banner-strip a,
  .partners-section .banner-strip a {
    min-height: 112px;
    padding: 14px 8px;
  }

  .banner-strip img,
  .partners-section .banner-strip img {
    height: 76px;
  }

}

