/* =========================================================
   ERC Ingolstadt „Panther" e.V. — Website styles
   Palette:  Blue #12327c · Deep navy #0a1c4d/#0c2360/#08183f
             Accent red #e2001a · Ice blue #7fb6e6/#bcd2f5
   Fonts:    Bebas Neue (display), Barlow (body),
             Barlow Condensed (labels/buttons)
   ========================================================= */

:root {
  --blue: #12327c;
  --blue-deep: #0a1c4d;
  --navy: #0c2360;
  --navy-darker: #08183f;
  --red: #e2001a;
  --ice: #7fb6e6;
  --ice-light: #bcd2f5;
  --ink: #0f2557;
  --muted: #4b6494;
  --muted-2: #5f7bb0;

  --grad-blue: linear-gradient(165deg, #1a4194 0%, #2a5cb8 38%, #4f8fd2 72%, #94c9ec 100%);
  --grad-hero: linear-gradient(170deg, #ffffff 0%, #cfe6ff 38%, #4f8fd6 78%, #1b3f8f 100%);

  --sans: 'Barlow', system-ui, -apple-system, sans-serif;
  --display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --cond: 'Barlow Condensed', 'Barlow', sans-serif;

  --header-h: 88px;
  --maxw: 1320px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: #fff; }

body {
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--red); }
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; }
::selection { background: var(--blue); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0;
  font-family: var(--cond); letter-spacing: .14em;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.anchor { display: block; height: 1px; }

/* ---------- keyframes ---------- */
@keyframes glide  { 0% { transform: translateX(-30%); } 100% { transform: translateX(130%); } }
@keyframes sheen  { 0% { left: -40%; } 55%, 100% { left: 130%; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   Buttons & shared bits
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--cond); text-transform: uppercase; letter-spacing: .16em;
  border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap; line-height: 1;
}
.btn__arrow { font-size: 1.15em; }
.btn:hover { transform: translateY(-2px); }

.btn--solid-blue { background: var(--blue); color: #fff; padding: 11px 20px; font-size: 15px; }
.btn--solid-blue:hover { color: #fff; box-shadow: 0 14px 30px rgba(18,50,124,.35); }

.btn--ghost-blue { border-color: rgba(18,50,124,.3); color: var(--blue); padding: 11px 20px; font-size: 15px; background: transparent; }
.btn--ghost-blue:hover { background: var(--blue); color: #fff; }

.btn--hero-solid { background: var(--blue); color: #fff; padding: 18px 30px; font-size: 17px; letter-spacing: .18em; box-shadow: 0 16px 36px rgba(8,24,66,.4); }
.btn--hero-solid:hover { color: #fff; }
.btn--hero-light { background: rgba(255,255,255,.95); color: var(--blue); padding: 18px 30px; font-size: 17px; letter-spacing: .18em; }
.btn--hero-light:hover { color: var(--red); }

.btn--white { background: #fff; color: var(--blue); padding: 15px 24px; font-size: 15px; letter-spacing: .18em; }
.btn--white:hover { color: var(--red); }
.btn--glass { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.12); color: #fff; padding: 15px 24px; font-size: 15px; letter-spacing: .18em; backdrop-filter: blur(8px); }
.btn--glass:hover { color: #fff; background: rgba(255,255,255,.22); }

.btn--red { background: var(--red); color: #fff; padding: 18px 32px; font-size: 16px; letter-spacing: .18em; box-shadow: 0 14px 34px rgba(226,0,26,.35); }
.btn--red:hover { color: #fff; }
.btn--light { background: rgba(255,255,255,.95); color: var(--blue); padding: 18px 32px; font-size: 16px; letter-spacing: .18em; }
.btn--light:hover { color: var(--red); }

/* eyebrow labels */
.eyebrow { font-family: var(--cond); font-weight: 700; letter-spacing: .34em; font-size: 12px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 11px; }
.eyebrow--red { color: var(--red); }
.eyebrow--blue { color: #3f66bd; }
.eyebrow--ice { color: var(--ice-light); }
.eyebrow--light { color: rgba(255,255,255,.8); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; }
.eyebrow__dot--red { background: var(--red); box-shadow: 0 0 10px var(--red); }

/* pill badge (hero + partners) */
.pill-badge {
  display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.16); backdrop-filter: blur(10px);
  font-family: var(--cond); letter-spacing: .3em; font-size: 12px; color: #fff;
  text-transform: uppercase;
}
.pill-badge__dot { width: 7px; height: 7px; border-radius: 50%; }
.pill-badge__dot--red { background: var(--red); box-shadow: 0 0 12px var(--red); }
.pill-badge__dot--ice { background: var(--ice-light); box-shadow: 0 0 12px var(--ice-light); }

/* generic section title */
.section-title {
  font-family: var(--display); line-height: .92; margin: 12px 0 0; text-transform: uppercase;
  font-size: clamp(44px, 5.4vw, 88px);
  background-image: var(--grad-blue);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #1a4194;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 12px 40px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(18,50,124,.12);
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { padding: 6px 40px; box-shadow: 0 10px 30px rgba(8,24,66,.12); }

.brand { display: flex; align-items: center; gap: 14px; }
.brand__logo {
  width: 124px; height: 124px; object-fit: contain; position: relative; z-index: 2;
  margin: -12px -8px -60px 0; filter: drop-shadow(0 8px 20px rgba(8,24,66,.28));
  transition: width .3s ease, height .3s ease, margin .3s ease;
}
.site-header.is-scrolled .brand__logo { width: 96px; height: 96px; margin: -8px -6px -40px 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--display); font-size: 17px; letter-spacing: .06em; color: var(--blue); }
.brand__sub { font-family: var(--cond); font-size: 12px; letter-spacing: .34em; color: var(--muted-2); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 30px; font-family: var(--cond); font-size: 15px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.nav__link { color: var(--blue); background: none; border: 0; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; padding: 0; }
.nav__link:hover { color: var(--red); }

.nav__item--mega { position: relative; display: flex; align-items: center; }
.nav__mega-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 14px 0; }
.nav__caret { font-size: 11px; transition: transform .2s ease; }
.nav__item--mega:hover .nav__caret,
.nav__item--mega:focus-within .nav__caret { transform: rotate(180deg); }

.mega {
  position: absolute; top: 100%; left: -24px; padding-top: 14px;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}
.nav__item--mega:hover .mega,
.nav__item--mega:focus-within .mega { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega__grid {
  display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 6px; padding: 18px;
  border-radius: 18px; background: #fff; border: 1px solid rgba(18,50,124,.14);
  box-shadow: 0 22px 50px rgba(18,50,124,.18);
}
.mega__card { display: flex; flex-direction: column; gap: 5px; padding: 14px 16px; border-radius: 12px; background: #f7fafd; transition: background .2s ease; }
.mega__card:hover { background: #eef4fb; }
.mega__title { font-family: var(--display); font-size: 21px; letter-spacing: .02em; color: var(--blue); text-transform: uppercase; }
.mega__desc { font-family: var(--sans); font-weight: 400; letter-spacing: 0; text-transform: none; font-size: 14px; color: var(--muted-2); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

/* hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; align-items: center; justify-content: center; background: none; border: 1px solid rgba(18,50,124,.25); border-radius: 12px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--blue); transition: transform .3s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 55;
  display: flex; flex-direction: column; gap: 4px; padding: 18px 24px 26px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18,50,124,.12); box-shadow: 0 24px 40px rgba(8,24,66,.14);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav > a:not(.btn) { font-family: var(--cond); text-transform: uppercase; letter-spacing: .14em; font-size: 18px; color: var(--blue); padding: 12px 6px; border-bottom: 1px solid rgba(18,50,124,.08); }
.mobile-nav > a:not(.btn):hover { color: var(--red); }
.mobile-nav .btn { justify-content: center; margin-top: 8px; border-bottom: 0; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; height: 100vh; min-height: 720px; width: 100%;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero__slides { position: absolute; inset: 0; }
.hero__bg { position: absolute; inset: 0; opacity: 0; transition: opacity 900ms ease; }
.hero__bg.is-active { opacity: 1; }
.hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,24,66,.30) 0%, rgba(8,24,66,.34) 40%, rgba(8,24,66,.86) 100%); }
.hero__glide { position: absolute; left: -10%; top: 38%; width: 55%; height: 2px; opacity: .4; background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent); animation: glide 10s linear infinite; }

.hero__inner { position: relative; z-index: 3; width: 100%; padding: 0 40px 128px; display: flex; flex-direction: column; gap: 40px; }
.hero__stage { display: grid; grid-template-columns: minmax(0, 1fr); align-items: end; min-height: 430px; }
.hero__panel { grid-area: 1 / 1; opacity: 0; pointer-events: none; transition: opacity 600ms ease; }
.hero__panel.is-active { opacity: 1; pointer-events: auto; }
.hero__panel .pill-badge { margin-bottom: 24px; }
.hero__title {
  font-family: var(--display); font-size: clamp(60px, 9.5vw, 150px); line-height: .86; letter-spacing: 0;
  text-transform: uppercase; background-image: var(--grad-hero);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #fff;
}
.hero__lead { max-width: 520px; font-size: 19px; line-height: 1.55; color: rgba(255,255,255,.88); margin: 24px 0 30px; text-wrap: pretty; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__controls { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hero__pills { display: flex; align-items: center; gap: 18px; }
.hero__pill {
  padding: 12px 22px; border-radius: 999px; cursor: pointer; font-family: var(--cond);
  letter-spacing: .18em; font-size: 14px; text-transform: uppercase; transition: all .25s;
  backdrop-filter: blur(10px); background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.45);
}
.hero__pill.is-active { background: #fff; color: var(--blue); border-color: #fff; }
.hero__arrows { display: flex; align-items: center; gap: 12px; }
.hero__arrow { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.14); backdrop-filter: blur(10px); color: #fff; font-size: 20px; cursor: pointer; transition: background .2s ease; }
.hero__arrow:hover { background: rgba(255,255,255,.28); }

/* =========================================================
   Partner marquee
   ========================================================= */
.partners { position: relative; z-index: 20; max-width: 1380px; margin: -64px auto 0; padding: 0 30px; }
.partners__card { position: relative; border-radius: 26px; overflow: hidden; background: var(--navy); box-shadow: 0 30px 70px rgba(8,24,66,.45); border: 1px solid rgba(255,255,255,.22); }
.partners__bg { position: absolute; inset: 0; background: url('../uploads/istockphoto-174283469-612x612.jpg') center/cover; opacity: .95; transform: scale(1.08); }
.partners__tint { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,28,74,.96) 0%, rgba(18,50,124,.62) 34%, rgba(12,35,96,.55) 62%, rgba(10,28,74,.94) 100%); }
.partners__stripes { position: absolute; inset: 0; opacity: .5; background: repeating-linear-gradient(112deg, rgba(255,255,255,.14) 0px, rgba(255,255,255,0) 3px, rgba(255,255,255,0) 46px); }
.partners__redwash { position: absolute; top: 0; bottom: 0; left: 0; width: 34%; background: linear-gradient(90deg, rgba(226,0,26,.55) 0%, rgba(226,0,26,0) 100%); mix-blend-mode: screen; opacity: .5; }
.partners__sheen { position: absolute; left: -40%; top: 0; bottom: 0; width: 34%; transform: skewX(-18deg); background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.22) 50%, rgba(255,255,255,0) 100%); animation: sheen 6.5s ease-in-out infinite; }
.partners__topline { position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--red) 0%, rgba(255,255,255,.85) 38%, rgba(255,255,255,.2) 100%); }

.partners__row { position: relative; display: flex; align-items: stretch; }
.partners__intro { position: relative; z-index: 3; flex: none; display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 34px 34px 34px 44px; min-width: 290px; background: linear-gradient(100deg, rgba(10,28,74,.96) 60%, rgba(10,28,74,0)); }
.partners__headline { font-family: var(--display); font-size: 38px; line-height: .95; color: #fff; text-transform: uppercase; }
.partners__track-wrap { position: relative; flex: 1; overflow: hidden; display: flex; align-items: center; }
.partners__fade { position: absolute; right: 0; top: 0; bottom: 0; width: 130px; z-index: 2; background: linear-gradient(270deg, rgba(10,28,74,.98) 15%, rgba(10,28,74,0)); }
.partners__track { display: flex; width: max-content; animation: marquee 38s linear infinite; padding: 30px 0; }
.partners__group { display: flex; align-items: center; gap: 64px; padding-right: 64px; }
.partners__logo { height: 74px; width: 200px; flex: none; opacity: .95; filter: drop-shadow(0 3px 12px rgba(0,0,0,.4)); background-repeat: no-repeat; background-position: center; background-size: contain; }

/* =========================================================
   Split / departments (expanding columns)
   ========================================================= */
.split { position: relative; background: var(--blue-deep); }
.split__head { padding: 130px 40px 64px; background: #fff; }
.split__head-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.split__title {
  font-family: var(--display); font-size: clamp(52px, 6.6vw, 104px); line-height: .94; margin: 12px 0 0;
  text-transform: uppercase; white-space: nowrap; background-image: var(--grad-blue);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--blue-deep);
}
.split__intro { max-width: 420px; color: var(--muted); font-size: 17px; line-height: 1.6; margin: 0; }

.columns { display: flex; width: 100%; height: 640px; overflow: hidden; }
.column {
  position: relative; overflow: hidden; flex: 1; cursor: pointer;
  border-right: 1px solid rgba(255,255,255,.16);
  transition: flex 620ms cubic-bezier(.4,0,.2,1);
}
.column:last-child { border-right: 0; }
.columns:hover .column { flex: .85; }
.columns:hover .column:hover,
.column:focus-within { flex: 2.6; }
.column__img { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; transform: scale(1); transition: transform 800ms cubic-bezier(.4,0,.2,1); }
.column:hover .column__img { transform: scale(1.06); }
.column__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,24,66,.30) 0%, rgba(8,24,66,.55) 45%, rgba(8,24,66,.92) 100%); }
.column__sheen { position: absolute; top: 0; bottom: 0; left: -45%; width: 45%; transform: skewX(-18deg); background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.26) 50%, rgba(255,255,255,0) 100%); }
.column:hover .column__sheen { animation: sheen 3.2s ease-in-out infinite; }
.column__body { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; gap: 16px; padding: 34px 30px; }
.column__logo { width: 76px; height: 76px; background-repeat: no-repeat; background-position: center; background-size: contain; filter: drop-shadow(0 4px 14px rgba(0,0,0,.4)); }
.column__title { font-family: var(--display); font-size: clamp(26px, 2.3vw, 34px); line-height: 1; text-transform: uppercase; color: #fff; letter-spacing: .01em; overflow-wrap: break-word; }
.column__reveal { overflow: hidden; opacity: 0; max-height: 0; transition: opacity 420ms ease, max-height 620ms cubic-bezier(.4,0,.2,1); }
.column:hover .column__reveal, .column:focus-within .column__reveal { opacity: 1; max-height: 260px; }
.column__text { margin: 0 0 22px; max-width: 420px; font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.86); }
.column__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   Stats
   ========================================================= */
.stats { position: relative; padding: 96px 40px 110px; background: #fff; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; opacity: .6; background: repeating-linear-gradient(112deg, rgba(18,50,124,.05) 0px, rgba(18,50,124,0) 3px, rgba(18,50,124,0) 42px); }
.stats__grid { position: relative; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; align-items: end; }
.stat { position: relative; display: flex; flex-direction: column; gap: 10px; padding: 0 8px; }
.stat__value-row { display: flex; align-items: flex-start; gap: 8px; }
.stat__value { font-family: var(--display); font-size: clamp(64px, 7vw, 104px); line-height: .86; background-image: var(--grad-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--blue-deep); }
.stat__value--red { background: none; -webkit-text-fill-color: var(--red); color: var(--red); }
.stat__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); margin-top: 14px; flex: none; }
.stat__dot--red { background: var(--red); }
.stat__label { font-family: var(--cond); letter-spacing: .26em; font-size: 13px; color: var(--muted-2); text-transform: uppercase; }
.stat__rule { height: 2px; width: 100%; background: linear-gradient(90deg, rgba(18,50,124,.65), rgba(18,50,124,0)); }
.stat__rule--red { background: linear-gradient(90deg, rgba(226,0,26,.8), rgba(18,50,124,0)); }

/* =========================================================
   Schedule / Eiszeiten
   ========================================================= */
.schedule-section { position: relative; padding: 120px 40px 110px; overflow: hidden; background: #f2f6fc; }
.schedule-section__bg { position: absolute; inset: 0; background: url('../uploads/istockphoto-174283469-612x612.jpg') center/cover; opacity: .55; }
.schedule-section__wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.7) 45%, rgba(255,255,255,.94)); }
.schedule-section__inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.schedule-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.schedule-section__aside { display: flex; flex-direction: column; gap: 18px; max-width: 400px; }
.schedule-section__aside p { color: var(--muted); font-size: 17px; line-height: 1.6; margin: 0; }
.schedule-section__aside .btn { align-self: flex-start; }

.schedule { position: relative; border-radius: 26px; overflow: hidden; background: var(--navy-darker); box-shadow: 0 28px 64px rgba(8,24,66,.4); border: 1px solid rgba(255,255,255,.18); }
.schedule::before { content: ""; position: absolute; inset: 0; background: url('../uploads/istockphoto-174283469-612x612.jpg') center/cover; opacity: .9; }
.schedule::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(6,18,48,.9) 0%, rgba(10,28,74,.86) 50%, rgba(6,18,48,.94) 100%); }
.schedule > * { position: relative; z-index: 1; }
.schedule__topbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 24px 34px; border-bottom: 1px solid rgba(255,255,255,.16); }
.schedule__now { display: flex; align-items: center; gap: 12px; font-family: var(--cond); letter-spacing: .28em; font-size: 12px; color: rgba(255,255,255,.8); text-transform: uppercase; }
.schedule__now-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); }
.schedule__legend { display: flex; align-items: center; gap: 22px; font-family: var(--cond); letter-spacing: .2em; font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; }
.schedule__legend span { display: flex; align-items: center; gap: 9px; }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; }
.legend-dot--hockey { background: #ff5a6a; }
.legend-dot--figure { background: var(--ice); }
.legend-dot--public { background: rgba(255,255,255,.45); }

.schedule__row { display: grid; grid-template-columns: 120px 1fr auto; gap: 28px; align-items: center; padding: 22px 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.schedule__row--last { border-bottom: 0; }
.schedule__day { display: flex; align-items: baseline; gap: 10px; }
.schedule__day-name { font-family: var(--display); font-size: 44px; line-height: .8; color: #fff; opacity: .95; }
.schedule__day-bar { width: 26px; height: 2px; }
.schedule__what { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.schedule__what-name { font-family: var(--display); font-size: 26px; line-height: 1; text-transform: uppercase; color: #fff; letter-spacing: .01em; }
.schedule__tag { font-family: var(--cond); letter-spacing: .2em; font-size: 11px; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.schedule__time { font-family: var(--display); font-size: 28px; letter-spacing: .02em; color: rgba(255,255,255,.92); font-variant-numeric: tabular-nums; white-space: nowrap; }

.schedule__row[data-kind="hockey"] .schedule__day-bar { background: #ff5a6a; }
.schedule__row[data-kind="hockey"] .schedule__tag { color: #ff5a6a; border: 1px solid #ff5a6a; }
.schedule__row[data-kind="figure"] .schedule__day-bar { background: var(--ice); }
.schedule__row[data-kind="figure"] .schedule__tag { color: var(--ice); border: 1px solid var(--ice); }
.schedule__row[data-kind="public"] .schedule__day-bar { background: rgba(255,255,255,.55); }
.schedule__row[data-kind="public"] .schedule__tag { color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.55); }

/* =========================================================
   News
   ========================================================= */
.news { padding: 110px 40px; background: #fff; }
.news__inner { max-width: var(--maxw); margin: 0 auto; }
.news__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.news__head .section-title { font-size: clamp(48px, 5.6vw, 92px); }
.news__tabs { display: flex; gap: 8px; padding: 6px; border-radius: 999px; background: #f2f6fc; border: 1px solid rgba(18,50,124,.14); }
.news__tab { padding: 10px 20px; border-radius: 999px; border: 0; cursor: pointer; font-family: var(--cond); letter-spacing: .16em; font-size: 14px; text-transform: uppercase; transition: all .18s; background: transparent; color: var(--muted-2); }
.news__tab.is-active { background: var(--blue); color: #fff; }

.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }

.card { position: relative; display: flex; flex-direction: column; border-radius: 24px; overflow: hidden; background: #fff; border: 1px solid rgba(18,50,124,.12); transform: translateY(0); box-shadow: 0 10px 30px rgba(18,50,124,.07); transition: transform 420ms cubic-bezier(.4,0,.2,1), box-shadow 420ms ease; }
.card:hover { transform: translateY(-8px); box-shadow: 0 26px 54px rgba(18,50,124,.20); color: inherit; }
.card.is-hidden { display: none; }
.card__media { position: relative; height: 230px; overflow: hidden; background: #e7eef9; }
.card__img { position: absolute; inset: 0; background-repeat: no-repeat; background-position: center; background-size: cover; transform: scale(1); transition: transform 700ms cubic-bezier(.4,0,.2,1); }
.card:hover .card__img { transform: scale(1.07); }
.card__media-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,24,66,.32) 0%, rgba(8,24,66,0) 45%, rgba(8,24,66,.45) 100%); }
.card__sheen { position: absolute; top: 0; bottom: 0; left: -45%; width: 45%; transform: skewX(-18deg); background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.4) 50%, rgba(255,255,255,0) 100%); }
.card:hover .card__sheen { animation: sheen 3.6s ease-in-out infinite; }
.card__tag { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--cond); letter-spacing: .2em; font-size: 11px; text-transform: uppercase; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.5); backdrop-filter: blur(10px); color: #fff; }
.card__tag-dot { width: 6px; height: 6px; border-radius: 50%; }
.card__tag-dot--hockey { background: #ff5a6a; }
.card__tag-dot--figure { background: var(--ice); }
.card__date { position: absolute; bottom: 16px; left: 18px; font-family: var(--cond); letter-spacing: .22em; font-size: 12px; color: rgba(255,255,255,.92); font-variant-numeric: tabular-nums; }
.card__body { display: flex; flex-direction: column; gap: 12px; padding: 26px 28px 22px; flex: 1; }
.card__title { font-family: var(--display); font-size: clamp(24px, 2.1vw, 30px); line-height: 1.04; text-transform: uppercase; overflow-wrap: break-word; hyphens: auto; background-image: linear-gradient(165deg, #1a4194 0%, #2a5cb8 45%, #4f8fd2 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #1a4194; }
.card__text { color: var(--muted); font-size: 16px; line-height: 1.55; text-wrap: pretty; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 28px 24px; border-top: 1px solid rgba(18,50,124,.1); }
.card__more { font-family: var(--cond); letter-spacing: .2em; font-size: 13px; text-transform: uppercase; color: var(--blue); }
.card__arrow { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 17px; transform: translateX(0); transition: transform 380ms cubic-bezier(.4,0,.2,1); }
.card:hover .card__arrow { transform: translateX(6px); }

/* =========================================================
   Membership
   ========================================================= */
.member { position: relative; padding: 150px 40px; overflow: hidden; background: var(--navy); }
.member__bg { position: absolute; inset: 0; background: url('../uploads/istockphoto-174283469-612x612.jpg') center/cover; opacity: .85; }
.member__wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,35,96,.72), rgba(12,35,96,.86)); }
.member__glide { position: absolute; left: -10%; top: 30%; width: 60%; height: 2px; opacity: .4; background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent); animation: glide 12s linear infinite; }
.member__inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.member__intro { max-width: 820px; }
.member__title { font-family: var(--display); font-size: clamp(44px, 6.6vw, 104px); line-height: .9; margin: 16px 0 20px; text-transform: uppercase; color: #fff; }
.member__lead { color: rgba(255,255,255,.86); font-size: 20px; line-height: 1.6; margin: 0; text-wrap: pretty; }

.member__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 44px 0; }
.member__card { display: flex; flex-direction: column; gap: 12px; padding: 28px 26px; border-radius: 20px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(12px); }
.member__num { font-family: var(--display); font-size: 34px; line-height: 1; color: rgba(255,255,255,.45); }
.member__card-title { font-family: var(--display); font-size: 24px; line-height: 1.05; text-transform: uppercase; color: #fff; }
.member__card p { margin: 0; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.55; text-wrap: pretty; }

.member__foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.22); }
.member__foot-text { max-width: 520px; }
.member__foot-title { font-family: var(--display); font-size: 30px; text-transform: uppercase; color: #fff; line-height: 1; }
.member__foot-text p { margin: 8px 0 0; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.55; }
.member__foot-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { position: relative; overflow: hidden; background: var(--blue-deep); color: #fff; }
.site-footer__bg { position: absolute; inset: 0; background: url('../uploads/istockphoto-174283469-612x612.jpg') center/cover; opacity: .5; }
.site-footer__wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,28,74,.88) 0%, rgba(8,20,54,.97) 60%, var(--navy-darker) 100%); }
.site-footer__glide { position: absolute; left: -10%; top: 18%; width: 55%; height: 1px; opacity: .35; background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent); animation: glide 16s linear infinite; }
.site-footer__inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 80px 40px 0; }

