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

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

.themed-hero__layout {
  align-items: center;
  column-gap: var(--space-20);
}

.themed-hero__content {
  max-width: 640px;
}

.themed-hero__intro {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
}

.themed-hero__cta {
  margin-top: var(--space-8);
}

.themed-hero__highlights {
  margin-top: var(--space-16);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-8);
  font-size: var(--font-size-sm);
}

.themed-hero__highlights dt {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-accent-gold-soft);
  margin-bottom: var(--space-2);
}

.themed-hero__highlights dd {
  margin: 0;
  color: var(--color-text-muted);
}

.themed-hero__media {
  position: relative;
}

.themed-hero__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.themed-hero__badge {
  position: absolute;
  right: var(--space-8);
  bottom: var(--space-8);
  max-width: 260px;
  padding: var(--space-6) var(--space-8);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(208,168,90,0.32), transparent 70%), rgba(5,6,7,0.96);
  border: 1px solid rgba(208,168,90,0.5);
  box-shadow: var(--shadow-soft);
}

.themed-hero__badge-title {
  display: block;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent-gold-soft);
  margin-bottom: var(--space-2);
}

.themed-hero__badge-text {
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.themed-section-header {
  max-width: 720px;
}

.themed-section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.themed-section-header--center p {
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.themed-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.themed-list li + li {
  margin-top: var(--space-2);
}

.themed-motifs__grid {
  margin-top: var(--space-12);
}

.themed-space {
  background: radial-gradient(circle at top left, rgba(208,168,90,0.1), transparent 60%), var(--color-surface-soft);
}

.themed-space__layout {
  align-items: center;
  column-gap: var(--space-20);
}

.themed-space__image-wrap {
  min-height: 280px;
}

.themed-space__details {
  margin-top: var(--space-8);
}

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

.themed-team__layout {
  align-items: flex-start;
  column-gap: var(--space-20);
}

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

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

.themed-timeline {
  margin-top: var(--space-12);
}

.themed-gallery__card {
  margin-top: var(--space-12);
  padding: 0;
  overflow: hidden;
}

.themed-gallery__image-wrap {
  max-height: 420px;
}

.themed-gallery__body {
  padding: var(--space-12) var(--space-16) var(--space-12);
}

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

.themed-testimonials__grid {
  margin-top: var(--space-12);
}

.themed-testimonial blockquote {
  margin: 0 0 var(--space-6);
  border-left-color: var(--color-accent-burgundy-soft);
}

.themed-testimonial__name {
  margin-bottom: var(--space-1);
  color: var(--color-text);
}

.themed-testimonial__meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.themed-journey__layout {
  align-items: flex-start;
  column-gap: var(--space-20);
}

.themed-journey__map {
  position: relative;
}

.themed-journey__map-shell {
  min-height: 260px;
}

.themed-journey__map-legend {
  position: absolute;
  inset: auto var(--space-6) var(--space-6) var(--space-6);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: rgba(5,6,7,0.95);
  border: 1px solid rgba(208,168,90,0.5);
  box-shadow: var(--shadow-soft);
}

.themed-journey__map-legend h3 {
  margin-bottom: var(--space-3);
}

.themed-journey__map-legend p {
  font-size: var(--font-size-sm);
}

.themed-journey__map-legend .btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: var(--font-size-xs);
}

.themed-final-cta {
  border-top: 1px solid var(--color-border-subtle);
}

.themed-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
}

.themed-final-cta__buttons {
  display: flex;
  gap: var(--space-6);
}

@media (max-width: 960px) {
  .themed-hero__layout {
    row-gap: var(--space-16);
  }

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

  .themed-hero__badge {
    position: static;
    margin-top: var(--space-6);
  }

  .themed-journey__map-legend {
    position: static;
    margin-top: var(--space-6);
  }
}

@media (max-width: 768px) {
  .themed-section-header {
    text-align: left;
  }

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

  .themed-final-cta__buttons {
    width: 100%;
    flex-direction: column;
  }

  .themed-final-cta__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

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

  .themed-hero__highlights {
    margin-top: var(--space-12);
  }
}
