:root {
  --blue-deep: #0a2463;
  --blue-mid: #1e6fbf;
  --blue-light: #3da5d9;
  --blue-sky: #7ec8e3;
  --white: #ffffff;
  --off-white: #f4f8fd;
  --text-dark: #0d1b2a;
  --text-muted: #4a6680;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(10,36,99,0.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%;
  height: 106px;
}
nav .logo-wrap img { height: 62px; }
nav ul { list-style: none; display: flex; gap: 2.4rem; }
nav ul a {
  color: #000000;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--blue-mid); }
nav ul a.nav-join {
  background: var(--blue-mid);
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s;
}
nav ul a.nav-join:hover { background: var(--blue-deep); color: var(--white) !important; }

nav ul a.nav-program {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-sky));
  color: var(--blue-deep) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(61,165,217,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
nav ul a.nav-program:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(61,165,217,0.6);
  color: var(--blue-deep) !important;
}
nav ul a.nav-program-active {
  outline: 2px solid var(--blue-deep);
  outline-offset: 2px;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.6rem;
}
.nav-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: var(--blue-deep);
  transition: color 0.2s, background 0.2s;
}
.nav-socials a:hover {
  color: var(--blue-mid);
  background: rgba(10,36,99,0.07);
}
.nav-socials svg {
  width: 18px; height: 18px;
  fill: currentColor;
}

/* HERO */
#hero {
  background: #0d1f3c;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 130px 5% 180px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
#hero::before {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 200px;
  background: var(--white);
  clip-path: ellipse(55% 60% at 50% 100%);
}
.hero-waves {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 160px;
  overflow: hidden;
}
.hero-waves svg { position: absolute; bottom: 0; width: 200%; animation: waveMove 8s linear infinite; }
.hero-waves svg:nth-child(2) { animation-delay: -4s; opacity: 0.5; }
@keyframes waveMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero-logo { width: min(420px, 80vw); margin-bottom: 2.5rem; animation: fadeUp 0.8s ease both; }
.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.15s ease both;
  opacity: 0;
}
.hero-tagline span { color: var(--blue-sky); font-weight: 600; }

.hero-slogans {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin: 1.5rem 0 0.5rem;
}
.hero-slogan {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: italic;
  animation: fadeUp 0.8s ease both;
  opacity: 0;
}
.hero-slogan-1 { font-size: clamp(1.4rem, 3.5vw, 2.4rem); animation-delay: 0.2s; }
.hero-slogan-2 { font-size: clamp(1.1rem, 2.8vw, 1.9rem); animation-delay: 0.4s; }
.hero-slogan-3 { font-size: clamp(0.85rem, 2.1vw, 1.4rem); animation-delay: 0.6s; }

.hero-sub {
  max-width: 560px;
  margin: 1.2rem auto 2.5rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  animation: fadeUp 0.8s 0.3s ease both;
  opacity: 0;
}
.btn-primary {
  display: inline-block;
  background: var(--blue-light);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  animation: fadeUp 0.8s 0.45s ease both;
  opacity: 0;
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50%       { transform: translateY(-45px) scale(1.08); opacity: 0.7; }
}
@keyframes waveSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* WAVE DIVIDERS */
.wave-sep {
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}
.wave-sep svg { display: block; width: 100%; }
.wave-sep--to-light { background: #0e4d9e; }
.wave-sep--to-dark  { background: var(--off-white); }

/* SECTIONS */
section { padding: 90px 5%; }
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-title .accent { color: var(--blue-light); }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue-sky));
  margin-bottom: 2.5rem;
  border-radius: 2px;
}

/* SPORT */
#sport {
  background: #0d1f3c;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-bottom: 110px;
}

/* Floating orbs */
.sport-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.sport-orb-1 {
  width: 500px; height: 500px;
  bottom: -140px; left: -100px;
  background: radial-gradient(circle, rgba(61,165,217,0.14) 0%, transparent 70%);
  animation: floatOrb 12s ease-in-out infinite;
}
.sport-orb-2 {
  width: 320px; height: 320px;
  top: 10%; right: 8%;
  background: radial-gradient(circle, rgba(126,200,227,0.10) 0%, transparent 70%);
  animation: floatOrb 16s ease-in-out infinite 4s;
}
.sport-orb-3 {
  width: 220px; height: 220px;
  bottom: 15%; right: 30%;
  background: radial-gradient(circle, rgba(10,36,99,0.2) 0%, transparent 70%);
  animation: floatOrb 10s ease-in-out infinite 7s;
}
#sport::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(61,165,217,0.08);
  pointer-events: none;
}
#sport .section-label { color: var(--blue-sky); }
#sport .section-title { color: var(--white); }
#sport .section-title .accent { color: var(--blue-sky); }
#sport .divider { background: linear-gradient(90deg, var(--blue-sky), var(--blue-light)); }

.sport-hero-text {
  max-width: 760px;
  margin-bottom: 3rem;
}
.sport-hero-text p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

.sport-stats {
  display: flex;
  gap: 0;
  margin-bottom: 3.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  overflow: hidden;
  max-width: 700px;
}
.sport-stat {
  flex: 1;
  padding: 1.6rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.sport-stat:last-child { border-right: none; }
.sport-stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue-sky);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.sport-stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}

