body {
  background-color: var(--color-bg);
}

.venues-hero {
  background-image: url("/assets/images/venue-prestigious-main.webp");
  background-size: cover;
  background-position: center;
}

.venues-kicker {
  font-size: var(--font-size-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.venues-hero-lead {
  max-width: 640px;
}

.venues-hero-note {
  max-width: 520px;
}

.venues-section-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.venues-highlight {
  align-items: stretch;
}

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

.venues-highlight-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venues-type-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.venues-type-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.venues-bullets {
  list-style: none;
}

.venues-bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.venues-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-emerald));
}

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

.venues-layout-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.venues-layout-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venues-outdoor-grid,
.venues-logistics-grid {
  align-items: flex-start;
}

.venues-checklist {
  display: grid;
  gap: var(--space-3);
}

.venues-checklist-item {
  font-size: var(--font-size-sm);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 162, 77, 0.28);
  background: radial-gradient(circle at top left, rgba(201, 162, 77, 0.16), transparent 55%), rgba(5, 6, 8, 0.9);
}

.venues-cta-card .venues-form {
  margin-top: var(--space-4);
}

.venues-gallery-wrapper {
  margin-top: var(--space-8);
}

.venues-gallery-main {
  max-height: 520px;
}

.venues-faq-grid {
  align-items: flex-start;
}

.venues-faq-toggle {
  font-size: var(--font-size-lg);
  line-height: 1;
}

.faq-item button {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}

.faq-item + .faq-item {
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .venues-hero .banner-content {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .venues-gallery-main {
    max-height: none;
  }
}
