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

.restaurant-hero__grid {
  display: grid;
  gap: var(--space-16);
}

@media (min-width: 768px) {
  .restaurant-hero__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }
}

.restaurant-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.restaurant-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

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

.restaurant-hero__meta {
  font-size: var(--font-size-sm);
}

.restaurant-hero__media {
  position: relative;
}

.restaurant-hero__image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.restaurant-hero__badge {
  position: absolute;
  inset-inline: auto 6%;
  bottom: -1.5rem;
  max-width: 320px;
}

@media (max-width: 767px) {
  .restaurant-hero__badge {
    position: static;
    margin-top: var(--space-10);
    max-width: none;
  }
}

.restaurant-hero__badge-title {
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.restaurant-hero__badge-text {
  font-size: var(--font-size-sm);
}

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

.restaurant-section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.restaurant-highlights__grid,
.restaurant-service__grid,
.restaurant-business__grid {
  margin-top: var(--space-10);
}

.restaurant-feature h3 {
  margin-bottom: var(--space-4);
}

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

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

.restaurant-list--compact li {
  margin-bottom: var(--space-2);
}

.restaurant-chef {
  margin-top: var(--space-20);
}

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

@media (min-width: 840px) {
  .restaurant-chef__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    align-items: center;
  }
}

.restaurant-chef__image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

@media (min-width: 840px) {
  .restaurant-interior__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  }
}

.restaurant-interior__image img {
  border-radius: var(--radius-xl);
}

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

.restaurant-bar {
  margin-top: var(--space-20);
}

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

@media (min-width: 840px) {
  .restaurant-bar__inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  }
}

.restaurant-bar__image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.restaurant-business__grid {
  margin-top: var(--space-12);
}

.restaurant-quality__grid {
  display: grid;
  gap: var(--space-16);
  align-items: flex-start;
}

@media (min-width: 900px) {
  .restaurant-quality__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  }
}

.restaurant-quality__cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-4);
  margin-block: var(--space-6);
}

.restaurant-quality__note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

@media (max-width: 640px) {
  .sticky-reserve {
    width: calc(100% - 2 * var(--space-16));
  }
}
