 .hero-events {
  position: relative;
  min-height: 70vh;
}

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

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

.hero-events::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 16, 31, 0.9) 0%, rgba(8, 16, 31, 0.35) 55%, rgba(8, 16, 31, 0.85) 100%);
  z-index: 1;
}

.hero-events-inner {
  position: relative;
  z-index: 2;
  padding-block: var(--space-16);
}

.hero-events .hero-content {
  max-width: 40rem;
}

.hero-events .hero-title {
  color: #ffffff;
}

.hero-events .hero-subtitle {
  color: rgba(226, 232, 240, 0.9);
}

.hero-events .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hero-events .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.events-grid {
  align-items: stretch;
}

.event-card {
  height: 100%;
}

.event-list {
  display: grid;
  gap: var(--space-2);
  padding-left: 1.25rem;
}

.event-list li {
  position: relative;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.event-list li::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-primary));
}

.event-image img {
  border-radius: var(--radius-lg);
}

.event-cta-inline {
  margin-top: var(--space-4);
}

.special-grid {
  align-items: center;
  gap: var(--space-10);
}

.special-highlight {
  height: 100%;
}

.gastronomy-grid {
  align-items: center;
  gap: var(--space-10);
}

.gastronomy-media {
  max-width: 520px;
  margin-inline: auto;
}

.gallery-section .gallery-wrapper {
  max-width: 720px;
  margin-inline: auto;
}

.gallery-main {
  max-height: 420px;
}

.reservation-section {
  color: #e5e7eb;
}

.reservation-section h2,
.reservation-section h3 {
  color: #ffffff;
}

.reservation-grid {
  align-items: flex-start;
  gap: var(--space-10);
}

.reservation-list {
  display: grid;
  gap: var(--space-2);
  padding-left: 1.25rem;
  margin-top: var(--space-4);
}

.reservation-list li {
  position: relative;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.9);
}

.reservation-list li::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(212, 166, 75, 0.9);
}

.reservation-note {
  margin-top: var(--space-4);
  font-size: 0.9rem;
  color: rgba(209, 213, 219, 0.9);
}

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

.reservation-contact .steps-list {
  display: grid;
  gap: var(--space-3);
  padding-left: 1.5rem;
  margin-bottom: var(--space-4);
}

.reservation-contact .steps-list li {
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

.reservation-contact .steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: -1.5rem;
  top: 0.15rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.reservation-contact .steps-list {
  counter-reset: step-counter;
}

@media (max-width: 767px) {
  .hero-events-inner {
    padding-block: var(--space-12);
  }

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

  .special-grid,
  .gastronomy-grid,
  .reservation-grid {
    gap: var(--space-8);
  }
}
