﻿/* =========================================================
   RESET & TOKENS
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink:       #13100a;
  --bark:      #1e1710;
  --peat:      #2c2315;
  --gold:      #c6922a;
  --gold-lt:   #e0b84a;
  --gold-dk:   #8a631a;
  --cream:     #f2e8d0;
  --fog:       rgba(242,232,208,0.6);
  --red:       #7c1b1b;
  --red-lt:    #9e2424;
  --r: 0.4rem;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* =========================================================
   UTILITY
   ========================================================= */
.tag {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold);
}
.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
}
.display em { font-style: italic; color: var(--gold-lt); }
.rule {
  display: flex; align-items: center; gap: 14px;
  margin: 20px 0;
}
.rule::before, .rule::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dk));
}
.rule::after { background: linear-gradient(to left, transparent, var(--gold-dk)); }
.rule span { color: var(--gold); font-size: 1rem; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--transition);
  padding: 15px 34px;
  touch-action: manipulation;
}
.btn-gold {
  background: var(--gold); color: var(--ink);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(242,232,208,0.35);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn svg { width: 14px; height: 14px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

/* =========================================================
   NOISE OVERLAY
   ========================================================= */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
  opacity: 0.35;
}

/* =========================================================
   NAV
   ========================================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  background: linear-gradient(to bottom, rgba(19,16,10,0.96) 0%, rgba(19,16,10,0) 100%);
  backdrop-filter: blur(2px);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 2.1rem; color: var(--gold);
  text-shadow: 0 2px 20px rgba(198,146,42,0.35);
  letter-spacing: 1px;
}
a.nav-logo { text-decoration: none; }
.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text { line-height: 1; }
.nav-center {
  display: flex; gap: 36px; list-style: none;
}
@media (max-width: 1100px) {
  .nav-center { gap: 22px; }
}
.nav-center a {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(242,232,208,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav-center a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-center a:hover { color: var(--cream); }
.nav-center a:hover::after { width: 100%; }
.nav-right { display: flex; gap: 12px; align-items: center; }

.hero-actions--tight {
  margin-top: 18px;
}
.vball-panel-cta {
  margin-top: 28px;
}
.events-section .league-cta-below-events {
  margin-top: 22px;
}
.findus .league-cta-below-directions {
  margin-top: 16px;
  align-self: flex-start;
}
.league-cta-end {
  text-align: center;
  padding: 3rem 1.5rem 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(198, 146, 42, 0.12);
}
main.food-menu-page .league-cta-end,
main.drinks-menu-page .league-cta-end,
main.schedule-page .league-cta-end,
main.open-play-page .league-cta-end,
main.standings-page .league-cta-end,
main.tournaments-page .league-cta-end {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
main.food-menu-page .league-cta-end .btn,
main.drinks-menu-page .league-cta-end .btn,
main.schedule-page .league-cta-end .btn,
main.open-play-page .league-cta-end .btn,
main.standings-page .league-cta-end .btn,
main.tournaments-page .league-cta-end .btn {
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(19,16,10,0.45) 0%, rgba(19,16,10,0.88) 100%),
    url('https://marikkaslex.com/wp-content/uploads/2018/01/qtq50-EbQbIv.jpeg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(198,146,42,0.08) 0%, transparent 65%);
}
.hero-inner {
  position: relative; z-index: 1;
  text-align: center; padding: 120px 24px 80px;
  max-width: 860px; margin: 0 auto;
}
.hero-eyebrow {
  animation: riseIn 1s ease 0.1s both;
}
.hero-fraktur {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(5rem, 14vw, 10rem);
  color: var(--cream);
  line-height: 0.9;
  text-shadow: 0 8px 60px rgba(0,0,0,0.7), 0 0 120px rgba(198,146,42,0.12);
  animation: riseIn 1.1s ease 0.25s both;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic; font-weight: 300;
  color: rgba(242,232,208,0.8);
  margin-top: 16px;
  animation: riseIn 1.1s ease 0.45s both;
}
.hero-rule { animation: riseIn 1.1s ease 0.55s both; }
.hero-desc {
  font-size: 0.92rem; line-height: 2; letter-spacing: 0.02em;
  color: rgba(242,232,208,0.7);
  max-width: 520px; margin: 0 auto;
  animation: riseIn 1.1s ease 0.65s both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap;
  animation: riseIn 1.1s ease 0.8s both;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(242,232,208,0.4);
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-scroll span { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold-dk), transparent); }

/* =========================================================
   PILLARS STRIP
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(198,146,42,0.2);
}
.pillar {
  padding: 60px 48px;
  border-right: 1px solid rgba(198,146,42,0.12);
  position: relative; overflow: hidden;
  transition: background var(--transition);
}
.pillar:last-child { border-right: none; }
.pillar::before {
  content: attr(data-num);
  position: absolute; top: 20px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: rgba(198,146,42,0.07);
  line-height: 1; pointer-events: none;
}
.pillar:hover { background: rgba(198,146,42,0.04); }
.pillar-icon {
  width: 48px; height: 48px;
  background: rgba(198,146,42,0.1);
  border: 1px solid rgba(198,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 24px;
}
.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--cream); margin-bottom: 12px;
}
.pillar p {
  font-size: 0.85rem; line-height: 1.9;
  color: rgba(242,232,208,0.6);
}

/* =========================================================
   SPLIT: OUR STORY
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.split-media {
  position: relative; overflow: hidden;
}
.split-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.split:hover .split-media img { transform: scale(1.04); }
.split-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--ink) 100%);
}
.split-body {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bark);
  border-left: 1px solid rgba(198,146,42,0.1);
}
.split-body .display { margin-top: 12px; }
.split-body p {
  margin-top: 24px; font-size: 0.95rem; line-height: 2;
  color: rgba(242,232,208,0.65);
  max-width: 440px;
}
.split-body .btn { margin-top: 40px; }

/* REVERSE: media on right */
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split.reverse .split-media-overlay {
  background: linear-gradient(to left, transparent 55%, var(--ink) 100%);
}

/* =========================================================
   BEER MARQUEE
   ========================================================= */
.marquee-section {
  background: var(--red);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.3);
}
.marquee-track {
  display: flex; gap: 60px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); white-space: nowrap;
  display: flex; align-items: center; gap: 60px;
}
.marquee-track span::after { content: '✦'; color: rgba(255,255,255,0.4); }

