:root {
  --night: #06101c;
  --ink: #0b1728;
  --azulejo: #174a82;
  --sea: #2a6f94;
  --gold: #d6a85a;
  --gold-soft: #efc98a;
  --clay: #c35a38;
  --ivory: #f4efe6;
  --cream: #e9e0d2;
  --paper: #faf7f1;
  --muted: #6b675e;
  --line: rgba(214, 168, 90, 0.34);
  --shadow: 0 22px 48px rgba(6, 16, 28, 0.18);
  --radius: 18px;
  --display: "Fraunces", "Times New Roman", serif;
  --body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--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-soft);
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--night);
}

.topbar {
  background: linear-gradient(90deg, #b8883a, var(--gold), #e0ba72, var(--gold), #b8883a);
  color: var(--night);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.62rem 1rem;
  font-weight: 600;
}

.topbar i {
  margin-right: 0.4rem;
}

.site-nav {
  background: var(--night);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ivory) !important;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: linear-gradient(145deg, var(--gold-soft), var(--gold), #b8883a);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  font-size: 1rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-copy small {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.28rem;
}

.navbar-toggler {
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 12px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.site-nav .navbar-nav {
  gap: 0.1rem;
}

.site-nav .nav-link {
  color: rgba(244, 239, 230, 0.9) !important;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 0.68rem !important;
  position: relative;
  font-weight: 600;
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.68rem;
  right: 0.68rem;
  bottom: 0.18rem;
  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: 90vh;
  background-image: linear-gradient(115deg, rgba(6, 16, 28, 0.88) 0%, rgba(23, 74, 130, 0.42) 48%, rgba(6, 16, 28, 0.74) 100%), url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  display: flex;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 72px;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-kicker {
  color: var(--gold-soft);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  max-width: 13ch;
  margin-bottom: 1.15rem;
}

.hero p {
  max-width: 38rem;
  font-size: 1.08rem;
  color: rgba(244, 239, 230, 0.86);
  margin-bottom: 2rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--night);
  border: 1px solid var(--gold);
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.92rem 1.5rem;
}

.btn-gold:hover,
.btn-gold:focus {
  background: var(--gold-soft);
  color: var(--night);
  border-color: var(--gold-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.92rem 1.5rem;
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: var(--gold);
  color: var(--night);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.92rem 1.5rem;
}

.btn-line:hover,
.btn-line:focus {
  background: var(--gold);
  color: var(--night);
}

.section {
  padding: 6.2rem 0;
}

.section-dark {
  background:
    radial-gradient(circle at 12% 20%, rgba(42, 111, 148, 0.22), transparent 28%),
    linear-gradient(160deg, var(--night), #0d2038 58%, var(--azulejo));
  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(--clay);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 0.7rem;
  display: inline-block;
  font-weight: 700;
}

.section-dark .eyebrow {
  color: var(--gold-soft);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.05rem;
}

.lead-copy {
  font-size: 1.04rem;
  color: var(--muted);
  max-width: 40rem;
}

.section-dark .lead-copy {
  color: rgba(244, 239, 230, 0.78);
}

.frame {
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 0.9rem;
  background: rgba(255, 255, 255, 0.45);
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--azulejo);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

.icon-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.7rem 1.35rem;
  height: 100%;
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.icon-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold);
}

.icon-card i {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.icon-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.icon-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.menu-board {
  background: linear-gradient(180deg, #0d1b2e, var(--night));
  color: var(--ivory);
  padding: 2.3rem 2rem;
  border: 1px solid var(--line);
  height: 100%;
  border-radius: var(--radius);
}

.menu-board h3 {
  color: var(--gold-soft);
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(214, 168, 90, 0.16);
  padding: 0.85rem 0;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item span {
  color: var(--gold);
  white-space: nowrap;
  font-weight: 600;
}

.menu-item small {
  display: block;
  color: rgba(244, 239, 230, 0.6);
  font-size: 0.8rem;
}

.game-tile {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.game-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 28, 0.08), rgba(6, 16, 28, 0.86));
}

.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.85rem 1.5rem;
  height: 100%;
  border-radius: var(--radius);
  position: relative;
}

.event-card .when {
  color: var(--clay);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.contact-panel {
  border: 1px solid var(--line);
  padding: 2.2rem;
  background: rgba(6, 16, 28, 0.38);
  border-radius: var(--radius);
}

.contact-panel p {
  color: rgba(244, 239, 230, 0.84);
}

.notice {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 1.7rem 1.55rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.site-footer {
  background: var(--night);
  color: rgba(244, 239, 230, 0.76);
  padding: 4.2rem 0 1.6rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--ivory);
}

.footer-brand {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--ivory);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(244, 239, 230, 0.76);
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(214, 168, 90, 0.18);
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  font-size: 0.85rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(6, 16, 28, 0.94);
  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: 2.1rem 1.7rem;
  text-align: center;
  border-radius: 22px;
}

.age-card h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.age-card p {
  color: var(--muted);
  margin-bottom: 1.35rem;
}

.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(--night);
  color: var(--ivory);
  border: 1px solid var(--gold);
  padding: 1rem 1.15rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
  border-radius: 16px;
}

.cookie-bar.is-visible {
  display: flex;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.86);
}

.legal-hero {
  background: linear-gradient(125deg, var(--night), var(--azulejo));
  color: var(--ivory);
  padding: 4.6rem 0 3.2rem;
}

.legal-hero h1 {
  color: var(--ivory);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.legal-hero p {
  color: rgba(244, 239, 230, 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: #0a1628;
    margin-top: 0.85rem;
    padding: 0.6rem 0.45rem 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .site-nav .nav-link {
    padding: 0.88rem 0.85rem !important;
  }

  .hero {
    min-height: 78vh;
    padding: 4.4rem 0;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 4.1rem 0;
  }

  .menu-board,
  .contact-panel,
  .age-card {
    padding: 1.4rem 1.15rem;
  }
}
