/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #b3302b;
  --red-dark: #8a2421;
  --red-light: #d44a44;
  --bg: #f8f8f8;
  --bg-white: #ffffff;
  --black: #010101;
  --black-soft: #1a1a1a;
  --green: #469051;
  --green-dark: #356f3f;
  --green-light: #5db26a;
  --gray-100: #f1f1f1;
  --gray-200: #e6e6e6;
  --gray-300: #c9c9c9;
  --gray-400: #8a8a8a;
  --gray-600: #4a4a4a;
  --gray-800: #2a2a2a;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-red: 0 8px 30px rgba(179,48,43,0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--black-soft);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-main); background: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
  width: 1px; word-wrap: normal !important;
}

/* ========== ANNOUNCEMENT BAR (WOW gradient + shimmer) ========== */
.announce-bar {
  position: relative;
  background:
    linear-gradient(
      90deg,
      var(--red-dark) 0%,
      var(--red) 35%,
      var(--red-light) 50%,
      var(--green) 75%,
      var(--green-dark) 100%
    );
  background-size: 200% 100%;
  animation: ks-announce-gradient 12s ease-in-out infinite;
  color: var(--bg-white);
  padding: 12px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
}
.announce-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: ks-announce-shimmer 6s linear infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}
@keyframes ks-announce-gradient {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes ks-announce-shimmer {
  0%   { background-position: -100% 0%; }
  100% { background-position: 200% 0%; }
}
.announce-bar .container { position: relative; z-index: 1; }
.announce-bar a {
  color: var(--bg-white);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.announce-bar a:hover { transform: translateY(-1px); }
.announce-bar a strong {
  font-weight: 900;
  letter-spacing: 2.5px;
}
.announce-bar .arrow {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  transition: var(--transition);
  border: 1.5px solid rgba(255,255,255,0.35);
  animation: ks-announce-arrow 2.4s ease-in-out infinite;
}
@keyframes ks-announce-arrow {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
.announce-bar a:hover .arrow {
  background: var(--bg-white);
  color: var(--red);
  border-color: var(--bg-white);
  animation-play-state: paused;
  transform: translateX(6px);
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-cert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--gray-800);
}
.top-bar-links { display: flex; gap: 14px; align-items: center; }
.top-icon-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bg-white);
  transition: var(--transition);
}
.top-icon-btn.red { background: var(--red); }
.top-icon-btn.red:hover { background: var(--red-dark); }
.top-icon-btn.green { background: var(--green); }
.top-icon-btn.green:hover { background: var(--green-dark); }
.top-icon-btn.facebook { background: #1877F2; }
.top-icon-btn.facebook:hover { background: #145FCF; }
.top-icon-btn svg { width: 18px; height: 18px; }
.top-icon-btn i { font-size: 0.95rem; line-height: 1; }
.top-phone { font-weight: 700; color: var(--black); font-size: 0.95rem; }

/* ========== NAVBAR ========== */
.navbar {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 80px;
  gap: 24px;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.brand-block .crest-wrap {
  width: 92px; height: 92px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
  display: block;
  margin-top: -20px; /* tylko logo wystaje nad navbar — baner zostaje wyśrodkowany */
}
.brand-block .crest-wrap .crest-img { width: 100%; height: 100%; object-fit: contain; }
.brand-banner {
  width: 200px;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18));
}
.brand-banner img { display: block; width: 100%; height: auto; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-links > li { position: relative; }
.nav-links li a {
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links li a:hover {
  color: var(--bg-white);
  background: rgba(255,255,255,0.08);
}
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a,
.nav-links li.current-menu-ancestor > a { color: var(--red-light); }

/* Dropdown caret — generowany przez CSS dla WP-owej klasy menu-item-has-children */
.nav-links > li.menu-item-has-children > a::after,
.nav-links > li.has-dropdown > a .caret {
  content: '▼';
  font-size: 0.55rem;
  opacity: 0.7;
  transition: var(--transition);
  margin-left: 4px;
}
.nav-links > li.has-dropdown > a .caret { content: none; }
.nav-links > li.menu-item-has-children:hover > a::after,
.nav-links > li.has-dropdown:hover > a .caret {
  transform: rotate(180deg);
  opacity: 1;
}

/* ========== SUBMENU (dropdown) ========== */
.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--black);
  border-radius: 0 0 12px 12px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  z-index: 1001;
  border-top: 3px solid var(--red);
}
.nav-links > li.menu-item-has-children:hover > .sub-menu,
.nav-links > li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.nav-links .sub-menu li { margin: 0; width: 100%; }
.nav-links .sub-menu li a {
  display: block;
  padding: 11px 22px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.nav-links .sub-menu li a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--bg-white);
  border-left-color: var(--red);
  padding-left: 26px;
}
.nav-links .sub-menu li.current-menu-item > a { color: var(--red-light); border-left-color: var(--red); }
.nav-cta {
  background: var(--red) !important;
  color: var(--bg-white) !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  padding: 10px;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.hamburger:hover { background: rgba(255,255,255,0.12); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bg-white);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.18s ease;
  transform-origin: center;
}
.hamburger.active {
  background: var(--red);
  border-color: var(--red);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu-panel {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.mobile-menu-panel.open {
  max-height: 80vh;
  overflow-y: auto;
  padding: 8px 0 16px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}
.mobile-menu-panel ul { list-style: none; }
.mobile-menu-panel ul li a {
  transform: translateY(-6px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease, color 0.2s ease;
}
.mobile-menu-panel.open ul li a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu-panel.open ul li:nth-child(1) a { transition-delay: 0.05s; }
.mobile-menu-panel.open ul li:nth-child(2) a { transition-delay: 0.08s; }
.mobile-menu-panel.open ul li:nth-child(3) a { transition-delay: 0.11s; }
.mobile-menu-panel.open ul li:nth-child(4) a { transition-delay: 0.14s; }
.mobile-menu-panel.open ul li:nth-child(5) a { transition-delay: 0.17s; }
.mobile-menu-panel.open ul li:nth-child(6) a { transition-delay: 0.20s; }
.mobile-menu-panel.open ul li:nth-child(7) a { transition-delay: 0.23s; }
.mobile-menu-panel.open ul li:nth-child(8) a { transition-delay: 0.26s; }
.mobile-menu-panel.open ul li:nth-child(n+9) a { transition-delay: 0.29s; }
.mobile-menu-panel ul li a {
  display: block;
  padding: 12px 24px;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.mobile-menu-panel ul li a:hover { background: rgba(255,255,255,0.06); color: var(--bg-white); }
.mobile-menu-panel .sub-menu {
  background: rgba(255,255,255,0.03);
  padding: 4px 0;
}
.mobile-menu-panel .sub-menu li a {
  padding: 10px 24px 10px 40px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;
}

/* ===== ZDJĘCIE TŁA HERO ===== */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--hero-bg-image);
  background-position: var(--hero-bg-position, center center);
  background-size: var(--hero-bg-size, cover);
  background-repeat: no-repeat;
  filter: blur(var(--hero-bg-blur, 0)) saturate(1.05);
  transform: scale(1.02); /* żeby blur nie odsłaniał krawędzi */
}
/* Biało-radialny overlay nad obrazem — czytelność tekstu, vignetting na brzegach */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 45%,
      rgba(248,248,248, calc(var(--hero-bg-overlay-alpha, 0.65) - 0.25)) 0%,
      rgba(248,248,248, var(--hero-bg-overlay-alpha, 0.65)) 70%,
      rgba(248,248,248, calc(var(--hero-bg-overlay-alpha, 0.65) + 0.15)) 100%
    );
}
/* Gdy mamy obraz — bloby/dots mocno przyciemniamy, żeby nie konkurowały */
.hero.hero--has-image .hero-bg { opacity: 0.55; }
.hero.hero--has-image .hero-blob { opacity: 0.18; }

