/* ============================================================
   WARRIOR FACTORY CHRZANÓW — styles.css
   Premium sport / underground fight club / editorial
   ============================================================ */

:root {
  --black: #0a0a0c;
  --coal: #121215;
  --coal-2: #19191d;
  --line: rgba(242, 240, 234, 0.1);
  --off: #f2f0ea;
  --muted: #9d9da4;
  --gold: #f2b705;
  --gold-dark: #d9a400;
  --mt: #ff8c1a;   /* Muay Thai — orange */
  --bx: #4d96ff;   /* Boks — blue */
  --mma: #e5383b;  /* MMA — red */
  --k1: #f2b705;   /* K1 — gold */
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 76px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--off);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* subtle grain over whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: var(--black); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.container-narrow { width: min(820px, 100% - 40px); }

section[id], div[id="hero"] { scroll-margin-top: calc(var(--header-h) + 8px); }

/* ---------- Typography helpers ---------- */
.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 22px;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  font-size: 17px;
}

.section-head { margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.left .section-label { justify-content: flex-start; }
.section-head.left { text-align: left; }

.gold { color: var(--gold); }

.text-link {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(242, 183, 5, 0.4);
  transition: border-color 0.25s;
}
.text-link:hover { border-color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background 0.3s, color 0.3s, border-color 0.3s;
  min-height: 48px;
}

.btn-lg { padding: 17px 32px; font-size: 15px; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 0 rgba(242, 183, 5, 0);
}
.btn-gold:hover {
  background: #ffd23e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(242, 183, 5, 0.28);
}
.btn-gold strong { font-weight: 800; }

.btn-ghost {
  border-color: rgba(242, 240, 234, 0.25);
  color: var(--off);
  background: rgba(242, 240, 234, 0.02);
}
.btn-ghost:hover {
  border-color: var(--off);
  background: rgba(242, 240, 234, 0.06);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(242, 240, 234, 0.6);
  color: var(--off);
}
.btn-outline:hover { background: var(--off); color: var(--black); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.06em;
}
.logo-city {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  gap: 26px;
}

.nav-list a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
  padding: 6px 0;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-list a:hover { color: var(--off); }
.nav-list a:hover::after { transform: scaleX(1); }

.nav-cta { padding: 11px 20px; font-size: 12px; }

/* hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 12px;
  border-radius: 10px;
  z-index: 130;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--off);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(10, 10, 12, 0.97);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav nav {
  text-align: center;
  padding: 24px;
  width: 100%;
}

.mobile-nav-list li { overflow: hidden; }

.mobile-nav-list a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 46px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 0;
  color: var(--off);
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s, color 0.25s;
}

.mobile-nav.open .mobile-nav-list a { transform: translateY(0); opacity: 1; }
.mobile-nav.open .mobile-nav-list li:nth-child(1) a { transition-delay: 0.06s; }
.mobile-nav.open .mobile-nav-list li:nth-child(2) a { transition-delay: 0.11s; }
.mobile-nav.open .mobile-nav-list li:nth-child(3) a { transition-delay: 0.16s; }
.mobile-nav.open .mobile-nav-list li:nth-child(4) a { transition-delay: 0.21s; }
.mobile-nav.open .mobile-nav-list li:nth-child(5) a { transition-delay: 0.26s; }
.mobile-nav.open .mobile-nav-list li:nth-child(6) a { transition-delay: 0.31s; }

.mobile-nav-list a:hover { color: var(--gold); }

.mobile-nav-cta { margin-top: 28px; width: min(320px, 100%); }
.mobile-nav-phone {
  display: block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 90px;
  background:
    radial-gradient(1000px 600px at 85% 15%, rgba(242, 183, 5, 0.07), transparent 60%),
    radial-gradient(800px 500px at 10% 90%, rgba(77, 150, 255, 0.05), transparent 60%),
    var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.hero-word {
  font-family: var(--font-display);
  font-size: clamp(140px, 26vw, 380px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 240, 234, 0.06);
  letter-spacing: 0.02em;
  user-select: none;
  white-space: nowrap;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}

.eyebrow-line {
  width: 44px; height: 2px;
  background: var(--gold);
  transform-origin: left;
  animation: growLine 1s var(--ease) 0.2s both;
}
@keyframes growLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(62px, 9.6vw, 128px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 26px;
}

.hero-title .line { display: block; }

.hero-claim {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-claim em { font-style: normal; color: var(--gold); }

.hero-copy {
  color: var(--muted);
  max-width: 520px;
  font-size: 17px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-trust li { display: flex; align-items: center; }
.hero-trust li:not(:last-child)::after {
  content: "";
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 14px;
  flex-shrink: 0;
}

/* collage */
.hero-collage {
  position: relative;
  height: clamp(420px, 56vh, 620px);
  display: block;
}

.collage-card {
  position: absolute;
  width: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(242, 240, 234, 0.12);
  background: var(--coal);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  will-change: transform;
}

.collage-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.collage-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.14em;
  background: linear-gradient(transparent, rgba(10, 10, 12, 0.92));
}

