.venues-hero {
  padding-top: calc(var(--space-80));
}

.venues-hero-grid {
  align-items: center;
}

.venues-hero-copy {
  max-width: 38rem;
  color: #f7f3ec;
}

.venues-hero-visual {
  align-self: stretch;
}

.venues-hero-figure {
  position: relative;
  padding: var(--space-20);
}

.venues-hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
}

.venues-hero-caption {
  margin-top: var(--space-16);
}

.venues-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  margin-top: var(--space-20);
}

.venues-hero-cta {
  margin-top: var(--space-24);
  margin-bottom: var(--space-16);
}

.venues-hero-meta {
  margin-top: var(--space-16);
}

.venues-layout-section {
  background: #f7f3ec;
}

.venues-layout-header {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-32);
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-40);
}

.venues-layout-actions {
  max-width: 28rem;
}

.venues-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-16);
}

.venues-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-32);
}

.venues-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.venues-card-media {
  position: relative;
}

.venues-card-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.venues-badge {
  position: absolute;
  left: var(--space-20);
  bottom: var(--space-20);
  backdrop-filter: blur(18px);
}

.venues-card-body {
  padding: var(--space-24);
}

.venues-card-header {
  margin-bottom: var(--space-16);
}

.venues-card-meta {
  margin-top: var(--space-20);
}

.venues-card-footer {
  margin-top: var(--space-24);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.2rem;
  justify-content: space-between;
}

.venues-gallery-trigger {
  font-size: var(--font-size-sm);
}

.venues-tech-section {
  background: radial-gradient(circle at 0 0, rgba(247, 243, 236, 0.25), transparent 55%), #111318;
  color: #f7f3ec;
}

.venues-tech-section h2,
.venues-tech-section .section-label {
  color: #f7f3ec;
}

.venues-tech-section p,
.venues-tech-section li {
  color: rgba(244, 239, 232, 0.92);
}

.venues-tech-section .caption-muted,
.venues-tech-section .section-intro {
  color: rgba(247, 243, 236, 0.9);
}

.venues-tech-grid {
  align-items: stretch;
  gap: var(--space-40);
}

.venues-tech-cta {
  margin-top: var(--space-24);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.4rem;
}

.venues-offer-panel h3 {
  margin-top: var(--space-16);
  margin-bottom: var(--space-12);
  color: #f7f3ec;
}

.venues-offer-grid {
  margin-top: var(--space-20);
  margin-bottom: var(--space-20);
}

.venues-offer-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.2rem;
  margin-top: var(--space-8);
}

.venues-next-steps {
  background: #f7f3ec;
}

.venues-next-grid {
  align-items: flex-start;
  gap: var(--space-32);
}

.venues-next-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-24);
  box-shadow: var(--shadow-subtle);
}

@media (max-width: 960px) {
  .venues-hero {
    padding-top: var(--space-64);
  }

  .venues-hero-figure {
    margin-top: var(--space-24);
  }
}

@media (max-width: 768px) {
  .venues-card-image {
    height: 210px;
  }

  .venues-layout-header {
    flex-direction: column;
  }

  .venues-card-footer,
  .venues-offer-footer,
  .venues-tech-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .venues-next-item {
    padding: var(--space-20);
  }
}

@media (max-width: 480px) {
  .venues-hero {
    padding-top: var(--space-48);
    padding-bottom: var(--space-40);
  }

  .venues-hero-stats {
    gap: 1rem;
  }

  .venues-card-image {
    height: 180px;
  }

  .venues-card-body {
    padding: var(--space-16);
  }

  .venues-filters {
    gap: 0.4rem;
  }

  .venues-gallery {
    gap: var(--space-24);
  }
}
