.hero--themed h1 {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero--themed .hero-subtitle {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.themed-floating-image {
  border-radius: var(--radius-lg);
}

.themed-floating-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-intro-grid {
  align-items: center;
}

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

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

.themed-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.themed-card-image {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.themed-card-link {
  margin-top: auto;
}

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

.themed-benefits-grid {
  align-items: stretch;
  gap: var(--space-40);
}

.themed-benefits-list .themed-list {
  margin-top: var(--space-16);
  margin-bottom: var(--space-16);
}

.themed-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.themed-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 0 2px #fff7d6;
  background: radial-gradient(circle at center, #ffe176, var(--color-primary));
  flex-shrink: 0;
}

.themed-booking {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-32);
  align-items: stretch;
}

.themed-booking-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.themed-steps {
  list-style: decimal;
  padding-left: 1.25rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-steps li {
  margin-bottom: var(--space-8);
}

.themed-booking-venue {
  margin-top: auto;
}

@media (max-width: 900px) {
  .themed-booking {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero--themed h1 {
    font-size: var(--font-size-3xl);
  }

  .themed-intro-actions {
    flex-direction: column;
  }
}
