/* ============================================================
   Trener Szczygieł — system wizualny
   3 kierunki (data-theme): clean | premium | sport
   tryb (data-mode): light | dark
   ============================================================ */

/* ---------- TOKENY: domyślny = CLEAN / LIGHT ---------- */
:root,
[data-theme="clean"] {
  --accent: #E0514C;
  --accent-strong: #C8403C;
  --accent-ink: #FFFFFF;
  --accent-soft: rgba(224, 81, 76, 0.10);

  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F5F2EE;
  --surface-3: #ECE7E0;
  --band: #15292E;          /* ciemna wstęga */
  --band-text: #EDEAE3;
  --band-soft: #9FB0AE;

  --text: #15292E;
  --text-soft: #5A6A6D;
  --text-faint: #8A9799;
  --border: rgba(21, 41, 46, 0.12);
  --border-strong: rgba(21, 41, 46, 0.22);

  --heading-font: "Archivo", system-ui, sans-serif;
  --heading-weight: 800;
  --heading-spacing: -0.02em;
  --heading-transform: none;
  --body-font: "Hanken Grotesk", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(21,41,46,.04), 0 8px 28px rgba(21,41,46,.06);
  --shadow-lg: 0 2px 6px rgba(21,41,46,.05), 0 24px 60px rgba(21,41,46,.12);
  --skew: 0deg;              /* dynamiczne ścięcia (sport) */
}

[data-theme="clean"][data-mode="dark"] {
  --bg: #0F1E22;
  --surface: #16292E;
  --surface-2: #16292E;
  --surface-3: #1F353A;
  --band: #0A1518;
  --band-text: #EDEAE3;
  --band-soft: #8DA09E;
  --text: #F2EFE9;
  --text-soft: #A9BAB9;
  --text-faint: #748784;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --accent-soft: rgba(224, 81, 76, 0.16);
  --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 28px rgba(0,0,0,.4);
  --shadow-lg: 0 2px 6px rgba(0,0,0,.35), 0 24px 60px rgba(0,0,0,.5);
}

/* ---------- PREMIUM / ELEGANCKI ---------- */
[data-theme="premium"] {
  --accent: #B5713C;
  --accent-strong: #9A5C2C;
  --accent-ink: #FFFDF8;
  --accent-soft: rgba(181, 113, 60, 0.12);

  --bg: #F6F0E6;
  --surface: #FFFDF8;
  --surface-2: #EFE6D5;
  --surface-3: #E6D9C2;
  --band: #2A2419;
  --band-text: #EFE7D6;
  --band-soft: #B9AB8F;

  --text: #2C2519;
  --text-soft: #6E6553;
  --text-faint: #9C9079;
  --border: rgba(44, 37, 25, 0.14);
  --border-strong: rgba(44, 37, 25, 0.26);

  --heading-font: "Spectral", Georgia, serif;
  --heading-weight: 600;
  --heading-spacing: -0.01em;
  --heading-transform: none;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 2px rgba(44,37,25,.05), 0 10px 34px rgba(44,37,25,.08);
  --shadow-lg: 0 2px 8px rgba(44,37,25,.06), 0 26px 64px rgba(44,37,25,.14);
  --skew: 0deg;
}

[data-theme="premium"][data-mode="dark"] {
  --bg: #211C13;
  --surface: #2A2419;
  --surface-2: #2A2419;
  --surface-3: #352D1F;
  --band: #15110A;
  --band-text: #EFE7D6;
  --band-soft: #A89A7E;
  --text: #F1E9D8;
  --text-soft: #BCAF95;
  --text-faint: #8A7E66;
  --border: rgba(255, 250, 235, 0.14);
  --border-strong: rgba(255, 250, 235, 0.26);
  --accent: #CC8A4E;
  --accent-soft: rgba(204, 138, 78, 0.16);
}

