.hero--restaurante {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--restaurante .hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(201, 164, 108, 0.35), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(37, 32, 28, 0.82), rgba(17, 14, 12, 0.96));
  mix-blend-mode: multiply;
}

.hero--restaurante .hero__media {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/interior-restaurante-lujo.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero__content--restaurante {
  position: relative;
  z-index: 1;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  color: #ffffff;
}

.hero__content--restaurante .hero__title {
  max-width: 30rem;
}

.hero__content--restaurante .hero__subtitle {
  max-width: 34rem;
}

.hero__meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.hero__meta-chips .chip {
  background-color: rgba(255, 255, 255, 0.92);
}

.hero__meta-chips .chip--accent,
.hero__meta-chips .chip.chip--accent {
  background-color: rgba(201, 164, 108, 0.88);
  color: #1b140f;
  border-color: transparent;
}

.hero--restaurante::after {
  content: "";
  position: absolute;
  inset-inline: 8%;
  bottom: -40px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.38), transparent 65%);
  opacity: 0.4;
  pointer-events: none;
}

@media (min-width: 992px) {
  .hero__content--restaurante .hero__title {
    max-width: 34rem;
  }

  .hero__content--restaurante .hero__subtitle {
    max-width: 38rem;
  }
}

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

.restaurante-section--reverse {
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .restaurante-section--reverse {
    flex-direction: row;
  }
}

.restaurante-section__media {
  position: relative;
}

.restaurante-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background-color: var(--color-surface);
}

.restaurante-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.restaurante-figure figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
}

.restaurante-figure--shadowed {
  box-shadow: var(--shadow-strong);
}

.restaurante-figure--poker {
  box-shadow: var(--shadow-glass);
}

.restaurante-section__content {
  position: relative;
}

.restaurante-section__header {
  max-width: 40rem;
  margin: 0 auto var(--space-10);
}

.restaurante-section__intro {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.restaurante-highlights {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

@media (min-width: 768px) {
  .restaurante-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.restaurante-highlights__item {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 235, 226, 0.9));
  box-shadow: var(--shadow-soft);
}

.restaurante-highlights__item p {
  margin-top: var(--space-2);
  margin-bottom: 0;
}

.restaurante-menu-grid {
  margin-top: var(--space-6);
}

.restaurante-menu-card {
  height: 100%;
}

.restaurante-menu-card .card__body ul {
  margin-bottom: 0;
}

.restaurante-section--vinos .restaurante-highlights--vinos {
  margin-top: var(--space-4);
}

.restaurante-highlights--vinos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.restaurante-highlights--poker {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.restaurante-card-glass {
  color: #f9f5ef;
  background: linear-gradient(135deg, rgba(24, 19, 16, 0.96), rgba(37, 32, 28, 0.98));
}

.restaurante-card-glass .card__meta {
  color: rgba(249, 245, 239, 0.72);
}

.restaurante-card-glass .card__body {
  color: rgba(249, 245, 239, 0.9);
}

.restaurante-mesa-card {
  height: 100%;
}

.restaurante-section__sidecard {
  margin-top: var(--space-6);
}

@media (min-width: 768px) {
  .restaurante-section__sidecard {
    margin-top: 0;
  }
}

.restaurante-section__sidecard--cta .restaurante-reserva-card {
  height: 100%;
}

.restaurante-reserva-card .hero__actions {
  gap: var(--space-3);
}

.restaurante-section--poker {
  align-items: center;
}

.restaurante-section--privados {
  align-items: stretch;
}

.bg-restaurant {
  background: radial-gradient(circle at top left, rgba(201, 164, 108, 0.09), transparent 55%), var(--color-background);
}

@media (prefers-reduced-motion: no-preference) {
  .hero--restaurante .hero__media {
    transition: transform 12s ease-out;
  }

  .hero--restaurante:hover .hero__media {
    transform: scale(1.06);
  }

  .restaurante-figure img {
    transition: transform var(--transition-slow), filter var(--transition-base);
  }

  .restaurante-figure:hover img {
    transform: scale(1.03);
    filter: saturate(1.03);
  }

  .restaurante-menu-card {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .restaurante-menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
  }
}