.collage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--gold);
  opacity: 0.85;
}

.c1 { top: 0; left: 6%; transform: rotate(-3deg); z-index: 3; }
.c2 { top: 12%; right: 0; transform: rotate(2.5deg); z-index: 2; }
.c3 { bottom: -2%; left: 22%; transform: rotate(-1.5deg); z-index: 1; }
.c1::after { border-color: var(--mt); }
.c2::after { border-color: var(--bx); }
.c3::after { border-color: var(--k1); }

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--coal);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.55);
  white-space: nowrap;
}

.marquee-track span:nth-child(9) { color: var(--gold); }

.marquee-track i {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   TRENINGI
   ============================================================ */
.trainings { background: var(--black); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.train-card {
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.train-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--ac) 55%, transparent);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.accent-mt { --ac: var(--mt); }
.accent-bx { --ac: var(--bx); }
.accent-mma { --ac: var(--mma); }
.accent-k1 { --ac: var(--k1); }

.train-card-img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 4.4;
}

.train-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(10, 10, 12, 0.85));
}

.train-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: saturate(0.92);
}

.train-card:hover .train-card-img img { transform: scale(1.06); }

.train-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.train-card-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.train-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding-top: 12px;
}

.train-card h3::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--ac);
}

.badge-free {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 5px 10px;
  border-radius: 5px;
}

.train-card-body p {
  color: var(--muted);
  font-size: 14.5px;
  flex: 1;
}

.train-card-price { min-height: 30px; display: flex; align-items: baseline; gap: 6px; }
.price {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--off);
  letter-spacing: 0.02em;
}
.price-period { color: var(--muted); font-size: 13px; }
.price-note { color: var(--muted); font-size: 13px; font-style: italic; }

.train-card-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--ac);
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--ac) 35%, transparent);
  border-radius: 10px;
  transition: background 0.3s, transform 0.3s var(--ease);
}

.train-card-phone:hover {
  background: color-mix(in srgb, var(--ac) 12%, transparent);
  transform: translateY(-2px);
}

/* ============================================================
   PIERWSZY TRENING
   ============================================================ */
.first-time { background: var(--coal); }

.first-time .section-title { margin-bottom: 26px; }
.first-time .section-sub { max-width: 640px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
  margin-top: 10px;
}

.step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
  transition: border-color 0.35s, transform 0.35s var(--ease);
}

.step:hover { border-color: rgba(242, 183, 5, 0.45); transform: translateY(-5px); }

.step-num {
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  display: block;
  margin-bottom: 18px;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 10px;
}

.step p { color: var(--muted); font-size: 14px; }
.step p a { color: var(--gold); font-weight: 600; }

.first-time-cta {
  margin-top: 46px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.first-time-cta p { color: var(--muted); font-size: 15px; }

/* ============================================================
   DZIECI
   ============================================================ */
.kids { background: var(--black); overflow: hidden; }

.kids-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.kids-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(-1.5deg);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.55);
}

.kids-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.kids-media-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 7px;
}

.kids-claim {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin: -8px 0 20px;
}

.kids-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 26px 0 34px;
}

.kids-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--off);
  font-size: 15.5px;
}

.kids-points li::before {
  content: "";
  flex-shrink: 0;
  width: 10px; height: 10px;
  margin-top: 7px;
  background: var(--mt);
  transform: rotate(45deg);
}

/* ============================================================
   GRAFIK
   ============================================================ */
