/* ============================================================
   HSG GEKKOS HOCKEY — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --green:       #1d7a3a;
  --green-dark:  #0c3d1e;
  --green-light: #29b352;
  --green-glow:  rgba(29, 122, 58, 0.35);
  --gold:        #c9930a;
  --gold-light:  #f0c330;
  --gold-glow:   rgba(240, 195, 48, 0.25);
  --bg:          #080f0a;
  --bg-2:        #0f1a12;
  --bg-3:        #172019;
  --bg-card:     #111c14;
  --white:       #f0f5f1;
  --gray:        #5e7363;
  --gray-light:  #9db8a2;
  --border:      rgba(29, 122, 58, 0.18);
  --border-gold: rgba(240, 195, 48, 0.18);
  --font-h:      'Oswald', sans-serif;
  --font-b:      'Inter', sans-serif;
  --nav-h:       72px;
  --t:           0.3s ease;
  --radius:      10px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--bg); color: var(--white); overflow-x: hidden; line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; }

/* ---- Money rain overlay ---- */
#money-rain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9900; overflow: hidden;
}
.money-bill {
  position: absolute; top: -80px; font-size: 1.6rem; user-select: none;
  animation: moneyFall linear forwards;
}
@keyframes moneyFall {
  0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
  80%  { opacity: 0.7; }
  100% { transform: translateY(110vh) rotate(640deg) scale(0.6); opacity: 0; }
}

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 2rem;
  background: rgba(8, 15, 10, 0.7);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t);
}
.nav.scrolled {
  background: rgba(8, 15, 10, 0.97);
  border-color: var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}
.nav-logo img   { height: 52px; width: auto; }
.nav-logo-text  {
  font-family: var(--font-h); font-size: 1.35rem; font-weight: 700;
  letter-spacing: 0.04em; line-height: 1;
}
.nav-logo-text span { color: var(--gold-light); }

.nav-links {
  display: flex; align-items: center; gap: 0.15rem; margin-left: auto;
}
.nav-link {
  font-family: var(--font-h); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.45rem 0.85rem; border-radius: 6px;
  color: var(--gray-light);
  transition: color var(--t), background var(--t);
}
.nav-link:hover, .nav-link.active {
  color: var(--white); background: rgba(29, 122, 58, 0.15);
}
.nav-cta {
  font-family: var(--font-h); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5rem 1.2rem; border-radius: 6px; margin-left: 0.5rem;
  background: var(--green); color: var(--white);
  border: 2px solid var(--green);
  transition: all var(--t);
}
.nav-cta:hover { background: var(--green-light); border-color: var(--green-light); }

.nav-mobile-header { display: none; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: 4px;
  background: none; border: none;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: var(--t);
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Ticker ---- */
.ticker-wrap {
  background: var(--green-dark);
  padding: 0.55rem 0; overflow: hidden; white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.ticker {
  display: inline-flex; gap: 0;
  animation: tickerScroll 40s linear infinite;
}
.ticker-item {
  font-family: var(--font-h); font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-light);
  padding: 0 3rem;
}
.ticker-item::before { content: '🏒  '; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/team-photo.jpg') center/cover no-repeat;
  filter: brightness(0.28) saturate(0.7);
  transform: scale(1.05);
  z-index: 0;
}
.hero-bg-fallback {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, #0f3d1f 0%, #080f0a 60%),
              linear-gradient(160deg, #0a2014 0%, #080f0a 100%);
  z-index: 0;
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(29,122,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,122,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8,15,10,0.85) 100%);
}
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 30%; z-index: 3;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.hero-content {
  position: relative; z-index: 4; text-align: center;
  max-width: 960px; padding: 2rem;
}
.hero-eyebrow {
  font-family: var(--font-h); font-size: 0.78rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.25rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 700; line-height: 0.88; letter-spacing: -0.01em;
  text-transform: uppercase; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero-title .gold-block {
  color: var(--gold-light);
  display: block;
  text-shadow: 0 0 80px rgba(240,195,48,0.4);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem); font-weight: 300;
  color: var(--gray-light); max-width: 560px; margin: 0 auto 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.7s ease forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.9s ease forwards;
}
.hero-scroll {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--gray); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s 1.8s ease forwards;
}
.hero-scroll .arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gray); border-bottom: 2px solid var(--gray);
  transform: rotate(45deg);
  animation: arrowBounce 1.5s infinite;
}
@keyframes arrowBounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-h); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--t);
}
.btn-primary {
  background: var(--green); color: var(--white); border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-light); border-color: var(--green-light);
  transform: translateY(-2px); box-shadow: 0 10px 30px var(--green-glow);
}
.btn-outline {
  background: transparent; color: var(--gold-light); border-color: var(--gold-light);
}
.btn-outline:hover {
  background: rgba(240,195,48,0.1); transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--gold-glow);
}
.btn-gold {
  background: var(--gold-light); color: var(--bg); border-color: var(--gold-light);
}
.btn-gold:hover {
  background: #f7d44e; transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

/* ---- Stats section ---- */
.stats-section {
  padding: 4rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.stat-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray);
}

