.reservations-hero {
  align-items: center;
}

.reservations-hero__content {
  max-width: 540px;
}

.reservations-hero__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
}

.reservations-hero__cta {
  flex-wrap: wrap;
}

.reservations-online__form {
  align-self: stretch;
}

.reservations-form .w-full {
  width: 100%;
}

.reservations-steps {
  counter-reset: step;
}

.reservations-steps li {
  padding-left: 26px;
}

.reservations-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(224, 177, 91, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  background: rgba(224, 177, 91, 0.12);
  color: var(--color-primary-strong);
}

.reservations-times__grid {
  margin-top: var(--space-3);
}

.reservations-times__grid h3 {
  margin-bottom: var(--space-1);
}

.reservations-private__media img,
.reservations-poker__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.reservations-faq .card h3 {
  margin-bottom: var(--space-2);
}

@media (max-width: 768px) {
  .reservations-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .reservations-hero__content {
    order: 1;
  }

  .reservations-hero__media {
    order: 2;
    margin-top: var(--space-6);
  }
}
