/* ═══════════════════════════════════════════════════════
   AC VOLLKRAFT INNSBRUCK — Athletic Editorial Design
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── TOKENS ── */
:root {
  --white: #ffffff;
  --off: #f7f7f5;
  --stone: #edece8;
  --gray-100: #e0dfdb;
  --gray-200: #c8c7c3;
  --gray-300: #9e9d99;
  --gray-400: #6e6d69;
  --gray-500: #46453f;
  --ink: #0a0a08;
  --ink-80: rgba(10,10,8,0.8);
  --ink-50: rgba(10,10,8,0.5);
  --ink-20: rgba(10,10,8,0.2);
  --ink-05: rgba(10,10,8,0.05);
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-light: #fef2f2;
  --red-glow: rgba(220,38,38,0.12);
  --border: rgba(10,10,8,0.08);
  --border-strong: rgba(10,10,8,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.1);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --max-w: 1400px;
  --nav-h: 90px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── TYPOGRAPHY ── */
.heading-display {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.88;
  text-transform: uppercase;
}
.heading-xl { font-size: clamp(4rem, 14vw, 12rem); }
.heading-lg { font-size: clamp(3rem, 8vw, 6rem); }
.heading-md { font-size: clamp(2rem, 5vw, 3.5rem); }
.heading-sm { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.text-red { color: var(--red); }
.text-muted { color: var(--gray-400); }
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.label--light { color: var(--gray-300); }

/* ── BUTTONS ── */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.btn--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 2px 12px var(--red-glow);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--red-glow);
}
.btn--outline {
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--border-strong);
}
.btn--outline:hover {
  border-color: var(--ink);
  background: var(--off);
}
.btn--white {
  color: var(--ink);
  background: var(--white);
}
.btn--white:hover {
  background: var(--off);
  transform: translateY(-2px);
}
.btn--ghost-white {
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s var(--ease);
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,8,0.6) 0%, rgba(10,10,8,0.0) 100%);
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav.scrolled::before { opacity: 0; }
.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.nav.scrolled::after { transform: scaleX(1); }
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: var(--nav-h);
  transition: height 0.3s var(--ease);
}
.nav.scrolled .nav__inner { height: 70px; }

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform 0.3s var(--ease);
}
.nav__logo:hover { transform: scale(1.03); }
.nav__logo img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
  transition: height 0.3s var(--ease);
  object-fit: contain;
}
.nav.scrolled .nav__logo img { height: 44px; }
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  transition: all 0.3s var(--ease);
}
.nav.scrolled .nav__logo-name { color: var(--ink); text-shadow: none; }
.nav__logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}
.nav.scrolled .nav__logo-sub { color: var(--gray-400); }

/* Nav for subpages (already white bg) */
.nav--solid .nav__logo-name { color: var(--ink); text-shadow: none; }
.nav--solid .nav__logo-sub { color: var(--gray-400); }
.nav--solid .nav__links a { color: var(--gray-500); text-shadow: none; }
.nav--solid .nav__links a:hover { color: var(--ink); }
.nav--solid .nav__links a.active { color: var(--red); }
.nav--solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}
.nav--solid .nav__cta .btn--outline {
  color: var(--ink);
  border-color: var(--border-strong);
}
.nav--solid .nav__toggle span { background: var(--ink); box-shadow: none; }

