body.lounge-page-active {
  background-color: var(--color-bg);
}

.hero--lounge {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

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

.hero--lounge .hero__image {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.08) brightness(0.9);
}

.hero--lounge .hero__container {
  position: relative;
  z-index: 1;
  padding-top: var(--space-80);
  padding-bottom: var(--space-80);
}

.hero__content--lounge {
  max-width: 640px;
  padding: var(--space-32);
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-24);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  align-items: center;
  margin-top: var(--space-24);
}

.hero__meta-text {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.hero__decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

.hero__decor--cards {
  width: 260px;
  height: 260px;
  right: 5%;
  top: 18%;
  background: radial-gradient(circle at 30% 30%, rgba(243, 203, 125, 0.5), transparent 65%);
  box-shadow: 0 0 120px rgba(243, 203, 125, 0.45);
}

.hero__decor--roulette {
  width: 340px;
  height: 340px;
  left: -6%;
  bottom: -8%;
  background: radial-gradient(circle at 40% 40%, rgba(92, 32, 47, 0.7), transparent 70%);
  box-shadow: 0 0 130px rgba(92, 32, 47, 0.6);
}

.section--lounge-intro {
  background: radial-gradient(circle at top left, rgba(243, 203, 125, 0.06), transparent 55%),
    linear-gradient(180deg, #050608 0, #050608 100%);
}

.lounge-intro__grid {
  align-items: flex-start;
  gap: var(--space-40);
}

.lounge-intro__card-wrapper {
  display: flex;
  align-items: center;
}

.lounge-intro__card {
  width: 100%;
}

.lounge-intro__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-24);
  margin-top: var(--space-16);
}

.lounge-intro__metric {
  font-family: var(--font-serif);
  font-size: var(--font-size-3xl);
  letter-spacing: 0.08em;
}

.section--gaming {
  position: relative;
}

.lounge-gaming__grid {
  align-items: center;
  gap: var(--space-40);
}

.lounge-gaming__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.lounge-gaming__content {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.lounge-gaming__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.section--gastronomy {
  background: radial-gradient(circle at top right, rgba(92, 32, 47, 0.35), transparent 55%),
    linear-gradient(180deg, #050608 0, #050608 100%);
}

.lounge-gastro__grid {
  gap: var(--space-40);
}

.lounge-gastro__callouts {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.lounge-gastro__card {
  height: 100%;
}

.section--evenings {
  position: relative;
}

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

.section--private-zones {
  background: radial-gradient(circle at top left, rgba(15, 60, 52, 0.45), transparent 60%),
    linear-gradient(180deg, #050608 0, #050608 100%);
}

.lounge-private__grid {
  gap: var(--space-40);
  align-items: stretch;
}

.lounge-private__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.lounge-private__service {
  align-self: center;
}

.section--interiors {
  position: relative;
}

.lounge-interior__grid {
  gap: var(--space-40);
  align-items: center;
}

.lounge-interior__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.lounge-interior__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.section--testimonials {
  background: radial-gradient(circle at top, rgba(243, 203, 125, 0.08), transparent 60%),
    linear-gradient(180deg, #050608 0, #050608 100%);
}

.lounge-testimonial__quote {
  font-style: italic;
  color: var(--color-text-muted);
}

.lounge-testimonial__author {
  margin-top: var(--space-16);
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section--cta-final {
  position: relative;
}

.lounge-final-cta__card {
  border-radius: var(--radius-xl);
}

.lounge-final-cta__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  align-items: flex-start;
}

.lounge-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .hero__content--lounge {
    padding: var(--space-40);
  }

  .lounge-final-cta__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .lounge-final-cta__text {
    max-width: 640px;
  }
}

@media (max-width: 767.98px) {
  .hero--lounge {
    min-height: 90vh;
  }

  .hero__content--lounge {
    padding: var(--space-24);
  }

  .hero__decor--cards,
  .hero__decor--roulette {
    opacity: 0.3;
  }
}
