.hero-section {
  background: radial-gradient(circle at top, rgba(229, 181, 103, 0.16) 0, transparent 60%), #070910;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--space-8);
  padding-top: var(--space-12);
  padding-bottom: var(--space-10);
}
.hero-media {
  max-width: 460px;
  margin-inline: auto;
}
.hero-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-elevated);
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-meta {
  margin-top: var(--space-6);
}
.section-header {
  margin-bottom: var(--space-4);
}
.restaurant-card {
  height: 100%;
}
.gallery-placeholder .card {
  height: 100%;
  text-align: center;
}
.gallery-placeholder .card p {
  margin-bottom: 0;
}
.testimonials-layout .testimonial {
  height: 100%;
}
.faq-item .faq-question {
  margin-bottom: var(--space-2);
}
.faq-item .faq-answer {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    padding-top: var(--space-10);
  }
  .hero-media {
    order: -1;
  }
}
@media (max-width: 600px) {
  .hero-section {
    padding-bottom: var(--space-6);
  }
}
