.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  color: var(--color-text);
}
.hero__media {
  position: fixed;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 20% 0, rgba(5, 8, 9, 0.3), rgba(5, 8, 9, 0.96) 55%), linear-gradient(180deg, rgba(5, 8, 9, 0.8), rgba(5, 8, 9, 1));
}
.hero__content {
  padding-block: var(--space-20);
  z-index: 1;
}
.hero__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-3);
}
.hero__subtitle {
  max-width: 640px;
  font-size: var(--font-size-lg);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.hero__meta {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.section--experience__grid,
.section--dining__grid,
.section--vip__grid,
.section--emotion__grid,
.section--reservations__grid,
.section--location__grid {
  align-items: center;
}
.section__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}
.section__image--accent {
  border: 1px solid rgba(201, 161, 90, 0.45);
}
.section--vip__list {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}
.section--vip__list li::before {
  content: "\2022";
  color: var(--color-accent-gold);
  margin-right: 0.5rem;
}
.section--poker {
  background: radial-gradient(circle at top, #151f22 0, #050809 60%);
}
.section--poker__grid {
  margin-top: var(--space-8);
}
.section--emotion__quote {
  background: linear-gradient(145deg, rgba(5, 8, 9, 0.96), rgba(10, 26, 23, 0.98));
}
.section--reservations__card {
  margin-top: var(--space-4);
}
.section--reservations__form .btn {
  margin-top: var(--space-2);
}
.section--reservations__hint {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.section--gallery {
  background-color: var(--color-bg-muted);
}
.section--gallery__inner {
  max-width: 960px;
}
.section--gallery__grid {
  margin-top: var(--space-6);
}
.section--gallery__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #050809, #10191b);
  border: 1px solid rgba(201, 161, 90, 0.32);
}
.section--gallery__figure img {
  width: 100%;
  height: auto;
}
.section--gallery__figure figcaption {
  padding: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}
.section--location__info {
  background: linear-gradient(145deg, rgba(4, 8, 9, 0.96), rgba(9, 16, 18, 0.98));
}
.section__links {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
@media (max-width: 767.98px) {
  .hero {
    min-height: 80vh;
  }
  .hero__content {
    padding-block: var(--space-16);
  }
}
@media (prefers-reduced-motion: reduce) {
  .floating-soft:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
  }
}
