:root {
  --forest: #12352f;
  --forest-mid: #1a4a42;
  --forest-deep: #071512;
  --gold: #c9a45c;
  --gold-soft: #e2c98a;
  --cream: #f3ece1;
  --ivory: #fbf7f0;
  --ink: #161310;
  --muted: #6d675d;
  --line: rgba(201, 164, 92, 0.35);
  --terracotta: #9c4a32;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 21, 18, 0.18);
  --radius: 18px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open,
body.modal-lock {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container-narrow {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
}

.eyebrow i {
  font-size: 0.7rem;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.12;
}

.gold-rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border: 0;
  margin: 1.1rem 0 1.4rem;
}

.btn-gold,
.btn-ghost,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  min-height: 48px;
  padding: 0.75rem 1.45rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest-deep);
}

.btn-gold:hover {
  background: var(--gold-soft);
  color: var(--forest-deep);
}

.btn-ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-ghost:hover {
  background: rgba(201, 164, 92, 0.12);
}

.btn-dark {
  background: var(--forest);
  color: var(--ivory);
}

.btn-dark:hover {
  background: var(--forest-mid);
  color: var(--ivory);
}

.topbar {
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 20;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  flex-wrap: wrap;
  padding: 0.45rem 0;
}

.topbar strong {
  color: var(--gold-soft);
  font-weight: 500;
}

.topbar-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.site-header {
  background: rgba(251, 247, 240, 0.96);
  border-bottom: 1px solid rgba(18, 53, 47, 0.08);
  position: relative;
  z-index: 110;
}

.navbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--forest);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.05rem;
  background: var(--forest);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text span {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.brand-text small {
  margin-top: 0.28rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.desktop-nav a {
  font-size: 0.92rem;
  color: var(--forest);
  position: relative;
  padding: 0.2rem 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 120;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--forest);
  transition: 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--forest-deep);
  z-index: 100;
  transform: translateX(110%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.5rem 2rem 2rem;
}

body.nav-open .site-header {
  background: transparent;
  border-color: transparent;
}

body.nav-open .brand-text span,
body.nav-open .brand-text small {
  color: var(--ivory);
}

body.nav-open .nav-toggle {
  border-color: rgba(201, 164, 92, 0.45);
}

body.nav-open .nav-toggle span {
  background: var(--ivory);
}

body.nav-open .mobile-nav {
  transform: none;
}

.mobile-nav a {
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.25;
  display: block;
}

.mobile-nav a:hover {
  color: var(--gold-soft);
}

.hero {
  min-height: calc(100vh - 128px);
  background:
    linear-gradient(100deg, rgba(7, 21, 18, 0.82) 8%, rgba(7, 21, 18, 0.38) 58%, rgba(7, 21, 18, 0.55) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
  color: var(--ivory);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: end;
  padding: 5.5rem 0 4.5rem;
}

.hero h1 {
  font-size: clamp(3.1rem, 7vw, 6.3rem);
  margin: 0.4rem 0 1rem;
  max-width: 11ch;
}

.hero p {
  max-width: 38rem;
  font-size: 1.08rem;
  color: rgba(243, 236, 225, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-aside {
  border: 1px solid rgba(201, 164, 92, 0.35);
  padding: 1.6rem 1.5rem;
  backdrop-filter: blur(8px);
  background: rgba(7, 21, 18, 0.35);
  border-radius: var(--radius);
}

.hero-aside h3 {
  margin: 0 0 0.4rem;
  font-size: 1.7rem;
}

.hero-aside p {
  margin: 0;
  font-size: 0.95rem;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--forest);
  color: var(--ivory);
}

.section-cream {
  background: var(--cream);
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head h2,
.block-title {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  margin: 0.35rem 0 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split img,
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.frame {
  position: relative;
}

.frame::after {
  content: "";
  position: absolute;
  inset: 18px -16px -16px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--forest);
}

.section-dark .stat b {
  color: var(--gold-soft);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.menu-card,
.game-card,
.event-card,
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.menu-card img,
.event-card img,
.game-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.menu-card.tall img {
  height: 100%;
  min-height: 520px;
}

.pad {
  padding: 1.5rem 1.45rem 1.7rem;
}

.price {
  color: var(--terracotta);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(18, 53, 47, 0.08);
}

.menu-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.games-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.1rem;
}

.game-card {
  min-height: 280px;
  position: relative;
  color: var(--ivory);
  background: var(--forest-deep);
}

.game-card.feature {
  background:
    linear-gradient(180deg, rgba(7, 21, 18, 0.15), rgba(7, 21, 18, 0.78)),
    url("../images/casino.jpg") center/cover no-repeat;
}

.game-card .pad {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.icon-tile {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--gold-soft);
}

.events-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.2rem;
}

.event-side {
  display: grid;
  gap: 1.2rem;
}

.chips-panel {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.2rem;
  background: var(--forest-deep);
  color: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
}

.chips-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.1rem;
}

.contact-card {
  padding: 1.8rem 1.5rem;
}

.contact-card i {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.site-footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 4.2rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
}

.footer-brand {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-brand span {
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.disclaimer-box {
  margin-top: 1.8rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: 14px;
  font-size: 0.88rem;
  color: rgba(243, 236, 225, 0.82);
}

.copy {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  font-size: 0.84rem;
  color: rgba(243, 236, 225, 0.7);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 18, 0.78);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.overlay.is-open {
  display: flex;
}

.dialog {
  width: min(460px, 100%);
  background: var(--ivory);
  color: var(--ink);
  border-radius: 22px;
  padding: 2rem 1.7rem 1.6rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.dialog h2 {
  margin: 0.4rem 0 0.7rem;
  font-size: 2.1rem;
}

.dialog p {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.restriction {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 18, 0.92), rgba(7, 21, 18, 0.88)),
    url("../images/ambiance.jpg") center/cover no-repeat;
  z-index: 210;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory);
  padding: 1.5rem;
}

.restriction.is-open {
  display: flex;
}

.restriction-box {
  width: min(520px, 100%);
}

.restriction h2 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin: 0.4rem 0 0.8rem;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 150;
  display: none;
  background: var(--forest);
  color: var(--ivory);
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-bar.is-open {
  display: flex;
}

.policy-hero {
  background: var(--forest);
  color: var(--ivory);
  padding: 4.5rem 0 3.2rem;
}

.policy-content {
  padding: 4rem 0 5rem;
}

.policy-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 0.7rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content ul {
  padding-left: 1.1rem;
  list-style: disc;
  margin: 0 0 1rem;
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid,
  .split,
  .menu-grid,
  .games-grid,
  .events-grid,
  .contact-wrap,
  .footer-grid,
  .chips-panel,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .menu-card.tall img {
    min-height: 280px;
    height: 280px;
  }

  .hero {
    min-height: 78vh;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .dialog-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .hero-grid,
  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .navbar-shell {
    min-height: 72px;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }
}
