.restaurant-hero {
  background: radial-gradient(circle at top left, #f8e1cf 0, #faf6f1 45%, #f9f5f0 100%);
}

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

.restaurant-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-neutral-800);
}

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

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

.restaurant-hero__image {
  max-height: 420px;
}

.restaurant-philosophy__grid {
  gap: var(--space-40);
}

.restaurant-philosophy__highlights {
  margin-top: var(--space-24);
}

.restaurant-philosophy__card {
  align-self: center;
}

.restaurant-space {
  background-color: var(--color-neutral-50);
}

.restaurant-space__grid {
  gap: var(--space-40);
  align-items: center;
}

.restaurant-space__image {
  max-height: 420px;
}

.restaurant-gastro__grid {
  gap: var(--space-40);
  align-items: center;
}

.restaurant-gastro__image {
  max-height: 420px;
}

.restaurant-gastro__highlights {
  margin-top: var(--space-24);
}

.restaurant-atmosphere__grid {
  gap: var(--space-40);
}

.restaurant-gallery {
  background: linear-gradient(180deg, #faf6f1 0, #f1e6dd 100%);
}

.restaurant-gallery__grid {
  margin-top: var(--space-32);
}

.restaurant-gallery__item {
  height: 100%;
}

.restaurant-reservations__grid {
  gap: var(--space-40);
}

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

.restaurant-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-16);
}

.restaurant-form__field {
  margin-bottom: var(--space-16);
}

.restaurant-form__disclaimer {
  font-size: var(--font-size-xs);
  margin-top: var(--space-8);
}

.restaurant-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-24);
}

.restaurant-event-management__grid {
  gap: var(--space-40);
}

.restaurant-list {
  padding-left: 1.1rem;
}

.restaurant-list li {
  margin-bottom: var(--space-8);
  color: var(--color-text);
}

.restaurant-list li::marker {
  color: var(--color-primary);
}

.restaurant-event-management__summary {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .restaurant-hero__actions,
  .restaurant-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .restaurant-hero__image,
  .restaurant-space__image,
  .restaurant-gastro__image {
    max-height: none;
  }
}
