@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Sora:wght@300;400;500;600&display=swap");

:root {
  --color-ink: #071a14;
  --color-forest: #0b3d2e;
  --color-forest-deep: #06261c;
  --color-emerald: #1a6b52;
  --color-gold: #c9a84c;
  --color-gold-soft: #e2c97a;
  --color-ivory: #f7f3eb;
  --color-cream: #efe8d8;
  --color-muted: #b8c5bf;
  --color-glass: rgba(7, 26, 20, 0.72);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Sora", sans-serif;
  --nav-height: 4.5rem;
  --content-max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-ivory);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 168, 76, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(26, 107, 82, 0.25), transparent 50%),
    linear-gradient(165deg, var(--color-forest-deep) 0%, var(--color-ink) 45%, #0a2219 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(100% - 2rem, var(--content-max));
  margin-inline: auto;
}

.full-bleed {
  width: 100%;
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  background: linear-gradient(180deg, rgba(6, 38, 28, 0.95), rgba(7, 26, 20, 0.88));
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  transition: opacity 0.25s var(--ease);
}

.logo:hover {
  opacity: 0.88;
}

.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--color-ivory);
}

.logo-text span {
  color: var(--color-gold);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0;
}

.nav-toggle-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-gold-soft);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(0.45rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-0.45rem) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.65rem;
}

.nav-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.active {
  color: var(--color-ivory);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: clamp(18rem, 42vh, 26rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(6, 38, 28, 0.92) 0%, rgba(6, 38, 28, 0.7) 42%, rgba(7, 26, 20, 0.35) 100%),
    linear-gradient(0deg, rgba(7, 26, 20, 0.85) 0%, transparent 55%);
}

.hero-content {
  width: 100%;
  padding: 2.75rem clamp(1rem, 4vw, 3rem) 2.5rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--color-ivory);
  margin-bottom: 0.9rem;
  max-width: 18ch;
}

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-cream);
  max-width: 42rem;
  opacity: 0.92;
}

.section {
  width: 100%;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-inner {
  width: 100%;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: none;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.85rem;
}

.section-label i {
  font-size: 0.85rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-ivory);
  margin-bottom: 0.85rem;
}

.section-head p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  max-width: 48rem;
  line-height: 1.7;
}

.section-alt {
  background: linear-gradient(180deg, rgba(11, 61, 46, 0.45), rgba(7, 26, 20, 0.2));
  border-block: 1px solid rgba(201, 168, 76, 0.12);
}

.section-dark {
  background: rgba(4, 18, 14, 0.65);
  border-block: 1px solid rgba(201, 168, 76, 0.1);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.feature-item {
  padding: 1.75rem 1.35rem;
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  background: transparent;
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 0.35rem;
  background: rgba(201, 168, 76, 0.06);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--color-ivory);
}

.feature-item p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  width: 100%;
  min-height: 26rem;
}

.split-media {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.split-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, rgba(6, 38, 28, 0.95), rgba(7, 26, 20, 0.88));
}

.split-body .section-label {
  margin-bottom: 0.75rem;
}

.split-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.split-body p {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.split-body p:last-of-type {
  margin-bottom: 1.75rem;
}

.split-list {
  display: grid;
  gap: 0.85rem;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--color-cream);
}

.split-list i {
  color: var(--color-gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.game-tile {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background:
    linear-gradient(160deg, rgba(11, 61, 46, 0.55), rgba(7, 26, 20, 0.35));
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.game-tile:hover {
  border-color: rgba(201, 168, 76, 0.45);
  background: linear-gradient(160deg, rgba(26, 107, 82, 0.35), rgba(7, 26, 20, 0.5));
}

.game-tile i {
  font-size: 1.75rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: block;
}

.game-tile h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.game-tile p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.65;
}

.cta-band {
  width: 100%;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 4vw, 3rem);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(201, 168, 76, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(11, 61, 46, 0.5), rgba(4, 18, 14, 0.9));
  border-block: 1px solid rgba(201, 168, 76, 0.15);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.cta-band p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-ink);
}

.btn-primary:hover {
  background: var(--color-gold-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--color-ivory);
  border: 1px solid rgba(201, 168, 76, 0.45);
}

.btn-ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-soft);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.section-actions {
  margin-top: 2rem;
  justify-content: flex-start;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.hours-card {
  padding: 1.75rem 1.5rem;
  border-left: 2px solid var(--color-gold);
  background: rgba(255, 255, 255, 0.03);
}

.hours-card i {
  color: var(--color-gold);
  margin-bottom: 0.85rem;
  font-size: 1.2rem;
}

.hours-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.hours-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.65;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  counter-reset: step;
}

.step-item {
  position: relative;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.28);
}

.step-item::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.step-item p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.65;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.menu-item {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.menu-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.menu-price {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  white-space: nowrap;
}

.menu-item p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.65;
}