.schedule { background: var(--coal); }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--black);
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
  min-height: 48px;
}

.tab:hover { color: var(--off); transform: translateY(-2px); }

.tab-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--c, var(--gold));
}

.tab.active {
  color: var(--black);
  background: var(--off);
  border-color: var(--off);
}

.tab.active .tab-dot { box-shadow: 0 0 0 3px rgba(10, 10, 12, 0.18); }

.tab-panels { position: relative; }

.tab-panel {
  animation: panelIn 0.45s var(--ease);
}

.tab-panel[hidden] { display: none; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  margin-bottom: 28px;
}

.panel-phone {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--gold);
  border-bottom: 2px solid rgba(242, 183, 5, 0.35);
  transition: border-color 0.25s;
}
.panel-phone:hover { border-color: var(--gold); }

.panel-price { color: var(--muted); font-size: 14.5px; }
.panel-price strong { color: var(--off); }

.subhead {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 30px 0 18px;
}

.subhead-bar { width: 26px; height: 3px; background: var(--c, var(--gold)); }

.days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.day-card {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.day-card:hover { border-color: rgba(242, 183, 5, 0.4); transform: translateY(-4px); }

.day-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.day-card li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 0;
}

.day-card li + li { border-top: 1px dashed rgba(242, 240, 234, 0.08); }

.day-card .time {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.06em;
  color: var(--off);
}

.day-card .group { color: var(--muted); font-size: 13.5px; }

.schedule-note {
  margin-top: 34px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* ============================================================
   DWIE SALE
   ============================================================ */
.locations { background: var(--black); }

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.loc-card {
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.loc-card:hover { transform: translateY(-6px); border-color: rgba(242, 183, 5, 0.4); }

.loc-head {
  padding: 28px 28px 6px;
}

.loc-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.loc-city {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 4px;
}

.loc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 28px 24px;
}

.loc-tags li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off);
  border: 1px solid color-mix(in srgb, var(--c) 45%, transparent);
  background: color-mix(in srgb, var(--c) 10%, transparent);
  padding: 6px 12px;
  border-radius: 999px;
}

.loc-map {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--coal-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.loc-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

.btn-map { margin: 22px 28px 26px; align-self: flex-start; }

/* ============================================================
   KLUB / TRENER
   ============================================================ */
.club { background: var(--coal); }

.club-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.coach { margin: 8px 0 20px; }

.coach-name {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.coach-role { color: var(--muted); font-size: 14px; margin-top: 6px; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}

.badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--off);
  border: 1px solid var(--line);
  background: var(--black);
  padding: 10px 16px;
  border-radius: 999px;
}

.kadra {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.club-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(1.5deg);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.55);
}

.club-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

/* ============================================================
   SPORT
   ============================================================ */
.sport { background: var(--black); }

.sport-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.sport-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.sport-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.8s var(--ease);
}

.sport-item.wide img { aspect-ratio: auto; }

.sport-item:hover img { transform: scale(1.05); }

.sport-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(242, 240, 234, 0.9);
  background: linear-gradient(transparent, rgba(10, 10, 12, 0.9));
}

.sport-item.wide { grid-row: span 1; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--coal); }

.accordion { display: flex; flex-direction: column; gap: 12px; }

.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
  overflow: hidden;
  transition: border-color 0.3s;
}

.acc-item.open { border-color: rgba(242, 183, 5, 0.45); }

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 600;
  font-size: 16.5px;
  padding: 20px 22px;
  min-height: 56px;
  transition: color 0.25s;
}

.acc-btn:hover { color: var(--gold); }

.acc-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
}

.acc-icon::before, .acc-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  top: 50%; left: 50%;
  transition: transform 0.35s var(--ease);
}

.acc-icon::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.acc-icon::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }

.acc-item.open .acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.acc-item.open .acc-panel { grid-template-rows: 1fr; }

.acc-panel p {
  overflow: hidden;
  color: var(--muted);
  padding: 0 22px;
}

.acc-item.open .acc-panel p { padding-bottom: 22px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: clamp(100px, 15vw, 180px) 0;
  overflow: hidden;
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 10, 12, 0.88), rgba(10, 10, 12, 0.72) 50%, rgba(10, 10, 12, 0.9));
}

