.hero-private {
  position: relative;
  color: #ffffff;
}

.hero-private__media {
  position: relative;
  max-height: 520px;
  overflow: hidden;
}

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

.hero-private__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 10, 5, 0.35), rgba(18, 10, 5, 0.8));
}

.hero-private__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-private__inner {
  pointer-events: auto;
  text-align: center;
}

.hero-private__kicker {
  color: rgba(255, 255, 255, 0.72);
}

.hero-private__title {
  font-family: var(--font-serif);
  color: #ffffff;
  margin-bottom: var(--space-16);
}

.hero-private__subtitle {
  max-width: 720px;
  margin: 0 auto var(--space-24);
  color: rgba(255, 255, 255, 0.85);
}

.hero-private__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
}

@media (max-width: 768px) {
  .hero-private__inner {
    text-align: left;
  }

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

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

.private-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-8);
  color: var(--color-muted);
}

.private-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-sage));
}

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

.private-highlight__list {
  list-style: none;
  padding: 0;
  margin: var(--space-16) 0 var(--space-24);
}

.private-highlight__list li {
  margin-bottom: var(--space-8);
  color: var(--color-muted);
}

.private-highlight__cta {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .private-highlight__cta {
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }
}

.themed-block__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.themed-block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.themed-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

.entertainment-card__list {
  list-style: none;
  padding: 0;
  margin: var(--space-12) 0 0;
}

.entertainment-card__list li {
  margin-bottom: var(--space-8);
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

.culinary-block__details {
  align-self: center;
}

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

.culinary-steps li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: var(--space-16);
  color: var(--color-muted);
}

.culinary-steps li::before {
  counter-increment: culinary-counter;
  content: counter(culinary-counter);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background-color: var(--color-bg-secondary);
  color: var(--color-heading);
  font-size: var(--font-size-xs);
  display: flex;
  align-items: center;
  justify-content: center;
}

.venues-block__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.manager-block__card {
  align-self: stretch;
}

.manager-block__timeline {
  align-self: center;
}

.manager-block__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-16);
  color: var(--color-heading);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-24);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.timeline__item {
  position: relative;
  padding-left: 1.5rem;
  padding-bottom: var(--space-16);
  color: var(--color-muted);
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: var(--color-accent-gold);
}

.gallery-block__media img {
  border-radius: var(--radius-xl);
}

.stories-block .quote {
  font-size: var(--font-size-lg);
}

.stories-block .quote__mark {
  line-height: 1;
}

.faq-block__card {
  margin: 0 auto;
  max-width: 860px;
}

.contact-block__card {
  max-width: 880px;
  margin: 0 auto;
}

.contact-form__group {
  width: 100%;
}

.contact-form__note {
  margin-top: var(--space-16);
  font-size: var(--font-size-sm);
  color: var(--gray-500);
}

.contact-form__footer {
  margin-top: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.contact-form__legal {
  font-size: var(--font-size-xs);
  color: var(--gray-500);
}

@media (max-width: 640px) {
  .contact-form__footer {
    align-items: stretch;
  }
}