/* ===== GLOW pod tekstem ===== */
/* Subtelne światło stadionowe z dołu — czerwono-zielony gradient z dużym blurem */
.hero-glow {
  position: absolute;
  left: 50%;
  bottom: -10%;
  width: 90%;
  max-width: 1100px;
  height: 280px;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(179,48,43,0.18), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(70,144,81,0.18), transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.45), transparent 70%);
  filter: blur(28px);
  opacity: 0.85;
  animation: ks-hero-glow 8s ease-in-out infinite;
}
@keyframes ks-hero-glow {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.95; transform: translateX(-50%) scale(1.05); }
}
.hero.hero--has-image .hero-glow {
  opacity: 1;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(179,48,43,0.28), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(70,144,81,0.25), transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.55), transparent 70%);
}

/* ====== ANIMOWANE TŁO HERO ====== */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
/* Football pitch grid — subtelny, wyfadowany do środka */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 35%, transparent 80%);
          mask-image: radial-gradient(ellipse at 50% 40%, black 35%, transparent 80%);
  opacity: 0.55;
}
/* Diagonal stripes — bardzo subtelnie */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0, transparent 180px,
    rgba(179,48,43,0.05) 180px, rgba(179,48,43,0.05) 182px,
    transparent 182px, transparent 360px,
    rgba(70,144,81,0.05) 360px, rgba(70,144,81,0.05) 362px
  );
  opacity: 0.9;
}
/* Animowane bloby (kolorowe plamy) */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.hero-blob.red {
  width: 540px; height: 540px;
  background: var(--red);
  opacity: 0.28;
  top: -120px; right: -120px;
  animation: ks-blob-1 22s cubic-bezier(.55,.06,.45,.93) infinite;
}
.hero-blob.green {
  width: 460px; height: 460px;
  background: var(--green);
  opacity: 0.20;
  bottom: -140px; left: 22%;
  animation: ks-blob-2 28s cubic-bezier(.55,.06,.45,.93) infinite;
  animation-delay: -6s;
}
.hero-blob.dark {
  width: 380px; height: 380px;
  background: var(--black);
  opacity: 0.06;
  top: 38%; left: 58%;
  animation: ks-blob-3 32s cubic-bezier(.55,.06,.45,.93) infinite;
  animation-delay: -10s;
}
@keyframes ks-blob-1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-60px, 50px) scale(1.1); }
  66% { transform: translate(40px, -30px) scale(0.95); }
}
@keyframes ks-blob-2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(80px, -60px) scale(1.15); }
}
@keyframes ks-blob-3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-50px, -40px) scale(1.1); }
}

