.hero-private {
  background-image: linear-gradient(135deg, rgba(228, 179, 75, 0.16), transparent 50%), radial-gradient(circle at top, rgba(255, 75, 106, 0.18), transparent 55%), radial-gradient(circle at bottom, rgba(15, 11, 26, 0.95), #05030a);
}

.hero-private__inner {
  align-items: center;
  gap: var(--space-8);
}

.hero-private__lead {
  max-width: 34rem;
  color: var(--color-text-muted);
}

.hero-private__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-private__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--color-border-strong);
}

.hero-private__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-private__meta-item .small-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.private-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.private-list li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0.15rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2cf73, #ff4b6a);
}

.private-list--compact li {
  margin-bottom: var(--space-1);
}

.private-theme-card--image {
  padding: 0;
  overflow: hidden;
}

.private-theme-card__image-wrapper {
  max-height: 220px;
  overflow: hidden;
}

.private-theme-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.private-theme-card--image .card__body {
  padding: var(--space-4) var(--space-5) var(--space-5);
}

.private-location-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
}

.private-location-caption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  background: linear-gradient(90deg, rgba(5, 3, 10, 0.9), rgba(23, 17, 36, 0.95));
}

.private-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: private-steps-counter;
}

.private-steps > li {
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: var(--space-4);
}

.private-steps > li::before {
  counter-increment: private-steps-counter;
  content: counter(private-steps-counter);
  position: absolute;
  top: 0.15rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #111827;
  background: linear-gradient(135deg, #f2cf73, #e4b34b);
  box-shadow: var(--shadow-soft);
}

.private-steps h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

.private-steps p {
  margin-bottom: 0;
}

.private-highlight-card,
.private-location-card,
.private-focus-card,
.private-contact-card,
.private-extra-card,
.private-theme-card {
  height: 100%;
}

.private-themes-grid,
.private-extras-grid {
  align-items: stretch;
}

.small-text {
  font-size: var(--font-size-sm);
}

@media (max-width: 768px) {
  .hero-private__inner {
    grid-template-columns: 1fr;
  }

  .hero-private__media {
    order: -1;
  }

  .hero-private__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
