body {
  background: radial-gradient(circle at top, #ffffff 0, #f6fbff 36%, var(--color-background) 100%);
}

.section-intro {
  max-width: 46rem;
  margin-inline: auto;
}

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

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

.restaurant-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
  max-width: 34rem;
}

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

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

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

.restaurant-hero__image-wrapper {
  position: relative;
  padding: var(--space-2);
  max-width: 460px;
}

.restaurant-hero__image {
  border-radius: var(--radius-2xl);
  width: 100%;
  height: auto;
}

.restaurant-hero__highlight {
  position: absolute;
  right: var(--space-4);
  bottom: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  max-width: 240px;
}

.restaurant-hero__highlight-title {
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.restaurant-hero__highlight-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.restaurant-highlights {
  margin-top: var(--space-4);
}

.restaurant-highlight-card {
  min-height: 100%;
}

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

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

.restaurant-chef__image-wrapper {
  padding: var(--space-2);
  max-width: 440px;
}

.restaurant-chef__image {
  border-radius: var(--radius-2xl);
  width: 100%;
}

.restaurant-chef__content p {
  max-width: 34rem;
}

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

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

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

.restaurant-gallery__image-card {
  padding: var(--space-2);
}

.restaurant-gallery__image {
  border-radius: var(--radius-2xl);
  width: 100%;
}

.restaurant-gallery__caption {
  padding: var(--space-4);
}

.restaurant-info-card {
  height: 100%;
}

.restaurant-info-card__actions {
  margin-top: var(--space-4);
}

.restaurant-occasions {
  margin-top: var(--space-4);
}

.restaurant-occasion-card {
  position: relative;
}

.restaurant-occasion-link {
  display: inline-flex;
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-primary-strong);
}

.restaurant-occasion-link:hover {
  text-decoration: underline;
}

.restaurant-reservation {
  margin-top: var(--space-4);
}

.reservation-form__row {
  margin-bottom: var(--space-4);
}

.reservation-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.restaurant-reservation__info {
  display: flex;
}

.restaurant-reservation__info .card {
  margin-left: auto;
}

.sticky-cta {
  box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .restaurant-hero__grid,
  .restaurant-chef__grid,
  .layout-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .restaurant-chef__media,
  .restaurant-gallery__image-card,
  .restaurant-reservation__info {
    order: -1;
    justify-content: center;
  }

  .restaurant-chef__image-wrapper,
  .restaurant-gallery__image-card,
  .restaurant-reservation__info .card {
    margin-inline: auto;
    max-width: 460px;
  }
}

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

  .restaurant-hero__highlight {
    position: static;
    margin-top: var(--space-3);
    max-width: 100%;
  }

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

  .layout-split {
    gap: var(--space-6);
  }

  .sticky-cta {
    right: 50%;
    transform: translateX(50%);
  }
}
