.restaurante-hero {
  position: relative;
}

.restaurante-hero__image img {
  max-height: 520px;
}

.restaurante-hero__content {
  margin-top: -3.5rem;
}

.restaurante-hero__header {
  max-width: 720px;
  margin-inline: auto;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 227, 203, 0.96));
  box-shadow: var(--shadow-medium);
}

.restaurante-kicker {
  font-size: var(--font-size-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.restaurante-hero__intro {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.restaurante-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.restaurante-grid {
  gap: var(--space-10);
  align-items: center;
}

.restaurante-grid--reverse {
  display: grid;
}

@media (min-width: 900px) {
  .restaurante-grid--reverse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .restaurante-grid--reverse > :first-child {
    order: 2;
  }
}

.restaurante-image-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

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

.restaurante-image-block__note {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  background: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.restaurante-pillars {
  margin-top: var(--space-4);
}

.restaurante-highlights {
  display: grid;
  gap: var(--space-6);
}

.restaurante-highlight__title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

.restaurante-highlight__text {
  font-size: var(--font-size-md);
  color: var(--color-text);
}

.restaurante-feature-list {
  display: grid;
  gap: var(--space-6);
}

.restaurante-feature__title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.restaurante-feature__text {
  font-size: var(--font-size-md);
}

.restaurante-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.restaurante-stats {
  display: grid;
  gap: var(--space-8);
}

.restaurante-links {
  padding-bottom: calc(var(--space-16) + 4rem);
}

.restaurante-link-card .card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .restaurante-hero__content {
    margin-top: -4.25rem;
  }
}

@media (min-width: 900px) {
  .restaurante-hero__content {
    margin-top: -5.5rem;
  }
  .restaurante-links {
    padding-bottom: var(--space-16);
  }
}
