.hero-lounge {
  position: relative;
  color: var(--color-text);
}

.hero-lounge__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-lounge__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05) brightness(0.7);
  transform: scale(1.02);
}

.hero-lounge__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(201, 156, 87, 0.28) 0, transparent 40%),
    radial-gradient(circle at bottom, rgba(0, 0, 0, 0.9) 45%, #000 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-lounge__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--space-12) + 1.5rem);
  padding-bottom: var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-lounge__badge-row {
  margin-bottom: var(--space-4);
}

.hero-lounge__title {
  max-width: 22ch;
}

.hero-lounge__subtitle {
  max-width: 50ch;
  font-size: var(--font-size-md);
}

.hero-lounge__header {
  margin-bottom: var(--space-6);
}

.hero-lounge__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero-lounge__meta {
  flex-wrap: wrap;
}

.hero-lounge__meta-item {
  min-width: 180px;
}

.hero-lounge__meta-label {
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.hero-lounge__meta-value {
  color: var(--color-text-soft);
}

.lounge-nav {
  position: sticky;
  top: var(--site-header-height);
  z-index: 5;
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.98), rgba(5, 6, 8, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.lounge-nav__inner {
  justify-content: flex-start;
}

.lounge-nav__link {
  position: relative;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  background: rgba(8, 9, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-base);
}

.lounge-nav__link:hover {
  color: var(--color-text);
  border-color: rgba(201, 156, 87, 0.7);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.75);
  background: linear-gradient(135deg, rgba(201, 156, 87, 0.22), rgba(8, 9, 12, 0.96));
}

.lounge-nav__link.is-active {
  color: #000;
  background: linear-gradient(135deg, var(--color-primary-strong), #f2d39c);
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.lounge-section {
  align-items: center;
}

.lounge-section__text {
  max-width: 36rem;
}

.lounge-section__visual--image {
  padding: 0;
  overflow: hidden;
}

.lounge-section__visual--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lounge-section__cta-row {
  align-items: center;
}

.lounge-section__tags .badge {
  background: rgba(12, 13, 20, 0.98);
}

.lounge-list {
  display: grid;
  gap: var(--space-2);
  padding-left: 0;
}

.lounge-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.lounge-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #fff 0, var(--color-primary-strong) 45%, #7b5523 100%);
  box-shadow: 0 0 12px rgba(201, 156, 87, 0.7);
}

.lounge-events-grid .card-title,
.lounge-stories-grid .card-title {
  font-size: var(--font-size-lg);
}

.lounge-lights {
  background: radial-gradient(circle at top, rgba(201, 156, 87, 0.1), transparent 55%);
}

.lounge-vip {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at center, rgba(40, 53, 34, 0.24), transparent 65%);
}

.lounge-booking__grid {
  align-items: stretch;
}

.lounge-booking__form {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.lounge-booking__links .button {
  min-width: 180px;
}

@media (max-width: 1024px) {
  .hero-lounge__content {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }
}

@media (max-width: 768px) {
  .hero-lounge__subtitle {
    max-width: 100%;
  }

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

  .lounge-nav {
    overflow-x: auto;
  }

  .lounge-nav__inner {
    white-space: nowrap;
  }

  .lounge-section__text {
    max-width: 100%;
  }

  .lounge-booking__links .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-lounge__media img {
    transform: none;
  }
}