.site-footer__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.18); }
.site-footer__brand { display: flex; align-items: center; gap: 24px; }
.site-footer__brand img { width: 112px; height: 112px; object-fit: contain; filter: drop-shadow(0 10px 26px rgba(0,0,0,.35)); }
.site-footer__wordmark { font-family: var(--display); font-size: clamp(38px, 4.6vw, 72px); line-height: .92; text-transform: uppercase; background-image: linear-gradient(165deg, #ffffff 0%, #cfe6ff 45%, #5a9ad8 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #fff; }
.site-footer__tagline { font-family: var(--cond); letter-spacing: .3em; font-size: 12px; color: #8cc4ea; margin-top: 10px; text-transform: uppercase; }
.site-footer__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.site-footer__cols { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 44px; padding: 52px 0; }
.site-footer__col { display: flex; flex-direction: column; gap: 12px; }
.site-footer__col--contact { gap: 16px; }
.site-footer__col-title { font-family: var(--cond); letter-spacing: .26em; font-size: 12px; color: #8cc4ea; text-transform: uppercase; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.18); }
.site-footer__col--contact p { margin: 0; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; }
.site-footer__phone { font-family: var(--display); font-size: 26px; color: #fff; letter-spacing: .02em; }
.site-footer__phone:hover { color: #8cc4ea; }
.site-footer__social { display: flex; gap: 10px; margin-top: 6px; }
.site-footer__social a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: #fff; font-family: var(--cond); font-size: 13px; letter-spacing: .06em; transition: background .2s ease; }
.site-footer__social a:hover { background: rgba(255,255,255,.2); color: #fff; }
.site-footer__link { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 16px; color: rgba(255,255,255,.82); padding: 3px 0; }
.site-footer__link:hover { color: #fff; }
.site-footer__link span { font-size: 13px; color: rgba(255,255,255,.4); }

.site-footer__legal { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px 0 34px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.55); font-size: 14px; }
.site-footer__legal-links { display: flex; gap: 24px; }
.site-footer__legal-links a { color: rgba(255,255,255,.55); }
.site-footer__legal-links a:hover { color: #fff; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .nav { gap: 20px; }
  .nav__actions .btn--ghost-blue { display: none; }
  .split__title { white-space: normal; }
}

@media (max-width: 960px) {
  .site-header { padding: 10px 22px; }
  .site-header.is-scrolled { padding: 8px 22px; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .brand__logo { width: 92px; height: 92px; margin: -8px -6px -34px 0; }
  .site-header.is-scrolled .brand__logo { width: 82px; height: 82px; }

  .hero__inner { padding: 0 22px 90px; }
  .partners__row { flex-direction: column; }
  .partners__intro { min-width: 0; padding: 28px 24px 8px; background: none; }
  .partners__fade { display: none; }

  .split__head { padding: 90px 22px 48px; }
  .columns { flex-direction: column; height: auto; }
  .column { flex: none; height: 320px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .columns:hover .column { flex: none; }
  .column__reveal { opacity: 1; max-height: 260px; }  /* always expanded on touch */

  .stats { padding: 64px 22px 72px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }

  .schedule-section { padding: 80px 22px; }
  .schedule__row { grid-template-columns: 84px 1fr; grid-template-areas: "day what" "day time"; gap: 6px 20px; row-gap: 8px; padding: 20px 22px; }
  .schedule__day { grid-area: day; }
  .schedule__what { grid-area: what; }
  .schedule__time { grid-area: time; font-size: 22px; }
  .schedule__legend { display: none; }

  .news { padding: 72px 22px; }
  .news__grid { grid-template-columns: repeat(2, 1fr); }

  .member { padding: 90px 22px; }
  .member__cards { grid-template-columns: repeat(2, 1fr); }

  .site-footer__inner { padding: 60px 22px 0; }
  .site-footer__cols { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}

@media (max-width: 620px) {
  .hero { min-height: 620px; }
  .hero__inner { padding: 0 18px 72px; }
  .hero__stage { min-height: 340px; }
  .hero__controls { gap: 16px; }
  .hero__cta .btn { padding: 15px 22px; font-size: 15px; }

  .partners { padding: 0 16px; margin-top: -48px; }
  .partners__headline { font-size: 30px; }

  .split__head-inner { gap: 20px; }
  .stats__grid { grid-template-columns: 1fr; gap: 26px; }
  .news__grid { grid-template-columns: 1fr; }
  .news__head { gap: 16px; }
  .member__cards { grid-template-columns: 1fr; }
  .member__foot { flex-direction: column; align-items: flex-start; }
  .member__foot-cta .btn, .member__foot-cta { width: 100%; }
  .member__foot-cta .btn { justify-content: center; }

  .site-footer__cols { grid-template-columns: 1fr; }
  .site-footer__legal { flex-direction: column; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__glide, .partners__sheen, .partners__track, .member__glide, .site-footer__glide,
  .column__sheen, .card__sheen { animation: none !important; }
  .hero__bg, .hero__panel { transition: opacity .01ms; }
  * { scroll-behavior: auto; }
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