/* Nav Links */
.nav__links {
  display: flex;
  gap: 0.25rem;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
  position: relative;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.nav.scrolled .nav__links a {
  color: var(--gray-500);
  text-shadow: none;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s var(--ease);
  border-radius: 2px;
}
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a:hover { color: var(--white); }
.nav.scrolled .nav__links a:hover { color: var(--ink); }
.nav__links a.active { color: var(--white); font-weight: 600; }
.nav.scrolled .nav__links a.active { color: var(--red); }

/* Nav CTA */
.nav__cta { display: flex; align-items: center; gap: 0.75rem; }
.nav__cta .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.nav__cta .btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}
.nav.scrolled .nav__cta .btn--outline {
  color: var(--ink);
  border-color: var(--border-strong);
}
.nav.scrolled .nav__cta .btn--outline:hover {
  background: var(--off);
  border-color: var(--ink);
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.nav.scrolled .nav__toggle span { background: var(--ink); box-shadow: none; }
.nav__toggle.active span { background: var(--ink) !important; box-shadow: none !important; }
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 120px 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s var(--ease);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  font-size: 1.75rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, transform 0.4s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
  transform: translateX(-20px);
}
.mobile-menu.active a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.active a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--red); }
.mobile-menu__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease) 0.35s;
}
.mobile-menu.active .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__cta .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* ── HERO (Homepage) ── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 30s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,10,8,0.2) 0%, rgba(10,10,8,0.1) 30%, rgba(10,10,8,0.7) 70%, rgba(10,10,8,0.95) 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(4rem, 8vh, 7rem);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(220,38,38,0.15);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(220,38,38,0.25);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}
.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(220,38,38,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px transparent; }
}
.hero__title {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}
.hero__desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s var(--ease) 0.6s both;
}
.hero__actions {
  animation: fadeInUp 0.8s var(--ease) 0.8s both;
}
.hero__stats {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(3rem, 6vh, 5rem);
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s var(--ease) 1s both;
}
.hero__stat { text-align: left; }
.hero__stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.25rem, 4vw, 3rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: bounce-scroll 2.5s infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}
@keyframes bounce-scroll {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── PAGE HERO (Subpages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--off);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero--dark {
  background: var(--ink);
  border-bottom: none;
}
.page-hero--dark .page-hero__title { color: var(--white); }
.page-hero--dark .page-hero__desc { color: var(--gray-300); }
.page-hero--dark .label { color: var(--red); }
.page-hero__title {
  margin-bottom: 1rem;
}
.page-hero__desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.75;
}

/* ── SECTIONS ── */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section--alt { background: var(--off); }
.section--dark {
  background: var(--ink);
  color: var(--white);
}
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section__header-left .label { margin-bottom: 0.6rem; }
.section__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-400);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.section__link:hover { color: var(--red); }
.section__link::after {
  content: '\2192';
  transition: transform 0.2s;
}
.section__link:hover::after { transform: translateX(3px); }

/* ── TEAMS STRIP ── */
.teams-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.teams-strip__card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all 0.35s var(--ease);
  overflow: hidden;
}
.teams-strip__card:last-child { border-right: none; }
.teams-strip__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-light) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.teams-strip__card:hover::before { opacity: 1; }
.teams-strip__card:hover { transform: translateY(-3px); }
.teams-strip__card--featured {
  background: var(--ink);
  color: var(--white);
}
.teams-strip__card--featured::before {
  background: linear-gradient(135deg, rgba(220,38,38,0.2) 0%, transparent 60%);
}
.teams-strip__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 0.75rem;
  position: relative;
}
.teams-strip__card--featured .teams-strip__number { color: var(--ink-20); }
.teams-strip__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.4rem;
  position: relative;
}
.teams-strip__card--featured .teams-strip__tag { color: var(--red); }
.teams-strip__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.6rem;
  position: relative;
}
.teams-strip__desc {
  font-size: 0.825rem;
  color: var(--gray-400);
  line-height: 1.6;
  position: relative;
}
.teams-strip__card--featured .teams-strip__desc { color: var(--gray-300); }
.teams-strip__arrow {
  position: absolute;
  top: clamp(1.5rem, 3vw, 2.5rem);
  right: clamp(1.5rem, 3vw, 2rem);
  font-size: 1.25rem;
  color: var(--gray-300);
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 1;
}
.teams-strip__card:hover .teams-strip__arrow {
  transform: translateX(4px);
  color: var(--red);
}

/* ── NEWS CARDS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s var(--ease);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.news-card--featured { grid-row: span 2; }
.news-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card--featured .news-card__image { aspect-ratio: 16/12; }
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.news-card:hover .news-card__image img { transform: scale(1.05); }
.news-card__body { padding: clamp(1.25rem, 2vw, 1.75rem); }
.news-card__cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.news-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.news-card--featured .news-card__title { font-size: 1.5rem; }
.news-card__excerpt {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.news-card__date {
  font-size: 0.7rem;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news-card__date::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gray-200);
}

/* ── BENEFITS / WARUM RINGEN ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover {
  border-color: var(--red-glow);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--red);
  font-weight: 700;
}
.benefit-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.benefit-card__text {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── COACHES ── */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.coach-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.coach-card__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--stone);
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 3px solid var(--border);
}
.coach-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coach-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}
.coach-card__role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.coach-card__desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.gallery-grid__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}
.gallery-grid__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-grid__item:hover img { transform: scale(1.06); }
.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-grid__item:hover::after { opacity: 1; }
.gallery-grid__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
}
.gallery-grid__item:hover .gallery-grid__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── EVENTS ── */
.events-list { display: flex; flex-direction: column; gap: 0; }
.event-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}
.event-row:hover { padding-left: 0.5rem; }
.event-row:last-child { border-bottom: none; }
.event-row__date {
  text-align: center;
}
.event-row__day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--red);
}
.event-row__month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.event-row__info {}
.event-row__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.event-row__meta {
  font-size: 0.8rem;
  color: var(--gray-400);
}
.event-row__type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ── CTA SECTION ── */
.cta {
  background: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220,38,38,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
}
.cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 1rem;
}
.cta__desc {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 440px;
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer__brand img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
  border-radius: 4px;
}
.footer__brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
.footer__brand-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 280px;
}
.footer__col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--red); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.2s;
}
.footer__social a:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(220,38,38,0.1);
}