/* Pływające ozdobne kropki/koła */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.12;
  will-change: transform;
}
.hero-dot.d1 { width: 14px; height: 14px; top: 22%; left: 8%; color: var(--red); background: var(--red); opacity: 0.25; animation: ks-bob 7s ease-in-out infinite; }
.hero-dot.d2 { width: 28px; height: 28px; top: 70%; left: 14%; color: var(--green); animation: ks-bob 9s ease-in-out infinite reverse; }
.hero-dot.d3 { width: 18px; height: 18px; top: 18%; left: 48%; color: var(--black); animation: ks-bob 11s ease-in-out infinite; animation-delay: -2s; }
.hero-dot.d4 { width: 40px; height: 40px; top: 78%; left: 52%; color: var(--red); animation: ks-bob 8s ease-in-out infinite reverse; animation-delay: -3s; }
.hero-dot.d5 { width: 22px; height: 22px; top: 14%; right: 10%; color: var(--green); background: var(--green); opacity: 0.2; animation: ks-bob 10s ease-in-out infinite; animation-delay: -4s; }
@keyframes ks-bob {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-22px) translateX(8px); }
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  position: relative;
  isolation: isolate;
}
/* Subtelna „frosted-glass" aura pod tekstem — pomaga czytelności gdy jest obraz tła */
.hero.hero--has-image .hero-content::before {
  content: '';
  position: absolute;
  inset: -28px -36px -32px -36px;
  z-index: -1;
  border-radius: 24px;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.8);
}
/* Cienka linia akcentu pod hero-content (jak światło reflektora) */
.hero.hero--has-image .hero-content::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -42px;
  height: 2px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, var(--red) 30%, var(--green) 70%, transparent);
  filter: blur(1.5px);
  opacity: 0.6;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: ks-pulse 2s ease-in-out infinite;
}
@keyframes ks-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  color: var(--black);
  font-weight: 900;
}
.hero h1 .title-row {
  display: block;
  line-height: 0.95;
  font-weight: 900;
}
.hero h1 .title-green { color: var(--green); }
.hero h1 .title-red   { color: var(--red); }
.hero h1 .title-black { color: var(--black); }
/* Wsteczna kompatybilność dla starych klas */
.hero h1 .highlight-red { color: var(--red); }
.hero h1 .highlight-green { color: var(--green); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* Grid 2-kolumnowy dla 4 przycisków hero */
.hero-buttons.hero-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 560px;
}
.hero-buttons.hero-buttons-grid .btn {
  justify-content: center;
  text-align: center;
  padding: 14px 22px;
  font-size: 0.88rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--red);
  color: var(--bg-white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(179,48,43,0.35);
}
.btn-secondary {
  background: var(--bg-white);
  color: var(--black);
  border: 1px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}
.btn-dark { background: var(--black); color: var(--bg-white); }
.btn-dark:hover { background: var(--black-soft); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--bg-white); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

