.hero--themed {
  position: relative;
}

.hero--themed .hero-content {
  align-items: center;
}

.hero-copy p {
  max-width: 560px;
}

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

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-visual-card {
  position: relative;
  max-width: 420px;
}

.hero-visual-main img {
  width: 100%;
  height: auto;
}

.hero-visual-badges {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-stat-card {
  flex: 1 1 140px;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 79, 154, 0.15);
}

.hero-stat-label {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.hero-stat-value {
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto var(--space-8);
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
}

.themed-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

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

.themed-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.themed-bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.themed-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-soft));
  margin-top: 0.45rem;
}

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

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

.themed-decor-media img {
  border-radius: var(--radius-lg);
}

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

.themed-program-grid {
  align-items: stretch;
}

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

.themed-photo-grid {
  align-items: center;
  gap: var(--space-8);
}

.themed-photo-media img {
  border-radius: var(--radius-lg);
}

.themed-branding-grid {
  align-items: stretch;
}

.themed-gallery-grid {
  align-items: center;
  gap: var(--space-8);
}

.themed-gallery-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.themed-cta {
  max-width: 960px;
}

.themed-cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.themed-cta-text {
  max-width: 520px;
}

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

@media (max-width: 960px) {
  .hero-visual {
    justify-content: center;
    margin-top: var(--space-6);
  }

  .hero-visual-badges {
    position: static;
    margin-top: var(--space-4);
  }

  .themed-intro {
    grid-template-columns: minmax(0, 1fr);
  }

  .themed-photo-grid,
  .themed-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

  .themed-cta-card {
    align-items: flex-start;
  }
}
