:root {
  --night: #10080c;
  --plum: #1c0d12;
  --burgundy: #6f1f2e;
  --gold: #c9a15b;
  --gold-2: #e8d19a;
  --gold-dim: rgba(201, 161, 91, 0.16);
  --ivory: #f8f2e7;
  --parchment: #efe4d1;
  --ink: #1a1214;
  --muted: #6f6458;
  --line: rgba(201, 161, 91, 0.3);
  --danger: #8a2b2b;
  --white: #ffffff;
  --display: "Syne", "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Figtree", "Segoe UI", sans-serif;
  --shadow: 0 30px 70px rgba(16, 8, 12, 0.32);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: #2d2420;
  background: var(--ivory);
  overflow-x: hidden;
}

body.is-locked,
body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}

p {
  margin-bottom: 1rem;
}

.container-xl {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.lead {
  font-size: 1.1rem;
  color: #5b5148;
}

.section {
  padding: 104px 0;
}

.section-burgundy {
  background: linear-gradient(180deg, var(--plum) 0%, #2a1218 100%);
  color: var(--parchment);
}

.section-burgundy h2,
.section-burgundy h3 {
  color: var(--ivory);
}

.section-parchment {
  background: var(--parchment);
}

.section-title {
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.section-intro {
  max-width: 700px;
}

.gold-btn,
.ghost-btn,
.danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.gold-btn {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--night);
}

.gold-btn:hover {
  color: var(--night);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 161, 91, 0.34);
}

.ghost-btn {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-2);
}

.ghost-btn:hover {
  background: var(--gold-dim);
  color: var(--gold-2);
}

.danger-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: #efe4d2;
}

.danger-btn:hover {
  border-color: #efe4d2;
  color: #fff;
}

.topbar {
  background: #0b0608;
  color: #d8cbb4;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
}

.topbar i {
  color: var(--gold);
  margin-right: 8px;
}

.site-header {
  background: var(--plum);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ivory);
}

.brand:hover {
  color: var(--ivory);
}

.brand-mark {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.15rem;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201, 161, 91, 0.35);
}

.brand-name {
  display: block;
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ivory);
  font-weight: 700;
}

.brand-tag {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.desk-nav {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 20px;
}

.desk-nav a {
  color: #e8dcc8;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
}

.desk-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.desk-nav a:hover,
.desk-nav a.is-active {
  color: var(--gold-2);
}

.desk-nav a:hover::after,
.desk-nav a.is-active::after {
  width: 100%;
}

.nav-hamburger {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  transition: 0.25s ease;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 100%);
  background: #16090d;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 28px 28px 48px;
  display: flex;
  flex-direction: column;
  box-shadow: -22px 0 50px rgba(0, 0, 0, 0.4);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.nav-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}

.mobile-nav a {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.7rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 161, 91, 0.12);
}

.mobile-nav a:hover {
  color: var(--gold-2);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 8, 0.66);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(16, 8, 12, 0.74) 0%, rgba(16, 8, 12, 0.48) 42%, rgba(16, 8, 12, 0.82) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
  color: var(--ivory);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 96px 0;
}

.hero h1 {
  font-family: var(--serif);
  color: var(--ivory);
  font-size: clamp(3.2rem, 6.8vw, 6.2rem);
  line-height: 0.92;
  margin: 0 0 22px;
}

.hero p {
  max-width: 560px;
  color: #f0e4d1;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-card {
  justify-self: end;
  width: min(380px, 100%);
  background: rgba(16, 8, 12, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  padding: 8px;
}

.hero-card-inner {
  border: 1px solid rgba(201, 161, 91, 0.22);
  padding: 26px 24px;
}

.card-label {
  font-family: var(--display);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(201, 161, 91, 0.16);
  color: #ddd1bc;
  font-size: 0.92rem;
}

.hero-stat:last-child {
  border-bottom: 0;
}

.hero-stat b {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
}

.strip {
  background: var(--plum);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.strip-item {
  color: #e8dcc8;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
}

.strip-item i {
  color: var(--gold);
  font-size: 1.15rem;
  width: 28px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.split-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 161, 91, 0.55);
  pointer-events: none;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.feature-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  color: #514840;
}

.section-burgundy .feature-list li {
  color: #e4d6c4;
}

.feature-list i {
  color: var(--gold);
  margin-top: 5px;
}

.menu-card {
  background: #fff;
  border: 1px solid rgba(26, 18, 20, 0.08);
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.menu-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-card-body {
  padding: 24px 22px 28px;
}

.course-no {
  font-family: var(--display);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.menu-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.menu-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.game-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 28px 22px;
  height: 100%;
}

.game-card i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.game-card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.game-card p {
  color: #d6cbb8;
  margin: 0;
  font-size: 0.95rem;
}

.event-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
}

.event-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.6s ease;
}