/* ---- Section commons ---- */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-h); font-size: 0.72rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--green-light); margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; text-transform: uppercase; line-height: 1.05; margin-bottom: 0.85rem;
}
.section-title .gold { color: var(--gold-light); }
.section-desc { font-size: 0.975rem; color: var(--gray-light); max-width: 580px; margin-bottom: 3rem; }
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.section-header-row .section-desc { margin-bottom: 0; }

/* ---- News cards ---- */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.news-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.news-card:hover {
  transform: translateY(-5px); border-color: var(--green);
  box-shadow: 0 16px 48px rgba(29,122,58,0.18);
}
.news-img-wrap {
  height: 190px; overflow: hidden; position: relative;
  background: var(--bg-3);
}
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.news-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; background: var(--bg-3);
}
.news-tag {
  position: absolute; top: 0.85rem; left: 0.85rem;
  background: var(--green); color: var(--white);
  font-family: var(--font-h); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.22rem 0.6rem; border-radius: 4px;
}
.news-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }
.news-title { font-family: var(--font-h); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.7rem; line-height: 1.25; }
.news-excerpt { font-size: 0.875rem; color: var(--gray-light); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.news-read-more {
  font-family: var(--font-h); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-light); display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap var(--t), color var(--t);
}
.news-read-more:hover { gap: 0.75rem; color: var(--gold-light); }

/* ---- Highlight band ---- */
.highlight-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a2a14 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 4rem 2rem; text-align: center;
}
.highlight-band .inner { max-width: 760px; margin: 0 auto; }
.highlight-band .big-quote {
  font-family: var(--font-h); font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400; line-height: 1.3; font-style: italic;
  color: var(--white); margin-bottom: 1rem;
}
.highlight-band .big-quote strong { color: var(--gold-light); font-style: normal; }
.highlight-band .attribution {
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray);
}

/* ---- Page hero ---- */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(29,122,58,0.18) 0%, transparent 65%);
}
.page-hero .inner { position: relative; z-index: 1; }
.page-hero-label {
  font-family: var(--font-h); font-size: 0.72rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--green-light); margin-bottom: 0.75rem;
}
.page-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700; text-transform: uppercase; line-height: 0.95;
  margin-bottom: 1.25rem;
}
.page-hero-title .gold { color: var(--gold-light); }
.page-hero-sub { font-size: 1rem; color: var(--gray-light); max-width: 560px; margin: 0 auto; }

/* ---- About ---- */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.about-img-wrap {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-3);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(8,15,10,0.88); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-h); font-size: 0.75rem; letter-spacing: 0.06em;
  color: var(--gold-light);
}
.about-text h2 {
  font-family: var(--font-h); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 1.25rem;
}
.about-text h2 .gold { color: var(--gold-light); }
.about-text p {
  font-size: 0.95rem; color: var(--gray-light); line-height: 1.75; margin-bottom: 1rem;
}

