:root {
  --ink: #141816;
  --emerald: #0e3d30;
  --emerald-mid: #165a46;
  --emerald-deep: #071c16;
  --gold: #c6a15b;
  --gold-bright: #e3c57a;
  --ivory: #f3eee3;
  --cream: #e8e0d0;
  --paper: #faf7f1;
  --muted: #6d675e;
  --line: rgba(198, 161, 91, 0.35);
  --shadow: 0 18px 50px rgba(7, 28, 22, 0.18);
  --radius: 18px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}

body.gate-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-bright);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--emerald-deep);
}

.topbar {
  background: linear-gradient(90deg, #b8923f, var(--gold), #b8923f);
  color: var(--emerald-deep);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem 1rem;
  font-weight: 500;
}

.topbar i {
  margin-right: 0.45rem;
}

.site-nav {
  background: var(--emerald-deep);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ivory) !important;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.05rem;
  transform: rotate(45deg);
}

.brand-mark i {
  transform: rotate(-45deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-copy small {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.22rem;
}

.navbar-toggler {
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.site-nav .navbar-nav {
  gap: 0.15rem;
}

.site-nav .nav-link {
  color: var(--ivory) !important;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 0.7rem !important;
  position: relative;
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link:focus::after {
  transform: scaleX(1);
}

.hero {
  min-height: 88vh;
  background-image: linear-gradient(120deg, rgba(7, 28, 22, 0.82) 0%, rgba(14, 61, 48, 0.45) 55%, rgba(7, 28, 22, 0.7) 100%), url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-kicker {
  color: var(--gold-bright);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  max-width: 11ch;
  margin-bottom: 1.2rem;
}

.hero p {
  max-width: 38rem;
  font-size: 1.08rem;
  color: rgba(243, 238, 227, 0.88);
  margin-bottom: 2rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--emerald-deep);
  border: 1px solid var(--gold);
  border-radius: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.9rem 1.4rem;
}

.btn-gold:hover,
.btn-gold:focus {
  background: var(--gold-bright);
  color: var(--emerald-deep);
  border-color: var(--gold-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.9rem 1.4rem;
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: var(--gold);
  color: var(--emerald-deep);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.9rem 1.4rem;
}

.btn-line:hover,
.btn-line:focus {
  background: var(--gold);
  color: var(--emerald-deep);
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--emerald);
  color: var(--ivory);
}

.section-dark h2,
.section-dark h3 {
  color: var(--ivory);
}

.section-cream {
  background: var(--ivory);
}

.section-paper {
  background: var(--paper);
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.7rem;
  display: inline-block;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1.1rem;
}

.lead-copy {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 40rem;
}

.section-dark .lead-copy {
  color: rgba(243, 238, 227, 0.78);
}

.frame {
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.icon-grid .icon-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.6rem 1.3rem;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.icon-grid .icon-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.icon-card i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.icon-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.icon-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.menu-board {
  background: var(--emerald-deep);
  color: var(--ivory);
  padding: 2.4rem 2rem;
  border: 1px solid var(--line);
  height: 100%;
}

.menu-board h3 {
  color: var(--gold-bright);
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(198, 161, 91, 0.18);
  padding: 0.85rem 0;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item span {
  color: var(--gold);
  white-space: nowrap;
  font-weight: 500;
}

.menu-item small {
  display: block;
  color: rgba(243, 238, 227, 0.62);
  font-size: 0.82rem;
}

.game-tile {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
  border: 1px solid var(--line);
}

.game-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 28, 22, 0.1), rgba(7, 28, 22, 0.82));
}

.game-tile > * {
  position: relative;
  z-index: 1;
  color: var(--ivory);
}

.game-tile h3 {
  color: var(--ivory);
  margin-bottom: 0.35rem;
}

.event-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.8rem 1.5rem;
  height: 100%;
}

.event-card .when {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.7rem;
}

.contact-panel {
  border: 1px solid var(--line);
  padding: 2.2rem;
  background: rgba(7, 28, 22, 0.35);
}

.contact-panel p {
  color: rgba(243, 238, 227, 0.82);
}

.notice {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.6rem 1.5rem;
}

.site-footer {
  background: var(--emerald-deep);
  color: rgba(243, 238, 227, 0.78);
  padding: 4rem 0 1.6rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--ivory);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ivory);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(243, 238, 227, 0.78);
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(198, 161, 91, 0.2);
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  font-size: 0.85rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(7, 28, 22, 0.92);
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.age-gate.is-visible {
  display: flex;
}

.age-card {
  width: min(460px, 100%);
  background: var(--paper);
  border: 1px solid var(--gold);
  padding: 2rem 1.7rem;
  text-align: center;
}

.age-card h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.age-card p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.is-hidden {
  display: none !important;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1070;
  background: var(--emerald-deep);
  color: var(--ivory);
  border: 1px solid var(--gold);
  padding: 1rem 1.1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cookie-bar.is-visible {
  display: flex;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(243, 238, 227, 0.86);
}

.legal-hero {
  background: linear-gradient(120deg, var(--emerald-deep), var(--emerald));
  color: var(--ivory);
  padding: 4.5rem 0 3.2rem;
}

.legal-hero h1 {
  color: var(--ivory);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.legal-hero p {
  color: rgba(243, 238, 227, 0.78);
  margin: 0;
  max-width: 40rem;
}

.legal-body {
  padding: 3.5rem 0 5rem;
}

.legal-body h2 {
  font-size: 1.7rem;
  margin-top: 2rem;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: #0b241c;
    margin-top: 0.85rem;
    padding: 0.6rem 0.4rem 1rem;
    border: 1px solid var(--line);
  }

  .site-nav .nav-link {
    padding: 0.85rem 0.8rem !important;
  }

  .hero {
    min-height: 78vh;
    padding: 4.5rem 0;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 4.2rem 0;
  }

  .menu-board,
  .contact-panel,
  .age-card {
    padding: 1.4rem 1.15rem;
  }
}