/* Gradient button (klubowe kolory: czerwony → zielony, animowane na hover) */
.btn-gradient {
  position: relative;
  color: var(--bg-white);
  background: linear-gradient(120deg, var(--red) 0%, var(--red-light) 30%, var(--green) 70%, var(--green-dark) 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  box-shadow: 0 8px 24px rgba(179,48,43,0.20), 0 4px 14px rgba(70,144,81,0.15);
  border: none;
  overflow: hidden;
  isolation: isolate;
  transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}
.btn-gradient:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(179,48,43,0.30), 0 8px 24px rgba(70,144,81,0.25);
  color: var(--bg-white);
}
.btn-gradient:hover::before { transform: translateX(100%); }

.btn svg { width: 16px; height: 16px; }

/* Wielkie logo jako tło hero — pokazujemy TYLKO na mobile (≤1100px), na desktopie ukryte */
.hero-crest-bg {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(420px, 80vw, 700px);
  height: auto;
  opacity: 0.10;
  z-index: 1;
  pointer-events: none;
  animation: ks-float-bg 8s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(179,48,43,0.25));
}
@keyframes ks-float-bg {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-12px); }
}

/* Logo column — aureola + pulsujący pierścień + floating logo */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(380px, 42vw, 580px);
  height: clamp(380px, 42vw, 580px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(179,48,43,0.22),
    rgba(70,144,81,0.22),
    rgba(179,48,43,0.05),
    rgba(70,144,81,0.22),
    rgba(179,48,43,0.22)
  );
  filter: blur(40px);
  animation: ks-spin 22s linear infinite;
  z-index: 0;
}
.hero-visual::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(320px, 36vw, 480px);
  height: clamp(320px, 36vw, 480px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(179,48,43,0.18);
  animation: ks-ring 4s ease-out infinite;
  z-index: 0;
}
.hero-crest {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  animation: ks-float 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(179,48,43,0.35));
}
@keyframes ks-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes ks-ring {
  0%   { transform: translate(-50%, -50%) scale(0.85); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}
@keyframes ks-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-stat {
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: 1px;
}
.hero-stat-value.green { color: var(--green); }
.hero-stat-value.black { color: var(--black); }
.hero-stat-label {
  font-size: 0.74rem;
  color: var(--gray-600);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ========== SLIDER ========== */
.slider-section {
  background: var(--bg);
  padding: 40px 0 0;
}
.slider {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21/9;
  background: var(--black);
}
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 48px 100px 56px 100px; /* boczne paddingi zwiększone, żeby tekst nie szedł pod strzałki */
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 40%, transparent 70%);
  color: var(--bg-white);
}
.slide-text {
  max-width: 540px;
  position: relative;
  z-index: 1; /* tekst pod strzałkami, ale strzałki będą wyżej */
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--bg-white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.slide h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--bg-white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.slide p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.slide .btn { font-size: 0.88rem; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 3;
  border: none;
}
.slider-arrow:hover {
  background: var(--red);
  color: var(--bg-white);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-arrow svg { width: 22px; height: 22px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: var(--bg-white);
  width: 28px;
  border-radius: 6px;
}

.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--red);
  width: 0%;
  z-index: 3;
  transition: width 0.2s linear;
}

/* ========== TILES ========== */
.tiles-section {
  background: var(--bg);
  padding: 80px 0;
}
.tiles-section.on-white { background: var(--bg-white); }
.tiles-section .section-header { margin-bottom: 40px; }
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tile {
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.tile-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--bg);
}
.tile-img.tall { aspect-ratio: 3/4; }
.tile-body {
  padding: 22px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tile-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
}
.tile-cat.green { color: var(--green); }
.tile-cat.black { color: var(--black); }
.tile-cat::before {
  content: '';
  width: 16px;
  height: 2px;
  background: currentColor;
}
.tile h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.2px;
  margin: 0;
  line-height: 1.3;
}
.tile p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}
.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tile-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.tile:hover .tile-link svg { transform: translateX(4px); }

/* ========== ABOUT INTRO ========== */
.about-intro { background: var(--bg-white); }
.about-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-intro-card {
  background: var(--bg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about-intro-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.about-intro-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
  border-color: var(--red);
}
.about-intro-card:hover::after { transform: scaleX(1); }
.about-intro-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--bg-white);
  font-size: 1.6rem;
}
.about-intro-icon.red   { background: var(--red); }
.about-intro-icon.green { background: var(--green); }
.about-intro-icon.black { background: var(--black); }
.about-intro-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.about-intro-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.about-intro-card p:last-child { margin-bottom: 0; }
.about-intro-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.84rem;
  border-bottom: 0 !important;
}
.about-intro-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.about-intro-link:hover svg { transform: translateX(4px); }

/* Grid 3×2 dla tile-news (główne kafelki) */
.tiles-grid.tiles-grid-3x2 .tile-img {
  aspect-ratio: 16/10;
}

