.restaurant-hero {
  position: relative;
  padding-top: var(--space-16);
}

.restaurant-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.restaurant-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

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

.restaurant-hero__actions {
  flex-wrap: wrap;
}

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

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

.restaurant-chef__image-wrapper,
.restaurant-vip__image-wrapper,
.restaurant-gallery__image-wrapper {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
}

.restaurant-chef__image,
.restaurant-vip__image,
.restaurant-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-drinks .restaurant-list,
.restaurant-events .restaurant-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.restaurant-list--inline {
  flex-wrap: wrap;
  flex-direction: row;
}

.restaurant-list--inline li {
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-subtle);
  font-size: var(--font-size-xs);
}

.restaurant-cta-links {
  flex-wrap: wrap;
}

.restaurant-testimonials .card-body p:last-child {
  margin-bottom: 0;
}

.restaurant-events__card {
  max-width: 900px;
  margin-inline: auto;
}

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

  .restaurant-hero__content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .restaurant-hero__media {
    opacity: 0.35;
  }

  .restaurant-hero__content {
    text-align: left;
  }

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