main {
  scroll-margin-top: var(--header-height);
}

.private-strip {
  max-height: 320px;
}

.private-strip-card--wide {
  min-width: 320px;
}

.private-strip-card--medium {
  min-width: 240px;
}

@media (min-width: 960px) {
  .private-strip-card--wide {
    min-width: 420px;
  }

  .private-strip-card--medium {
    min-width: 280px;
  }
}

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

.private-aside-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.private-list li {
  margin-bottom: var(--space-2);
  color: var(--color-text-soft);
}

.private-intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.private-atmosphere {
  position: relative;
}

.private-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 10% 0%, rgba(207, 216, 255, 0.08) 0, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(79, 124, 255, 0.16) 0, transparent 60%);
  opacity: 0.9;
}

.private-atmosphere-grid,
.private-experience-grid,
.private-offline-grid,
.private-organization-grid,
.private-contact-grid {
  align-items: center;
  position: relative;
  z-index: 1;
}

.private-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(207, 216, 255, 0.2);
  box-shadow: var(--shadow-elevated);
}

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

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

.private-theme-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.private-theme-links a {
  font-size: var(--font-size-sm);
  color: var(--color-accent-moon);
}

.private-theme-links a::after {
  display: none;
}

.private-theme-links a:hover {
  color: var(--color-accent-cyan);
}

.private-testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.private-quote {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, rgba(79, 124, 255, 0.22) 0, transparent 55%),
    rgba(5, 9, 30, 0.96);
  border: 1px solid rgba(207, 216, 255, 0.24);
}

.private-quote p {
  margin-bottom: var(--space-3);
}

.private-quote footer {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.private-offline {
  position: relative;
}

.private-offline::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 85% 10%, rgba(79, 214, 255, 0.16) 0, transparent 60%);
  opacity: 0.8;
}

.private-highlights {
  height: 100%;
}

.private-steps {
  height: 100%;
}

.private-steps-list {
  counter-reset: private-step;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.private-steps-list li {
  color: var(--color-text-soft);
}

.private-step-title {
  font-weight: 600;
  color: var(--color-accent-moon);
}

.private-contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.private-contact-hint {
  align-self: stretch;
}

@media (max-width: 768px) {
  .hero-subtitle {
    max-width: none;
  }

  .private-contact-ctas {
    flex-direction: column;
  }

  .private-intro-links {
    flex-direction: column;
  }
}
