.restaurant-hero {
  background: radial-gradient(circle at 0 0, #ffffff, #f7f2ea 45%),
    radial-gradient(circle at 100% 100%, #e4fbfa, #f7f2ea 55%);
}

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

.restaurant-hero__content {
  max-width: 34rem;
}

.restaurant-hero__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
}

.restaurant-hero__image-wrapper img {
  height: 100%;
  object-fit: cover;
}

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

.restaurant-story__grid {
  gap: var(--space-10);
  align-items: flex-start;
}

.restaurant-story__card {
  height: 100%;
}

.restaurant-signature__intro {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

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

.restaurant-signature__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.restaurant-chef__grid {
  gap: var(--space-10);
  align-items: flex-start;
}

.restaurant-interior__wrapper {
  max-width: var(--max-width);
}

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

.restaurant-interior__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.restaurant-seasonal__grid {
  gap: var(--space-10);
}

.restaurant-private__grid {
  gap: var(--space-10);
  align-items: stretch;
}

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

.restaurant-private__card-wrapper .card {
  width: 100%;
}

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

.restaurant-bottom-cta__inner {
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  background: radial-gradient(circle at 0 0, #ffffff, #f7f2ea 45%),
    radial-gradient(circle at 100% 100%, #e4fbfa, #f7f2ea 55%);
  box-shadow: var(--shadow-soft-lg);
  display: grid;
  gap: var(--space-6);
}

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

@media (min-width: 900px) {
  .restaurant-bottom-cta__inner {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .restaurant-hero__grid,
  .restaurant-story__grid,
  .restaurant-signature__grid,
  .restaurant-chef__grid,
  .restaurant-interior__grid,
  .restaurant-seasonal__grid,
  .restaurant-private__grid {
    gap: var(--space-6);
  }

  .restaurant-hero__content {
    order: 2;
  }

  .restaurant-hero__media {
    order: 1;
  }
}