/* ── SPONSORS ── */
.sponsor-tier { margin-bottom: 3.5rem; }
.sponsor-tier:last-child { margin-bottom: 0; }
.sponsor-tier__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.sponsor-tier__header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.sponsor-tier__header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.sponsor-grid {
  display: grid;
  gap: 1.25rem;
}
.sponsor-grid--main { grid-template-columns: repeat(2, 1fr); }
.sponsor-grid--gold { grid-template-columns: repeat(3, 1fr); }
.sponsor-grid--partner { grid-template-columns: repeat(4, 1fr); }
.sponsor-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all 0.3s var(--ease);
}
.sponsor-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.sponsor-card img {
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}
.sponsor-card:hover img { filter: grayscale(0%); opacity: 1; }

/* ── TRAINING TABLE ── */
.training-table {
  width: 100%;
  border-collapse: collapse;
}
.training-table th {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: left;
  padding: 0 0 1rem 0;
  border-bottom: 2px solid var(--ink);
}
.training-table td {
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.training-table tr:last-child td { border-bottom: none; }
.training-table__day { font-weight: 700; }
.training-table__team {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  display: inline-block;
}

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
.contact-info { display: flex; flex-direction: column; gap: 3rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--gray-400);
  font-size: 0.85rem;
}
.contact-item__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}
.contact-item__value { font-size: 0.9rem; }
.contact-item__value a { text-decoration: none; transition: color 0.2s; }
.contact-item__value a:hover { color: var(--red); }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.training-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: all 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-300); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236e6d69' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 12px var(--red-glow);
}
.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--red-glow);
}

/* ── TEAM DETAIL ── */
.team-detail {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}
.team-detail--alt { background: var(--off); }
.team-detail--dark { background: var(--ink); color: var(--white); }
.team-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.team-detail__grid--reverse { direction: rtl; }
.team-detail__grid--reverse > * { direction: ltr; }
.team-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.team-detail__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.team-detail__image:hover img { transform: scale(1.03); }
.team-detail__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  box-shadow: var(--shadow-lg);
}
.team-detail__badge--red { background: var(--red); color: var(--white); }
.team-detail__badge strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  display: block;
  line-height: 1;
}
.team-detail__badge span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.team-detail__badge--red span { color: rgba(255,255,255,0.7); }
.team-detail__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.team-detail__fact {
  padding: 0.875rem 1rem;
  background: var(--off);
  border-radius: var(--radius-sm);
}
.team-detail--alt .team-detail__fact { background: var(--white); }
.team-detail--dark .team-detail__fact { background: rgba(255,255,255,0.06); }
.team-detail__fact-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.15rem;
}
.team-detail__fact-value { font-size: 0.9rem; font-weight: 700; }
.team-detail--dark .team-detail__fact-value { color: var(--white); }
.team-detail__schedule { margin-bottom: 1.5rem; }
.team-detail__schedule-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.team-detail--dark .schedule-row { border-color: rgba(255,255,255,0.08); }
.schedule-row:last-child { border-bottom: none; }
.schedule-row__day { font-weight: 700; }
.team-detail--dark .schedule-row__day { color: var(--white); }
.schedule-row__time { color: var(--gray-400); }

