body.bg-emerald {
  background: radial-gradient(circle at 20% 0, rgba(31, 159, 107, 0.4), transparent 60%), #050507;
}

.hero--venues {
  min-height: min(78vh, 720px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.hero-content {
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.hero-note {
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
  max-width: 34rem;
}

.venues-intro {
  max-width: 800px;
}

.venues-intro__header {
  text-align: left;
}

.venues-grid {
  gap: var(--space-8);
  align-items: center;
}

.venues-grid--reverse {
  direction: rtl;
}

.venues-grid--reverse > * {
  direction: ltr;
}

.venues-grid__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.venues-grid__media {
  align-self: stretch;
}

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

.venues-figure--tall .venues-figure__image {
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}

.venues-figure--wide .venues-figure__image {
  height: 100%;
  max-height: 420px;
  object-fit: cover;
}

.venues-figure__caption {
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(135deg, rgba(5,5,7,0.96), rgba(5,5,7,0.9));
  font-size: var(--font-size-sm);
}

.venues-list,
.venues-bullets {
  margin-top: var(--space-2);
}

.venues-list li,
.venues-bullets li {
  color: var(--color-text-muted);
}

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

.venues-highlight {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.venues-highlight__title {
  font-size: var(--font-size-xl);
}

.venues-highlight__btn {
  margin-top: auto;
}

.venues-flow {
  height: 100%;
}

.venues-flow__list {
  padding-left: 1.25rem;
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.venues-flow__list li + li {
  margin-top: 0.5rem;
}

.venues-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding-left: 0;
}

.venues-tags li {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: var(--font-size-xs);
  text-transform: lowercase;
}

.venues-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.venues-pill {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(243,199,104,0.16), transparent 60%), rgba(10,10,14,0.96);
  box-shadow: var(--shadow-soft);
}

.venues-pill h3 {
  font-size: var(--font-size-lg);
}

.venues-feature-grid {
  margin-top: var(--space-5);
}

.venues-feature {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(10,10,14,0.9);
  border: 1px solid var(--color-border-subtle);
}

.venues-callout {
  height: 100%;
}

.venues-region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.venues-region {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background-color: rgba(15,15,20,0.9);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: var(--font-size-xs);
}

.venues-consult {
  height: 100%;
}

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

.venues-gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.venues-gallery-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.venues-faq-grid {
  margin-top: var(--space-5);
}

.venues-faq__header {
  max-width: 760px;
}

.venues-faq-item h3 {
  font-size: var(--font-size-lg);
}

.venues-faq__footer {
  margin-top: var(--space-5);
  text-align: center;
}

.venues-howto-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.venues-howto-header {
  max-width: 720px;
}

.venues-howto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
  padding-left: 0;
  list-style: none;
  counter-reset: venues-steps;
}

.venues-howto-steps > li {
  position: relative;
  padding-top: var(--space-4);
}

.venues-howto-steps > li::before {
  counter-increment: venues-steps;
  content: counter(venues-steps);
  position: absolute;
  top: 0;
  left: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #f3c768, #d6a34a);
  color: #120f08;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--font-size-sm);
}

.venues-howto-steps h3 {
  font-size: var(--font-size-md);
}

.venues-howto-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
}

.venues-responsible-card {
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero--venues {
    min-height: auto;
    padding-top: var(--space-16);
    padding-bottom: var(--space-12);
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .venues-grid--reverse {
    direction: ltr;
  }
}

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

  .venues-gallery-meta {
    flex-direction: column;
  }

  .venues-howto-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .venues-howto-cta {
    justify-content: flex-start;
  }
}