.menu-tag {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.vip-item {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: linear-gradient(180deg, rgba(11, 61, 46, 0.4), transparent);
}

.vip-item i {
  display: block;
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.vip-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.vip-item p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.65;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.quote-item {
  padding: 2rem 1.5rem;
  border-left: 2px solid var(--color-gold);
  background: rgba(0, 0, 0, 0.18);
}

.quote-item i {
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.quote-item blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--color-cream);
  margin-bottom: 1.1rem;
}

.quote-item cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.faq-list {
  display: grid;
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.faq-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
}

.faq-item i {
  color: var(--color-gold);
  margin-top: 0.25rem;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.faq-item p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.65;
  grid-column: 2;
}

.safe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.safe-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.safe-item i {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.safe-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.safe-item p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.65;
}

.values-band {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(4, 18, 14, 0.55);
}

.value-cell {
  padding: 2rem clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(201, 168, 76, 0.12);
}

.value-cell:last-child {
  border-right: none;
}

.value-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.value-cell span {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.5;
}

.site-footer {
  width: 100%;
  background: #04120e;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  width: 100%;
  padding: 0 clamp(1rem, 4vw, 3rem) 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 28rem;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-gold-soft);
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--color-ivory);
}

.footer-disclaimer {
  width: 100%;
  padding: 1.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-disclaimer h3 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 0.65rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  width: 100%;
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-policies a {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.footer-policies a:hover {
  color: var(--color-gold-soft);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(2, 10, 8, 0.82);
  backdrop-filter: blur(8px);
}

.overlay.is-visible {
  display: flex;
}

.modal {
  width: min(100%, 28rem);
  background: linear-gradient(165deg, #0d3f30, #071a14);
  border: 1px solid rgba(201, 168, 76, 0.28);
  padding: 2rem 1.75rem;
  text-align: center;
}

.modal-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  color: var(--color-gold);
  font-size: 1.35rem;
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.modal p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.age-restricted {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: linear-gradient(165deg, #04120e, #071a14);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.age-restricted.is-visible {
  display: flex;
}

.age-restricted-inner {
  width: min(100%, 32rem);
}

.age-restricted-inner i {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.age-restricted-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.age-restricted-inner p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: none;
  width: 100%;
  padding: 1.15rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(180deg, #0d3f30, #06261c);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 -0.75rem 2rem rgba(0, 0, 0, 0.35);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  width: 100%;
}

.cookie-text {
  flex: 1 1 18rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.cookie-text i {
  color: var(--color-gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.cookie-text p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 1100px) {
  .feature-grid,
  .steps-grid,
  .values-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-cell:nth-child(2) {
    border-right: none;
  }

  .value-cell:nth-child(3),
  .value-cell:nth-child(4) {
    border-top: 1px solid rgba(201, 168, 76, 0.12);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1.25rem;
    background: linear-gradient(180deg, var(--color-forest-deep), var(--color-ink));
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 1.25rem 2rem rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    pointer-events: none;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.95rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu li:last-child a {
    border-bottom: none;
  }

  .hero {
    min-height: clamp(16rem, 48vh, 22rem);
  }

  .hero-content {
    padding: 2.25rem 1rem 2rem;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-media {
    min-height: 16rem;
  }

  .games-grid,
  .hours-grid,
  .menu-grid,
  .vip-grid,
  .quotes-grid,
  .safe-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .feature-grid,
  .steps-grid,
  .values-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .value-cell {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  }

  .value-cell:last-child {
    border-bottom: none;
  }

  .value-cell:nth-child(3) {
    border-top: none;
  }

  .faq-item {
    grid-template-columns: 1fr;
  }

  .faq-item p {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.4rem;
  }

  .logo-mark {
    width: 2rem;
    height: 2rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .modal {
    padding: 1.5rem 1.15rem;
  }
}

.page-hero {
  width: 100%;
  padding: clamp(2.75rem, 6vw, 4.25rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(201, 168, 76, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(11, 61, 46, 0.55), rgba(7, 26, 20, 0.2));
}

.page-hero .section-label {
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.85rem;
  max-width: 18ch;
}

.page-hero p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  max-width: 42rem;
  line-height: 1.7;
}

.page-section {
  width: 100%;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.prose {
  width: 100%;
  padding-inline: clamp(1rem, 4vw, 3rem);
  display: grid;
  gap: 1.15rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 600;
  margin-top: 1.25rem;
  color: var(--color-ivory);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: var(--color-gold-soft);
}

.prose p,
.prose li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.75;
}

.prose ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 0;
}

.prose ul li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.prose ul li i {
  color: var(--color-gold);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.prose a {
  color: var(--color-gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.08);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-gold-soft);
  text-decoration: none;
}

.contact-email:hover {
  border-color: var(--color-gold);
  color: var(--color-ivory);
}

.narrow-prose {
  max-width: 52rem;
}
