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

.private-hero {
  position: relative;
  padding-block: 0;
}

.private-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.private-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.private-hero .container {
  position: relative;
  z-index: 1;
}

.private-hero-content {
  max-width: 640px;
  padding-block: var(--space-16);
}

.private-hero-subtitle {
  font-size: var(--font-size-md);
  max-width: 40rem;
}

.private-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

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

.private-section-header p {
  max-width: 640px;
}

.private-intro-grid {
  align-items: flex-start;
}

.private-bullets,
.private-steps {
  display: grid;
  gap: var(--space-2);
  padding-left: 0;
}

.private-bullets li,
.private-steps li {
  position: relative;
  padding-left: 1.4rem;
  font-size: var(--font-size-sm);
}

.private-bullets li::before,
.private-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 10px;
  height: 2px;
  background: var(--color-primary);
}

.private-bullets--light li::before {
  background: #ffffff;
}

.private-hosts-links {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.private-program-grid .card-title {
  text-transform: uppercase;
}

.private-program-grid .private-card-cta {
  margin-top: var(--space-3);
}

.private-theme-grid .card h3 {
  margin-bottom: var(--space-2);
}

.private-gallery {
  background: var(--color-surface-strong);
}

.private-contact-grid {
  align-items: stretch;
}

.private-form-note {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-normal);
}

.private-cta {
  background: linear-gradient(120deg, #ffffff 0%, #f5f5f5 40%, #ffe5e7 100%);
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
}

@media (max-width: 880px) {
  .private-hero-content {
    padding-block: var(--space-12);
  }

  .private-hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .private-hero-content {
    padding-block: var(--space-10);
  }

  .private-hero-subtitle {
    font-size: var(--font-size-base);
  }
}
