.section--hero-events {
  padding-top: calc(var(--space-16) + var(--header-height));
}

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

.hero-events-copy {
  max-width: 34rem;
}

.hero-events-lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

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

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

.hero-events-media {
  position: relative;
}

.hero-events-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.hero-events-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-events-stats {
  position: absolute;
  inset-inline: auto 1.5rem;
  bottom: 1.5rem;
  display: grid;
  gap: var(--space-2);
}

.hero-events-stat-card {
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-events-stat-label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 0.1rem;
}

.hero-events-stat-value {
  font-size: var(--font-size-sm);
  color: var(--gray-800);
}

.section-heading {
  max-width: 40rem;
}

.section-heading p {
  margin-top: var(--space-2);
}

.events-detail-grid {
  margin-top: var(--space-6);
  align-items: flex-start;
}

.events-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.events-feature-list--compact {
  gap: var(--space-3);
}

.events-feature-list h3 {
  margin-bottom: var(--space-1);
}

.events-detail-sidecard {
  max-width: 26rem;
  margin-inline: auto;
}

.events-mini-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--gray-700);
}

.events-detail-cta,
.events-corporate-cta,
.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.section-corporate {
  background: linear-gradient(135deg, var(--gray-50), #ffffff);
}

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

.events-corporate-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.events-corporate-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-grid {
  margin-top: var(--space-6);
}

.events-card-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-3);
}

.events-card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-thematic {
  background: radial-gradient(circle at top left, rgba(247, 239, 227, 0.8), #ffffff);
}

.events-thematic-grid {
  align-items: flex-start;
  gap: var(--space-6);
}

.events-thematic-sidecard {
  max-width: 26rem;
  margin-inline: auto;
}

.section-reservation {
  background: var(--gray-50);
}

.reservation-highlight {
  border-radius: var(--radius-xl);
}

.reservation-grid {
  margin-top: var(--space-4);
  align-items: flex-start;
}

.reservation-card {
  height: 100%;
}

@media (max-width: 767px) {
  .section--hero-events {
    padding-top: calc(var(--space-12) + var(--header-height));
  }

  .hero-events-stats {
    position: static;
    margin-top: var(--space-4);
    grid-template-columns: 1fr;
  }

  .events-detail-sidecard,
  .events-thematic-sidecard {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .hero-events-stats {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .hero-events-stats {
    grid-template-columns: 1fr;
    max-width: 15rem;
  }
}
