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

.restaurant-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

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

.restaurant-hero__lead {
  font-size: var(--font-size-lg);
  max-width: 34rem;
}

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

.restaurant-hero__visual {
  justify-self: center;
}

.restaurant-hero__image-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-bg-alt);
}

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

.restaurant-hero__stats {
  position: absolute;
  inset-inline: var(--space-4);
  bottom: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.restaurant-hero__stat {
  padding: 0.6rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 250, 245, 0.96);
  box-shadow: var(--shadow-sm);
}

.restaurant-hero__stat-number {
  display: block;
  font-weight: 700;
}

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

.restaurant-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.restaurant-bento {
  align-items: stretch;
}

.restaurant-bento__image {
  padding: 0;
}

.restaurant-bento__image-inner {
  height: 100%;
}

.restaurant-bento__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-menu-list {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.restaurant-menu-list li {
  position: relative;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.restaurant-menu-list li::before {
  content: "•";
  position: absolute;
  left: -0.9rem;
  color: var(--color-accent-peach);
}

.restaurant-menu-note {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.restaurant-bullets {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  font-size: var(--font-size-sm);
}

.restaurant-bullets li {
  position: relative;
}

.restaurant-bullets li::before {
  content: "";
  position: absolute;
  left: -0.8rem;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent-mint);
}

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

.restaurant-image-band {
  background: radial-gradient(circle at top right, #ffe2cf 0, #fffaf5 50%, #fffaf5 100%);
}

.restaurant-image-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

.restaurant-image-band__media {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.restaurant-programs {
  margin-top: var(--space-4);
}

.restaurant-team__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-4);
  align-items: center;
}

.restaurant-team__image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.restaurant-gallery__quote-card {
  padding: var(--space-5);
  display: flex;
  align-items: center;
}

.restaurant-quote {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  margin-bottom: var(--space-2);
}

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

.restaurant-booking-cta__inner {
  border-radius: 28px;
  background: linear-gradient(135deg, #e6fbf3, #fffaf5);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.restaurant-booking-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 220px;
  align-self: center;
}

@media (max-width: 1024px) {
  .restaurant-hero__grid {
    grid-template-columns: 1fr;
  }

  .restaurant-image-band__inner {
    grid-template-columns: 1fr;
  }

  .restaurant-team__grid {
    grid-template-columns: 1fr;
  }

  .restaurant-hero__visual {
    order: -1;
  }
}

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

  .restaurant-booking-cta__inner {
    padding: var(--space-5);
  }

  .restaurant-hero__stats {
    position: static;
    padding: var(--space-4);
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(255, 245, 234, 0.98));
  }
}