/* ---------- SPORT / ENERGETYCZNY ---------- */
[data-theme="sport"] {
  --accent: #FF4D2E;
  --accent-strong: #E83B1C;
  --accent-ink: #FFFFFF;
  --accent-soft: rgba(255, 77, 46, 0.12);

  --bg: #FBFAF8;
  --surface: #FFFFFF;
  --surface-2: #15292E;     /* sport lubi mocne ciemne wstawki */
  --surface-3: #ECE7E0;
  --band: #101D1F;
  --band-text: #F1EEE8;
  --band-soft: #8FA3A1;

  --text: #14211F;
  --text-soft: #586664;
  --text-faint: #8A9795;
  --border: rgba(20, 33, 31, 0.14);
  --border-strong: rgba(20, 33, 31, 0.30);

  --heading-font: "Anton", "Archivo", sans-serif;
  --heading-weight: 400;
  --heading-spacing: 0.005em;
  --heading-transform: uppercase;

  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 6px;
  --shadow: 0 2px 4px rgba(20,33,31,.06), 0 10px 30px rgba(20,33,31,.10);
  --shadow-lg: 0 3px 8px rgba(20,33,31,.08), 0 26px 60px rgba(20,33,31,.16);
  --skew: -3deg;
}

[data-theme="sport"][data-mode="dark"] {
  --bg: #0C1517;
  --surface: #14242A;
  --surface-2: #0A1214;
  --surface-3: #1C3036;
  --band: #060D0E;
  --band-text: #F1EEE8;
  --band-soft: #82918F;
  --text: #F4F1EB;
  --text-soft: #A4B3B1;
  --text-faint: #6E7E7C;
  --border: rgba(255, 255, 255, 0.13);
  --border-strong: rgba(255, 255, 255, 0.26);
  --accent-soft: rgba(255, 77, 46, 0.18);
}

/* ============================================================
   RESET + BAZA
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--body-font);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .4s ease, color .4s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-spacing);
  text-transform: var(--heading-transform);
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}
[data-theme="premium"] h1,
[data-theme="premium"] h2,
[data-theme="premium"] h3 { line-height: 1.12; }

p { margin: 0; text-wrap: pretty; }

/* layout helpers */
.wrap { width: min(1180px, 100% - 48px); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body-font);
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px;
}
.eyebrow.center { justify-content: center; }
.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
h2.h-xl { font-size: clamp(34px, 4.6vw, 60px); margin-top: 18px; }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--text-soft); margin-top: 18px; line-height: 1.62; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body-font);
  font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: var(--radius-sm);
  border: 1.5px solid transparent; transition: transform .18s ease, background .2s, box-shadow .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