.sport-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.sport-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  transition: background 0.25s, border-color 0.25s;
}
.sport-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(126,200,227,0.4);
}
.sport-icon {
  width: 48px; height: 48px;
  background: rgba(126,200,227,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.sport-icon svg { width: 24px; height: 24px; color: var(--blue-sky); }
.sport-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}
.sport-card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

/* POSLÁNÍ */
#poslani {
  background: linear-gradient(180deg, var(--off-white) 0%, #eaf2fb 100%);
}
.poslani-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
.poslani-card {
  background: var(--white);
  border-top: 4px solid var(--blue-light);
  padding: 2rem;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 20px rgba(10,36,99,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.poslani-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(10,36,99,0.12); }
.poslani-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.poslani-card p { font-size: 0.98rem; line-height: 1.7; color: var(--text-muted); }
.poslani-icon {
  width: 48px; height: 48px; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-sky));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}

/* ČLENOVÉ */
#clenove { background: var(--white); }
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.member-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(10,36,99,0.1);
  border-radius: 4px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.member-card:hover { border-color: var(--blue-light); box-shadow: 0 4px 20px rgba(29,111,191,0.12); }
.member-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-light));
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 600;
  overflow: hidden;
}
.member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 0.3rem;
}
.member-role {
  font-size: 0.88rem;
  color: var(--blue-mid);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.member-bio { margin-top: 0.8rem; font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.add-member-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.5rem;
  border: 2px dashed rgba(29,111,191,0.2);
  border-radius: 4px;
}

/* ČLENOVÉ */
#clenove {
  background: linear-gradient(180deg, var(--white) 0%, #f0f7ff 100%);
}

/* FACEBOOK */
#facebook {
  background: linear-gradient(180deg, #eaf2fb 0%, var(--off-white) 100%);
}

/* FB card grid */
.fb-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1300px;
  margin: 2.5rem auto 0;
  padding: 0 5%;
}
.fb-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.fb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.fb-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.fb-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fb-card-body {
  padding: 0.9rem 1rem 0.5rem;
  flex: 1;
}
.fb-card-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.fb-card-footer {
  padding: 0.6rem 1rem;
  border-top: 1px solid #eef0f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.fb-card-date {
  font-size: 0.78rem;
  color: #888;
}
.fb-card-icon {
  width: 20px;
  height: 20px;
  color: #1877f2;
  flex-shrink: 0;
}
.fb-feed-more {
  text-align: center;
  margin: 2rem 0 0;
}
.fb-feed-more a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1877f2;
  color: #fff;
  padding: 0.7rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.fb-feed-more a:hover { background: #1260c4; }
.fb-feed-more a svg { width: 18px; height: 18px; fill: #fff; }
@media (max-width: 1024px) { .fb-feed-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .fb-feed-grid { grid-template-columns: 1fr; } }

/* TRANSPARENTNÍ ÚČET */
#transparentni-ucet {
  background: linear-gradient(180deg, var(--off-white) 0%, #f0f7ff 100%);
}
.ucet-perex {
  text-align: center;
  margin: 1.8rem auto 0;
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.ucet-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 820px;
  margin: 2.5rem auto 0;
}
.ucet-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.ucet-qr img {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(10,36,99,0.13);
  display: block;
}
.ucet-qr-caption {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}
.ucet-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.ucet-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(10,36,99,0.07);
  border-left: 4px solid var(--blue-light);
}
.ucet-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 95px;
}
.ucet-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.03em;
}

/* KONTAKT */
#kontakt { background: var(--blue-deep); color: var(--white); }
#kontakt .section-label { color: var(--blue-sky); }
#kontakt .section-title { color: var(--white); }
#kontakt .section-title .accent { color: var(--blue-sky); }
#kontakt .divider { background: linear-gradient(90deg, var(--blue-sky), var(--blue-light)); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 1rem;
}
.kontakt-block h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-sky);
  margin-bottom: 1.2rem;
}
.kontakt-row {
  display: flex; align-items: flex-start; gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.kontakt-row .icon {
  width: 20px; min-width: 20px; height: 20px;
  color: var(--blue-sky);
  margin-top: 2px;
}
.kontakt-row a { color: rgba(255,255,255,0.85); text-decoration: none; }
.kontakt-row a:hover { color: var(--blue-sky); }
.map-placeholder {
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 4px;
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.5rem;
}
.map-placeholder svg { width: 40px; opacity: 0.5; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--blue-sky); }
.contact-form button {
  align-self: flex-start;
  background: var(--blue-light);
  color: var(--white);
  border: none; cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.contact-form button:hover { background: var(--blue-sky); transform: translateY(-2px); }

/* FOOTER */
footer {
  background: #0d1f3c;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 2rem 5%;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}
footer a { color: var(--blue-sky); text-decoration: none; }

/* HAMBURGER BUTTON */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
/* Animate to X when open */
nav.open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .sport-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1300px) {
  nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0 4%;
    position: relative;
  }
  nav .logo-wrap { padding: 14px 0; }
  .nav-hamburger { display: flex; }
  .nav-socials { order: 2; margin-left: 0.4rem; }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid rgba(10,36,99,0.1);
  }
  nav.open ul { display: flex; }
  nav ul li { width: 100%; }
  nav ul a {
    display: block;
    padding: 0.65rem 0.5rem;
    font-size: 1.1rem;
  }
  nav ul a.nav-join {
    display: inline-block;
    margin: 0.5rem 0.5rem 0;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    white-space: nowrap;
  }
  nav ul a.nav-program {
    display: inline-block;
    margin: 0.5rem 0.5rem 0;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .ucet-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ucet-row { gap: 0.8rem; }
  .poslani-grid { grid-template-columns: 1fr; }
  .sport-pillars { grid-template-columns: 1fr; }
  .sport-stats { flex-direction: column; }
  .sport-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .sport-stat:last-child { border-bottom: none; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  section { padding: 60px 5%; }
}
