*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0b08;
  --bg2: #13100c;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --cream: #f2ead8;
  --muted: #7a6f5e;
  --red: #8b2020;
  --red-light: #c0392b;
  --border: rgba(201,168,76,0.2);
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Cormorant Garamond', Georgia, serif;
  --ff-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* TOP BAR */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 48px;
  background: linear-gradient(to bottom, rgba(13,11,8,0.95) 0%, transparent 100%);
  backdrop-filter: blur(2px);
}
.topbar-hours { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }
.topbar-logo { font-family: var(--ff-display); font-size: 13px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream); text-decoration: none; }
.topbar-phone { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.topbar-phone:hover { color: var(--gold); }

/* NAV */
nav {
  position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 100;
  display: flex; gap: 8px;
  background: rgba(13,11,8,0.85);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 24px;
  backdrop-filter: blur(16px);
}
nav a {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  padding: 6px 16px; border-radius: 100px; transition: all 0.3s;
}
nav a:hover, nav a.active { color: var(--bg); background: var(--gold); }

/* HERO */
#hero { position: relative; height: 100vh; min-height: 700px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; }

.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }

.hero-slider-dots {
  position: absolute; bottom: 110px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(242,234,216,0.3);
  border: 1px solid rgba(201,168,76,0.5);
  cursor: pointer; padding: 0;
  transition: all 0.3s;
}
.hero-dot.is-active { background: var(--gold); border-color: var(--gold); transform: scale(1.3); }
.hero-dot:hover { background: var(--gold-light); }

.hero-lines {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 80px);
}

.hero-year {
  position: absolute;
  font-family: var(--ff-display);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 900; color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.08);
  letter-spacing: -0.02em; line-height: 1;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; white-space: nowrap;
}

.hero-content { position: relative; z-index: 2; padding: 0 24px; }

.hero-logo-img { height: 135px; width: auto; object-fit: contain; filter: drop-shadow(0 4px 24px rgba(201,168,76,0.3)); display: block; margin: 0 auto; }
@media (min-width: 901px) { .hero-logo-img { height: 360px; } }

.hero-eyebrow {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--ff-display); font-size: clamp(52px, 9vw, 130px);
  font-weight: 900; line-height: 0.9; color: var(--cream);
  opacity: 0; animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  margin-top: 32px; font-family: var(--ff-body); font-size: clamp(16px, 2vw, 22px);
  font-style: italic; color: var(--muted); letter-spacing: 0.02em;
  opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
}
.hero-cta { margin-top: 48px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s ease 0.9s forwards; }

.btn-primary {
  display: inline-block; padding: 14px 36px;
  background: var(--gold); color: var(--bg);
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.3); }

.btn-ghost {
  display: inline-block; padding: 13px 36px;
  border: 1px solid var(--border); color: var(--cream);
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: all 0.3s; background: transparent; cursor: pointer;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span { font-family: var(--ff-mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease infinite; }

/* SECTIONS */
section { padding: 120px 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.section-label {
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: flex; align-items: center; gap: 16px;
}
.section-label::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gold); opacity: 0.4; }

.section-title { font-family: var(--ff-display); font-size: clamp(36px, 5vw, 72px); font-weight: 700; line-height: 1.05; color: var(--cream); }
.section-title em { font-style: italic; color: var(--gold); }

.divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); }

/* ABOUT */
#about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-text p { font-size: 19px; line-height: 1.8; color: rgba(242,234,216,0.75); margin-bottom: 24px; font-weight: 300; }
.about-text p strong { color: var(--cream); font-weight: 600; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat { background: rgba(201,168,76,0.05); border: 1px solid var(--border); padding: 32px 24px; text-align: center; transition: background 0.3s; }
.stat:hover { background: rgba(201,168,76,0.1); }
.stat-number { font-family: var(--ff-display); font-size: 56px; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* MENU */
#menu { background: var(--bg); }
.menu-tabs { display: flex; gap: 0; margin: 48px 0 40px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.menu-tab {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  padding: 12px 24px; cursor: pointer;
  border: none; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all 0.3s; background: none;
}
.menu-tab:hover { color: var(--cream); }
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-image-full { width: 100%; max-width: 800px; margin: 0 auto; display: block; border-radius: 4px; border: 1px solid var(--border); }

/* EVENTS */
#events { background: var(--bg2); }

/* SPORTS */
#sports { background: var(--bg); }
.sports-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
.sport-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.sport-tag {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 8px 20px;
  border: 1px solid var(--border); border-radius: 2px;
  color: var(--cream); transition: all 0.3s;
}
.sport-tag:hover { border-color: var(--red-light); color: var(--red-light); }
.screens-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.screen-item { background: rgba(201,168,76,0.05); border: 1px solid var(--border); padding: 24px; text-align: center; }
.screen-number { font-family: var(--ff-display); font-size: 48px; font-weight: 900; color: var(--gold); display: block; }
.screen-label { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* GALLERY GRID */
#gallery { background: var(--bg2); }
.gallery-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.gallery-item {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  background: var(--bg);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,0.5), transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13,11,8,0.96);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 88vh; object-fit: contain; border: 1px solid var(--border); border-radius: 4px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(13,11,8,0.7);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase;
}

/* CONTACT */
#contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
.contact-block { margin-bottom: 48px; }
.contact-block-label { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.contact-block-value { font-family: var(--ff-display); font-size: 22px; color: var(--cream); line-height: 1.4; }
.contact-block-value a { color: var(--cream); text-decoration: none; transition: color 0.3s; }
.contact-block-value a:hover { color: var(--gold); }
.contact-note { font-size: 15px; color: var(--muted); font-style: italic; line-height: 1.7; padding: 24px; border-left: 2px solid var(--border); margin-top: 32px; }

/* SOCIAL/FOOTER */
.social-link { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.social-link:hover { color: var(--gold); }

footer { padding: 32px 48px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--muted); }
.footer-tagline { font-family: var(--ff-display); font-size: 14px; font-style: italic; color: rgba(201,168,76,0.5); }

/* ORNAMENT */
.ornament { display: flex; align-items: center; gap: 16px; color: var(--gold); opacity: 0.3; margin: 40px 0; }
.ornament::before, .ornament::after { content: ''; flex: 1; height: 1px; background: var(--gold); }
.ornament-diamond { font-size: 8px; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); transform-origin: top; } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .topbar { padding: 14px 24px; }
  .topbar-hours { display: none; }
  nav { bottom: 20px; padding: 8px 16px; }
  nav a { padding: 5px 10px; font-size: 10px; }
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .about-grid, .sports-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 4px; }
  .lightbox-close { top: 12px; right: 12px; }
}
@media (max-width: 600px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .screens-showcase { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; text-align: center; }
}
