body {
  scroll-behavior: smooth;
}

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

.restaurant-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.restaurant-hero__content .tagline {
  margin-top: var(--space-3);
}

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

.restaurant-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.restaurant-hero__media {
  max-height: 540px;
}

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

.restaurant-philosophy__card {
  height: 100%;
}

.restaurant-philosophy__link {
  display: inline-flex;
  margin-top: var(--space-4);
}

.restaurant-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.restaurant-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: var(--font-size-md);
  color: var(--color-text-soft);
}

.restaurant-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff7ec, var(--color-primary));
  box-shadow: 0 0 0 1px rgba(216, 169, 90, 0.5), 0 0 12px rgba(216, 169, 90, 0.6);
}

.restaurant-signature__intro,
.restaurant-private__intro,
.restaurant-reservation__intro,
.restaurant-testimonials__intro {
  margin-bottom: var(--space-10);
}

.restaurant-signature__card {
  height: 100%;
}

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

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

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

.restaurant-form__submit {
  margin-top: var(--space-2);
}

.restaurant-reservation__grid > div,
.restaurant-tasting__grid > div,
.restaurant-diet__grid > div,
.restaurant-team__grid > div {
  min-width: 0;
}

.restaurant-testimonials__grid {
  align-items: stretch;
  gap: var(--space-6);
}

.restaurant-testimonial {
  height: 100%;
}

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

.restaurant-cta {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.restaurant-cta__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

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

@media (max-width: 1024px) {
  .restaurant-hero__layout {
    grid-template-columns: 1fr;
  }

  .restaurant-hero__media {
    order: -1;
  }
}

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

  .restaurant-hero__meta {
    grid-template-columns: 1fr;
  }

  .restaurant-cta__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
