:root {
  --navy: #080e14;
  --navy-2: #101820;
  --navy-3: #182430;
  --navy-4: #223040;
  --gold: #c9a35a;
  --gold-2: #e4c77a;
  --gold-dim: rgba(201, 163, 90, 0.18);
  --ivory: #f4eee4;
  --cream: #e7dfd0;
  --muted: #8f9aa6;
  --white: #fbf8f2;
  --line: rgba(201, 163, 90, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ivory);
  background: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--gold-2);
}

h1,
h2,
h3,
h4,
.brand-text,
.display-title {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}

.container {
  max-width: 1180px;
}

.topbar {
  background: #05090d;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 0;
  text-align: center;
}

.topbar i {
  color: var(--gold);
  margin-right: 8px;
}

.site-nav {
  background: var(--navy-2);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand:hover {
  color: var(--white);
  opacity: 0.9;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.05rem;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201, 163, 90, 0.35);
}

.brand-text {
  font-size: 1.55rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.brand-text small {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
}

.offcanvas {
  background: #070c11;
  color: var(--ivory);
  width: min(86vw, 360px);
  border-left: 1px solid var(--line);
}

.offcanvas-header {
  border-bottom: 1px solid var(--line);
  padding: 22px;
}

.offcanvas-title {
  font-family: var(--serif);
  color: var(--gold);
  letter-spacing: 0.08em;
}

.btn-close {
  filter: invert(1) grayscale(1) brightness(1.6);
  opacity: 0.8;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 8px;
}

.mobile-nav a {
  color: var(--cream);
  padding: 14px 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(201, 163, 90, 0.12);
}

.mobile-nav a:hover {
  color: var(--gold);
  background: var(--gold-dim);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--navy) center/cover no-repeat;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 20, 0.88) 0%, rgba(8, 14, 20, 0.55) 48%, rgba(8, 14, 20, 0.72) 100%),
    linear-gradient(180deg, rgba(8, 14, 20, 0.2) 0%, rgba(8, 14, 20, 0.72) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 0 80px;
}

.hero-frame {
  position: relative;
  max-width: 760px;
  padding: 36px 8px 36px 0;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
}

.hero-frame::before {
  top: 0;
  left: -18px;
  border-right: 0;
  border-bottom: 0;
}

.hero-frame::after {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.95;
  margin: 0 0 22px;
}

.hero p.lead {
  color: var(--cream);
  font-size: 1.12rem;
  max-width: 540px;
  margin-bottom: 34px;
}

.btn-gold,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: 1px solid var(--gold);
  transition: 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-2);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
}

.btn-ghost:hover {
  background: var(--gold-dim);
  color: var(--gold-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--navy-2);
}

.section-kicker {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  line-height: 1.1;
}

.gold-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 28px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.media-frame {
  position: relative;
}

.media-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.muted {
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.feature-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--cream);
}

.feature-list i {
  color: var(--gold);
  margin-top: 5px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.stat {
  border: 1px solid var(--line);
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.015);
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.stat span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--navy-3);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.menu-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.menu-card .body {
  padding: 24px 22px 28px;
}

.menu-card h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.price {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.chip {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 4px 10px;
  margin-bottom: 12px;
}

.games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.game-tile {
  padding: 22px 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(201, 163, 90, 0.06), transparent);
}

.game-tile i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.game-tile h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.game-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-list {
  display: grid;
  gap: 18px;
}

.event-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--navy-3);
}

.event-date {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
  padding-right: 12px;
}

.quote-band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: center/cover no-repeat;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 20, 0.72);
}

.quote-band .content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 20px;
}

.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.35;
  color: var(--white);
  margin: 0 0 18px;
}

.contact-panel {
  border: 1px solid var(--line);
  padding: 48px 40px;
  background:
    radial-gradient(circle at top right, rgba(201, 163, 90, 0.12), transparent 40%),
    var(--navy-3);
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.icon-box {
  text-align: center;
  padding: 22px 12px;
  border: 1px solid var(--line);
}

.icon-box i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.icon-box h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.disclaimer {
  background: #05090d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.disclaimer h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.site-footer {
  background: #05090d;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--cream);
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.84rem;
}

.page-hero {
  padding: 72px 0 28px;
  background:
    linear-gradient(180deg, rgba(201, 163, 90, 0.08), transparent),
    var(--navy-2);
  border-bottom: 1px solid var(--line);
}

.policy {
  padding: 48px 0 90px;
  color: var(--cream);
}

.policy h2 {
  font-size: 1.6rem;
  margin: 36px 0 12px;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy ul {
  padding-left: 18px;
}

.age-layer,
.restrict-layer {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 9, 13, 0.86);
  backdrop-filter: blur(8px);
}

.age-layer.is-open,
.restrict-layer.is-open {
  display: flex;
}

.age-card,
.restrict-card {
  width: min(460px, 100%);
  background: var(--navy-2);
  border: 1px solid var(--gold);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.age-card h2,
.restrict-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.age-actions,
.restrict-card .age-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

button {
  cursor: pointer;
  font-family: var(--sans);
}

.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 1070;
  display: none;
  background: var(--navy-3);
  border: 1px solid var(--line);
  padding: 18px 20px;
  width: calc(100% - 32px);
  max-width: 920px;
  box-shadow: var(--shadow);
}

.cookie-bar.is-open {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-inner p {
  margin: 0;
  color: var(--cream);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-tiny {
  padding: 9px 16px;
  font-size: 0.68rem;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1060;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  background: var(--navy-2);
  color: var(--gold);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.25s ease, color 0.25s ease, bottom 0.25s ease;
  box-shadow: var(--shadow);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
}

body:has(.cookie-bar.is-open) .back-to-top {
  bottom: 132px;
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: flex !important;
  }

  .split,
  .split.reverse,
  .menu-grid,
  .stats,
  .games,
  .footer-grid,
  .icon-row {
    grid-template-columns: 1fr;
  }

  .media-frame img,
  .wide-media img {
    height: 340px;
  }

  .event-item {
    grid-template-columns: 1fr;
  }

  .event-date {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 10px;
  }

  .hero {
    min-height: 78vh;
  }

  .section {
    padding: 72px 0;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  body:has(.cookie-bar.is-open) .back-to-top {
    bottom: 188px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .menu-grid,
  .games,
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}