/* ========== SECTION SHARED ========== */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 28px; height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--black);
}
.section-subtitle {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

/* ========== FEATURES ========== */
.features { background: var(--bg-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
  color: var(--bg-white);
}
.feature-icon.red { background: var(--red); }
.feature-icon.green { background: var(--green); }
.feature-icon.black { background: var(--black); }

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--black);
  letter-spacing: -0.3px;
}
.feature-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ========== TEAMS / GRUPY ========== */
.teams { background: var(--bg); position: relative; }
.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.teams-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.team-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.team-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-img.alt-2 { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); }
.team-img.alt-3 { background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%); }
.team-img.alt-4 { background: linear-gradient(135deg, var(--red-dark) 0%, var(--black) 100%); }
.team-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(45deg, rgba(255,255,255,0.06) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.06) 75%, transparent 75%);
  background-size: 30px 30px;
}
.team-img span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: 4px;
}
.team-body { padding: 22px 24px; }
.team-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--black);
}
.team-body p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.team-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 14px;
}
.team-tag.red { background: rgba(179,48,43,0.1); color: var(--red); }
.team-tag.green { background: rgba(70,144,81,0.12); color: var(--green-dark); }
.team-tag.black { background: var(--gray-100); color: var(--black); }

/* ========== SCHEDULE / EVENTS ========== */
.schedule { background: var(--bg-white); }
.schedule-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.match-row {
  display: grid;
  grid-template-columns: 110px 1fr auto 1fr 110px;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 24px;
  transition: var(--transition);
}
.match-row:hover {
  border-color: var(--red);
  transform: translateX(4px);
  background: var(--bg-white);
  box-shadow: var(--shadow);
}
.match-date {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.match-date strong {
  display: block;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-top: 2px;
}
.match-team {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 12px;
}
.match-team.away { justify-content: flex-end; }
.match-team .crest-mini {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.match-vs {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red);
  padding: 0 12px;
}
.match-info {
  text-align: right;
  font-size: 0.74rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.match-info strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.82rem;
  margin-top: 2px;
}

/* ========== LOCATIONS ========== */
.locations { background: var(--bg); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ========== LOCATIONS — ACCORDION ========== */
.locations-accordion {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-item {
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.location-item:hover { border-color: var(--gray-300); }
.location-item.open {
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.location-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr auto 36px;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.location-toggle:hover { background: var(--bg); }
.location-toggle-pin {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--red);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.location-toggle-pin.green { background: var(--green); }
.location-toggle-pin.black { background: var(--black); }
.location-toggle-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--black);
  letter-spacing: -0.2px;
}
.location-toggle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.location-toggle-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--black);
}
.location-item.open .location-toggle-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--bg-white);
  transform: rotate(45deg);
}
.location-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.location-content-inner {
  padding: 4px 22px 22px;
  color: var(--gray-600);
  font-size: 0.94rem;
  line-height: 1.7;
}
.location-content-inner p { margin-bottom: 12px; }
.location-content-inner p:last-child { margin-bottom: 0; }
.location-content-inner a { color: var(--red); }
.location-content-inner a:hover { color: var(--red-dark); }
.location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
.location-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.location-link:hover svg { transform: translateX(4px); }
.location-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}
.location-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.location-card:hover::before { transform: scaleY(1); }
.location-pin {
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--bg-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.location-pin.green { background: var(--green); }
.location-pin.black { background: var(--black); }
.location-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--black);
}
.location-card .loc-address {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.6;
}
.location-card .loc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.loc-tag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--bg);
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
}

/* ========== HISTORY ========== */
.history-section { background: var(--bg-white); position: relative; overflow: hidden; }
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.history-visual { position: relative; }
.history-year {
  font-family: var(--font-display);
  font-size: 16rem;
  line-height: 0.8;
  color: rgba(179,48,43,0.06);
  position: absolute;
  top: -30px;
  left: -10px;
  z-index: 0;
}
.history-img {
  width: 100%;
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(179,48,43,0.08), rgba(70,144,81,0.08)),
    var(--bg);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}
