.restoran-hero-grid {
  align-items: center;
  gap: var(--space-8);
}

.restoran-hero-media {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.restoran-hero-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.restoran-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restoran-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.restoran-hero-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
}

.restoran-hero-stat-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.restoran-cta-group {
  margin-top: var(--space-6);
}

.restoran-cta-group--center {
  justify-content: center;
}

.restoran-section-grid,
.restoran-ambijent-grid,
.restoran-lounge-grid,
.restoran-vip-grid,
.restoran-vecera-grid,
.restoran-experience-grid {
  gap: var(--space-10);
  align-items: center;
}

.restoran-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.restoran-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restoran-image-badge {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.82);
  color: #f9fafb;
  font-size: var(--text-xs);
}

.restoran-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.restoran-list-card {
  height: 100%;
}

.restoran-list {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.restoran-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-circle);
  margin-right: var(--space-2);
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-primary));
}

.restoran-reservation-card {
  max-width: 480px;
  margin-left: auto;
}

.restoran-final-cta {
  max-width: 720px;
}

@media (max-width: 767.98px) {
  .restoran-hero-grid {
    gap: var(--space-6);
  }

  .restoran-hero-media {
    order: -1;
  }

  .restoran-reservation-card {
    margin-left: 0;
  }

  .restoran-links {
    justify-content: flex-start;
  }

  .restoran-hero-stats {
    gap: var(--space-3);
  }
}

@media (min-width: 1024px) {
  .restoran-hero-image-wrapper {
    max-height: 420px;
  }
}
