.themed-hero {
  position: relative;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.themed-hero__bg {
  background: var(--gradient-hero);
}

.themed-hero__bg::after {
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.5), #05030a);
}

.themed-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.17;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.themed-hero__media img {
  max-width: 960px;
  width: 100%;
  height: auto;
  filter: saturate(1.15) contrast(1.05) blur(0.3px);
}

.themed-hero .hero-center__inner {
  position: relative;
  z-index: 1;
}

.themed-kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.themed-hero__subtitle {
  max-width: 40rem;
  margin-inline: auto;
}

.themed-intro {
  padding-top: var(--space-12);
}

.themed-intro__grid {
  align-items: center;
}

.themed-intro__image-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.themed-intro__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-intro__note {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-intro__tags {
  margin-top: var(--space-4);
}

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

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

.themed-scenarios__grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.themed-scenarios__list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.themed-scenarios__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.section-heading--left {
  text-align: left;
}

.section-heading--left p {
  margin-inline: 0;
}

.themed-groups__grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.themed-groups__cards {
  margin-top: var(--space-4);
}

.themed-groups__note {
  margin-top: var(--space-4);
}

.themed-reservation {
  align-self: stretch;
}

.themed-form__submit {
  width: 100%;
  margin-top: var(--space-2);
}

.themed-form__privacy {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
}

.themed-form__privacy a {
  text-decoration: underline;
}

.themed-gallery__card {
  display: grid;
  gap: var(--space-5);
}

.themed-gallery__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.themed-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-gallery__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.themed-gallery__cta {
  align-self: flex-start;
}

.themed-faq-cta__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

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

@media (min-width: 768px) {
  .themed-hero {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
  }

  .themed-gallery__card {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: stretch;
  }

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

@media (max-width: 767px) {
  .themed-hero__media {
    opacity: 0.23;
  }

  .themed-gallery__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