.history-img .crest-big { width: 65%; object-fit: contain; }
.history-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 24px;
  color: var(--black);
}
.history-content h2 .red { color: var(--red); }
.history-content p {
  color: var(--gray-600);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.history-quote {
  border-left: 4px solid var(--red);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.history-quote p {
  font-style: italic;
  color: var(--black);
  font-size: 1.05rem;
  margin: 0;
  font-weight: 500;
}
.history-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.history-stat {
  background: var(--bg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.history-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.history-stat:nth-child(2) .history-stat-value { color: var(--green); }
.history-stat:nth-child(3) .history-stat-value { color: var(--black); }
.history-stat-label {
  font-size: 0.74rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
  font-weight: 600;
}

/* ========== PRICING ========== */
.pricing { background: var(--bg); }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--red);
  background: var(--bg-white);
  transform: translateY(-12px);
  box-shadow: var(--shadow-red);
}
.pricing-card.featured::before {
  content: 'POLECANE';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--bg-white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 100px;
  letter-spacing: 1.5px;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 20px 50px rgba(179,48,43,0.3);
}
.pricing-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.pricing-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--black);
}
.pricing-card.featured .pricing-value { color: var(--red); }
.pricing-value span { font-size: 1.5rem; color: var(--gray-400); }
.pricing-period {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px dashed var(--gray-200);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: 1rem;
}
.btn-pricing {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--bg-white);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 35%),
    linear-gradient(-135deg, rgba(0,0,0,0.18) 0%, transparent 40%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: -0.5px;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 36px;
  position: relative;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-cta {
  background: var(--bg-white);
  color: var(--red);
  position: relative;
  font-size: 1rem;
  padding: 18px 40px;
}
.cta-banner .btn-cta:hover {
  background: var(--black);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* ========== FAQ ========== */
.faq { background: var(--bg-white); }
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-item.open { border-color: var(--red); background: var(--bg-white); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  color: var(--black);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-question .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--black);
}
.faq-item.open .faq-question .icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--bg-white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ========== SPONSORS ========== */
.sponsors { background: var(--bg); padding: 64px 0; }
.sponsors-title {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 36px;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}
.sponsors-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.sponsor-logo {
  height: 72px;
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-weight: 800;
  letter-spacing: 1px;
  transition: var(--transition);
  font-size: 0.82rem;
  overflow: hidden;
  padding: 12px;
}
.sponsor-logo-large {
  height: 130px;
  padding: 22px;
}
.sponsor-logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%);
  transition: var(--transition);
}
.sponsor-logo:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.sponsor-logo:hover img { filter: grayscale(0%); }
.sponsors-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.84rem;
  color: var(--gray-600);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-crest { width: 80px; margin-bottom: 20px; height: auto; }