.event-card:hover img {
  transform: scale(1.1);
}

.event-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(16, 8, 12, 0.94) 48%);
  color: var(--ivory);
}

.event-card h3 {
  color: var(--ivory);
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.event-meta {
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.event-card p {
  color: #ddd3c3;
  margin: 0;
}

.pillar {
  background: #fff;
  border: 1px solid rgba(26, 18, 20, 0.08);
  padding: 30px 24px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(16, 8, 12, 0.04);
}

.pillar i {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.notice {
  background: var(--plum);
  color: var(--parchment);
  padding: 48px;
  border: 1px solid var(--line);
}

.notice h2 {
  color: var(--ivory);
  margin-bottom: 14px;
}

.notice p {
  color: #d8cebe;
}

.notice a {
  color: var(--gold-2);
  text-decoration: underline;
}

.contact-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.contact-note {
  background: #fff;
  border: 1px solid rgba(26, 18, 20, 0.08);
  padding: 32px 28px;
}

.contact-note i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.contact-note h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.site-footer {
  background: #0b0608;
  color: #cfc4b2;
  padding: 68px 0 24px;
  border-top: 1px solid var(--line);
}

.site-footer h3 {
  color: var(--ivory);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  padding: 5px 0;
  color: #cfc4b2;
}

.site-footer a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 161, 91, 0.14);
  padding-top: 18px;
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.age-gate,
.age-restrict {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(16, 8, 12, 0.88), rgba(16, 8, 12, 0.93)),
    url("../images/hero.jpg") center/cover no-repeat;
}

.age-gate.is-open,
.age-restrict.is-open {
  display: flex;
}

html.age-ok .age-gate,
html.age-ok .age-restrict {
  display: none !important;
}

.age-card,
.restrict-card {
  width: min(520px, 100%);
  background: #1c0d12;
  border: 1px solid var(--line);
  padding: 42px 36px;
  text-align: center;
  color: var(--parchment);
  box-shadow: var(--shadow);
}

.age-card h2,
.restrict-card h2 {
  color: var(--ivory);
  font-size: 2.35rem;
  margin: 12px 0 14px;
}

.age-card p,
.restrict-card p {
  color: #d5cbb9;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.age-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.35rem;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  display: none;
  background: #1c0d12;
  border: 1px solid var(--line);
  color: #efe4d2;
  box-shadow: var(--shadow);
}

.cookie-bar.is-open {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.92rem;
  color: #ddd2bf;
}

.cookie-inner a {
  color: var(--gold-2);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(16, 8, 12, 0.78), rgba(16, 8, 12, 0.78)),
    url("../images/casino-salon.jpg") center/cover no-repeat;
  color: var(--ivory);
  padding: 92px 0 78px;
}

.page-hero h1 {
  color: var(--ivory);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  margin: 0;
}

.policy-wrap {
  width: min(860px, calc(100% - 2rem));
  margin: -40px auto 80px;
  background: #fff;
  padding: 48px 42px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.policy-wrap h2 {
  font-size: 1.75rem;
  margin: 28px 0 10px;
}

.policy-wrap h3 {
  font-size: 1.22rem;
  margin: 22px 0 8px;
}

.policy-wrap ul {
  padding-left: 18px;
}

.policy-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

@media (min-width: 992px) {
  .desk-nav {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero-grid,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-card {
    justify-self: stretch;
  }

  .split-media img {
    height: 360px;
  }

  .section {
    padding: 72px 0;
  }

  .notice,
  .policy-wrap {
    padding: 28px 22px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }

  .topbar {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .event-card,
  .event-card img {
    min-height: 380px;
    height: 380px;
  }
}
