.hero-themed {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero-themed-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/themed-hero-evening-show.webp');
  background-size: cover;
  background-position: center;
  filter: saturate(1.25) contrast(1.1) brightness(0.9);
  transform: scale(1.02);
  z-index: 0;
}

.hero-themed-inner {
  position: relative;
  z-index: 2;
  padding-top: var(--space-16);
  padding-bottom: var(--space-20);
}

.hero-kicker {
  font-size: var(--font-size-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent-yellow);
  margin-bottom: var(--space-3);
}

.hero-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

.hero-ctas {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-note {
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.themed-section-gap {
  gap: var(--space-8);
}

.themed-intro-card {
  align-self: stretch;
}

.themed-list li + li,
.themed-bullets li + li,
.themed-steps li + li {
  margin-top: var(--space-2);
}

.themed-bullets li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-green));
  box-shadow: 0 0 8px rgba(255, 59, 92, 0.7);
}

.themed-bullets li {
  display: flex;
  align-items: flex-start;
}

.themed-bullets li::before {
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.themed-atmosphere-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/themed-vibrant-atmosphere.webp');
  background-size: cover;
  background-position: center;
  filter: saturate(1.2) contrast(1.15) brightness(0.9);
  z-index: 0;
}

.themed-atmosphere-inner {
  position: relative;
  z-index: 2;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.themed-atmosphere-panel {
  max-width: 760px;
  margin: 0 auto;
}

.section-header {
  max-width: 720px;
  margin: 0 auto;
}

.themed-subtitle {
  font-size: var(--font-size-xl);
}

.themed-activity-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.themed-activity-card .btn {
  margin-top: var(--space-4);
}

.themed-activities-note {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
}

.themed-steps {
  counter-reset: themed-steps;
}

.themed-steps li {
  position: relative;
  padding-left: 2.25rem;
}

.themed-steps li::before {
  counter-increment: themed-steps;
  content: counter(themed-steps);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-green));
  box-shadow: var(--shadow-neon-red);
}

.themed-safe-note {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.themed-booking-panel {
  padding: var(--space-6);
}

.themed-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-references-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/themed-event-feedback.webp');
  background-size: cover;
  background-position: center;
  filter: saturate(1.15) contrast(1.1) brightness(0.85);
  z-index: 0;
}

.themed-references-inner {
  position: relative;
  z-index: 2;
}

.themed-reference-card {
  font-size: var(--font-size-sm);
}

.themed-reference-name {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-soft);
}

.themed-booking-section {
  background: radial-gradient(circle at 0 0, rgba(255, 59, 92, 0.18), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(16, 255, 136, 0.12), transparent 55%),
              var(--color-bg-elevated);
}

@media (max-width: 960px) {
  .hero-themed-inner {
    padding-top: var(--space-12);
    padding-bottom: var(--space-16);
  }
}

@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .themed-booking-panel {
    margin-top: var(--space-6);
  }
}

@media (max-width: 640px) {
  .hero-themed {
    min-height: 0;
  }
}