.final-cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.94;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.final-cta .hero-actions { justify-content: center; margin-bottom: 0; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.contact-main, .contact-phones, .contact-locs {
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.contact-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(400px 260px at 20% 0%, rgba(242, 183, 5, 0.1), transparent 70%),
    var(--coal);
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.contact-phone {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.6vw, 60px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--gold);
  transition: color 0.25s;
}

.contact-phone:hover { color: #ffd23e; }

.contact-phone-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(242, 240, 234, 0.09);
}

.contact-phone-list li:last-child { border-bottom: 0; }

.contact-phone-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-phone-list span::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c);
  flex-shrink: 0;
}

.contact-phone-list a {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.06em;
  color: var(--off);
  transition: color 0.25s;
}

.contact-phone-list a:hover { color: var(--gold); }

.contact-loc-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(242, 240, 234, 0.09);
}

.contact-loc-list li:last-child { border-bottom: 0; }

.contact-loc-list strong {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-loc-list span { color: var(--muted); font-size: 13px; }

.contact-loc-list a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  width: fit-content;
  border-bottom: 1px solid rgba(242, 183, 5, 0.35);
  transition: border-color 0.25s;
}
.contact-loc-list a:hover { border-color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--coal);
  border-top: 1px solid var(--line);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-brand img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 16px; }

.footer-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-tag { color: var(--muted); font-size: 13.5px; margin-top: 6px; }

.footer-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col address { font-style: normal; color: var(--muted); font-size: 14.5px; line-height: 1.9; }

.footer-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--off);
  margin-bottom: 10px;
  transition: color 0.25s;
}
.footer-phone:hover { color: var(--gold); }

.footer-social {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.25s;
}
.footer-social:hover { color: var(--gold); }

.footer-nav li { padding: 4px 0; }
.footer-nav a { color: var(--muted); font-size: 14px; transition: color 0.25s; }
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  padding-bottom: 22px;
}

.footer-bottom p { color: var(--muted); font-size: 12.5px; }

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 110;
  display: none;
  grid-template-columns: 1.4fr 1fr;
  gap: 1px;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}

.sticky-bar.show { transform: translateY(0); }

.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 48px;
  border-radius: 10px;
}

.sticky-call { background: var(--gold); color: var(--black); }
.sticky-schedule {
  border: 1px solid rgba(242, 240, 234, 0.3);
  color: var(--off);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease) var(--d, 0ms), transform 0.8s var(--ease) var(--d, 0ms);
  will-change: opacity, transform;
}

.reveal.in { opacity: 1; transform: translateY(0); }

/* hero reveals are slightly stronger */
.hero .reveal { transform: translateY(36px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-main { grid-column: 1 / -1; }
  .sport-gallery { grid-template-columns: 1fr 1fr; }
  .sport-item.wide { grid-column: 1 / -1; }
  .sport-item.wide img { aspect-ratio: 16 / 8; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding-bottom: 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-collage { height: clamp(340px, 60vw, 460px); max-width: 560px; }
  .hero-scroll { display: none; }
  .br-mobile { display: inline; }

  .kids-grid, .club-grid { grid-template-columns: 1fr; }
  .kids-media { max-width: 480px; margin-inline: auto; }
  .club-media { max-width: 480px; margin-inline: auto; order: -1; }

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

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

@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .sticky-bar { display: grid; }

  .hero-trust { font-size: 11px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { padding: 16px 22px; font-size: 14px; letter-spacing: 0.06em; }

  .cards-grid { grid-template-columns: 1fr; }
  .train-card-img { aspect-ratio: 16 / 10; }

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

  .first-time-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .first-time-cta .btn { width: 100%; }

  .tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { flex-shrink: 0; }

  .contact-grid { grid-template-columns: 1fr; }
  .sport-gallery { grid-template-columns: 1fr; }
  .sport-item.wide img { aspect-ratio: 16 / 10; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .btn-map { margin-inline: 22px; align-self: stretch; text-align: center; }
}

@media (max-width: 400px) {
  .container { width: calc(100% - 28px); }
  .hero-title { font-size: clamp(54px, 17vw, 64px); }
  .logo-text { display: none; }
  .tab { font-size: 17px; padding: 11px 15px; }
  .panel-phone { font-size: 21px; }
}

.br-mobile { display: none; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}
