.hero--restaurant {
  min-height: 78vh;
}

.hero--restaurant .hero__content {
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
}

.hero__text-wrapper {
  max-width: 640px;
}

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

@media (max-width: 767.98px) {
  .restaurant-section {
    gap: var(--space-16);
  }
}

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

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

.restaurant-section__text {
  align-self: stretch;
}

.restaurant-section__text--compact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.restaurant-section__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.restaurant-image-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.restaurant-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--transition-slow);
}

.restaurant-image-card:hover img {
  transform: scale(1.06);
}

.restaurant-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.restaurant-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

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

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

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

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

@media (max-width: 1023.98px) {
  .restaurant-testimonials {
    row-gap: var(--space-16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .restaurant-image-card img {
    transform: none;
  }
}
