.hero--themed {
  align-items: flex-end;
  padding-bottom: var(--space-16);
}

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

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

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

.link-underline {
  position: relative;
  font-size: var(--font-size-sm);
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.link-underline:hover::after {
  opacity: 1;
}

.themed-intro__grid {
  gap: var(--space-10);
  align-items: center;
}

.themed-intro__text {
  max-width: 34rem;
}

.themed-intro__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.themed-intro__media {
  max-width: 30rem;
  margin-left: auto;
}

.themed-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(15, 39, 71, 0.7), #05070a);
  box-shadow: var(--shadow-elevated);
}

.themed-image-card img {
  width: 100%;
  height: auto;
}

.themed-image-card figcaption {
  padding: var(--space-4) var(--space-5);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-image-card--wide {
  max-width: 36rem;
  margin-inline: auto;
}

.themed-image-card--gallery {
  max-width: 44rem;
  margin-inline: auto;
}

.themed-scenarios__grid {
  margin-top: var(--space-10);
}

.themed-list {
  list-style: none;
  padding-left: 0;
}

.themed-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--color-primary-strong), var(--color-accent-burgundy));
}

.themed-list.compact li {
  margin-bottom: var(--space-2);
}

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

.themed-concept__sidebar {
  max-width: 26rem;
  margin-left: auto;
}

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

.themed-scenography__grid {
  gap: var(--space-12);
  align-items: center;
}

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

.themed-scenography__item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

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

.themed-usecases__grid {
  gap: var(--space-10);
}

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

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

.themed-team__callout {
  max-width: 28rem;
  margin-left: auto;
}

.themed-gallery__container {
  display: grid;
  gap: var(--space-8);
}

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

.themed-gallery__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

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

.themed-expert__form {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08), #080a10);
  box-shadow: var(--shadow-soft);
}

.themed-expert__form .form-group {
  margin-bottom: var(--space-4);
}

.themed-expert__disclaimer {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.themed-expert__submit {
  width: 100%;
}

@media (max-width: 900px) {
  .hero--themed {
    min-height: 80vh;
    align-items: center;
  }

  .themed-intro__media,
  .themed-concept__sidebar,
  .themed-team__callout {
    max-width: 100%;
    margin: 0;
  }

  .themed-gallery__links {
    flex-direction: column;
  }

  .themed-expert__submit {
    width: auto;
  }
}

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

  .themed-expert__form {
    padding: var(--space-4);
  }
}
