body {
  background-color: var(--color-bg);
}

.hero--themed {
  position: relative;
  background-color: #040407;
}

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

.hero--themed .hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.3) brightness(0.6);
  transform: scale(1.05);
}

.hero--themed .hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 22, 57, 0.45), transparent 55%), linear-gradient(160deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.96));
  mix-blend-mode: multiply;
}

.hero--themed .hero__inner {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.hero__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.themed-intro {
  align-items: stretch;
}

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

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

.themed-list {
  display: grid;
  gap: var(--space-2);
}

.themed-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2);
  align-items: center;
  font-size: var(--font-size-sm);
}

.themed-list--compact {
  gap: var(--space-1);
}

.themed-list--compact li {
  grid-template-columns: 1fr;
}

.themed-motifs .themed-card {
  background: linear-gradient(145deg, #15161c, #070810);
}

.themed-subheading {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--font-size-lg);
}

.themed-link-block {
  align-self: center;
}

.themed-link-block .btn {
  min-width: 0;
}

.themed-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-hard);
}

.themed-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 22, 57, 0.32), transparent 52%);
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
}

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

.themed-games .themed-card {
  display: flex;
  flex-direction: column;
}

.themed-more-link {
  margin-top: auto;
  font-size: var(--font-size-sm);
}

.themed-hosts__grid,
.themed-scenography__grid,
.themed-booking__grid,
.themed-safety__grid {
  align-items: center;
  gap: var(--space-8);
}

.themed-guests .card {
  background: radial-gradient(circle at 100% 0%, rgba(255, 22, 57, 0.22), transparent 55%), linear-gradient(150deg, #161720, #050507);
}

.themed-steps {
  counter-reset: step;
  display: grid;
  gap: var(--space-2);
}

.themed-steps li {
  position: relative;
  padding-left: 2.4rem;
  font-size: var(--font-size-sm);
}

.themed-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  background: radial-gradient(circle at 30% 0%, rgba(255, 22, 57, 0.6), transparent 60%), #050608;
}

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

.themed-form-note {
  margin-top: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.themed-contact-alt {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.themed-gallery__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-hard);
}

.themed-gallery__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: contrast(1.25) brightness(0.85);
}

.themed-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(5, 6, 8, 0.7), rgba(255, 22, 57, 0.28), rgba(5, 6, 8, 0.85));
  pointer-events: none;
}

.themed-gallery__cta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-4);
}

.themed-safety .alert {
  margin-top: var(--space-2);
}

@media (max-width: 768px) {
  .themed-hosts__grid,
  .themed-scenography__grid,
  .themed-booking__grid,
  .themed-safety__grid {
    gap: var(--space-4);
  }

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

  .themed-gallery__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .themed-steps li {
    padding-left: 2rem;
  }
}