.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--bg-white);
  border: 1px solid rgba(255,255,255,0.04);
}
.footer-socials a i {
  font-size: 1.05rem;
  line-height: 1;
}
.footer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(179,48,43,0.4);
}
.footer h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  color: var(--bg-white);
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a, .footer ul li {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer ul li a:hover { color: var(--red-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gray-400);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: var(--red-light); }

/* ========== PAGE HEADER (podstrony) ========== */
.page-header {
  position: relative;
  padding: 100px 0 80px;
  background:
    linear-gradient(135deg, rgba(179,48,43,0.06) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 30px;
  background: var(--red);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .breadcrumbs {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.page-header .breadcrumbs a { color: var(--gray-600); }
.page-header .breadcrumbs a:hover { color: var(--red); }
.page-header .breadcrumbs .sep { color: var(--gray-400); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.5px;
  color: var(--black);
  margin-bottom: 12px;
}
.page-header h1 .red { color: var(--red); }
.page-header .lead {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 720px;
  line-height: 1.7;
}

/* ========== PAGE CONTENT ========== */
.page-content {
  background: var(--bg-white);
  padding: 80px 0;
}
.page-content .container {
  max-width: 880px;
}
.page-content .entry-content { color: var(--black-soft); font-size: 1.02rem; line-height: 1.8; }
.page-content .entry-content > * { margin-bottom: 1.2em; }
.page-content .entry-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.3px;
  color: var(--black);
  margin-top: 2em;
  margin-bottom: 0.6em;
  line-height: 1.1;
}
.page-content .entry-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--black);
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}
.page-content .entry-content h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-top: 1.4em;
  margin-bottom: 0.4em;
}
.page-content .entry-content p { margin-bottom: 1.2em; }
.page-content .entry-content a { color: var(--red); border-bottom: 1px solid rgba(179,48,43,0.3); transition: var(--transition); }
.page-content .entry-content a:hover { color: var(--red-dark); border-bottom-color: var(--red); }
.page-content .entry-content blockquote {
  border-left: 4px solid var(--red);
  padding: 16px 24px;
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}
.page-content .entry-content ul,
.page-content .entry-content ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.page-content .entry-content ul li,
.page-content .entry-content ol li { margin-bottom: 0.4em; }
.page-content .entry-content img {
  border-radius: var(--radius-lg);
  margin: 1.6em auto;
  box-shadow: var(--shadow);
}
.page-content .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
}
.page-content .entry-content th,
.page-content .entry-content td {
  border: 1px solid var(--gray-200);
  padding: 12px 16px;
  text-align: left;
}
.page-content .entry-content th {
  background: var(--bg);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

/* ========== POST META ========== */
.post-meta {
  font-size: 0.82rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ========== 404 ========== */
.error-404 {
  padding: 120px 0;
  text-align: center;
}
.error-404 .code {
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 16rem);
  line-height: 0.8;
  color: var(--red);
  letter-spacing: -2px;
}
.error-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 16px 0 12px;
  color: var(--black);
}
.error-404 p {
  color: var(--gray-600);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ========== PRICING — drobna notka pod kartami ========== */
.pricing-note {
  text-align: center;
  margin: 36px auto 0;
  max-width: 720px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.pricing-note strong { color: var(--black); }

/* ========== CONTACT PAGE ========== */
.contact-page {
  background: var(--bg);
  padding: 72px 0 96px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* --- Lewa kolumna: dane kontaktowe --- */
.contact-info { position: relative; }
.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.contact-info-block {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--red);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-icon.green { background: var(--green); }
.contact-info-icon.black { background: var(--black); }
.contact-info-text h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.contact-info-text p {
  color: var(--black-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.contact-info-text a {
  color: var(--red);
  transition: var(--transition);
}
.contact-info-text a:hover { color: var(--red-dark); }
.contact-info-text code {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  background: var(--bg);
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
}
.contact-social-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.contact-social-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--black);
}
.contact-social-list a i {
  width: 22px;
  color: var(--red);
}
.contact-social-list a:hover { color: var(--red); }

/* --- Prawa kolumna: formularz --- */
.contact-form-wrap { position: relative; }
.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 40px 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light), var(--green));
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.contact-form-lead {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 28px;
}
.contact-form-lead a { color: var(--red); font-weight: 700; }

/* --- Formularz: pola --- */
.ks-form { display: flex; flex-direction: column; gap: 18px; }
.ks-form-row { display: flex; flex-direction: column; gap: 6px; }
.ks-form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ks-form label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ks-form label .req {
  color: var(--red);
  font-weight: 800;
  margin-left: 2px;
}
.ks-form input[type="text"],
.ks-form input[type="email"],
.ks-form input[type="tel"],
.ks-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--black-soft);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.ks-form input::placeholder,
.ks-form textarea::placeholder {
  color: var(--gray-400);
}
.ks-form input:focus,
.ks-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(179,48,43,0.10);
}
.ks-form input:invalid:not(:placeholder-shown),
.ks-form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(179,48,43,0.4);
}
.ks-form textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-main);
}
.ks-form .g-recaptcha { margin-top: 4px; }

/* Honeypot — niewidoczny ale dostępny dla AT */
.ks-form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Akcje (przycisk + nota) */
.ks-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.ks-form-actions .btn { padding: 16px 28px; }
.ks-form-note {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.5;
  max-width: 320px;
  margin: 0;
}
.ks-form-note a { color: var(--red); }

/* Komunikaty (sukces / błąd) */
.ks-form-msg {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid transparent;
}
.ks-form-msg--success {
  background: rgba(70,144,81,0.10);
  color: var(--green-dark);
  border-color: rgba(70,144,81,0.25);
}
.ks-form-msg--error {
  background: rgba(179,48,43,0.08);
  color: var(--red-dark);
  border-color: rgba(179,48,43,0.25);
}

/* ========== COACHES PAGE ========== */
.coaches-intro {
  background: var(--bg-white);
  padding: 64px 0 32px;
}
.coaches-intro-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.coaches-intro-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.coaches-intro-card p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.coaches-intro-card p:last-child { margin-bottom: 0; }
.coaches-intro-card a { color: var(--red); border-bottom: 1px solid rgba(179,48,43,0.3); }
.coaches-intro-card a:hover { color: var(--red-dark); border-bottom-color: var(--red); }