/* =========================================================
   MENU / FEATURE CARDS
   ========================================================= */
.cards-section { padding: 110px 56px; }
.cards-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.cards-header-text { max-width: 500px; }
.cards-header-text .display { margin-top: 10px; }
.cards-link {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold-dk);
  padding-bottom: 4px; transition: color var(--transition);
}
.cards-link:hover { color: var(--gold-lt); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 3px;
}
.card {
  position: relative; overflow: hidden;
  background: var(--peat);
  display: flex; align-items: flex-end;
  cursor: pointer;
  min-height: 320px;
}
.card:nth-child(1) { grid-column: span 7; }
.card:nth-child(2) { grid-column: span 5; }
.card:nth-child(3) { grid-column: span 4; }
.card:nth-child(4) { grid-column: span 8; }
.card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: 0.6;
}
.card:hover .card-bg { transform: scale(1.06); opacity: 0.75; }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(19,16,10,0.95) 0%, rgba(19,16,10,0.3) 60%, transparent 100%);
}
.card-body {
  position: relative; z-index: 1;
  padding: 32px 36px; width: 100%;
}
.card-body .tag { margin-bottom: 10px; }
.card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400; color: var(--cream); margin-bottom: 8px;
}
.card-body p { font-size: 0.82rem; line-height: 1.8; color: rgba(242,232,208,0.65); max-width: 380px; }
.card-arrow {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); transition: gap var(--transition);
}
.card:hover .card-arrow { gap: 14px; }

/* =========================================================
   STATS BANNER
   ========================================================= */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--peat) 0%, var(--bark) 100%);
  border-top: 1px solid rgba(198,146,42,0.15);
  border-bottom: 1px solid rgba(198,146,42,0.15);
}
.stat {
  padding: 64px 40px; text-align: center;
  border-right: 1px solid rgba(198,146,42,0.1);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300; color: var(--gold-lt);
  display: block; line-height: 1;
}
.stat-unit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--gold);
}
.stat-label {
  display: block; margin-top: 10px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(242,232,208,0.5);
}
.stat-desc {
  display: block; margin-top: 6px;
  font-size: 0.8rem; color: rgba(242,232,208,0.35);
  font-style: italic; font-family: 'Cormorant Garamond', serif;
}