[data-theme="sport"] .btn { text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 6px 20px -8px var(--accent); }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 12px 28px -10px var(--accent); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-onband { background: var(--accent); color: var(--accent-ink); }
.btn-onband:hover { background: var(--accent-strong); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 17px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .4s, border-color .4s;
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 76px; }
.nav .brand { display: flex; align-items: center; gap: 14px; }
.nav .brand img { width: 56px; height: 50px; }
.nav .brand b { font-family: var(--heading-font); font-weight: var(--heading-weight); font-size: 19px; letter-spacing: -0.01em; text-transform: var(--heading-transform); }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--text-soft);
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--accent); transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(48px, 6vw, 96px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(42px, 6.4vw, 88px); line-height: 0.98; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: nowrap; align-items: flex-start; gap: 28px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); }
.trust-item { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.trust-item .ic { width: 40px; height: 40px; display: grid; place-items: center; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent); flex-shrink: 0; }
.trust-item .ic svg { width: 20px; height: 20px; }
.trust-item b { display: block; font-size: 15px; font-weight: 700; }
.trust-item span { font-size: 13px; color: var(--text-soft); }
.trust-item b,
.trust-item span span { white-space: nowrap; }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform: rotate(var(--skew));
}
[data-theme="sport"] .hero-photo { border: none; }
.hero-photo image-slot { width: 100%; height: 100%; }
.hero-badge {
  position: absolute; left: -22px; bottom: 34px;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.hero-badge .num { font-family: var(--heading-font); font-weight: var(--heading-weight); font-size: 34px; color: var(--accent); line-height: 1; text-transform: var(--heading-transform); }
.hero-badge .lbl { font-size: 13px; color: var(--text-soft); line-height: 1.3; max-width: 110px; }
.hero-accent-blob {
  position: absolute; z-index: -1; width: 64%; aspect-ratio: 1; right: -8%; top: -6%;
  background: var(--accent-soft); border-radius: 48% 52% 60% 40%;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--band); color: var(--band-text);
  transform: skewY(var(--skew));
}
.stats-inner { transform: skewY(calc(-1 * var(--skew))); display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: clamp(40px, 5vw, 64px) 0; }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -12px; top: 12%; height: 76%; width: 1px; background: rgba(255,255,255,0.14); }
.stat .num { font-family: var(--heading-font); font-weight: var(--heading-weight); font-size: clamp(40px, 5vw, 62px); line-height: 1; color: #fff; text-transform: var(--heading-transform); }
.stat .num .accent { color: var(--accent); }
.stat .lbl { margin-top: 10px; font-size: 14px; color: var(--band-soft); font-weight: 500; }

/* ============================================================
   OFERTA — karty
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.offer-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.offer-media { aspect-ratio: 16 / 11; position: relative; overflow: hidden; background: var(--surface-3); }
.offer-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.9) contrast(1.02) brightness(.92);
  transition: transform .35s ease, filter .35s ease;
}
.offer-card:hover .offer-media img { transform: scale(1.04); filter: saturate(.98) contrast(1.04) brightness(.96); }
.offer-media .ph {
  width: 100%; height: 100%; display: grid; place-items: center;
  background:
    radial-gradient(120% 120% at 80% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 60%),
    var(--surface-3);
  color: var(--accent);
}
.offer-media .ph svg { width: 60px; height: 60px; opacity: .9; }
.offer-num { position: absolute; top: 14px; left: 14px; font-family: var(--heading-font); font-weight: var(--heading-weight); font-size: 15px; background: var(--surface); color: var(--text); width: 38px; height: 38px; display: grid; place-items: center; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.offer-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.offer-body h3 { font-size: 24px; }
.offer-body p { color: var(--text-soft); margin-top: 12px; font-size: 15.5px; flex: 1; }
.offer-link { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--accent); font-size: 15px; }
.offer-link svg { width: 16px; height: 16px; transition: transform .2s; }
.offer-card:hover .offer-link svg { transform: translateX(4px); }

/* ============================================================
   RODZAJE TRENINGÓW — taśma
   ============================================================ */
.types { background: var(--surface-2); }
[data-theme="sport"] .types { background: var(--band); }
[data-theme="sport"] .types .section-head h2,
[data-theme="sport"] .types .lead { color: var(--band-text); }
[data-theme="sport"] .types .lead { color: var(--band-soft); }
.types-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.type-tile {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 18px; text-align: center; transition: transform .2s, border-color .2s, background .2s;
}
.type-tile:hover { transform: translateY(-5px); border-color: var(--accent); }
.type-tile .ic { width: 54px; height: 54px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent); }
.type-tile .ic svg { width: 26px; height: 26px; }
.type-tile h4 { font-size: 17px; }
[data-theme="sport"] .type-tile h4 { font-size: 19px; }

/* ============================================================
   FEATURE SECTION (plany / online)
   ============================================================ */
