.hero--themed .hero__media {
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero__image {
  width: 100%;
  height: clamp(420px, 65vh, 640px);
  object-fit: cover;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.section--philosophy {
  padding-top: var(--space-80);
}

.themed-grid-responsive {
  align-items: flex-start;
  gap: var(--space-40);
}

.themed-motifs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-32);
}

.themed-motif-card {
  position: relative;
  padding-top: var(--space-32);
}

.themed-motif-card::before {
  content: "";
  position: absolute;
  inset: var(--space-24) auto auto var(--space-24);
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-gold), transparent);
}

.themed-cities__image-wrapper,
.themed-decor__image-wrapper,
.themed-testimonial-card__image-wrapper,
.themed-case-card__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.themed-cities__image,
.themed-decor__image,
.themed-testimonial-card__image,
.themed-case-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-cities__content,
.themed-decor__content {
  align-self: center;
}

.themed-cities__actions {
  margin-top: var(--space-24);
}

.themed-usp-card {
  height: 100%;
}

.themed-usp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-12);
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

.themed-cases-grid {
  gap: var(--space-32);
}

.themed-case-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.themed-case-card__image-wrapper {
  max-height: 220px;
}

.themed-case-card .card__body {
  padding: var(--space-24);
}

.themed-case-card__link {
  padding-left: 0;
}

.themed-testimonials .card {
  padding: 0;
}

.themed-testimonial-card__image-wrapper {
  max-height: 220px;
}

.themed-testimonials .card__body {
  padding: var(--space-24);
}

.themed-contact-card {
  height: 100%;
}

.themed-contact-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-muted);
  font-size: var(--font-size-sm);
  display: grid;
  gap: var(--space-8);
}

.themed-contact-steps li::marker {
  color: var(--color-accent-gold);
}

@media (max-width: 1024px) {
  .themed-motifs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero__image {
    height: clamp(360px, 55vh, 520px);
  }

  .themed-motifs-grid {
    grid-template-columns: 1fr;
  }

  .themed-grid-responsive {
    gap: var(--space-32);
  }
}

@media (max-width: 640px) {
  .section {
    padding-top: var(--space-48);
    padding-bottom: var(--space-48);
  }

  .hero__actions {
    flex-direction: column;
  }
}