/* =========================================================
   VOLLEYBALL
   ========================================================= */
.volleyball {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.vball-media {
  position: relative; overflow: hidden;
}
.vball-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7);
  transition: transform 0.6s ease;
}
.volleyball:hover .vball-media img { transform: scale(1.03); }
.vball-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to left, transparent 50%, var(--ink) 100%);
}
.vball-body {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--ink);
}
.vball-tabs {
  display: flex; gap: 0; margin-top: 40px;
  border-bottom: 1px solid rgba(198,146,42,0.15);
}
.vball-tab {
  padding: 12px 22px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(242,232,208,0.45); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
  background: none; border-left: none; border-right: none; border-top: none;
  font-family: 'Raleway', sans-serif;
}
.vball-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.vball-tab:hover { color: var(--cream); }
.vball-panels { margin-top: 32px; }
.vball-panel { display: none; }
.vball-panel.active { display: block; }
.vball-panel p {
  font-size: 0.9rem; line-height: 2; color: rgba(242,232,208,0.65);
  margin-bottom: 24px;
}
.vball-links { display: flex; flex-direction: column; gap: 12px; }
.vball-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: rgba(198,146,42,0.05);
  border: 1px solid rgba(198,146,42,0.12);
  font-size: 0.78rem; color: rgba(242,232,208,0.8);
  transition: background var(--transition), border-color var(--transition);
}
.vball-link:hover { background: rgba(198,146,42,0.1); border-color: rgba(198,146,42,0.3); }
.vball-link span { color: var(--gold); font-size: 1rem; }

/* =========================================================
   PRIVATE EVENTS
   ========================================================= */
.events-section {
  padding: 110px 56px;
  background: var(--bark);
  text-align: center;
}
.events-section .display { margin-top: 12px; }
.events-section > p {
  font-size: 0.95rem; line-height: 2; color: rgba(242,232,208,0.6);
  max-width: 560px; margin: 20px auto 56px;
}
.events-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-bottom: 48px;
}
.event-card {
  background: var(--peat); padding: 48px 36px; text-align: left;
  border: 1px solid rgba(198,146,42,0.08);
  transition: border-color var(--transition), background var(--transition);
  position: relative; overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold-dk), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.event-card:hover { border-color: rgba(198,146,42,0.2); background: #231d12; }
.event-card:hover::before { transform: scaleX(1); }
.event-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.event-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--cream); margin-bottom: 12px;
}
.event-card p { font-size: 0.85rem; line-height: 1.9; color: rgba(242,232,208,0.58); }

/* =========================================================
   MAP / FIND US
   ========================================================= */