.feature-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.feature-quote {
  margin-top: 34px; padding: 20px 24px; border-left: 3px solid var(--accent);
  background: var(--accent-soft); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--text); font-size: 16px;
}
[data-theme="premium"] .feature-quote { font-family: var(--heading-font); font-size: 18px; font-style: italic; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.feat .ic { width: 46px; height: 46px; display: grid; place-items: center; border-radius: var(--radius-sm); background: var(--accent); color: var(--accent-ink); margin-bottom: 18px; }
.feat .ic svg { width: 22px; height: 22px; }
.feat h4 { font-size: 19px; letter-spacing: 0; }
[data-theme="clean"] .feat h4, [data-theme="premium"] .feat h4 { font-family: var(--body-font); font-weight: 800; }
.feat p { color: var(--text-soft); margin-top: 10px; font-size: 14.5px; line-height: 1.55; }

/* online band */
.band { background: var(--band); color: var(--band-text); position: relative; overflow: hidden; }
.band .eyebrow { color: var(--accent); }
.band .section-head h2 { color: #fff; }
.band .lead { color: var(--band-soft); }
.band .feat { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.10); }
.band .feat:hover { border-color: rgba(255,255,255,0.22); }
.band .feat h4 { color: #fff; }
.band .feat p { color: var(--band-soft); }
.band .feature-quote { background: rgba(255,255,255,0.05); color: var(--band-text); }
.band-deco { position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); }
.band-deco::after { content:""; position:absolute; inset:60px; border-radius:50%; border:1px solid rgba(255,255,255,0.06); }

/* ============================================================
   CENNIK
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 30px 32px; display: flex; flex-direction: column; position: relative;
  transition: transform .25s, box-shadow .25s;
}
.pricing-grid .price-card:nth-child(1) { grid-column: 2; grid-row: 1; }
.pricing-grid .price-card:nth-child(2) { grid-column: 1; grid-row: 1; }
.pricing-grid .price-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 2px 8px rgba(21,41,46,.06), 0 28px 70px rgba(224,81,76,.18); transform: scale(1.045); z-index: 2; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured:hover { transform: scale(1.045) translateY(-6px); }
.price-tag-badge { position: absolute; top: -13px; left: 30px; background: var(--accent); color: var(--accent-ink); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; }
.price-card h3 { font-size: 22px; }
.price-card .desc { color: var(--text-soft); font-size: 14.5px; margin-top: 8px; min-height: 42px; }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 4px; }
.price-amt .from { font-size: 14px; color: var(--text-faint); font-weight: 600; }
.price-amt .val { font-family: var(--heading-font); font-weight: var(--heading-weight); font-size: 50px; line-height: 1; color: var(--text); text-transform: var(--heading-transform); }
.price-card.featured .price-amt .val { color: var(--accent); font-size: 56px; }
.price-amt .unit { font-size: 15px; color: var(--text-soft); font-weight: 600; }
.price-list { list-style: none; margin: 24px 0 28px; padding: 22px 0 0; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 13px; flex: 1; }
.price-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text-soft); }
.price-list svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.price-card .btn { width: 100%; }
.pricing-note { text-align: center; margin-top: 30px; font-size: 14px; color: var(--text-faint); }

/* ============================================================
   OPINIE
   ============================================================ */
.reviews { background: var(--surface-2); overflow: hidden; }
[data-theme="sport"] .reviews { background: var(--bg); }
.reviews-carousel {
  --review-card-width: clamp(420px, 48vw, 560px);
  position: relative; margin-top: 52px;
}
.reviews-grid {
  display: flex; gap: 24px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scroll-padding-inline: calc((100% - var(--review-card-width)) / 2);
  padding: 2px calc((100% - var(--review-card-width)) / 2) 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}
.reviews-grid::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 var(--review-card-width); scroll-snap-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; display: flex; flex-direction: column;
  transition: opacity .25s, box-shadow .25s, border-color .25s;
}
.carousel-btn {
  position: absolute; top: 50%; z-index: 3;
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: 50%;
  background: rgba(255,255,255,.94); color: var(--accent);
  box-shadow: 0 12px 30px rgba(15,34,38,.14);
  transform: translateY(-50%);
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.carousel-btn[data-carousel-prev] { left: 12px; }
.carousel-btn[data-carousel-next] { right: 12px; }
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); box-shadow: 0 16px 34px rgba(230,76,72,.28); transform: translateY(-50%) scale(1.04); }
.carousel-btn svg { width: 20px; height: 20px; display: block; }
.carousel-btn[data-carousel-prev] svg { transform: rotate(180deg); }
.stars { display: flex; gap: 3px; color: var(--accent); margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; }
.review p { font-size: 16px; line-height: 1.6; flex: 1; }
[data-theme="premium"] .review p { font-family: var(--heading-font); font-size: 18px; line-height: 1.5; }
.review-more { display: none; }
.review-by { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.review-by .av { width: 46px; height: 46px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-family: var(--heading-font); font-weight: var(--heading-weight); font-size: 18px; flex-shrink: 0; }
.review-by b { display: block; font-size: 15px; }
.review-by span { font-size: 13px; color: var(--text-soft); }
.google-word { font-weight: 700; white-space: nowrap; letter-spacing: 0; }
.google-word .g-blue { color: #4285f4; }
.google-word .g-red { color: #ea4335; }
.google-word .g-yellow { color: #fbbc05; }
.google-word .g-green { color: #34a853; }

.modal-open { overflow: hidden; }
.review-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 20px; background: rgba(15,34,38,.58);
}
.review-modal.is-open { display: flex; }
.review-modal__panel {
  position: relative; width: min(560px, 100%);
  max-height: min(82vh, 720px); overflow: auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 30px;
}
.review-modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: 50%; background: var(--surface); color: var(--text);
  font-size: 24px; line-height: 1; display: grid; place-items: center;
}
.review-modal__body .stars { margin-bottom: 18px; }
.review-modal__body p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--text); }
.review-modal__body .review-by { margin-top: 22px; }

/* ============================================================
   O MNIE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-photo { position: relative; }
.about-photo .frame { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-photo image-slot { width: 100%; height: 100%; }
.about-reps {
  position: absolute; right: -18px; bottom: -18px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 12px 18px 12px 12px;
  display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--text);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.about-reps:hover,
.about-reps:focus-visible {
  border-color: rgba(66,133,244,.35);
  box-shadow: 0 18px 42px rgba(15,34,38,.18);
  transform: translateY(-2px);
}
.about-reps .badge {
  width: 54px; height: 54px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; overflow: hidden; flex-shrink: 0;
}
.about-reps .badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-reps b { font-size: 14px; display: block; color: var(--text); }
.about-reps .copy span { font-size: 12px; color: var(--text-soft); }
.about-body { max-width: 720px; }
.about-body .h-xl { font-size: clamp(38px, 4.1vw, 54px); margin-top: 14px; }
.about-body p {
  max-width: 66ch;
  color: var(--text-soft);
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.72;
}
.about-body p:first-of-type {
  margin-top: 22px;
  color: #425357;
  font-size: 16.5px;
}
.text-mark {
  color: inherit;
  font-weight: 650;
  background: linear-gradient(transparent 68%, rgba(230,76,72,.11) 0);
  padding-inline: .04em;
}
.about-quals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 12px;
  margin-top: 30px;
}
.qual { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 650; padding: 10px 16px; border: 1px solid var(--border); border-radius: 100px; color: var(--text); background: rgba(255,255,255,.68); }
.qual svg { width: 15px; height: 15px; color: var(--accent); }

/* ============================================================
   CTA — pierwszy trening gratis
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: var(--accent); color: var(--accent-ink); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding: clamp(48px,6vw,84px) 0; }
.cta-band .tag { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: .85; }
.cta-band h2 { color: #fff; font-size: clamp(32px, 4.4vw, 56px); margin-top: 14px; max-width: 720px; }
.cta-band p { margin-top: 14px; font-size: 18px; opacity: .92; max-width: 560px; }
.cta-band .btn-onband { background: #fff; color: var(--accent-strong); }
.cta-band .btn-onband:hover { background: rgba(255,255,255,.9); }
.cta-deco { position: absolute; inset: 0; z-index: 1; opacity: .5;
  background: radial-gradient(60% 120% at 90% 10%, rgba(255,255,255,.18), transparent 60%),
              radial-gradient(50% 90% at 10% 90%, rgba(0,0,0,.16), transparent 60%); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px,5vw,64px); margin-top: 52px; align-items: start; }
.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(26px,3vw,40px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 15.5px; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.field.is-invalid input { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.field-error { display: block; margin-top: 7px; color: #B4332E; font-size: 12.5px; font-weight: 700; line-height: 1.35; }
.field-error:empty { display: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--text-faint); margin-top: 14px; text-align: center; }
.g-recaptcha {
  display: flex; justify-content: center; align-items: center;
  width: 100% !important; max-width: 100%;
  margin: 4px auto 0; overflow: hidden;
}
.g-recaptcha > div { margin-inline: auto; }
.form-status { min-height: 24px; margin-top: 12px; font-weight: 800; text-align: center; }
.form-status.is-success { color: #247347; }
.form-status.is-error { color: #B4332E; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: border-color .2s, transform .2s; }
.info-card:hover { border-color: var(--accent); transform: translateX(4px); }
.info-card .ic { width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card .lbl { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); font-weight: 700; }
.info-card b { font-size: 16px; display: block; margin-top: 3px; }
.info-card span { font-size: 14px; color: var(--text-soft); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.contact-actions a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 34px; padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--text); font-size: 13.5px; font-weight: 750;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.contact-actions a:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); transform: translateY(-1px); }
.locations-list { display: grid; gap: 12px; margin-top: 10px; }
.locations-list a { display: block; padding-top: 10px; border-top: 1px solid var(--border); text-decoration: none; }
.locations-list a:first-child { padding-top: 0; border-top: 0; }
.locations-list a b { color: var(--text); margin-top: 0; transition: color .2s; }
.locations-list a span { display: block; margin-top: 3px; }
.locations-list a:hover b { color: var(--accent); }
.socials { display: flex; gap: 12px; margin-top: 4px; }
.socials a { width: 46px; height: 46px; border-radius: var(--radius-sm); border: 1px solid var(--border); display: grid; place-items: center; color: var(--text); transition: background .2s, color .2s, border-color .2s, transform .2s; }
.socials a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--band); color: var(--band-text); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer .brand img { width: 44px; height: 40px; }
.footer .brand b { font-family: var(--heading-font); font-weight: var(--heading-weight); font-size: 20px; text-transform: var(--heading-transform); color: #fff; }
.footer-about p { color: var(--band-soft); font-size: 14.5px; max-width: 320px; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin: 0 0 16px; font-family: var(--body-font); font-weight: 700; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--band-soft); font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer-contact-actions a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 34px; padding: 7px 12px; border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; color: var(--band-soft); font-size: 13.5px; font-weight: 700;
}
.footer-contact-actions a:hover { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
.footer-bottom { margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--band-soft); }
.footer-bottom a { color: var(--band-soft); font-weight: 700; transition: color .2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   STRONA CENNIKA
   ============================================================ */
.price-page { background: var(--surface-2); }
.price-table-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.price-table-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(24px, 3vw, 36px); }
.price-table-card h2 { font-size: 26px; }
.price-table-card p { margin-top: 8px; color: var(--text-soft); }
.price-table-card .price-footnote { margin-top: 18px; color: var(--text-faint); font-size: 13px; }
.price-table-card dl { margin: 24px 0 0; }
.price-table-card dl div { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.price-table-card dl div:last-child { border-bottom: 0; }
.price-table-card dt { color: var(--text-soft); }
.price-table-card dd { color: var(--text); font-weight: 800; text-align: right; white-space: nowrap; }
.price-table-card dd strong { display: block; font-size: 18px; }
.price-table-card dd span { display: block; margin-top: 3px; color: var(--text-faint); font-size: 13px; font-weight: 700; }
.price-table-card .best-value { margin-inline: -12px; padding-inline: 12px; border-radius: var(--radius-sm); background: var(--accent-soft); border-bottom: 0; }
.price-table-card .best-value dt span { display: inline-flex; margin-top: 6px; padding: 4px 8px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.price-page-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 42px; }
.price-date-note { margin-top: 28px; color: var(--text-faint); font-size: 13px; text-align: center; }

/* ============================================================
   ANIMACJE WEJŚCIA
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
}
.reviews-grid .review.reveal.in { opacity: .42; }
.reviews-grid .review.reveal.in.is-active {
  opacity: 1;
  border-color: rgba(230,76,72,.32);
  box-shadow: 0 18px 46px rgba(15,34,38,.12);
}

/* ============================================================
   RESPONSYWNOŚĆ
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--radius-sm); }
  .hero-grid, .feature-split, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; margin-inline: auto; }
  .cards-3, .pricing-grid { grid-template-columns: 1fr; }
  .reviews-carousel { --review-card-width: min(520px, calc(100vw - 96px)); }
  .reviews-grid {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
  }
  .price-table-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-card { grid-column: auto !important; grid-row: auto !important; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
  .stat:nth-child(3)::before, .stat:nth-child(2)::before { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .price-card.featured { transform: none; order: -1; }
  .price-card.featured:hover { transform: translateY(-6px); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { width: min(100% - 28px, 1180px); }
  .section { padding: 56px 0; }
  .section-head { max-width: 100%; }
  h2.h-xl {
    font-size: clamp(32px, 9.5vw, 42px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  .lead {
    max-width: 100%;
    font-size: 16.5px;
    overflow-wrap: break-word;
  }
  .nav-inner { height: 68px; gap: 12px; justify-content: space-between; }
  .nav .brand { min-width: 0; gap: 10px; }
  .nav .brand img { width: 50px; height: 45px; }
  .nav .brand b {
    font-size: clamp(16px, 4.8vw, 18px);
    line-height: 1.05;
    white-space: nowrap;
  }
  .nav-actions { margin-left: auto; gap: 8px; }
  .nav-phone { display: none; }
  .nav-actions .btn { display: none; }
  .nav-toggle { width: 42px; height: 42px; flex-shrink: 0; }
  .hero { padding-top: 28px; }
  .hero-visual { max-width: 100%; }
  .hero-photo { border-radius: 18px; }
  .hero-badge {
    left: 10px;
    right: 10px;
    bottom: 16px;
    width: auto;
    padding: 16px 18px;
  }
  .hero-copy .eyebrow {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: .12em;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .hero .lead { font-size: 16.5px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; gap: 16px; }
  .feat { padding: 22px; }
  .feat p { font-size: 15px; line-height: 1.6; }
  .feature-quote { padding: 18px 20px; }
  .reviews-carousel {
    --review-card-width: min(72vw, 320px);
    width: 100vw;
    margin-top: 36px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .reviews-grid {
    gap: 10px;
    scroll-padding-inline: calc((100% - var(--review-card-width)) / 2);
    padding: 2px calc((100% - var(--review-card-width)) / 2) 8px;
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.35) 0, #000 14%, #000 86%, rgba(0,0,0,.35) 100%);
    mask-image: linear-gradient(90deg, rgba(0,0,0,.35) 0, #000 14%, #000 86%, rgba(0,0,0,.35) 100%);
  }
  .reviews-grid .review.reveal.in {
    opacity: .58;
    border-color: rgba(230,76,72,.18);
    box-shadow: 0 14px 34px rgba(15,34,38,.08);
  }
  .reviews-grid .review.reveal.in.is-active { opacity: 1; }
  .review {
    height: 430px;
    padding: 24px 22px;
  }
  .review p {
    flex: 0 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
  }
  .review.is-truncated .review-more {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent);
    font-weight: 800;
    font-size: 14px;
  }
  .review-by {
    margin-top: auto;
    padding-top: 16px;
  }
  .review-modal { padding: 16px; }
  .review-modal__panel {
    max-height: 82vh;
    padding: 28px 22px 24px;
  }
  .review-modal__body p {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .carousel-btn { display: none; }
  .about-body .h-xl { font-size: clamp(36px, 12vw, 48px); }
  .about-quals { grid-template-columns: 1fr; }
  .qual { width: 100%; justify-content: flex-start; }
  .hero-trust { flex-wrap: wrap; gap: 18px 26px; }
  .trust-item b,
  .trust-item span span { white-space: normal; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}


/* ── portrety: podmień pliki assets/hero.jpg i assets/about.jpg na swoje zdjęcia ── */
.hero-photo img,
.about-photo .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo img { object-position: 78% center; }
.hero-photo,
.about-photo .frame { background: linear-gradient(135deg, var(--surface-3), var(--accent-soft)); }
