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

.hero-restaurant__inner {
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.hero-restaurant__content {
  max-width: 40rem;
}

.hero-restaurant__hint {
  max-width: 30rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.1);
  transform: scale(1.03);
}

.section {
  padding-top: var(--space-64);
  padding-bottom: var(--space-64);
}

.section-heading__lead {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.image-panel {
  overflow: hidden;
}

.image-panel img {
  border-radius: var(--radius-lg);
}

.image-panel__caption {
  margin-top: var(--space-12);
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.section-gastro__grid,
.section-lounges__grid,
.section-service__grid,
.section-bar__grid,
.section-view__grid,
.section-private__grid,
.section-experience__grid,
.section-reservation__grid,
.section-location__grid,
.section-reviews__grid {
  align-items: flex-start;
}

.service-list {
  padding: var(--space-24);
}

.service-list__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-16);
}

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

.service-list__items li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-12);
  color: var(--color-text-muted);
}

.service-list__items li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary-strong);
}

.reservation-preview__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-12);
}

.reservation-preview__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  margin-bottom: var(--space-20);
}

.reservation-preview__submit {
  width: 100%;
  margin-top: var(--space-8);
}

.location-details {
  margin: 0;
}

.location-details__row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-16);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.location-details__row:last-child {
  border-bottom: none;
}

.location-details dt {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.location-details dd {
  margin: 0;
  font-size: var(--font-size-sm);
}

.section-location__info {
  height: 100%;
}

.section-reviews__grid .card {
  height: 100%;
}

.review-text {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-16);
}

.review-author {
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

@media (max-width: 1024px) {
  .hero-restaurant__inner {
    min-height: auto;
  }
}

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

  .hero-restaurant__inner {
    align-items: flex-end;
  }

  .section {
    padding-top: var(--space-48);
    padding-bottom: var(--space-48);
  }

  .location-details__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .reservation-preview__submit {
    width: 100%;
  }
}