.findus {
  display: grid; grid-template-columns: 1fr 1fr;
}
.findus-info {
  padding: 80px 72px;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
}
.findus-info .display { margin-top: 12px; }
.findus-details {
  margin-top: 44px; display: flex; flex-direction: column; gap: 24px;
}
.findus-item {
  display: flex; gap: 20px; align-items: flex-start;
}
.findus-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(198,146,42,0.08);
  border: 1px solid rgba(198,146,42,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-top: 2px;
}
.findus-item-text h5 {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.findus-item-text p { font-size: 0.88rem; line-height: 1.7; color: rgba(242,232,208,0.65); }
.findus-map {
  background: var(--peat);
  min-height: 480px; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(242,232,208,0.3);
  letter-spacing: 0.15em; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.findus-map iframe {
  width: 100%; height: 100%;
  position: absolute; inset: 0; border: none; filter: grayscale(0.6) sepia(0.3);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #0c0a06;
  border-top: 1px solid rgba(198,146,42,0.15);
}
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; padding: 80px 56px 60px;
}
.footer-brand .nav-logo {
  font-size: 2.8rem;
  display: inline-flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 14px;
}
.footer-brand .nav-logo-img { width: 56px; height: 56px; }
.footer-brand p {
  font-size: 0.85rem; line-height: 1.9; color: rgba(242,232,208,0.45); max-width: 280px;
}
.footer-social { display: flex; gap: 12px; margin-top: 28px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(198,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: rgba(198,146,42,0.1); border-color: var(--gold-dk); }
.footer-col h5 {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.85rem; color: rgba(242,232,208,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px;
  border-top: 1px solid rgba(198,146,42,0.08);
  font-size: 0.72rem; color: rgba(242,232,208,0.25);
  letter-spacing: 0.05em;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  nav { padding: 18px 28px; }
  .nav-center { gap: 22px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(198,146,42,0.12); }
  .split, .split.reverse, .volleyball, .findus { grid-template-columns: 1fr; direction: ltr; }
  .split-body, .vball-body, .findus-info { padding: 60px 32px; }
  .vball-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .vball-tab {
    flex: 0 0 auto;
  }
  .split-media, .vball-media { min-height: 340px; }
  .split-media-overlay, .vball-media::after { background: linear-gradient(to top, var(--ink), transparent); }
  .cards-section { padding: 70px 24px; }
  .card:nth-child(1), .card:nth-child(2),
  .card:nth-child(3), .card:nth-child(4) { grid-column: span 12; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid rgba(198,146,42,0.1); }
  .events-cards { grid-template-columns: 1fr; }
  .events-section { padding: 70px 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 60px 24px 40px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .cards-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* Nav: second row link strip + scroll (no hamburger; all links stay reachable) */
@media (max-width: 900px) {
  nav {
    flex-wrap: wrap;
    padding: 12px max(16px, env(safe-area-inset-right)) 12px max(16px, env(safe-area-inset-left));
    row-gap: 8px;
    column-gap: 12px;
    align-items: center;
  }
  .nav-right {
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
  }
  .nav-right .btn {
    padding: 8px 12px;
    font-size: 0.54rem;
    font-weight: 600;
    letter-spacing: 0.14em;
  }
  .nav-right .btn-gold {
    background: rgba(198, 146, 42, 0.14);
    color: var(--gold-lt);
    border: 1px solid rgba(198, 146, 42, 0.35);
  }
  .nav-right .btn-gold:hover {
    background: rgba(198, 146, 42, 0.22);
    color: var(--cream);
  }
  .nav-right .btn-ghost {
    border-color: rgba(242, 232, 208, 0.18);
    color: rgba(242, 232, 208, 0.55);
  }
  .nav-right .btn-ghost:hover {
    border-color: rgba(198, 146, 42, 0.35);
    color: rgba(242, 232, 208, 0.85);
  }
  .nav-center {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    margin-left: calc(-1 * max(16px, env(safe-area-inset-left, 0px)));
    margin-right: calc(-1 * max(16px, env(safe-area-inset-right, 0px)));
    padding: 10px max(16px, env(safe-area-inset-right, 0px)) 6px max(16px, env(safe-area-inset-left, 0px));
    border-top: 1px solid rgba(198, 146, 42, 0.12);
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .nav-center::-webkit-scrollbar {
    height: 5px;
  }
  .nav-center::-webkit-scrollbar-thumb {
    background: rgba(198, 146, 42, 0.35);
    border-radius: 4px;
  }
  .nav-center li {
    flex: 0 0 auto;
  }
  .nav-center a {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
    white-space: nowrap;
  }
  .hero-inner {
    padding: 96px 18px 72px;
  }
  .hero-desc {
    font-size: 0.88rem;
    padding: 0 4px;
  }
  .marquee-track {
    gap: 36px;
  }
  .marquee-track span {
    gap: 36px;
  }
  .pillar {
    padding: 48px 28px;
  }
  .split-body,
  .vball-body {
    padding: 56px 24px;
  }
  .vball-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: thin;
  }
  .vball-tab {
    flex: 0 0 auto;
    padding: 12px 16px;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }
  .findus-info {
    padding: 56px 24px;
  }
  .findus-map {
    min-height: 320px;
  }
  .event-card {
    padding: 36px 24px;
  }
  .footer-brand .nav-logo {
    font-size: 2.2rem;
  }
  .footer-brand .nav-logo-img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 640px) {
  .nav-logo-img {
    width: 40px;
    height: 40px;
  }
  .nav-logo {
    font-size: 1.55rem;
    gap: 8px;
  }
  .nav-right .btn {
    padding: 7px 11px;
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.11em;
  }
  .nav-right .btn-gold {
    background: rgba(198, 146, 42, 0.12);
    color: var(--gold-lt);
    border: 1px solid rgba(198, 146, 42, 0.28);
  }
  .nav-right .btn-gold:hover {
    background: rgba(198, 146, 42, 0.2);
    transform: none;
  }
  .nav-right .btn-ghost {
    border-color: rgba(242, 232, 208, 0.14);
    color: rgba(242, 232, 208, 0.5);
  }
  .nav-right .btn-ghost:hover {
    transform: none;
  }
  .hero-fraktur {
    font-size: clamp(3.2rem, 14vw, 4.5rem);
  }
  .hero-subtitle {
    padding: 0 8px;
  }
  .hero-actions,
  .hero-actions--tight {
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
    gap: 12px;
  }
  .hero-actions .btn,
  .hero-actions--tight .btn {
    width: min(100%, 300px);
    justify-content: center;
  }
  .hero-scroll {
    bottom: 20px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 28px 16px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .cards-section {
    padding: 56px 18px;
  }
  .card {
    min-height: 260px;
  }
  .card-body {
    padding: 24px 20px;
  }
  .findus-info .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .findus .league-cta-below-directions {
    align-self: center;
    width: min(100%, 320px);
    justify-content: center;
  }
  .events-section .league-cta-below-events {
    width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .vball-panel-cta .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .vball-link {
    padding: 14px 16px;
    font-size: 0.74rem;
  }
}

@media (max-width: 400px) {
  .nav-right {
    margin-left: auto;
    justify-content: flex-end;
    gap: 4px;
  }
  .nav-right .btn {
    padding: 6px 9px;
    font-size: 0.5rem;
    letter-spacing: 0.09em;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat:nth-child(n) {
    border-right: none;
    border-top: 1px solid rgba(198, 146, 42, 0.08);
  }
  .stat:first-child {
    border-top: none;
  }
}

/* Inner pages (paths like /menu) */
.page-main {
  padding: 140px 56px 100px;
  max-width: 640px;
  margin: 0 auto;
}
.page-main p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: rgba(242,232,208,0.65);
  margin-top: 20px;
}
.page-main--wide {
  max-width: 920px;
}
.nav-center a[aria-current="page"] {
  color: var(--cream);
}
.nav-center a[aria-current="page"]::after {
  width: 100%;
}
@media (max-width: 1024px) {
  .page-main { padding: 120px 28px 72px; }
}
@media (max-width: 640px) {
  .page-main {
    padding: 100px 18px 64px;
  }
}

/* Menu hub (/menu) — matches drinks menu card language */
.menu-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 40px;
  max-width: 880px;
}
.menu-hub a,
.menu-hub .menu-hub-card {
  display: block;
  background: var(--peat);
  border: 1px solid rgba(198, 146, 42, 0.1);
  padding: 40px 36px;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.menu-hub .menu-hub-card {
  cursor: default;
  opacity: 0.92;
}
.menu-hub a::before,
.menu-hub .menu-hub-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dk), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.menu-hub a:hover {
  background: var(--bark);
  border-color: rgba(198, 146, 42, 0.22);
}
.menu-hub a:hover::before {
  transform: scaleX(1);
}
.menu-hub a .tag,
.menu-hub .menu-hub-card .tag {
  margin-bottom: 12px;
}
.menu-hub a h2,
.menu-hub .menu-hub-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}
.menu-hub a h2 em,
.menu-hub .menu-hub-card h2 em {
  font-style: italic;
  color: var(--gold-lt);
}
.menu-hub a p,
.menu-hub .menu-hub-card p {
  margin-top: 14px;
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(242, 232, 208, 0.55);
}
.menu-hub a .hub-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 640px) {
  .menu-hub {
    grid-template-columns: 1fr;
  }
}
