.hero--restaurant {
  background: #020617;
}

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

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

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

.restaurant-section {
  scroll-margin-top: 6rem;
}

.restaurant-section--kitchen .restaurant-highlights {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.restaurant-highlight p {
  margin-bottom: 0;
}

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

.section-header {
  max-width: 640px;
}

.restaurant-menu-grid {
  align-items: stretch;
}

.restaurant-menu-card {
  height: 100%;
}

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

.restaurant-list li {
  position: relative;
  color: var(--color-text-soft);
}

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

.restaurant-list--light li {
  color: rgba(226, 232, 240, 0.9);
}

.restaurant-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.restaurant-chef-card {
  align-self: center;
}

.restaurant-lounge-grid {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.restaurant-lounge-item p {
  margin-bottom: 0;
}

.restaurant-team-intro {
  grid-column: span 2;
}

.restaurant-team-card {
  height: 100%;
}

.restaurant-private-card {
  align-self: center;
}

.restaurant-steps {
  display: grid;
  gap: var(--space-2);
  padding-left: 1.5rem;
  counter-reset: step-counter;
}

.restaurant-steps li {
  position: relative;
  counter-increment: step-counter;
  color: var(--color-text-soft);
}

.restaurant-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: -1.5rem;
  top: 0.25rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-primary));
  color: #020617;
  font-size: var(--font-size-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

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

.reservation-cta-card {
  height: 100%;
}

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

  .restaurant-team-intro {
    grid-column: span 1;
  }
}