.coaches-list {
  background: var(--bg);
  padding: 32px 0 96px;
}
.coaches-group { margin-bottom: 64px; }
.coaches-group:last-child { margin-bottom: 0; }
.coaches-group-header { text-align: center; margin-bottom: 36px; padding-top: 32px; }
.coaches-group-header .section-title { color: var(--black); }
.coaches-group-header .section-title .red { color: var(--red); }

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.coach-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  align-items: start;
}
.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.coach-card-img-wrap {
  width: 200px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
  position: relative;
}
.coach-card-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(179,48,43,0.06), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.coach-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.coach-card--no-img .coach-card-img-wrap {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coach-card--no-img .coach-card-img-wrap img {
  width: 60%; height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.4;
}
.coach-card-body {
  padding-top: 4px;
  min-width: 0;
}
.coach-card-level {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(179,48,43,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.coach-card-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.3px;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 10px;
}
.coach-card-bio {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { align-items: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  /* Na mobile chowamy kolumnę z logo i pokazujemy logo jako tło */
  .hero-visual { display: none; }
  .hero-crest-bg { display: block; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .teams-grid,
  .teams-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .coaches-grid { grid-template-columns: 1fr; gap: 20px; }
  .history-grid { grid-template-columns: 1fr; gap: 40px; }
  .history-visual { max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
  .sponsors-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .match-row { grid-template-columns: 100px 1fr auto 1fr; }
  .match-info { display: none; }
  .navbar-inner { grid-template-columns: 1fr auto; height: 64px; gap: 12px; }
  .brand-block { gap: 12px; }
  .brand-block .crest-wrap { width: 56px; height: 56px; margin-top: 0; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25)); }
  .brand-banner { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .navbar-cta-wrap { gap: 8px !important; }
  .nav-cta {
    padding: 8px 16px !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
  }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .top-bar { display: none; }

  /* ===== Hero mobile ===== */
  .hero {
    min-height: auto;
    padding: 56px 0 64px;
  }
  .hero .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    margin-bottom: 20px;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }
  .hero-desc { font-size: 0.96rem; margin-bottom: 24px; }
  .hero-crest-bg { width: clamp(320px, 90vw, 520px); opacity: 0.09; }
  .hero.hero--has-image .hero-content::before {
    inset: -20px -16px -24px -16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.45);
  }
  .hero.hero--has-image .hero-content::after { left: 18%; right: 18%; bottom: -30px; }
  .hero-glow { height: 200px; bottom: -15%; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
  }
  .hero-stat { border-bottom: 1px solid var(--gray-200); padding: 18px 12px; }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) { border-bottom: none; }
  .hero-blob.red   { width: 320px; height: 320px; }
  .hero-blob.green { width: 280px; height: 280px; }
  .hero-blob.dark  { width: 240px; height: 240px; }

  .announce-bar {
    padding: 10px 0;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
  }
  .announce-bar a { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .announce-bar .arrow { width: 22px; height: 22px; font-size: 0.78rem; }

  .features-grid { grid-template-columns: 1fr; }
  .teams-grid,
  .teams-grid.cols-5 { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.featured { transform: translateY(0); }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsors-grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .sponsor-logo-large { height: 110px; padding: 18px; }
  .tiles-grid { grid-template-columns: 1fr; }
  .slider { aspect-ratio: 4/3; border-radius: var(--radius); }
  .slide-content { padding: 20px 64px 28px 24px; }
  .slider-arrow { width: 40px; height: 40px; }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
  .location-toggle { grid-template-columns: 40px 1fr 32px; padding: 14px 16px; gap: 12px; }
  .location-toggle-tags { display: none; } /* tagi tylko na desktopie — na mobile za mało miejsca */
  .location-content-inner { padding: 4px 16px 18px; font-size: 0.9rem; }
  .match-row { grid-template-columns: 1fr; text-align: center; gap: 8px; }
  .match-team, .match-team.away { justify-content: center; }
  .history-stats { grid-template-columns: 1fr; }
  .page-header { padding: 64px 0 48px; }
  .page-header::before { width: 16px; }
  .contact-page { padding: 48px 0 64px; }
  .contact-form-card { padding: 28px 24px 24px; }
  .ks-form-row-double { grid-template-columns: 1fr; gap: 18px; }
  .ks-form-actions { flex-direction: column; align-items: stretch; }
  .ks-form-actions .btn { justify-content: center; }
  .ks-form-note { max-width: none; text-align: center; }
  .coaches-intro-card { padding: 24px 22px; }
  .coach-card { grid-template-columns: 1fr; text-align: center; padding: 20px; }
  .coach-card-img-wrap { width: 100%; max-width: 240px; margin: 0 auto; }
  .coach-card-level { margin-top: 4px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-buttons.hero-buttons-grid { grid-template-columns: 1fr; max-width: 100%; }
  .navbar-inner { height: 60px; gap: 8px; }
  .brand-block .crest-wrap { width: 48px; height: 48px; margin-top: 0; }
  .nav-cta { padding: 7px 12px !important; font-size: 0.72rem !important; }
  .hamburger { width: 40px; height: 40px; padding: 8px; }
  .hero h1 { font-size: clamp(2.2rem, 12vw, 3rem); }
  .hero-badge { font-size: 0.66rem; }
}
