body {
  background: radial-gradient(circle at top left, rgba(46, 91, 255, 0.04), transparent 55%), var(--color-background);
}

.hero--restaurant .hero__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.85));
}

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

.hero--restaurant .hero__title {
  max-width: 40rem;
}

.hero--restaurant .hero__subtitle {
  max-width: 34rem;
}

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

.restaurant-layout__image {
  align-self: stretch;
}

.restaurant-figure {
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

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

.restaurant-figure figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  background: linear-gradient(to right, rgba(241, 245, 249, 0.96), rgba(226, 232, 240, 0.9));
}

.restaurant-figure--accent {
  background: radial-gradient(circle at top left, rgba(46, 91, 255, 0.08), rgba(255, 255, 255, 1));
}

.restaurant-layout__intro {
  align-self: stretch;
}

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

.restaurant-section-grid {
  align-items: center;
}

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

.restaurant-highlight h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

.restaurant-card-inline {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) auto;
  gap: var(--space-4);
  align-items: center;
}

.restaurant-card-inline__cta {
  display: flex;
  justify-content: flex-end;
}

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

.restaurant-pill {
  padding-inline: 0.9rem;
  padding-block: 0.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  background: linear-gradient(to right, rgba(248, 250, 252, 0.95), rgba(239, 246, 255, 0.95));
}

.restaurant-grid-features {
  gap: var(--space-6);
}

.restaurant-feature h2,
.restaurant-feature h3 {
  margin-bottom: var(--space-2);
}

.restaurant-reservation {
  display: grid;
  grid-template-columns: minmax(0, 2fr) auto;
  gap: var(--space-6);
  align-items: center;
}

.restaurant-reservation__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  justify-content: center;
}

@media (max-width: 900px) {
  .hero--restaurant .hero__content {
    padding-block: var(--space-12);
  }

  .restaurant-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .restaurant-card-inline,
  .restaurant-reservation {
    grid-template-columns: minmax(0, 1fr);
  }

  .restaurant-card-inline__cta,
  .restaurant-reservation__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero--restaurant .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .restaurant-figure figcaption {
    font-size: var(--font-size-xs);
  }
}