/* ---- Beer highlight ---- */
.beer-card {
  background: var(--bg-card);
  border: 1px solid var(--border); border-left: 4px solid var(--gold-light);
  border-radius: 14px; padding: 2.5rem;
  display: flex; gap: 2rem; align-items: flex-start;
}
.beer-icon { font-size: 3.5rem; flex-shrink: 0; line-height: 1; }
.beer-card h3 {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem;
}
.beer-card p { font-size: 0.95rem; color: var(--gray-light); line-height: 1.75; }

/* ---- Timeline ---- */
.timeline {
  padding-left: 2rem; position: relative;
}
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--gold), transparent);
}
.tl-item { position: relative; padding-bottom: 2.5rem; }
.tl-item::before {
  content: ''; position: absolute; left: -2.45rem; top: 0.35rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-light); border: 2px solid var(--bg);
}
.tl-year {
  font-family: var(--font-h); font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.2rem;
}
.tl-text { font-size: 0.9rem; color: var(--gray-light); line-height: 1.65; }

/* ---- Gekko section ---- */
.gekko-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.gekko-img-wrap {
  border-radius: 16px; overflow: hidden; position: relative;
  border: 1px solid var(--border);
  background: var(--bg-3);
}
.gekko-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(25%) contrast(1.1);
}
.gekko-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,15,10,0.8) 0%, transparent 50%);
}
.gekko-quote {
  font-family: var(--font-h); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400; line-height: 1.4; font-style: italic;
  color: var(--white); margin-bottom: 1rem;
}
.gekko-quote strong { color: var(--gold-light); font-style: normal; }
.gekko-att { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); }
.gekko-connection-list {
  margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem;
}
.gconn-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
  font-size: 0.9rem; color: var(--gray-light); line-height: 1.55;
}
.gconn-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ---- Roster ---- */
.roster-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.tab-btn {
  font-family: var(--font-h); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.55rem 1.2rem; border-radius: 6px;
  border: 1px solid var(--border); background: transparent; color: var(--gray-light);
  transition: all var(--t);
}
.tab-btn:hover { border-color: var(--green); color: var(--white); }
.tab-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }

.players-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.25rem;
}
.player-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.75rem 1.5rem; text-align: center;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.player-card:hover {
  transform: translateY(-5px); border-color: var(--green);
  box-shadow: 0 12px 36px rgba(29,122,58,0.18);
}
.player-num {
  font-family: var(--font-h); font-size: 2.8rem; font-weight: 700;
  color: var(--gold-light); opacity: 0.75; line-height: 1; margin-bottom: 0.75rem;
}
.player-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-3); border: 2px solid var(--border);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; overflow: hidden;
}
.player-name {
  font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.25rem;
}
.player-pos {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 0.75rem;
}
.player-badge {
  display: inline-block;
  background: rgba(240,195,48,0.12); color: var(--gold-light);
  border: 1px solid var(--border-gold);
  font-family: var(--font-h); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.15rem 0.55rem; border-radius: 4px; margin-bottom: 0.75rem;
}
.player-quote {
  font-size: 0.78rem; color: var(--gray); font-style: italic; line-height: 1.45;
}

