.hero--restaurant {
  position: relative;
  overflow: hidden;
}

.hero--restaurant .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr);
  gap: var(--space-8);
}

.hero--restaurant .hero__content {
  max-width: 34rem;
}

.hero--restaurant .hero__image-wrapper {
  max-width: 640px;
  margin-inline: auto;
}

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

.section-heading {
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

.section-eyebrow {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.restaurant-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.restaurant-intro {
  align-items: flex-start;
}

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

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

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

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

.restaurant-list li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.7rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fff, var(--color-primary-soft));
}

.restaurant-gourmet {
  gap: var(--space-8);
  align-items: flex-start;
}

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

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

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

.restaurant-signature__image {
  max-width: 600px;
}

.restaurant-list--columns {
  columns: 1;
  column-gap: var(--space-6);
}

.restaurant-wine {
  gap: var(--space-8);
  align-items: flex-start;
}

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

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

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

.restaurant-service {
  gap: var(--space-8);
  align-items: flex-start;
}

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

.restaurant-private {
  gap: var(--space-6);
}

.restaurant-testimonials {
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.restaurant-testimonials__name {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.restaurant-cta-final {
  margin-inline: auto;
  margin-top: var(--space-10);
}

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

@media (min-width: 768px) {
  .hero--restaurant .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
  }

  .restaurant-list--columns {
    columns: 2;
  }
}

@media (max-width: 767px) {
  .section-heading {
    margin-bottom: var(--space-8);
  }

  .restaurant-cta-final {
    margin-top: var(--space-8);
  }
}
