:root {
  --void: #08060d;
  --ink: #110e18;
  --plum: #1c1428;
  --velvet: #2a1b38;
  --gold: #d4b56a;
  --gold-soft: #ead7a0;
  --gold-deep: #a4843e;
  --copper: #c4895a;
  --ivory: #f4eee4;
  --cream: #e8dcc8;
  --sand: #cbbba3;
  --muted: #9d8f7e;
  --felt: #16362e;
  --felt-deep: #102820;
  --line: rgba(212, 181, 106, 0.28);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --font-brand: "Italiana", serif;
  --font-display: "Fraunces", serif;
  --font-sans: "Sora", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

.container,
.row,
section,
main,
header,
footer,
nav,
.ticker,
.hero,
.site-nav,
.topbar,
.site-footer {
  max-width: 100%;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ivory);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.gold-line {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.1rem 0 1.4rem;
}

.btn-gold,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--gold);
  padding: 0.9rem 1.55rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.3s ease;
  cursor: pointer;
  background: transparent;
  color: var(--ivory);
}

.btn-gold {
  background: var(--gold);
  color: var(--void);
}

.btn-gold:hover {
  background: var(--gold-soft);
  color: var(--void);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--void);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-top: 1.4rem;
}

.text-link:hover {
  color: var(--gold-soft);
}

.topbar {
  position: relative;
  z-index: 30;
  background: #06040a;
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--sand);
}

.topbar i {
  color: var(--gold);
  margin-right: 0.45rem;
}

.site-nav {
  position: relative;
  z-index: 40;
  background: rgba(17, 14, 24, 0.96);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
}

