.section-hero-formats {
  padding-top: var(--space-16);
}

.hero-formats__surface {
  padding: var(--space-8) var(--space-6);
}

.hero-formats__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.hero-formats__content p {
  max-width: 40rem;
}

.hero-formats__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.hero-formats__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.hero-formats__highlights li::before {
  content: "•";
  margin-right: 0.5rem;
  color: var(--color-primary);
}

.hero-formats__media {
  max-width: 420px;
  margin-left: auto;
}

.hero-formats__image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: #000;
}

.hero-formats__image-card img {
  width: 100%;
  height: auto;
}

.hero-formats__image-card figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  background: linear-gradient(to right, rgba(5, 5, 9, 0.95), rgba(16, 27, 58, 0.9));
}

.section-formats-overview__header {
  max-width: 46rem;
  margin-bottom: var(--space-8);
}

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

.formats-card {
  display: grid;
  grid-template-rows: auto auto;
  gap: var(--space-4);
}

.formats-card__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.formats-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formats-card__list,
.business-format__list,
.private-events__list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.formats-card__list li::before,
.business-format__list li::before,
.private-events__list li::before {
  content: "✔";
  margin-right: 0.5rem;
  color: var(--color-accent-emerald);
}

.formats-card__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.section-business-formats {
  padding-top: var(--space-12);
}

.business-formats__grid {
  align-items: stretch;
}

.business-format {
  height: 100%;
}

.private-events__surface {
  padding: var(--space-8) var(--space-6);
}

.private-events__header {
  margin-bottom: var(--space-6);
}

.private-events__grid {
  align-items: flex-start;
}

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

.private-events__note {
  margin-top: var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.section-custom-formats {
  padding-top: var(--space-12);
  padding-bottom: var(--space-16);
}

.custom-formats__wrapper {
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  background: radial-gradient(circle at top left, rgba(245, 193, 70, 0.14), rgba(5, 5, 9, 0.98));
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border-subtle);
}

.custom-formats__header {
  max-width: 40rem;
  margin-bottom: var(--space-6);
}

.custom-formats__grid {
  margin-bottom: var(--space-6);
}

.custom-formats__item {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(8, 6, 20, 0.9);
  box-shadow: var(--shadow-inner-soft);
}

.custom-formats__cta {
  max-width: 48rem;
}

.custom-formats__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

@media (max-width: 960px) {
  .hero-formats__surface {
    padding: var(--space-6) var(--space-4);
  }

  .custom-formats__wrapper,
  .private-events__surface {
    padding: var(--space-6) var(--space-4);
  }
}

@media (max-width: 768px) {
  .section-hero-formats {
    padding-top: var(--space-12);
  }

  .hero-formats__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-formats__media {
    max-width: none;
    margin: 0;
  }

  .formats-card {
    grid-template-rows: auto;
  }

  .custom-formats__grid {
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .hero-formats__cta,
  .formats-card__cta-row,
  .private-events__cta-row,
  .custom-formats__cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}
