.venue-hero {
  position: relative;
  min-height: 100vh;
  background-color: #000;
}

.venue-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.venue-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.venue-hero__overlay {
  position: relative;
}

.venue-hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.venue-hero__lead {
  max-width: 34rem;
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
}

.venue-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.venue-section {
  position: relative;
}

.venue-section__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.venue-section__text {
  align-self: center;
}

.venue-section__media {
  align-self: stretch;
}

.venue-section__cta {
  margin-top: var(--space-6);
}

.venue-section__cta--inline {
  margin-top: var(--space-4);
}

.venue-section__cta--stacked {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.venue-section__note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.venue-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.venue-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.venue-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--color-accent-gold), var(--color-primary));
  box-shadow: 0 0 12px rgba(201, 161, 95, 0.6);
}

.venue-section--lounge .media-frame,
.venue-section--casino .media-frame {
  box-shadow: var(--shadow-strong);
}

@media (max-width: 768px) {
  .venue-hero__content {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .venue-hero__lead {
    font-size: var(--font-size-base);
  }

  .venue-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