/* ---- Trophies ---- */
.trophies-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.trophy-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  padding: 2.25rem 1.75rem; text-align: center; position: relative; overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.trophy-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold-light), var(--green));
}
.trophy-card:hover {
  transform: translateY(-6px); border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(240,195,48,0.12);
}
.trophy-card.gold-card { border-color: rgba(240,195,48,0.3); }
.trophy-card.silver-card { border-color: rgba(192,192,192,0.2); }
.trophy-card.bronze-card { border-color: rgba(180,100,40,0.2); }
.trophy-icon { font-size: 4rem; margin-bottom: 1rem; display: block; line-height: 1; }
.trophy-year {
  font-family: var(--font-h); font-size: 0.75rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.4rem;
}
.trophy-name {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.2;
}
.trophy-desc { font-size: 0.85rem; color: var(--gray-light); line-height: 1.55; }
.trophy-medal {
  display: inline-block; margin-top: 0.85rem;
  font-family: var(--font-h); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.7rem; border-radius: 4px;
}
.medal-gold   { background: rgba(240,195,48,0.12); color: var(--gold-light); border: 1px solid var(--border-gold); }
.medal-silver { background: rgba(200,200,200,0.08); color: #bbb; border: 1px solid rgba(200,200,200,0.15); }
.medal-bronze { background: rgba(180,100,40,0.1); color: #c8834b; border: 1px solid rgba(180,100,40,0.15); }
.medal-award  { background: rgba(29,122,58,0.12); color: var(--green-light); border: 1px solid var(--border); }

/* ---- Calendar ---- */
.cal-filter-row { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.cal-filter-btn {
  font-family: var(--font-h); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1.1rem; border-radius: 6px;
  border: 1px solid var(--border); background: transparent; color: var(--gray-light);
  transition: all var(--t);
}
.cal-filter-btn:hover { border-color: var(--green); color: var(--white); }
.cal-filter-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }

.cal-table-wrap {
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.cal-header {
  display: grid; grid-template-columns: 130px 70px 1fr 160px 100px;
  gap: 1rem; padding: 0.9rem 1.5rem;
  background: var(--bg-3);
  font-family: var(--font-h); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.cal-row {
  display: grid; grid-template-columns: 130px 70px 1fr 160px 100px;
  gap: 1rem; padding: 1.1rem 1.5rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  align-items: center; transition: background var(--t);
}
.cal-row:last-child { border-bottom: none; }
.cal-row:hover { background: var(--bg-3); }
.cal-row.upcoming-row { border-left: 3px solid var(--gold-light); }
.cal-date { font-size: 0.88rem; color: var(--white); font-weight: 500; }
.cal-time { font-size: 0.85rem; color: var(--gray-light); }
.cal-game { font-family: var(--font-h); font-size: 0.98rem; font-weight: 600; }
.cal-venue { font-size: 0.82rem; color: var(--gray-light); }
.home-badge {
  display: inline-block; font-family: var(--font-h); font-size: 0.65rem;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.18rem 0.5rem; border-radius: 4px;
}
.home-badge.home { background: rgba(29,122,58,0.2); color: var(--green-light); }
.home-badge.away { background: rgba(240,195,48,0.1); color: var(--gold-light); }
.result-w { color: var(--green-light); font-family: var(--font-h); font-weight: 600; }
.result-l { color: #e05555; font-family: var(--font-h); font-weight: 600; }
.result-d { color: var(--gold-light); font-family: var(--font-h); font-weight: 600; }
.result-tbd { color: var(--gray); font-style: italic; font-size: 0.85rem; }

/* ---- Join form ---- */
.join-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start;
}
.join-info h3 {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.85rem;
}
.join-info p { font-size: 0.93rem; color: var(--gray-light); line-height: 1.75; margin-bottom: 1.5rem; }
.join-perks { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.perk {
  display: flex; align-items: flex-start; gap: 0.85rem;
  font-size: 0.9rem; color: var(--gray-light); line-height: 1.5;
}
.perk-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.05rem; }
.contact-block {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.5rem;
}
.contact-block h4 {
  font-family: var(--font-h); font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 0.85rem;
}
.contact-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.9rem; color: var(--gray-light); margin-bottom: 0.6rem;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon { font-size: 1rem; flex-shrink: 0; }

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-label {
  display: block; font-family: var(--font-h); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-light);
  margin-bottom: 0.45rem;
}
.form-control {
  width: 100%; background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--white); font-family: var(--font-b);
  font-size: 0.93rem; padding: 0.75rem 1rem; outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-glow); }
.form-control::placeholder { color: var(--gray); }
select.form-control {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M5 7L0 0h10z' fill='%235e7363'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea.form-control { min-height: 110px; resize: vertical; }
.form-check {
  display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 0.75rem;
}
.form-check input { margin-top: 3px; accent-color: var(--green); flex-shrink: 0; }
.form-check label { font-size: 0.875rem; color: var(--gray-light); line-height: 1.5; }

.form-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem;
}

/* ---- Success message ---- */
#success-msg {
  display: none; text-align: center; padding: 4rem 2rem;
}
#success-msg.show { display: block; }
.success-icon { font-size: 5rem; margin-bottom: 1rem; display: block; }
.success-msg-inner h3 {
  font-family: var(--font-h); font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem;
}
.success-msg-inner p { color: var(--gray-light); font-size: 0.95rem; }

