:root {
  --ink: #06110e;
  --pine: #0c1f19;
  --moss: #143028;
  --leaf: #1c3d32;
  --gold: #d7b57a;
  --gold-2: #f0d7a4;
  --gold-dim: rgba(215, 181, 122, 0.16);
  --copper: #c47b4a;
  --ivory: #f4efe6;
  --cream: #e7dcc8;
  --muted: #93a399;
  --white: #fbf8f1;
  --ink-text: #1c2c26;
  --line: rgba(215, 181, 122, 0.28);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --serif: "Cormorant Infant", "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

*,
*::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(--ink);
  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, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

a:hover {
  color: var(--gold-2);
}

h1,
h2,
h3,
h4,
.brand-text {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
}

.container {
  max-width: 1200px;
}

.topbar {
  background: #04100c;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 0;
  text-align: center;
}

.topbar i {
  color: var(--gold);
  margin-right: 8px;
}

.site-nav {
  background: var(--pine);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand:hover {
  color: var(--white);
  opacity: 0.92;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.05rem;
  transform: rotate(45deg);
  border: 1px solid var(--gold);
  background: linear-gradient(145deg, rgba(215, 181, 122, 0.12), transparent 60%);
}

.brand-mark i {
  transform: rotate(-45deg);
}

.brand-text {
  font-size: 1.62rem;
  line-height: 0.92;
  display: flex;
  flex-direction: column;
}

.brand-text small {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  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: #071612;
  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.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(215, 181, 122, 0.12);
}

.mobile-nav a:hover {
  color: var(--gold);
  background: var(--gold-dim);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink) center/cover no-repeat;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 14, 0.9) 0%, rgba(6, 17, 14, 0.42) 52%, rgba(6, 17, 14, 0.78) 100%),
    linear-gradient(180deg, rgba(6, 17, 14, 0.15) 0%, rgba(6, 17, 14, 0.82) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 110px 0 70px;
}

.hero-frame {
  max-width: 740px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.6rem);
  line-height: 0.92;
  margin: 0 0 22px;
}

.hero p.lead {
  color: var(--cream);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.btn-gold,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  border: 1px solid var(--gold);
  transition: 0.25s ease;
  font-weight: 600;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-2);
  color: var(--ink);
}

.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;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--line);
  background: rgba(6, 17, 14, 0.55);
  backdrop-filter: blur(8px);
  max-width: 760px;
}

.hero-metrics div {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics b {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--pine);
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 500;
}

.ticker-track span {
  white-space: nowrap;
}

.ticker-track i {
  margin-right: 10px;
  color: var(--copper);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 104px 0;
  position: relative;
}

.section-alt {
  background: var(--pine);
}

.section-light {
  background: var(--ivory);
  color: var(--ink-text);
}

.section-light h2,
.section-light h3 {
  color: var(--ink-text);
}

.section-light .muted {
  color: #5d6e66;
}

.section-kicker {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-light .section-kicker {
  color: var(--copper);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin-bottom: 18px;
  line-height: 1.08;
}

.gold-rule {
  width: 58px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 28px;
}

.section-light .gold-rule {
  background: var(--copper);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  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.94) contrast(1.06);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 22px -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);
}

.section-light .feature-list li {
  color: var(--ink-text);
}

.feature-list i {
  color: var(--gold);
  margin-top: 5px;
}

.section-light .feature-list i {
  color: var(--copper);
}

.ritual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.ritual-item {
  border: 1px solid var(--line);
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.ritual-item .num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.ritual-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.ritual-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-card {
  background: #fff;
  border: 1px solid rgba(28, 44, 38, 0.08);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(28, 44, 38, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(28, 44, 38, 0.14);
}

.menu-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-card .body {
  padding: 24px 22px 28px;
}

.menu-card h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.price {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: 0.04em;
}

.chip {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid rgba(196, 123, 74, 0.35);
  padding: 4px 10px;
  margin-bottom: 12px;
  font-weight: 600;
}

.menu-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.menu-note {
  padding: 22px 20px;
  border: 1px solid rgba(28, 44, 38, 0.12);
  background: #fff;
}

.menu-note i {
  color: var(--copper);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.menu-note h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.menu-note p {
  margin: 0;
  color: #5d6e66;
  font-size: 0.92rem;
}

.games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.game-tile {
  padding: 24px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(215, 181, 122, 0.07), transparent);
}

.game-tile i {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.game-tile h3 {
  font-size: 1.32rem;
  margin-bottom: 6px;
}

.game-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-list {
  display: grid;
  gap: 16px;
}

.event-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--moss);
}

.event-date {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
  padding-right: 12px;
}

.quote-band {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background: center/cover no-repeat;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 17, 14, 0.74);
}

.quote-band .content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 88px 20px;
}

.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  line-height: 1.32;
  color: var(--white);
  margin: 0 0 18px;
}

.contact-panel {
  border: 1px solid var(--line);
  padding: 52px 42px;
  background:
    radial-gradient(circle at top right, rgba(215, 181, 122, 0.14), transparent 42%),
    var(--moss);
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.icon-box {
  text-align: center;
  padding: 24px 14px;
  border: 1px solid var(--line);
  background: rgba(6, 17, 14, 0.28);
}

.icon-box i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.icon-box h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.disclaimer {
  background: #04100c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 58px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.disclaimer h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.site-footer {
  background: #04100c;
  padding: 58px 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: 76px 0 30px;
  background:
    linear-gradient(180deg, rgba(215, 181, 122, 0.1), transparent),
    var(--pine);
  border-bottom: 1px solid var(--line);
}

.policy {
  padding: 48px 0 90px;
  color: var(--cream);
}

.policy h2 {
  font-size: 1.65rem;
  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(4, 16, 12, 0.88);
  backdrop-filter: blur(10px);
}

.age-layer.is-open,
.restrict-layer.is-open {
  display: flex;
}

.age-card,
.restrict-card {
  width: min(460px, 100%);
  background: var(--pine);
  border: 1px solid var(--gold);
  padding: 38px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.age-card h2,
.restrict-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.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(--moss);
  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(--pine);
  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(--ink);
}

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,
  .games,
  .footer-grid,
  .icon-row,
  .ritual,
  .hero-metrics,
  .menu-aside {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .media-frame 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: 80vh;
    align-items: center;
  }

  .section {
    padding: 72px 0;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  body:has(.cookie-bar.is-open) .back-to-top {
    bottom: 188px;
  }

  .nav-links {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .menu-grid,
  .games,
  .ritual,
  .hero-metrics,
  .menu-aside {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }
}
