.hero--themed {
  position: relative;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}
.hero--themed .hero__subtitle {
  max-width: 640px;
  margin: var(--space-4) auto 0;
  color: var(--color-text-muted);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.27;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--themed .hero__inner {
  position: relative;
  z-index: 1;
}
.themed-intro-grid {
  align-items: flex-start;
  gap: var(--space-8);
}
.themed-intro-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.themed-motifs-card {
  align-self: stretch;
}
.themed-motifs-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.themed-motif-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-1);
}
.themed-scenography-grid,
.themed-crew-grid,
.themed-motion-grid,
.themed-types-grid,
.themed-cta-grid {
  align-items: center;
  gap: var(--space-8);
}
.themed-scenography-media,
.themed-motion-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.themed-metrics-grid {
  margin-top: var(--space-6);
  gap: var(--space-6);
}
.themed-crew-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.themed-vip-list,
.themed-story-list,
.themed-motion-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.themed-vip-card,
.themed-story-card {
  height: 100%;
}
.themed-motion-points li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 2px;
  margin-right: var(--space-2);
  background: linear-gradient(90deg, var(--color-primary), var(--color-neon-red));
  vertical-align: middle;
  transform: skewX(-25deg);
}
.themed-motion-points li {
  color: var(--color-text-muted);
}
.themed-types-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.themed-gallery {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.themed-gallery-header {
  max-width: 720px;
  margin: 0 auto var(--space-8);
  text-align: center;
}
.themed-gallery-strip {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, rgba(255, 0, 60, 0.4), transparent 50%),
    var(--color-surface-alt);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
}
.themed-gallery-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.themed-gallery-item img {
  border-radius: var(--radius-lg);
}
.themed-gallery-caption h3 {
  margin-bottom: var(--space-2);
}
.themed-cta-form {
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 40%),
    radial-gradient(circle at 100% 0, rgba(255, 0, 60, 0.35), transparent 55%),
    var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}
.themed-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.themed-form-field + .themed-form-field {
  margin-top: var(--space-4);
}
.themed-form-consent {
  margin: var(--space-4) 0;
}
.themed-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.themed-checkbox input {
  margin-top: 3px;
}
.themed-checkbox a {
  text-decoration: underline;
}
.themed-faq-header {
  max-width: 720px;
  margin: 0 auto var(--space-8);
  text-align: center;
}
.themed-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.themed-faq-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.themed-faq-item {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface-alt);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.themed-faq-question {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-2);
}
.themed-faq-answer p {
  margin-bottom: 0;
}
.themed-faq-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-8);
}
@media (max-width: 959.98px) {
  .hero--themed {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
  .hero__media {
    opacity: 0.32;
  }
  .themed-gallery-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .themed-intro-grid,
  .themed-scenography-grid,
  .themed-crew-grid,
  .themed-motion-grid,
  .themed-types-grid,
  .themed-cta-grid {
    gap: var(--space-6);
  }
  .themed-cta-form {
    padding: var(--space-4);
  }
  .themed-faq-grid {
    grid-template-columns: 1fr;
  }
  .themed-form-row {
    grid-template-columns: 1fr;
  }
}