/* ---- Footer ---- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border); padding: 4rem 2rem 2rem;
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
}
.footer-brand-name span { color: var(--gold-light); }
.footer-brand-name img { height: 40px; }
.footer-tagline { font-size: 0.875rem; color: var(--gray); line-height: 1.7; max-width: 260px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.6rem; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  color: var(--gray); transition: all var(--t);
}
.social-icon:hover { border-color: var(--green); color: var(--white); background: rgba(29,122,58,0.15); }
.footer-col h4 {
  font-family: var(--font-h); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link { font-size: 0.88rem; color: var(--gray-light); transition: color var(--t); }
.footer-link:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: var(--gray-light); margin-bottom: 0.6rem; line-height: 1.4;
}
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--gray); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--gray); transition: color var(--t); }
.footer-legal a:hover { color: var(--white); }

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0; transform: translateX(-22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0; transform: translateX(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---- Utilities ---- */
.text-gold { color: var(--gold-light); }
.text-green { color: var(--green-light); }
.text-gray { color: var(--gray); }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .join-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-grid.reverse { direction: ltr; }
  .news-grid  { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .cal-header,
  .cal-row { grid-template-columns: 120px 60px 1fr 100px; }
  .cal-header > *:nth-child(4),
  .cal-row > *:nth-child(4) { display: none; }
}
@media (max-width: 1100px) {
  .nav-links:not(.open) { display: none; }
  .nav-toggle { display: flex; }
  .nav:has(.nav-links.open) { backdrop-filter: none; background: #080f0a; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #080f0a;
    padding: 2rem 2rem 2rem;
    align-items: flex-start; gap: 0.5rem;
    z-index: 10001;
    overflow-y: auto;
  }
  .nav-links.open .nav-link { font-size: 1.6rem; padding: 0.6rem 0; }
  .nav-links.open .nav-cta  { font-size: 1.6rem; padding: 0.6rem 0; background: none; border: none; color: var(--gold-light); }

  /* Mobile menu header */
  .nav-mobile-header {
    list-style: none;
    width: 100%;
    display: flex; flex-direction: column;
    padding-bottom: 1.25rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
  }
  .nav-close {
    position: absolute; top: 0; right: 0;
    background: none; border: none; cursor: pointer;
    color: var(--white); font-size: 1.8rem; line-height: 1;
    padding: 0.1rem 0.3rem;
  }
  .nav-mobile-brand {
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none; margin-top: 0.25rem;
  }
  .nav-mobile-brand img { height: 52px; width: auto; }
  .nav-mobile-brand-text {
    font-family: var(--font-h); font-size: 1.35rem;
    color: var(--white); letter-spacing: 0.06em;
  }
  .nav-mobile-brand-text span { color: var(--gold-light); }
  .nav-mobile-slogan {
    margin-top: 0.5rem;
    font-size: 0.8rem; letter-spacing: 0.08em;
    color: var(--gold-light); font-style: italic;
  }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav { background: #080f0a; backdrop-filter: none; }
  .news-grid   { grid-template-columns: 1fr; }
  .trophies-grid { grid-template-columns: 1fr 1fr; }
  .players-grid  { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .beer-card { flex-direction: column; gap: 1rem; }
  .cal-header,
  .cal-row { grid-template-columns: 100px 1fr 80px; }
  .cal-header > *:nth-child(2),
  .cal-row > *:nth-child(2),
  .cal-header > *:nth-child(4),
  .cal-row > *:nth-child(4) { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas  { flex-direction: column; align-items: center; }
  .btn { justify-content: center; }
}
@media (max-width: 480px) {
  .trophies-grid, .players-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
