main {
  padding-bottom: var(--space-20);
}
.home-hero {
  padding-top: var(--space-12);
}
.card--lounge-copy {
  margin-top: var(--space-4);
}
.section--poker-tables {
  background: radial-gradient(circle at top, rgba(20, 10, 13, 0.85), transparent 55%);
}
.section--dining {
  background: radial-gradient(circle at center, rgba(24, 23, 31, 0.8), transparent 60%);
}
.section--gallery {
  background: linear-gradient(145deg, rgba(11, 12, 16, 0.98), rgba(20, 10, 13, 0.98));
}
.home-dining-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-dining-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-brass-soft);
}
.home-dining-caption {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.home-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-8);
}
.home-gallery-item {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-brass-soft);
  background: #000;
}
.home-gallery-item img {
  width: 100%;
  height: auto;
}
.home-gallery-item figcaption {
  padding: 14px 18px 18px;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  background: linear-gradient(to top, rgba(11, 12, 16, 0.95), rgba(11, 12, 16, 0.6));
}
.home-gallery-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-editorial-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.home-editorial-list {
  display: grid;
  gap: 16px;
}
.home-editorial-list h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.home-faqs {
  display: grid;
  gap: 10px;
}
.home-faq {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.03), transparent 60%), rgba(11, 12, 16, 0.95);
}
.home-faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  cursor: pointer;
}
.home-faq__question {
  text-align: left;
  font-size: var(--font-size-md);
}
.home-faq__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  position: relative;
}
.home-faq__icon::before,
.home-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--color-brass);
  inset: 50% 6px auto 6px;
  height: 1px;
  transform: translateY(-50%);
}
.home-faq__icon::after {
  transform: translateY(-50%) rotate(90deg);
}
.home-faq[aria-expanded="true"] .home-faq__icon::after {
  opacity: 0;
}
.home-faq__answer {
  padding: 0 20px 16px;
  border-top: 1px dashed rgba(184, 176, 162, 0.45);
}
.home-faq__answer p:last-child {
  margin-bottom: 0;
}
.home-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.home-cta-text {
  max-width: 720px;
}
.home-cta-share {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-cta-share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-share svg {
  width: 16px;
  height: 16px;
}
.age-modal-backdrop[hidden] {
  display: none;
}
.home-facts__item {
  white-space: nowrap;
}
@media (max-width: 960px) {
  .home-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 720px) {
  .home-hero {
    padding-top: var(--space-10);
  }
  .home-facts {
    font-size: var(--font-size-2xs);
  }
}
ul { list-style: none !important; }
.nav-toggle { flex-direction: column; }
.btn-arrow svg, .link-arrow svg {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease, stroke 0.3s ease;
}
.btn:hover .btn-arrow svg, a:hover .link-arrow svg {
  transform: translate(3px, -3px);
}
