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

.restaurant-hero__inner {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

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

.restaurant-hero__lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

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

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

.restaurant-hero__image-wrapper {
  max-width: 440px;
}

.restaurant-hero__caption {
  margin-top: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

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

.restaurant-section__grid--reverse {
  direction: rtl;
}

.restaurant-section__grid--reverse > * {
  direction: ltr;
}

.restaurant-section__text p {
  margin-bottom: var(--space-3);
}

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

.restaurant-section__image {
  max-width: 520px;
  margin-inline: auto;
}

.restaurant-section__image--placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.restaurant-section__image-tag {
  align-self: flex-start;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(58, 202, 184, 0.12);
  color: var(--gray-800);
  font-size: var(--font-size-xs);
}

.restaurant-section__placeholder-text {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.restaurant-cta-final__card {
  text-align: center;
}

.restaurant-cta-final__content {
  max-width: 44rem;
  margin-inline: auto;
}

.restaurant-cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.restaurant-cta-final__disclaimer {
  margin-top: var(--space-3);
}

@media (min-width: 768px) {
  .restaurant-hero__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

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

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

  .restaurant-hero__lead {
    font-size: var(--font-size-base);
  }
}
