.restaurant-hero {
  position: relative;
  padding-block: 0;
  min-height: 70vh;
  display: grid;
}

.restaurant-hero-media {
  position: relative;
  inset: 0;
  height: 100%;
  max-height: 580px;
  overflow: hidden;
}

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

.restaurant-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 8, 22, 0.8), rgba(5, 8, 22, 0.25));
}

.restaurant-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.restaurant-hero-copy {
  max-width: 640px;
  color: #ffffff;
}

.restaurant-hero-copy h1,
.restaurant-hero-copy p {
  color: #ffffff;
}

.restaurant-hero-lead {
  font-size: var(--font-size-lg);
  margin-top: var(--space-6);
}

.restaurant-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.restaurant-hero-meta {
  margin-top: var(--space-8);
}

.restaurant-hero-tags {
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.restaurant-block {
  gap: var(--space-16);
  align-items: center;
}

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

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

.restaurant-side-card,
.restaurant-highlight-card,
.restaurant-info-card {
  height: 100%;
}

.restaurant-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.restaurant-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  margin-right: var(--space-4);
  transform: translateY(-1px);
}

.restaurant-section-header {
  max-width: 640px;
  margin-bottom: var(--space-16);
}

.restaurant-image-card {
  height: 100%;
}

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

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

.restaurant-ambience-grid {
  gap: var(--space-12);
}

.restaurant-subgrid {
  display: grid;
  gap: var(--space-12);
  margin-top: var(--space-12);
}

.restaurant-subheading {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4);
}

.restaurant-menu-cta {
  margin-top: var(--space-8);
}

.restaurant-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.restaurant-inline-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  margin-top: var(--space-4);
}

.restaurant-inline-link::after {
  content: "\2192";
  font-size: 0.9em;
}

.restaurant-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.restaurant-testimonial-grid {
  gap: var(--space-12);
}

.restaurant-testimonial-cta {
  margin-top: var(--space-16);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .restaurant-hero-media {
    max-height: 640px;
  }

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

@media (min-width: 1024px) {
  .restaurant-hero {
    min-height: 80vh;
  }

  .restaurant-hero-media {
    max-height: none;
  }
}
