body {
  background-color: var(--color-bg);
}

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

.restaurant-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.restaurant-hero__content {
  position: relative;
  z-index: 1;
}

.restaurant-hero__card {
  max-width: 720px;
}

.restaurant-hero__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-3);
}

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

.restaurant-hero__text {
  margin-bottom: var(--space-6);
}

.restaurant-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.restaurant-section {
  align-items: center;
  gap: var(--space-10);
}

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

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

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

.restaurant-section__content--secondary {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(215, 205, 194, 0.7);
}

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

.restaurant-figure {
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

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

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

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

.restaurant-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.restaurant-cta__content p {
  margin-bottom: 0;
}

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

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

  .restaurant-hero__card {
    max-width: 100%;
  }

  .restaurant-section--reverse {
    direction: ltr;
  }

  .restaurant-figure {
    max-height: 360px;
  }

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

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

  .restaurant-hero__ctas,
  .restaurant-section__links,
  .restaurant-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
