.venue-hero {
  position: relative;
}

.venue-hero__content {
  position: relative;
  z-index: 1;
}

.venue-hero__text {
  max-width: 40rem;
}

.venue-hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
}

.venue-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

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

.venue-layout-grid,
.venue-green-grid,
.venue-tables-grid,
.venue-light-grid,
.venue-reservation-grid {
  align-items: stretch;
}

.venue-card__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.venue-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-card__body {
  margin-top: var(--space-4);
}

.venue-green {
  background: radial-gradient(circle at top left, rgba(53, 216, 112, 0.16), transparent 55%),
    linear-gradient(135deg, #050607, #0c1011);
}

.venue-green__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

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

.venue-flex-cta .btn {
  flex: 1;
  justify-content: center;
}

.venue-tables {
  border-block: 1px solid var(--color-border-subtle);
}

.venue-tables__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.venue-light {
  background: radial-gradient(circle at top, rgba(23, 74, 44, 0.35), #050607 60%);
}

.venue-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.venue-gallery-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
}

.venue-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.venue-gallery-item figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.venue-reservation-list,
.venue-reservation-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-left: 0;
  margin-top: var(--space-3);
}

.venue-reservation-card {
  align-self: stretch;
}

.venue-reservation-steps li::before {
  content: "";
}

@media (max-width: 960px) {
  .venue-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .venue-hero__text {
    max-width: 100%;
  }

  .venue-hero__actions {
    flex-direction: column;
  }

  .venue-green__image-wrapper,
  .venue-tables__image-wrapper {
    order: -1;
  }

  .venue-gallery-grid {
    grid-template-columns: 1fr;
  }

  .venue-flex-cta .btn {
    width: 100%;
  }
}