/* ── TIMELINE (History) ── */
.timeline {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}
.timeline__sidebar {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  background: var(--off);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.timeline__year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  line-height: 1;
  color: var(--ink);
  transition: all 0.5s var(--ease);
}
.timeline__year.changing { transform: scale(1.08); color: var(--red); }
.timeline__era {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 0.5rem;
}
.timeline__progress {
  width: 100px;
  height: 3px;
  background: var(--gray-100);
  border-radius: 100px;
  margin-top: 2rem;
  overflow: hidden;
}
.timeline__progress-bar {
  height: 100%;
  background: var(--red);
  border-radius: 100px;
  transition: width 0.3s;
}
.timeline__content { padding: clamp(2rem, 4vw, 4rem); }
.timeline__item {
  padding: clamp(2rem, 4vw, 4rem) 0;
  border-bottom: 1px solid var(--border);
  opacity: 0.3;
  transform: translateY(15px);
  transition: all 0.6s var(--ease);
}
.timeline__item.active { opacity: 1; transform: translateY(0); }
.timeline__item:last-child { border-bottom: none; }
.timeline__item-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.timeline__item-dot {
  width: 10px;
  height: 10px;
  background: var(--gray-200);
  border-radius: 50%;
  transition: all 0.3s;
}
.timeline__item.active .timeline__item-dot {
  background: var(--red);
  box-shadow: 0 0 0 4px var(--red-light);
}
.timeline__item-year-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.timeline__item.active .timeline__item-year-label { color: var(--red); }
.timeline__item-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1rem;
}
.timeline__item-text {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 1rem;
}
.timeline__item-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  margin-top: 1.25rem;
  filter: grayscale(25%);
  transition: all 0.5s;
}
.timeline__item.active .timeline__item-img { filter: grayscale(0%); }
.timeline__item-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.timeline__item-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: var(--stone);
  color: var(--gray-500);
  border-radius: 100px;
}
.timeline__item.active .timeline__item-tag {
  background: var(--red-light);
  color: var(--red);
}

/* ── MAP ── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}
.map-container__info {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .teams-strip { grid-template-columns: 1fr 1fr; }
  .teams-strip__card { border-bottom: 1px solid var(--border); }
  .teams-strip__card:nth-child(2) { border-right: none; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: span 2; grid-row: auto; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .coaches-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid__item:nth-child(1) { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .team-detail__grid { grid-template-columns: 1fr; gap: 2rem; }
  .team-detail__grid--reverse { direction: ltr; }
  .team-detail__image { order: -1; }
  .timeline { grid-template-columns: 200px 1fr; }
  .timeline__year { font-size: 4.5rem; }
  .sponsor-grid--gold { grid-template-columns: 1fr 1fr; }
  .sponsor-grid--partner { grid-template-columns: repeat(3, 1fr); }
  .event-row { grid-template-columns: 80px 1fr auto; gap: 1.25rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__logo img { height: 46px; }
  .nav.scrolled .nav__logo img { height: 40px; }

  .hero__stats { flex-wrap: wrap; gap: 2rem; }
  .hero__scroll { display: none; }

  .page-hero { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 2.5rem; }

  .teams-strip { grid-template-columns: 1fr; }
  .teams-strip__card { border-right: none; }

  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: auto; }
  .news-card--featured .news-card__title { font-size: 1.2rem; }

  .benefits-grid { grid-template-columns: 1fr; }
  .coaches-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid__item:nth-child(1) { grid-column: auto; grid-row: auto; }

  .events-list .event-row { grid-template-columns: 60px 1fr; gap: 1rem; }
  .event-row__type { display: none; }

  .cta__inner { flex-direction: column; text-align: center; }
  .cta__desc { max-width: 100%; }
  .btn-group { width: 100%; flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .timeline { grid-template-columns: 1fr; }
  .timeline__sidebar {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    flex-direction: row;
    padding: 0.75rem 1.25rem;
    border-right: none;
    border-top: 1px solid var(--border);
    background: rgba(247,247,245,0.95);
    backdrop-filter: blur(20px);
    z-index: 100;
  }
  .timeline__sidebar .sidebar-content { display: flex; align-items: center; gap: 1rem; }
  .timeline__year { font-size: 2.25rem; }
  .timeline__era { margin-top: 0; font-size: 0.65rem; }
  .timeline__progress { display: none; }
  .timeline__content { padding: 2rem 0 5rem; }
  .timeline__item { padding: 2rem 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-card { padding: 1.5rem; }

  .form-grid { grid-template-columns: 1fr; }

  .team-detail__facts { grid-template-columns: 1fr; }

  .sponsor-grid--main,
  .sponsor-grid--gold { grid-template-columns: 1fr; }
  .sponsor-grid--partner { grid-template-columns: 1fr 1fr; }

  .map-container__info { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero__stat-number { font-size: 2rem; }
  .sponsor-grid--partner { grid-template-columns: 1fr; }
  .event-row__day { font-size: 2rem; }
}
