.hero--venues {
  position: relative;
}

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

.hero-text-block {
  max-width: 40rem;
}

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

.hero-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.hero-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.section-header--split {
  align-items: flex-start;
}

.section-header--split .section-header-cta {
  margin-top: var(--space-4);
}

.section-header--narrow {
  max-width: 46rem;
}

.venue-card-grid {
  align-items: stretch;
}

.venue-card .venue-strip {
  font-size: var(--font-size-xs);
}

.multi-layout-grid,
.how-we-choose-grid,
.onsite-services-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.themed-venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.themed-subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.themed-venue-media .themed-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.room-type-grid,
.access-grid {
  align-items: stretch;
}

.onsite-cta-card {
  align-self: stretch;
}

.gallery-promo-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: var(--space-8);
  align-items: flex-start;
}

.gallery-promo-preview .gallery-grid {
  margin-bottom: var(--space-3);
}

.gallery-item--placeholder {
  background: radial-gradient(circle at top, rgba(255,59,127,0.2), transparent 55%),
              radial-gradient(circle at bottom, rgba(62,215,168,0.18), transparent 60%),
              var(--color-surface);
}

.gallery-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .hero-layout,
  .themed-venue-layout,
  .gallery-promo-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-text-block {
    order: 1;
  }

  .hero-media-block {
    order: 2;
  }

  .section-header--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header--split .section-header-cta {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
}
