body {
  background-color: var(--color-bg);
}

.section--soft-bg {
  background-color: var(--gray-50);
}

.section--highlight {
  background-color: var(--color-surface);
}

.section-header__lead {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.restaurant-hero {
  padding-top: var(--space-64);
}

.restaurant-hero__grid {
  align-items: center;
}

.restaurant-hero__title {
  font-size: clamp(2.1rem, 4.4vw, 3rem);
}

.restaurant-hero__subtitle {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
}

.restaurant-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-20);
}

.restaurant-hero__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.restaurant-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-section__media-card {
  display: flex;
  padding: 0;
  overflow: hidden;
}

.restaurant-section__image {
  border-radius: var(--radius-lg);
}

.restaurant-section__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-20);
}

.restaurant-signature__item {
  height: 100%;
}

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

.restaurant-reservation__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-8);
  color: var(--color-text-muted);
}

.restaurant-reservation__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--color-primary);
}

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

.restaurant-casino__info {
  align-self: flex-start;
}

.restaurant-events__highlights {
  align-self: flex-start;
}

.restaurant-testimonials__item blockquote {
  margin-bottom: var(--space-16);
}

.restaurant-testimonials__name {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.restaurant-testimonials__meta {
  font-size: var(--font-size-xs);
  color: var(--gray-500);
}

@media (max-width: 767px) {
  .restaurant-hero {
    padding-top: var(--space-40);
  }

  .restaurant-hero__image-wrap {
    margin-top: var(--space-24);
  }
}