.brand-copy span {
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.22rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 0.2rem 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .nav-cta {
  border: 1px solid var(--gold);
  padding: 0.55rem 0.9rem;
  color: var(--gold);
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--void);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transition: 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 6, 13, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav .brand-mobile {
  margin-bottom: 1.8rem;
  border-bottom: 0;
  padding: 0;
}

.mobile-nav a:not(.brand) {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  color: var(--ivory);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(212, 181, 106, 0.15);
}

.mobile-nav a:not(.brand):hover,
.mobile-nav a:not(.brand).active {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
}

.hero {
  min-height: 92vh;
  background:
    linear-gradient(180deg, rgba(8, 6, 13, 0.28) 0%, rgba(8, 6, 13, 0.62) 52%, rgba(8, 6, 13, 0.96) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 5.2rem;
  position: relative;
}

.hero-kicker {
  font-family: var(--font-sans);
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(3rem, 7.4vw, 6.1rem);
  margin: 0 0 1rem;
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero p {
  max-width: 38rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 3.2rem;
  flex-wrap: wrap;
}

.hero-meta div strong {
  display: block;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-meta div span {
  color: var(--sand);
  font-size: 0.92rem;
}

.ticker {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  padding: 0.85rem 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: max-content;
  max-width: none;
  animation: ticker 28s linear infinite;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  will-change: transform;
}

.ticker-track i {
  font-size: 0.45rem;
  color: var(--copper);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 6.4rem 0;
  position: relative;
}

.section-ink {
  background: var(--ink);
}

.section-plum {
  background: var(--plum);
}

.section-felt {
  background:
    radial-gradient(circle at top right, rgba(212, 181, 106, 0.12), transparent 32%),
    linear-gradient(180deg, var(--felt-deep), var(--felt));
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.8rem;
}

.section-head h2,
.key-panel h2,
.score-item h3,
.cta-band h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-bottom: 1rem;
}

.section-head p,
.lead,
.key-panel p {
  color: var(--sand);
  font-size: 1.05rem;
}

.lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
  max-width: 38rem;
}

.section-actions {
  margin-top: 2.2rem;
}

.key-panel {
  height: 100%;
  padding: 2.4rem 2rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(42, 27, 56, 0.55), rgba(8, 6, 13, 0.4));
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.key-panel-felt {
  background: linear-gradient(180deg, rgba(22, 54, 46, 0.7), rgba(8, 6, 13, 0.45));
}

.key-panel:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.key-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.key-panel h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.score-list {
  display: grid;
  gap: 0;
}

.score-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.score-item:last-child {
  border-bottom: 1px solid var(--line);
}

.score-num {
  font-family: var(--font-brand);
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.score-item h3 {
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.score-item p {
  margin: 0;
  color: var(--muted);
}

.course-card {
  height: 100%;
  padding: 1.5rem 1.25rem 1.6rem;
  background: rgba(8, 6, 13, 0.55);
  border: 1px solid rgba(212, 181, 106, 0.18);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.course-card span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.course-card h3 {
  font-size: 1.45rem;
  margin: 0.7rem 0 0.55rem;
}

.course-card p {
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.course-card b {
  font-family: var(--font-display);
  color: var(--gold-soft);
  font-size: 1.3rem;
  font-weight: 500;
}

.chip-card {
  padding: 1.7rem 1.4rem;
  min-height: 220px;
  border: 1px solid rgba(212, 181, 106, 0.22);
  background: rgba(8, 6, 13, 0.28);
  height: 100%;
}

.chip-card i {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.chip-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.chip-card p {
  color: var(--sand);
  margin: 0;
  font-size: 0.95rem;
}

.event-list {
  display: grid;
}

.event-ticket {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px dashed rgba(212, 181, 106, 0.28);
}

.event-ticket:first-child {
  border-top: 1px dashed rgba(212, 181, 106, 0.28);
}

.event-ticket b {
  font-family: var(--font-brand);
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 1.05rem;
}

.event-ticket h3 {
  font-size: 1.4rem;
  margin: 0 0 0.2rem;
}

.event-ticket p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.event-ticket i {
  color: var(--gold);
}

.event-ticket:hover h3 {
  color: var(--gold-soft);
}

.visit-card {
  padding: 1.8rem 1.4rem;
  border: 1px solid rgba(212, 181, 106, 0.18);
  background: #16111f;
  min-height: 210px;
  height: 100%;
}

.visit-card i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.visit-card h3 {
  font-size: 1.4rem;
}

.visit-card p {
  color: var(--muted);
  margin: 0;
}

.cta-band {
  margin-top: 2.8rem;
  padding: 2rem 1.8rem;
  border: 1px solid var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  background:
    linear-gradient(120deg, rgba(212, 181, 106, 0.12), transparent 42%),
    var(--void);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-band .hero-actions {
  margin-top: 0;
}

.site-footer {
  background: #06040a;
  border-top: 1px solid var(--line);
  padding: 4.2rem 0 1.6rem;
}

.site-footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.site-footer p,
.site-footer li,
.disclaimer {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-intro {
  margin-top: 1.2rem;
  max-width: 28rem;
}

.footer-grid ul {
  display: grid;
  gap: 0.45rem;
}

.disclaimer {
  border-top: 1px solid rgba(212, 181, 106, 0.16);
  padding-top: 1.4rem;
  margin: 2.4rem 0 1.2rem;
}

.copy {
  color: var(--sand);
  font-size: 0.82rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.frame {
  position: relative;
}

.frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.frame::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 500;
}

.stat span {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.dish-card {
  background: rgba(8, 6, 13, 0.55);
  border: 1px solid rgba(212, 181, 106, 0.18);
  overflow: hidden;
  height: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.dish-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.dish-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.dish-card .body {
  padding: 1.35rem 1.25rem 1.55rem;
}

.dish-card h3 {
  font-size: 1.55rem;
  margin: 0.35rem 0 0.45rem;
}

.dish-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.dish-card .tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
}

.gallery-stack {
  display: grid;
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.gallery-item.tall {
  min-height: 582px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(8, 6, 13, 0.92));
}

.gallery-caption h3 {
  font-size: 1.45rem;
  margin: 0 0 0.25rem;
}

.gallery-caption p {
  margin: 0;
  color: var(--sand);
  font-size: 0.9rem;
}

.page-hero,
.policy-hero {
  padding: 5.5rem 0 3.2rem;
  background:
    linear-gradient(180deg, rgba(8, 6, 13, 0.48), rgba(8, 6, 13, 0.94)),
    url("../images/casino-salon.jpg") center/cover no-repeat;
}

.page-hero h1,
.policy-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 0 0 1rem;
  max-width: 16ch;
}

.policy-content {
  max-width: 820px;
}

.policy-content h2 {
  font-size: 2rem;
  margin: 2.2rem 0 0.8rem;
}

.policy-content p,
.policy-content li {
  color: var(--sand);
  margin-bottom: 1rem;
}

.policy-content ul {
  padding-left: 1.15rem;
  list-style: disc;
}

.menu-board {
  display: grid;
  gap: 0;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(212, 181, 106, 0.18);
}

.menu-row h3 {
  font-size: 1.35rem;
  margin: 0 0 0.2rem;
}

.menu-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-row b {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(8, 6, 13, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
}

.overlay.show {
  display: flex;
}

.modal-card,
.restrict-card {
  width: min(480px, 100%);
  background: #16111f;
  border: 1px solid var(--gold);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.icon-ring {
  width: 62px;
  height: 62px;
  margin: 0 auto 1.1rem;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.35rem;
}

.modal-card h2,
.restrict-card h2 {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.modal-card p,
.restrict-card p {
  color: var(--sand);
  margin-bottom: 1.5rem;
}

.modal-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 110;
  background: #16111f;
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cookie-bar.show {
  display: flex;
}

.cookie-bar p {
  margin: 0;
  color: var(--cream);
  font-size: 0.9rem;
}

.cookie-bar a {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .reveal,
  .mobile-nav,
  .course-card,
  .key-panel {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1199.98px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 86vh;
    padding-top: 5rem;
  }

  .score-item {
    grid-template-columns: 70px 1fr;
  }

  .split,
  .split.reverse,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .frame img,
  .gallery-item.tall,
  .gallery-item {
    height: 380px;
    min-height: 380px;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 4.4rem 0;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-meta {
    gap: 1.1rem;
  }

  .key-panel,
  .cta-band {
    padding: 1.6rem 1.2rem;
  }

  .event-ticket {
    grid-template-columns: 1fr auto;
  }

  .event-ticket b {
    grid-column: 1 / -1;
  }

  .mobile-nav {
    padding: 2rem 1.3rem;
  }

  .topbar {
    font-size: 0.72rem;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    left: 0.6rem;
    right: 0.6rem;
  }

  .frame::after {
    inset: 12px -12px -12px 12px;
  }
}
