.restaurant-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  color: var(--color-text);
}

.restaurant-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.restaurant-hero__overlay {
  position: relative;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  display: flex;
  align-items: center;
}

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

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

.restaurant-hero__meta {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-4);
}

.restaurant-hero__meta-item p {
  max-width: none;
}

.restaurant-ambience__grid,
.restaurant-culinary__grid,
.restaurant-chef__grid,
.restaurant-poker__grid {
  align-items: center;
}

.restaurant-ambience__media img,
.restaurant-culinary__media img,
.restaurant-poker__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
}

.restaurant-ambience__links,
.restaurant-culinary__links,
.restaurant-poker__cta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

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

.restaurant-culinary__card {
  margin-top: auto;
}

.restaurant-chef__highlights {
  display: flex;
  align-items: stretch;
}

.restaurant-chef__card {
  width: 100%;
}

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

.restaurant-private__intro p {
  max-width: none;
}

.restaurant-private__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.restaurant-service__content > p {
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}

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

.restaurant-service__card h3 {
  font-size: var(--font-size-xl);
}

.restaurant-testimonials__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.restaurant-testimonials__header p {
  max-width: 60ch;
}

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

.restaurant-testimonial {
  height: 100%;
}

.restaurant-reserve__layout {
  display: flex;
  justify-content: center;
}

.restaurant-reserve__content {
  max-width: 640px;
  text-align: left;
}

.restaurant-reserve__list {
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  padding-left: 1.1rem;
}

.restaurant-reserve__list li {
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  list-style: disc;
}

.restaurant-reserve__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 767.98px) {
  .restaurant-hero__overlay {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .restaurant-hero h1 {
    font-size: var(--font-size-4xl);
  }
}

@media (min-width: 768px) {
  .restaurant-hero__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .restaurant-testimonials__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .restaurant-hero__content {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }
}
