.hero__content--restaurant {
  max-width: 720px;
}

.restaurant-section {
  align-items: center;
  gap: var(--space-8);
}

.restaurant-section--reverse {
  direction: rtl;
}

.restaurant-section--reverse > * {
  direction: ltr;
}

.restaurant-text {
  max-width: 620px;
}

.restaurant-image-wrapper {
  position: relative;
}

.restaurant-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.restaurant-image-wrapper--stack {
  display: grid;
  gap: var(--space-4);
}

.restaurant-image-wrapper--stack img:first-child {
  transform: translateY(6px);
}

.restaurant-image-wrapper--stack img:last-child {
  transform: translateY(-6px);
}

.restaurant-section-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  font-size: var(--text-lg);
}

.restaurant-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.restaurant-cards {
  align-items: stretch;
}

.card-image {
  margin-top: var(--space-4);
}

.restaurant-list {
  list-style: none;
}

.restaurant-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

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

.restaurant-subpoints {
  margin-top: var(--space-4);
}

.restaurant-subtitle {
  font-family: var(--font-display);
  font-size: var(--text-lg);
}

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

.restaurant-section--team {
  align-items: flex-start;
}

.restaurant-reservation-cta .card {
  align-items: flex-start;
}

@media (max-width: 767px) {
  .hero {
    text-align: left;
  }

  .restaurant-section,
  .restaurant-section--team {
    gap: var(--space-6);
  }

  .restaurant-reservation-cta .card {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .restaurant-image-wrapper--stack {
    max-width: 480px;
    justify-self: end;
  }

  .restaurant-text {
    justify-self: start;
  }
}
