/* ========== Base ========== */
:root{
  --bg: #0b0b0b;
  --text: #ffffff;
  --muted: rgba(255,255,255,.78);
  --muted-2: rgba(255,255,255,.65);
  --line: rgba(255,255,255,.12);

  --gold: #b3945e;
  --gold-2:#9c7b46;

  --container: 1500px;

  --radius: 999px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);

  --header-h: 72px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: transparent;
  color: var(--text);
  overflow-x: hidden;
}
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* ========== Header ========== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #000; /* twarda czerń */
  border-bottom: 1px solid rgba(255,255,255,.06);
}


.header-inner{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand */
.brand{
  display:flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
  min-width: 180px;
}
.brand__name{
  font-weight: 800;
  letter-spacing: .14em;
  font-size: 22px;
}
.brand__accent{ color: var(--gold); }
.brand__tagline{
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: lowercase;
  color: rgba(255,255,255,.65);
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 1;
}
.nav__toggle{
  display:none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.16);
  background: transparent;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle-line{
  display:block;
  height:2px;
  width: 18px;
  background: currentColor;
  margin: 4px auto;
  border-radius: 2px;
  opacity: .9;
}

.nav__list{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 42px;
  padding:0;
  margin:0;
}
.nav__link{
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.86);
  position: relative;
  padding: 10px 2px;
}
.nav__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width .22s ease;
}
.nav__link:hover{ color:#fff; }
.nav__link:hover::after{ width: 100%; }

/* Actions */
.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  min-width: 80px;
}
.icon-btn{
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.92);
  display:grid;
  place-items:center;
  border-radius: 14px;
  cursor:pointer;
}
.icon-btn:hover{
  background: rgba(255,255,255,.06);
}

/* ========== Hero ========== */
.hero{
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display:flex;
  align-items: center;
  overflow:hidden;
}

/* Background image layer */
.hero__bg{
  position:absolute;
  inset:0;
  background:
    url("../img/header-bg.jpg") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(.95) contrast(1.05);
}

/* Dark overlay like on screenshot */
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.66) 38%, rgba(0,0,0,.62) 55%, rgba(0,0,0,.55) 100%),
    radial-gradient(1200px 600px at 20% 40%, rgba(0,0,0,.35), transparent 60%);
}

.hero__content{
  position: relative;
  z-index: 2;
  padding: clamp(56px, 8vw, 92px) 0;
}

.hero__text{
  max-width: 520px;
}

.hero__title{
  margin: 0 0 18px 0;
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: .14em;
}
.hero__accent{ color: var(--gold); }

.hero__lead{
  margin: 0 0 22px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  max-width: 520px;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}

.hero__cta{ margin-top: 18px; }

/* Buttons */
.btn{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;

  padding: 13px 26px;
  border-radius: 999px;

  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12.5px;

  border: 1px solid transparent;
  background: transparent;

  cursor: pointer;
  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--gold{
  background: linear-gradient(
    135deg,
    #c7ab74 0%,
    #b3945e 55%,
    #9f7d45 100%
  );
  color: #141414;
  border: 1px solid rgba(0,0,0,.15);
  box-shadow:
    0 10px 22px rgba(179,148,94,.35),
    inset 0 1px 0 rgba(255,255,255,.35);
}

.btn--gold:hover{
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(179,148,94,.45),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.btn--gold:active{
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(179,148,94,.35),
    inset 0 2px 4px rgba(0,0,0,.25);
}

.btn--ghost{
  color: #151515;
  border: 1px solid rgba(0,0,0,.25);
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover{
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.45);
  transform: translateY(-1px);
}

.btn--ghost:active{
  transform: translateY(0);
  background: rgba(0,0,0,.06);
}

/* ========== Anchors placeholders ========== */
.anchor-spacer{
  height: 40vh;
  border-top: 1px solid rgba(255,255,255,.06);
  background: #0a0a0a;
}

/* ========== Responsive ========== */
@media (max-width: 980px){
  .brand{ min-width: auto; }
  .nav__list{ gap: 26px; }
}

@media (max-width: 820px){
  :root{ --header-h: 68px; }

  .nav{
    justify-content:flex-end;
    flex: 0;
  }

  .nav__toggle{ display:inline-grid; place-items:center; }

  .nav__list{
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 16px 24px 22px;
    margin: 0;
    display: grid;
    gap: 8px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .nav__item{ width: 100%; }
  .nav__link{
    display:block;
    width: 100%;
    padding: 14px 10px;
    border-radius: 14px;
  }
  .nav__link:hover{
    background: rgba(255,255,255,.06);
  }
  .nav__link::after{ display:none; }

  /* open state */
  .nav.is-open .nav__list{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero__overlay{
    background:
      linear-gradient(180deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.62) 40%, rgba(0,0,0,.65) 100%);
  }

  .hero__text{ max-width: 620px; }
}

@media (max-width: 420px){
  .container{ width: min(var(--container), calc(100% - 32px)); }
  .brand__name{ font-size: 20px; }
  .brand__tagline{ font-size: 11px; }
}

/* ========== About section ========== */
.about{
  background: #0b0b0b;
}

.about__wrap{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  height: 100vh;
}

.about__left{
  background: #f3f1ee; /* elegancki off-white jak na podglądzie */
  color: #171717;
  display:flex;
  align-items:center;
  padding: clamp(40px, 5vw, 72px);
}

.about__content{
  width: min(560px, 100%);
  margin-left: clamp(0px, 3vw, 44px);
}

.about__eyebrow{
  margin: 0 0 14px 0;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(22px, 2.6vw, 34px);
  color: #b3945e; /* złoto spójne z hero */
}

.about__title{
  margin: 0 0 14px 0;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .01em;
}
.about__title span{
  color: #3a3a3a;
  font-weight: 800;
}

.about__desc{
  margin: 0 0 22px 0;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.55;
  max-width: 52ch; /* klucz: lepsza czytelność */
}

/* Lista jako “kafelki” */
.about__list{
  list-style:none;
  padding: 0;
  margin: 0 0 26px 0;
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.about__item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.06);
}

.about__icon{
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display:grid;
  place-items:center;
  background: #16a34a; /* zielony check */
  color: #fff;
  font-weight: 900;
  flex: 0 0 26px;
  transform: translateY(1px);
}

.about__item-text strong{
  display:block;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  color: #151515;
}
.about__item-text span{
  display:block;
  margin-top: 4px;
  color: rgba(0,0,0,.62);
  font-size: 14px;
  line-height: 1.35;
}

/* CTA */
.about__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn--ghost{
  background: transparent;
  color: #151515;
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: none;
}
.btn--ghost:hover{
  background: rgba(0,0,0,.04);
  transform: translateY(-1px);
}

/* Right image */
.about__right{
  position: relative;
  overflow: hidden;
}

.about__photo{
  position:absolute;
  inset:0;
  background: url("../img/about-us.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.about__photo-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(11,11,11,.35) 0%, rgba(11,11,11,.18) 55%, rgba(11,11,11,.30) 100%),
    radial-gradient(900px 500px at 40% 20%, rgba(140,60,210,.45), transparent 60%);
}

/* Responsive */
@media (max-width: 980px){
  .about__wrap{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about__right{
    min-height: 340px;
  }

  .about__content{
    margin-left: 0;
  }
}

@media (max-width: 520px){
  .about__left{
    padding: 28px 18px;
  }

  .about__item{
    padding: 12px;
  }
}

/* ========== Why section ========== */
.why{
  background: #f3f1ee;
  color: #171717;
  padding: clamp(300px, 5vw, 86px) 0;
  height: 100vh;
}

.why__grid{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

/* LEWA */
.why__left{
  display: grid;
  gap: 18px;
  justify-items: start;
}

.why__pill{
  width: min(520px, 100%);
  padding: 18px 22px;
  border-radius: 18px;
  background: #cbb98c;           /* złotawy beż jak na screenie */
  color: #ffffff;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.18);
}

.why__pill--big{
  padding: 22px 26px;
  border-radius: 22px;
}

.why__pill-title{
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: .01em;
}

.why__pill-desc{
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255,255,255,.92);
  font-weight: 600;
  max-width: 44ch;
}

/* PRAWA */
.why__right{
  max-width: 560px;
}

.why__eyebrow{
  margin: 0 0 12px 0;
  font-weight: 900;
  font-size: clamp(30px, 3.6vw, 44px);
  color: #b3945e;
  letter-spacing: .02em;
}

.why__title{
  margin: 0 0 12px 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  color: #151515;
  max-width: 52ch;
}

.why__text{
  margin: 0 0 22px 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0,0,0,.70);
  max-width: 52ch;
}

.why__cta{
  margin-top: 10px;
}

/* CTA button dopasowany do jasnego tła (premium) */
.why .btn--gold{
  box-shadow:
    0 12px 26px rgba(179,148,94,.35),
    inset 0 1px 0 rgba(255,255,255,.40);
}

/* Responsive */
@media (max-width: 980px){
  .why__grid{
    grid-template-columns: 1fr;
    align-items: start;
  }

  /* Na mobile najpierw tekst, potem benefity (czytelniej) */
  .why__right{ order: 1; }
  .why__left{ order: 2; }

  .why__left{
    justify-items: stretch;
  }
  .why__pill{
    width: 100%;
  }
}

@media (max-width: 520px){
  .why__pill{
    padding: 16px 16px;
    border-radius: 16px;
  }
  .why__pill--big{
    padding: 18px 18px;
    border-radius: 18px;
  }
}

/* Why – accordion */
.why-acc{
  width: min(520px, 100%);
  display: grid;
  gap: 14px;
}

.why-acc__item{
  border-radius: 18px;
  overflow: hidden;
  background: #cbb98c;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.18);
}

.why-acc__btn{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .01em;
}

.why-acc__chev{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  position: relative;
  opacity: .95;
}
.why-acc__chev::before,
.why-acc__chev::after{
  content:"";
  position:absolute;
  inset: 0;
  margin:auto;
  width: 12px;
  height: 2px;
  background: rgba(255,255,255,.95);
  border-radius: 2px;
}
.why-acc__chev::after{
  transform: rotate(90deg);
  transition: transform .2s ease, opacity .2s ease;
}

.why-acc__panel{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.why-acc__panel > p{
  overflow: hidden;
  margin: 0;
  padding: 0 22px 18px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,.92);
  font-weight: 600;
  max-width: 48ch;
}

.why-acc__item.is-open .why-acc__panel{
  grid-template-rows: 1fr;
}
.why-acc__item.is-open .why-acc__chev::after{
  transform: rotate(90deg);
  opacity: 0; /* robi się minus */
}

/* mobile */
@media (max-width: 980px){
  .why-acc{ width: 100%; }
  .why-acc__btn{ padding: 16px 16px; }
  .why-acc__panel > p{ padding: 0 16px 16px; }
}

/* Ukryj treść w zamkniętym stanie (tylko tytuł widoczny) */
.why-acc__panel{
  grid-template-rows: 0fr;
}

.why-acc__panel > p{
  max-height: 0;
  opacity: 0;
  padding: 0 22px 0;
  transition: max-height .25s ease, opacity .2s ease, padding .2s ease;
}

/* Pokaż treść dopiero po kliknięciu */
.why-acc__item.is-open .why-acc__panel{
  grid-template-rows: 1fr;
}

.why-acc__item.is-open .why-acc__panel > p{
  max-height: 220px;
  opacity: 1;
  padding: 0 22px 18px;
}

/* ========== Split section (like About) ========== */
.split{
  min-height: 80vh;
}

.split__wrap{
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
}

.split__left{
  background: #f3f1ee;
  color: #171717;
  display: flex;
  align-items: center;
  padding: clamp(40px, 5vw, 72px);
}

.split__content{
  width: min(560px, 100%);
  margin: 0 auto;
}

.split__eyebrow{
  margin: 0 0 14px 0;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(22px, 2.6vw, 34px);
  color: #b3945e;
}

.split__title{
  margin: 0 0 16px 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  font-weight: 900;
  color: #151515;
}

.split__desc{
  margin: 0 0 22px 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,.70);
  max-width: 54ch;
}

.split__cta{
  margin-top: 8px;
}

.split__right{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Podmień obraz na swój: assets/img/gwarancja-bg.jpg */
.split__photo{
  position: absolute;
  inset: 0;
  background: url("../img/about-us.jpg") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(.95) contrast(1.05);
}

.split__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,11,.18) 0%, rgba(11,11,11,.12) 45%, rgba(11,11,11,.22) 100%),
    radial-gradient(900px 520px at 35% 18%, rgba(140,60,210,.45), transparent 60%);
}

/* Responsive */
@media (max-width: 980px){
  .split,
  .split__wrap{
    min-height: auto;
  }

  .split__wrap{
    grid-template-columns: 1fr;
  }

  .split__right{
    min-height: 340px;
  }

  .split__left{
    padding: 32px 18px;
  }
}

/* ========== Process section ========== */
.process{
  height: 100vh;
  background:
    radial-gradient(1200px 600px at 10% 50%, rgba(179,148,94,.12), transparent 60%),
    #f3f1ee;
  display: flex;
  align-items: center;
}

.process__wrap{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.process__title{
  margin: 0 0 56px 0;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  color: #b3945e;
  letter-spacing: .02em;
}

/* Grid 2x2 */
.process__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 48px;
  align-items: center;
  justify-items: center;
}

/* Item */
.process__item{
  position: relative;
  width: 100%;
  max-width: 460px;
}

/* Numer */
.process__step{
  position: absolute;
  top: -22px;
  left: -22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #b3945e;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(179,148,94,.35);
}

/* Box */
.process__box{
  background: #cbb98c;
  color: #ffffff;
  padding: 34px 28px;
  border-radius: 22px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
}

/* Responsive */
@media (max-width: 980px){
  .process{
    height: auto;
    padding: 80px 0;
  }

  .process__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process__step{
    left: 12px;
  }
}

/* ========== Footer (fixed layout) ========== */
.footer{
  background: #000;
  color: #fff;
}

/* Używa Twojego .container */
.footer__main{
  min-height: 65vh;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1.2fr;
  align-items: center;
  gap: 28px;
  padding: clamp(56px, 6vw, 90px) 0;
}

/* Logo */
.footer__logo{
  display: inline-block;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1;
}
.footer__logo span{ color: var(--gold); }

/* Nav */
.footer__nav{
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 18px;
  margin-left: 135px;
}
.footer__nav a{
  color: rgba(255,255,255,.86);
}
.footer__nav a:hover{ color: #fff; }

/* Right column */
.footer__right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

/* Social */
.footer__social{
  display: flex;
  gap: 12px;
}
.footer__social a{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.9);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer__social a:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-1px);
}
.footer__social i{
  font-size: 16px;
  line-height: 1;
}

/* CTA button alignment */
.footer__btn{
  white-space: nowrap;
}

/* Bottom bar */
.footer__bottom{
  background: #cbb98c;
  color: #fff;
  text-align: center;
  padding: 18px 12px;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 980px){
  .footer__main{
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 72px 0;
  }

  .footer__nav{
    align-items: center;
  }

  .footer__right{
    align-items: center;
  }
}

/* ========== Markets (podstrona) ========== */
.markets .about__wrap{
  grid-template-columns: .95fr 1.05fr; /* obraz po lewej, treść po prawej */
}

.about__photo--markets{
  background: url("../img/about-us.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.about__photo--markets-new{
  background: url("../img/market.png") center/cover no-repeat;
  transform: scale(1.02);
}

.about__photo--studio-new{
  background: url("../img/cardio1.png") center/cover no-repeat;
  transform: scale(1.02);
}

/* mocniejsze przyciemnienie po lewej jak na screenie */
.markets__overlay{
  background:
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.38) 55%, rgba(0,0,0,.20) 100%),
    radial-gradient(900px 520px at 20% 30%, rgba(0,0,0,.35), transparent 60%);
}

/* prawa strona bardziej „czysta” jak na screenie */
.markets__content{
  background:
    radial-gradient(1200px 700px at 95% 40%, rgba(179,148,94,.14), transparent 60%),
    #f3f1ee;
}

/* Mobile */
@media (max-width: 980px){
  .markets .about__wrap{
    grid-template-columns: 1fr;
  }
  .markets__media{
    order: 1;
  }
  .markets__content{
    order: 2;
  }
}

/* ========== Markets – image LEFT / content RIGHT ========== */
.markets--reverse .about__wrap{
  grid-template-columns: .95fr 1.05fr;
}

/* Obraz */
.about__photo--markets{
  background: url("../img/markets-bg.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

/* Overlay jak na screenie */
.markets__overlay{
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.65) 0%,
      rgba(0,0,0,.40) 55%,
      rgba(0,0,0,.18) 100%
    ),
    radial-gradient(900px 520px at 20% 30%, rgba(0,0,0,.35), transparent 60%);
}

/* Prawa strona – jasna, „oddech” */
.markets__content{
  background:
    radial-gradient(1200px 700px at 95% 40%, rgba(179,148,94,.14), transparent 60%),
    #f3f1ee;
}

/* Mobile */
@media (max-width: 980px){
  .markets--reverse .about__wrap{
    grid-template-columns: 1fr;
  }

  .markets__media{
    order: 1;
  }

  .markets__content{
    order: 2;
  }
}

/* Kierunki layoutu */
.about--img-left .about__wrap{
  grid-template-columns: .95fr 1.05fr;
}

.about--img-right .about__wrap{
  grid-template-columns: 1.05fr .95fr;
}

/* Obrazy */
.about__photo--markets{
  background: url("../img/about-us.jpg") center/cover no-repeat;
}

.about__photo--studio{
  background: url("../img/about-us.jpg") center/cover no-repeat;
}

/* Overlay – wspólny */
.markets__overlay,
.about__photo-overlay{
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.65) 0%,
      rgba(0,0,0,.35) 55%,
      rgba(0,0,0,.20) 100%
    ),
    radial-gradient(900px 520px at 20% 30%, rgba(0,0,0,.35), transparent 60%);
}

/* Mobile */
@media (max-width: 980px){
  .about--img-left .about__wrap,
  .about--img-right .about__wrap{
    grid-template-columns: 1fr;
  }

  .about__right{ order: 1; }
  .about__left{ order: 2; }
}

/* ===== About split = 50/50 viewport width ===== */
.about{
  width: 100%;
}

.about__wrap{
  width: 100%;
  margin: 0;
  grid-template-columns: 50vw 50vw; /* połowa ekranu + połowa ekranu */
}

/* utrzymaj 85vh jak masz */
.about__wrap{
  height: 100vh;
}

/* żeby content nie rozjechał się na szerokości */
.about__left{
  padding: clamp(40px, 5vw, 72px);
}

/* obraz zawsze wypełnia swoją połowę */
.about__right{
  width: 50vw;
}

/* ===== Odwrócony layout (obraz po PRAWEJ) ===== */
.about--img-right .about__wrap{
  grid-template-columns: 50vw 50vw;
}

/* ===== Markets (obraz po LEWEJ) – też 50/50 ===== */
.about.markets .about__wrap{
  grid-template-columns: 50vw 50vw;
}

/* Mobile: kolumny jedna pod drugą */
@media (max-width: 980px){
  .about__wrap{
    grid-template-columns: 1fr;
    height: auto;
  }
  .about__right{
    width: 100%;
    min-height: 340px;
  }
}

/* ===== HERO VIDEO BACKGROUND ===== */
.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* kluczowe */
  z-index: 0;
  transform: scale(1.02);
  filter: saturate(.95) contrast(1.05);
}

@media (max-width: 680px){
  .hero__video{
    display: none;
  }

  .hero{
    background: url("../img/header-bg.jpg") center/cover no-repeat;
  }
}

/* ========== Categories / Discover section ========== */
.cats{
  height: 85vh;
  background:
    radial-gradient(1200px 700px at 90% 40%, rgba(179,148,94,.16), transparent 60%),
    #f3f1ee;
  display: flex;
  align-items: center;
  color: #171717;
}

.cats__wrap{
  width: min(var(--container), calc(100% - 48px));
}

.cats__head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 52px;
}

.cats__title{
  margin: 0 0 16px 0;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 52px);
  letter-spacing: .01em;
  color: #b3945e;
}

.cats__lead{
  margin: 0 auto;
  max-width: 95ch;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(0,0,0,.72);
  font-weight: 600;
}

.cats__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 420px));
  justify-content: center;
  gap: clamp(22px, 4vw, 70px);
}

/* Card */
.cat-card{
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease;
}

.cat-card__frame{
  position: relative;
  border-radius: 20px;
  background: #d9d7d4;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 24px 48px rgba(0,0,0,.22);
  overflow: hidden;
  padding: 28px 28px 86px; /* dół pod podpis */
}

/* delikatne „złote” rogi jak na screenie */
.cat-card__frame::before,
.cat-card__frame::after{
  content:"";
  position: absolute;
  width: 86px;
  height: 86px;
  background: rgba(179,148,94,.50);
  filter: blur(0px);
  opacity: .55;
}

.cat-card__frame::before{
  top: -26px;
  right: -26px;
  border-bottom-left-radius: 88px;
}

.cat-card__frame::after{
  bottom: -26px;
  left: -26px;
  border-top-right-radius: 88px;
  opacity: .35;
}

.cat-card__img{
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
  margin: 18px auto 0;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.20));
}




.cat-card__name{
  display: block;
  margin-top: 6px;
  font-size: 26px;
  font-weight: 900;
  color: rgba(0,0,0,.55);
  letter-spacing: .01em;
}

.cat-card:hover{
  transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 980px){
  .cats{
    height: auto;
    padding: 86px 0;
  }

  .cats__head{
    margin-bottom: 34px;
  }

  .cats__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cat-card__frame{
    max-width: 520px;
    margin: 0 auto;
  }

  .cat-card__img{
    height: 210px;
  }
}

@media (max-width: 520px){
  .cats__lead{
    font-size: 16px;
  }

  .cat-card__frame{
    padding: 22px 18px 82px;
  }

  .cat-card__link{
    font-size: 18px;
  }

  .cat-card__name{
    font-size: 24px;
  }
}

/* =========================
   ABOUT (mockup like screen)
   ========================= */

.about--mock{
  background:
    radial-gradient(1200px 700px at 92% 40%, rgba(179,148,94,.14), transparent 60%),
    #f3f1ee;
}

/* 50/50 + 85vh jak u Ciebie */
.about--mock .about--mock__wrap{
  width: 100%;
  margin: 0;
  height: 85vh;
  display: grid;
  grid-template-columns: 50vw 50vw;
}

/* LEWA */
.about--mock__left{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 80px);
  color: #171717;
}

.about--mock__content{
  width: min(520px, 100%);
}

.about--mock__title{
  margin: 0 0 18px 0;
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--gold);
}

.about--mock__text{
  margin: 0 0 34px 0;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(0,0,0,.72);
  font-weight: 600;
  max-width: 54ch;
}

/* LISTA jako zwykłe linie (jak na screenie) */
.about--mock__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(0,0,0,.78);
}

/* PRAWA */
.about--mock__right{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 48px);
}

/* Duży obraz z mocnym radius jak w załączniku */
.about--mock__img{
  width: min(860px, 92%);
  height: min(520px, 72vh);
  border-radius: 80px;
  background: url("../img/about-us.jpg") center/cover no-repeat;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  position: relative;
  overflow: hidden;
}

/* Mobile: jedna pod drugą */
@media (max-width: 980px){
  .about--mock .about--mock__wrap{
    grid-template-columns: 1fr;
    height: auto;
    padding: 70px 0;
  }

  .about--mock__right{
    padding-top: 10px;
  }

  .about--mock__img{
    height: 320px;
    border-radius: 42px;
  }
}

/* ===== ABOUT mockup: obraz wychodzi poza prawą krawędź ===== */

/* prawa kolumna jako "pojemnik" do wypchnięcia obrazu */
.about--mock__right{
  position: relative;
  overflow: visible;            /* KLUCZ: nie ucinaj po prawej */
  justify-content: flex-start;  /* żeby obraz startował bliżej środka */
  padding-right: 0;
}

/* sam obraz większy i wypchnięty poza ekran */
.about--mock__img{
  width: min(980px, 62vw);      /* większy niż 50vw, żeby wyszedł poza */
  height: min(560px, 74vh);

  margin-left: clamp(10px, 2vw, 40px); /* delikatne odsunięcie od środka */
  border-radius: 80px;

  /* wypchnięcie poza prawą krawędź strony */
  transform: translateX(clamp(60px, 8vw, 140px));

  /* reszta zostaje */
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

/* Mobile: nie wypychamy poza ekran */
@media (max-width: 980px){
  .about--mock__right{
    overflow: hidden; /* na mobile lepiej uciąć */
    justify-content: center;
  }

  .about--mock__img{
    width: min(860px, 92%);
    transform: none;
    border-radius: 42px;
  }
}

/* ========== Categories 2x2 (jak na screenie) ========== */
.kats2{
  background:
    radial-gradient(1200px 700px at 80% 40%, rgba(179,148,94,.14), transparent 60%),
    #f3f1ee;
  padding: clamp(46px, 6vw, 70px) 0;
  color: #171717;
}

.kats2__wrap{
  display: grid;
  justify-items: center;
  gap: 18px;
}

.kats2__title{
  margin: 0;
  font-weight: 800;
  letter-spacing: .01em;
  color: #b3945e;
}

.kats2__grid{
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;              /* proporcja jak na screenie */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;                            /* “krzyż” na środku */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
  border: 1px solid rgba(0,0,0,.10);
  background: #e7e3dc;
}

.kats2__tile{
  position: relative;
  display: block;
  overflow: hidden;
  transform: translateZ(0);
}

.kats2__bg{
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(.9) contrast(1.05);
  transform: scale(1.03);
}

/* Napisy zawsze widoczne */
.kats2__label{
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .06em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(0,0,0,.55);
}

/* Wariant: ciemny */
.kats2__tile--dark::after{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

/* Wariant: złoty/beżowy jak na screenie */
.kats2__tile--gold::after{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(179,148,94,.55);
}

/* Subtelny hover */
.kats2__tile:hover .kats2__bg{
  transform: scale(1.08);
  transition: transform .35s ease;
}
.kats2__tile:hover::after{
  filter: brightness(1.03);
}

/* Mobile */
@media (max-width: 680px){
  .kats2__grid{
    aspect-ratio: 1 / 1;            /* kwadrat na mobile */
  }
  .kats2__label{
    left: 12px;
    bottom: 12px;
  }
}
/* ========== Categories FULL VIEW ========== */
.kats2--full{
  width: 100vw;
  min-height: 100vh;            /* pełna wysokość ekranu */
  padding: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(1400px 800px at 80% 40%, rgba(179,148,94,.18), transparent 60%),
    #f3f1ee;
}

/* Tytuł nad kaflem */
.kats2--full .kats2__title{
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 800;
  color: #b3945e;
  z-index: 3;
}

/* GŁÓWNY BLOK 2x2 */
.kats2--full .kats2__grid{
  width: min(1400px, 96vw);     /* prawie full width */
  height: min(820px, 86vh);     /* prawie full height */
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.25);
  background: #e7e3dc;
}

/* Kafel */
.kats2__tile{
  position: relative;
  overflow: hidden;
}

/* Tło */
.kats2__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* Overlay – dokładnie jak na screenie */
.kats2__tile--dark::after{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.kats2__tile--gold::after{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(179,148,94,.60);
}

/* NAPIS – zawsze widoczny, przyklejony do rogu */
.kats2__label{
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 900;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  z-index: 2;
}

/* Hover – subtelny, premium */
.kats2__tile:hover .kats2__bg{
  transform: scale(1.08);
  transition: transform .4s ease;
}

/* Mobile */
@media (max-width: 900px){
  .kats2--full{
    min-height: auto;
    padding: 96px 0;
  }

  .kats2--full .kats2__grid{
    width: 94vw;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}
/* ========== FULL SCREEN CATEGORIES ========== */
.cats-full{
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

/* GRID 2x2 NA CAŁY EKRAN */
.cats-full__grid{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 50vw 50vw;
  grid-template-rows: 50vh 50vh;
}

/* KAFEL */
.cats-full__tile{
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
}

/* KOLORY / OVERLAY */
.cats-full__tile.dark{
  background: #6f6f6c;
}

.cats-full__tile.gold{
  background: #cbb98c;
}

/* JEŚLI CHCESZ ZDJĘCIA – podmień */
.cats-full__tile.dark{
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("../img/matrix1.png") center / cover no-repeat;
}

.cats-full__tile.gold{
  background:
    linear-gradient(rgba(179,148,94,.65), rgba(179,148,94,.65)),
    url("../img/matrix2.png") center / cover no-repeat;
}

/* NAPIS – ZAWSZE WIDOCZNY */
.cats-full__label{
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
}

/* SUBTELNY HOVER */
.cats-full__tile:hover{
  filter: brightness(1.05);
}

/* MOBILE – nadal full screen */
@media (max-width: 900px){
  .cats-full__grid{
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 25vh);
  }
}
.cats-full__tile{
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

/* overlay bez czarnych pasów */
.cats-full__tile::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.25);
  z-index:1;
}

.cats-full__label{
  position:absolute;
  left:20px;
  bottom:20px;
  z-index:2;
}
/* FULL SCREEN + do krawędzi ekranu */
.catsFull{
  width: 100vw;
  height: 100vh;
}

.catsFull__grid{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

/* kafelek = “maskownica” */
.catsFull__tile{
  position: relative;
  overflow: hidden;          /* KLUCZ: ucina wszystko co wystaje */
  display: block;
  background: #000;
  text-decoration: none;
}

/* obraz wrzucony w pseudo-element i skalowany */
.catsFull__tile::before{
  content:"";
  position: absolute;
  inset: 0;

  background-image: var(--img);
  background-repeat: no-repeat;
  background-position: var(--pos, 50% 50%);
  background-size: cover;

  transform: scale(var(--zoom, 1.55)); /* KLUCZ: usuwa paski z obrazu */
  transform-origin: center;
}

/* overlay (jak na screenie) */
.catsFull__tile::after{
  content:"";
  position:absolute;
  inset:0;
  background: var(--overlay, rgba(0,0,0,.35));
}

/* napis */
.catsFull__label{
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;

  font-weight: 900;
  letter-spacing: .08em;
  font-size: 12px;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
}

/* PRZYKŁADOWE kafelki: ustawiasz obraz + zoom + pozycję */
.tile--cardio{
  --img: url("/wp-content/themes/gamagym-landing/assets/img/cardio1.png");
  --zoom: 1.35;
  --pos: 55% 50%;
  --overlay: rgba(0,0,0,.35);
}

.tile--strength{
  --img: url("/wp-content/themes/gamagym-landing/assets/img/strength1.png");
  --zoom: 1.35;
  --pos: 50% 50%;
  --overlay: rgba(179,148,94,.55);
}

.tile--strength2{
  --img: url("/wp-content/themes/gamagym-landing/assets/img/strength2.png");
  --zoom: 1.35;
  --pos: 50% 55%;
  --overlay: rgba(179,148,94,.55);
}

.tile--cardio2{
  --img: url("/wp-content/themes/gamagym-landing/assets/img/cardio2.png");
  --zoom: 1.35;
  --pos: 50% 50%;
  --overlay: rgba(0,0,0,.35);
}


/* MOBILE */
@media (max-width: 820px){
  .catsFull__grid{
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 25vh);
  }
}

/* ========== Bestseller ========== */
.bestseller{
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px 700px at 90% 40%, rgba(179,148,94,.14), transparent 60%),
    #f3f1ee;
  color: #171717;
  padding-top: 150px;
}

.bestseller__wrap{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.bestseller__title{
  margin: 0 0 44px 0;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--gold);
}

.bestseller__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: clamp(18px, 2.6vw, 38px);
  align-items: stretch;
}

.product-card{
  position: relative;
  background: #d9d7d4;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 26px 48px rgba(0,0,0,.18);
  border-radius: 6px;
  padding: 28px 140px 22px;
  overflow: hidden;
  text-align: center;
}

/* złota poświata jak na screenie */
.product-card::before{
  content:"";
  position:absolute;
  inset:-14px;
  background:
    radial-gradient(280px 240px at 50% 0%, rgba(179,148,94,.35), transparent 60%),
    radial-gradient(320px 260px at 50% 100%, rgba(179,148,94,.18), transparent 65%);
  pointer-events:none;
}

.product-card__media{
  position: relative;
  z-index: 1;
  height: 210px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.product-card__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.20));
}

.product-card__name{
  position: relative;
  z-index: 1;
  margin: 0 0 10px 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(0,0,0,.78);
}

.product-card__desc{
  position: relative;
  z-index: 1;
  margin: 0 0 16px 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(0,0,0,.62);
  font-weight: 700;
}

.product-card__btn{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(179,148,94,.55);
  color: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
  transition: transform .2s ease, background .2s ease;
}

.product-card__btn:hover{
  transform: translateY(-1px);
  background: rgba(179,148,94,.70);
}

/* prawa karta z mocniej zaokrąglonym prawym górnym rogiem */
.product-card--round{
  border-top-right-radius: 80px;
}

.product-card--round--left{
  border-top-left-radius: 80px;
}

.bestseller__cta{
  margin-top: 68px;
  margin-bottom: 125px;
}

.bestseller__ctaBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(179,148,94,.55);
  color: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
  transition: transform .2s ease, background .2s ease;
}

.bestseller__ctaBtn:hover{
  transform: translateY(-1px);
  background: rgba(179,148,94,.70);
}

/* Responsive */
@media (max-width: 980px){
  .bestseller{
    min-height: auto;
    padding: 86px 0;
  }

  .bestseller__grid{
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .product-card--round{
    border-top-right-radius: 40px;
  }
}

/* ========== Brand ticker ========== */
.brand-ticker{
  width: 100vw;
  overflow: hidden;
  background: #cbb98c; /* złoty pasek */
  padding: 22px 0;
}

.brand-ticker__track{
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  padding-left: 100%;
}

.brand-ticker__track span{
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}

/* animacja */
@keyframes ticker-scroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-100%);
  }
}

/* opcjonalnie: pauza na hover (desktop) */
@media (hover: hover){
  .brand-ticker:hover .brand-ticker__track{
    animation-play-state: paused;
  }
}

/* ========== Brand ticker (no empty + moving gradient) ========== */
.brand-ticker{
  width: 100vw;
  overflow: hidden;
  background: #cbb98c;
  position: relative;
}

.brand-ticker__mask{
  position: relative;
  height: 78px;               /* dopasuj */
  display: block;
  overflow: hidden;
}

/* delikatny “pływający” gradient na pasku */
.brand-ticker::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 180px at 10% 50%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(700px 180px at 70% 50%, rgba(0,0,0,.10), transparent 60%),
    linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,0), rgba(255,255,255,.06));
  background-size: 140% 100%, 140% 100%, 220% 100%;
  background-position: 0% 50%, 100% 50%, 0% 50%;
  pointer-events: none;
  animation: tickerGlow 10s ease-in-out infinite alternate;
  mix-blend-mode: soft-light; /* subtelniej */
  opacity: .9;
}

@keyframes tickerGlow{
  0%{
    background-position: 0% 50%, 100% 50%, 0% 50%;
  }
  100%{
    background-position: 100% 50%, 0% 50%, 100% 50%;
  }
}

/* tor przewijania */
.brand-ticker__track{
  position: absolute;
  inset: 0 auto 0 0;
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
  white-space: nowrap;
  will-change: transform;
  animation: tickerMove 22s linear infinite;
  padding-left: 32px; /* żeby start był estetyczny i NIE pusto */
}

/* drugi tor startuje zaraz za pierwszym */
.brand-ticker__track--clone{
  left: 100%;
}

/* ruch: oba tory jadą w lewo o 100% swojej szerokości */
@keyframes tickerMove{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-100%); }
}

/* elementy */
.brand-ticker__item{
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  text-shadow: 0 6px 18px rgba(0,0,0,.18);
}

/* opcjonalnie: pauza na hover */
@media (hover:hover){
  .brand-ticker:hover .brand-ticker__track{
    animation-play-state: paused;
  }
}

/* opcjonalnie: delikatne fade po bokach (premium) */
.brand-ticker__mask{
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
/* ========== Brand ticker (logos) ========== */
.brand-ticker{
  width: 100vw;
  overflow: hidden;
  background: #cbb98c;
  position: relative;
  height: 80px;
}

.brand-ticker__mask{
  position: relative;
  height: 92px; /* możesz zmienić */
  overflow: hidden;

  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

/* ruszający się gradient */
.brand-ticker::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 180px at 10% 50%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(700px 180px at 70% 50%, rgba(0,0,0,.10), transparent 60%),
    linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,0), rgba(255,255,255,.06));
  background-size: 140% 100%, 140% 100%, 220% 100%;
  background-position: 0% 50%, 100% 50%, 0% 50%;
  pointer-events:none;
  animation: tickerGlow 10s ease-in-out infinite alternate;
  mix-blend-mode: soft-light;
  opacity: .9;
}

@keyframes tickerGlow{
  0%{ background-position: 0% 50%, 100% 50%, 0% 50%; }
  100%{ background-position: 100% 50%, 0% 50%, 100% 50%; }
}

/* taśma */
.brand-ticker__marquee{
  height: 100%;
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: marqueeMove 16s linear infinite;
}

/* Dwa identyczne sety -> przesuwamy o połowę, nie ma overlap */
@keyframes marqueeMove{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

.brand-ticker__set{
  display: inline-flex;
  align-items: center;
  gap: clamp(70px, 10vw, 180px); /* DUŻE odstępy, żeby loga nie nachodziły */
  padding: 0 clamp(28px, 4vw, 60px);
}

/* logo */
.brand-ticker__logo{
  height: 124px;  /* ustaw pod swoje SVG */
  width: auto;
  display: block;
  opacity: .95;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}

/* pauza na hover */
@media (hover:hover){
  .brand-ticker:hover .brand-ticker__marquee{
    animation-play-state: paused;
  }
}

/* ========== Guarantee (like About, image pushed outside right edge) ========== */
.guarantee{
  background:
    radial-gradient(1200px 700px at 90% 40%, rgba(179,148,94,.14), transparent 60%),
    #f3f1ee;
  color: #171717;
}

.guarantee__wrap{
  display: grid;
  grid-template-columns: 50vw 50vw;  /* pełne 50/50 jak w Twoich splitach */
  height: 85vh;
  width: 100%;
}

/* lewa kolumna */
.guarantee__left{
  background: transparent; /* tło już jest na .guarantee */
  display: flex;
  align-items: center;
  padding: clamp(40px, 5vw, 72px);
}

.guarantee__content{
  width: min(560px, 100%);
  margin-left: clamp(0px, 3vw, 44px);
}

.guarantee__title{
  margin: 0 0 24px 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  font-weight: 900;
  color: #b3945e;
  letter-spacing: .01em;
}

.guarantee__desc{
  margin: 0 0 22px 0;
  color: rgba(0,0,0,.72);
  font-size: 16px;
  line-height: 1.55;
  max-width: 54ch;
}

/* prawa kolumna: kontener bez overflow hidden (żeby mogło wyjść poza ekran) */
.guarantee__right{
  position: relative;
  overflow: visible;
}

/* “kapsuła” ze zdjęciem – to ona wychodzi poza ekran */
.guarantee__media{
  position: absolute;
  top: 50%;
  right: -8vw;                 /* <<< wychodzi poza prawą krawędź */
  transform: translateY(-50%);
  width: clamp(520px, 58vw, 980px);
  height: clamp(360px, 54vh, 560px);
  border-radius: 70px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}

/* tło zdjęcia */
.guarantee__photo{
  position: absolute;
  inset: 0;
  background: url("../img/gwarancja.png") center/cover no-repeat;
  transform: scale(1.03);
  filter: saturate(.95) contrast(1.05);
}

/* overlay jak na Twoich sekcjach */
.guarantee__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(11,11,11,.20) 0%,
      rgba(11,11,11,.08) 45%,
      rgba(11,11,11,.18) 100%
    ),
    radial-gradient(900px 520px at 35% 18%, rgba(140,60,210,.45), transparent 60%);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .guarantee__wrap{
    grid-template-columns: 1fr;
    height: auto;
  }

  .guarantee__right{
    overflow: hidden;         /* na mobile nie wypychamy poza ekran */
    min-height: 360px;
  }

  .guarantee__media{
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    height: 360px;
    border-radius: 32px;
    margin: 0 0 28px;
  }

  .guarantee__left{
    padding: 32px 18px;
  }

  .guarantee__content{
    margin-left: 0;
  }
}

.guarantee__content{
  margin-left: clamp(32px, 6vw, 96px);
}
/* ===== ABOUT (mock) – lewa strona jak na screenie ===== */
.about--mock{
  background:
    radial-gradient(1200px 700px at 0% 40%, rgba(179,148,94,.10), transparent 60%),
    #f3f1ee;
  color: #171717;
}

.about--mock__wrap{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: 85vh;
  width: 100%;
}

/* LEWA */
.about--mock__left{
  display: flex;
  align-items: center;
}


.about--mock__title{
  margin: 0 0 14px 0;
  font-weight: 900;
  font-size: clamp(38px, 5vw, 56px);
  letter-spacing: .01em;
  color: #b3945e;
}

.about--mock__text{
  margin: 0 0 22px 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(0,0,0,.72);
  font-weight: 600;
  max-width: 52ch;
}

/* kafelki 2x2 */
.about--mock__tiles{
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 16px;
  max-width: 500px;
}

.about--mock__tile{
  border: 1px solid rgba(0,0,0,.25);
  background: rgba(255,255,255,.35);
  border-radius: 14px;
  min-height: 92px;
  padding: 14px 14px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  box-shadow: 0 16px 28px rgba(0,0,0,.08);
}

.about--mock__ico{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(179,148,94,.18);
  color: #2a2a2a;
  margin-bottom: 8px;
}

.about--mock__ico i{
  font-size: 16px;
  line-height: 1;
}

.about--mock__tileText{
  font-weight: 800;
  font-size: 13.5px;
  line-height: 1.15;
  color: rgba(0,0,0,.78);
}

/* PRAWA: obraz jak wcześniej */
.about--mock__right{
  position: relative;
  overflow: hidden;
  min-height: 85vh;
}


/* Responsive */
@media (max-width: 980px){
  .about--mock__wrap{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about--mock__right{
    min-height: 340px;
  }

  .about--mock__content{
    padding: 32px 18px;
  }

  .about--mock__img{
    width: min(640px, calc(100% - 36px));
    height: 340px;
    border-radius: 42px;
  }
}


/* ===============================
   FULLPAGE ANIMATED GRADIENT
================================ */

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #d2bf94; /* fallback */
}

/* wspólne */
.bg-gradient__layer {
  position: absolute;
  inset: -40%;
  background-repeat: no-repeat;
  background-size: 200% 200%;
  mix-blend-mode: normal;
  filter: blur(60px);
  opacity: 0.9;
  animation: gradientMove 28s ease-in-out infinite;
}

/* WARSTWY – kolory inspirowane Twoim screenem */
.layer-1 {
  background-image:
    radial-gradient(circle at 20% 30%, #f6e7b8 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, #c9ad6a 0%, transparent 50%);
  animation-duration: 30s;
}

.layer-2 {
  background-image:
    radial-gradient(circle at 70% 20%, #b89c58 0%, transparent 45%),
    radial-gradient(circle at 30% 80%, #e1c985 0%, transparent 50%);
  animation-duration: 36s;
  opacity: 0.75;
}

.layer-3 {
  background-image:
    radial-gradient(circle at 50% 50%, #d9c27d 0%, transparent 55%);
  animation-duration: 42s;
  opacity: 0.6;
}

/* animacja */
@keyframes gradientMove {
  0% {
    transform: translate3d(0%, 0%, 0) scale(1);
  }
  50% {
    transform: translate3d(-8%, -6%, 0) scale(1.1);
  }
  100% {
    transform: translate3d(0%, 0%, 0) scale(1);
  }
}

/* poprawka pod mobile */
@media (max-width: 768px) {
  .bg-gradient__layer {
    filter: blur(80px);
  }
}

/* zamiast #f3f1ee */
.about,
.why,
.process,
.bestseller{
  background: rgba(255, 255, 255, 0.589)!important;
}
.bg-gradient{ z-index: 0 !important; }
.site-header, main, section, footer{ position: relative; z-index: 999; }
/* ========== Equipment / discover section ========== */
.equip{
  display: flex;
  align-items: center;
  padding: clamp(70px, 7vw, 110px) 0;
  background:
    radial-gradient(1200px 720px at 88% 30%, rgba(179,148,94,.18), transparent 60%),
    radial-gradient(900px 520px at 10% 10%, rgba(179,148,94,.10), transparent 55%),
    #f3f1ee;
  color: #171717;
}

.equip__wrap{
  width: 100%;
  height: 100vh;
  padding-top: 120px;
}

.equip__head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto clamp(38px, 4vw, 62px);
}

.equip__title{
  margin: 0 0 14px 0;
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 54px);
  letter-spacing: .01em;
  color: #b3945e;
}

.equip__lead{
  margin: 0 auto;
  max-width: 95ch;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(0,0,0,.72);
  font-weight: 600;
}

/* Grid */
.equip__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 420px));
  justify-content: center;
  gap: clamp(22px, 4vw, 70px);
}

/* Card */
.equip-card{
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease;
}

.equip-card__frame{
  position: relative;
  border-radius: 22px;
  background: #d9d7d4;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 24px 48px rgba(0,0,0,.22);
  overflow: hidden;
  padding: 34px 34px 92px; /* dół pod podpis */
}

/* “Złote” rogi */
.equip-card__frame::before,
.equip-card__frame::after{
  content:"";
  position:absolute;
  width: 110px;
  height: 110px;
  background: rgba(179,148,94,.55);
  opacity: .58;
}

.equip-card__frame::before{
  top: -34px;
  right: -34px;
  border-bottom-left-radius: 120px;
}

.equip-card__frame::after{
  bottom: -34px;
  left: -34px;
  border-top-right-radius: 120px;
  opacity: .35;
}

/* Image */
.equip-card__img{
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
  margin: 12px auto 0;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.20));
}

/* Text bottom */
.equip-card__meta{
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 26px;
}

.equip-card__link{
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  color: rgba(0,0,0,.45);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.equip-card__name{
  display: block;
  margin-top: 6px;
  font-size: 28px;
  font-weight: 900;
  color: rgba(0,0,0,.55);
  letter-spacing: .01em;
  text-transform: lowercase;
}

.equip-card:hover{
  transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 980px){
  .equip__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .equip-card__frame{
    max-width: 520px;
    margin: 0 auto;
    padding: 26px 22px 86px;
  }

  .equip-card__img{
    height: 210px;
  }

  .equip-card__meta{
    left: 22px;
    right: 22px;
  }
}

@media (max-width: 520px){
  .equip__lead{ font-size: 16px; }
  .equip-card__link{ font-size: 18px; }
  .equip-card__name{ font-size: 24px; }
}

/* ========== MARKETS HERO ========== */

.markets-hero{
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
  color: #fff;
}

/* tło */
.markets-hero__bg{
  position: absolute;
  inset: 0;
  background: url("../img/rynki_bg.jpg") center / cover no-repeat;
  z-index: 1;
}

/* ciemna nakładka TYLKO PO LEWEJ */
.markets-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.70) 0%,
      rgba(0,0,0,.65) 35%,
      rgba(0,0,0,.45) 50%,
      rgba(0,0,0,.15) 65%,
      rgba(0,0,0,0) 100%
    );
}

/* treść */
.markets-hero__content{
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1200px;
  padding-left: clamp(32px, 6vw, 120px);
  padding-right: 32px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* mały napis */
.markets-hero__eyebrow{
  margin: 0 0 14px 0;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
}

/* główny nagłówek */
.markets-hero__title{
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.15;
  max-width: 720px;
}

/* ========== MOBILE ========== */
@media (max-width: 768px){
  .markets-hero{
    height: 90vh;
  }

  .markets-hero__overlay{
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.55) 55%,
        rgba(0,0,0,.25) 100%
      );
  }

  .markets-hero__content{
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ========== More (tekstowa sekcja jak na screenie) ========== */
.more{
  min-height: 42vh; /* na screenie jest dość „płasko”, możesz dać 50vh */
  display: grid;
  place-items: center;
  text-align: center;

  /* jasne tło + delikatne złote boki */
  background:
    radial-gradient(900px 520px at 0% 50%, rgba(179,148,94,.16), transparent 60%),
    radial-gradient(900px 520px at 100% 50%, rgba(179,148,94,.12), transparent 60%),
    #f3f1ee;

  padding: clamp(56px, 6vw, 90px) 24px;
}

.more__inner{
  width: min(1100px, 100%);
}

.more__title{
  margin: 0 0 18px 0;
  font-weight: 900;
  font-size: clamp(30px, 4.2vw, 56px);
  letter-spacing: .01em;
  color: #b3945e;
}

.more__text{
  margin: 0 auto;
  max-width: 1050px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(0,0,0,.78);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 700px){
  .more{
    min-height: auto;
    padding: 56px 18px;
    text-align: left; /* jeśli chcesz jak w screenie (bardziej central), usuń tę linię */
  }

  .more__text{
    max-width: 62ch;
  }
}

/* =====================================
   RYNKI – INDYWIDUALNE ZDJĘCIA
===================================== */

.about__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Kluby fitness */
.about__photo--kluby {
  background-image: url("../img/rynki/kluby_fitness.jpg");
}

/* Usługi hotelarskie */
.about__photo--hotele {
  background-image: url("../img/rynki/uslugi_hotelarskie.jpg");
}

/* Treningi siłowe */
.about__photo--silowe {
  background-image: url("../img/rynki/treningi_silowe.jpg");
}

/* Seniorzy / mobilność */
.about__photo--senior {
  background-image: url("../img/rynki/aktywnosc_seniorow.png");
}

/* Budownictwo wielomieszkaniowe */
.about__photo--budownictwo {
  background-image: url("../img/rynki/budownictwo.png");
}


.about__photo--kluby-forma {
  background-image: url("../img/kluby/kluby_forma.png");
}


.about__photo--kluby-level {
  background-image: url("../img/kluby/kluby_level.png");
}


.about__photo--kluby-polanka {
  background-image: url("../img/kluby/kluby_polanka.png");
}


.about__photo--kluby-power-gym {
  background-image: url("../img/kluby/kluby_power_gym.png");
}


.about__photo--kluby-evolution {
  background-image: url("../img/kluby/kluby_evolution.png");
}

.brand__logo {
  height: 36px;        /* dopasuj do headera */
  width: auto;
  display: block;
}


/* FIX: mega menu nie może chować się pod hero */
main, section, footer{
  position: relative;
  z-index: auto; /* lub 0 */
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 5000; /* header zawsze najwyżej */
}

/* dropdown jeszcze wyżej */
.mega{
  z-index: 6000;
}

/* =========================
   BESTSELLER (GG)
   ========================= */

/* Jeśli nie masz globalnie zmiennych – zostaw. Jeśli masz, możesz usunąć. */
:root{
  --gg-gold: #b79b62;
  --gg-text: #111;
  --gg-muted: rgba(0,0,0,.55);
}

/* Sekcja */
.gg-section.gg-bestseller{
  padding: 70px 0;
}

/* Nagłówek */
.gg-h2{
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 900;
  color: var(--gg-text);
}
.gg-center{ text-align: center; }
.gg-gold{ color: var(--gg-gold); }

/* Grid bestsellerów */
.gg-bestseller__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: 34px;
}

/* CTA pod gridem */
.bestseller__cta{
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.bestseller__ctaBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gg-gold);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  transition: filter .15s ease, transform .15s ease;
}

.bestseller__ctaBtn:hover{
  filter: brightness(.95);
  transform: translateY(-1px);
}

/* Info "Brak bestsellerów" */
.gg-muted{
  color: var(--gg-muted);
  font-size: 13px;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px){
  .gg-h2{ font-size: 44px; }
  .gg-bestseller__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* =========================
   BESTSELLER (tylko ta sekcja)
========================= */

.gg-bestseller{
  padding: 70px 0;
  background: #f5f1ec;
}

/* kontener (żeby nie rozjeżdżało się na full width) */
.gg-bestseller .gg-container{
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.gg-bestseller .gg-h2{
  margin: 0 0 34px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 900;
  color: #111;
}

.gg-bestseller .gg-center{ text-align:center; }
.gg-bestseller .gg-gold{ color:#b79b62; }

/* GRID */
.gg-bestseller .gg-bestseller__grid{
  display:grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 36px !important;
  align-items: stretch !important;
}

/* KARTA */
.gg-bestseller .gg-card{
  background:#d9d9d9 !important;
  border-radius:28px !important;
  padding:18px !important;
  display:flex !important;
  flex-direction:column !important;
  height:560px !important;
  overflow:hidden !important;
}

/* MEDIA */
.gg-bestseller .gg-card__media{ text-decoration:none !important; display:block !important; }
.gg-bestseller .gg-card__mediaInner{
  background:#eeeeee !important;
  border-radius:22px !important;
  padding:16px !important;
  height:300px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.gg-bestseller .gg-card__img,
.gg-bestseller .gg-card__mediaInner img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  border-radius:18px !important;
  display:block !important;
}
.gg-bestseller .gg-card__ph{
  width:100%;
  height:100%;
  border-radius:18px;
  background: rgba(0,0,0,.06);
}

/* BODY */
.gg-bestseller .gg-card__body{
  padding:18px 10px 6px !important;
  display:flex !important;
  flex-direction:column !important;
  flex:1 !important;
}
.gg-bestseller .gg-card__name{
  color:#111 !important;
  text-decoration:none !important;
  font-size:16px !important;
  font-weight:700 !important;
  line-height:1.25 !important;
  display:-webkit-box !important;
  -webkit-line-clamp:2 !important;
  -webkit-box-orient:vertical !important;
  overflow:hidden !important;
  min-height:40px !important;
}

.gg-bestseller .gg-card__type{
  color:#111 !important;
  font-size:28px !important;
  font-weight:500 !important;
  line-height:1.1 !important;
  margin-top:10px !important;
  min-height:32px !important;
}

/* DÓŁ */
.gg-bestseller .gg-card__bottom{
  margin-top:auto !important;
  display:flex !important;
  flex-direction:column !important;
  gap:12px !important;
  padding-top:14px !important;
}

.gg-bestseller .gg-card__price,
.gg-bestseller .gg-card__price *{
  color:#111 !important;
  font-size:22px !important;
  font-weight:800 !important;
  line-height:1 !important;
  white-space:nowrap !important;
}

.gg-bestseller .gg-card__bottomRow{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:12px !important;
}

.gg-bestseller .gg-cta{
  background:#b79b62 !important;
  color:#fff !important;
  border:0 !important;
  border-radius:999px !important;
  padding:7px 12px !important;
  font-size:11px !important;
  font-weight:800 !important;
  cursor:pointer !important;
  white-space:nowrap !important;
}

.gg-bestseller .gg-rating{
  display:flex !important;
  align-items:center !important;
  gap:6px !important;
  white-space:nowrap !important;
}
.gg-bestseller .gg-stars{
  color:#b79b62 !important;
  font-size:12px !important;
  letter-spacing:.5px !important;
  line-height:1 !important;
}
.gg-bestseller .gg-score{
  color:#111 !important;
  font-size:14px !important;
  font-weight:700 !important;
  line-height:1 !important;
}

/* CTA pod gridem */
.gg-bestseller .bestseller__cta{
  display:flex;
  justify-content:center;
  margin-top:34px;
}
.gg-bestseller .bestseller__ctaBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  background:#b79b62;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
}

/* Responsive */
@media (max-width: 1024px){
  .gg-bestseller .gg-h2{ font-size:44px; }
  .gg-bestseller .gg-bestseller__grid{
    grid-template-columns:1fr !important;
  }
  .gg-bestseller .gg-card{ height:auto !important; }
  .gg-bestseller .gg-card__mediaInner{ height:320px !important; }
}

/* ============================
   MOBILE NAV FIX (header)
   ============================ */
@media (max-width: 820px){
  .header-inner{
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
  }

  .nav{
    justify-self: end;
  }

  /* pokaż hamburger */
  .nav__toggle{
    display: inline-grid !important;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.18);
    background: transparent;
    color:#fff;
    cursor:pointer;
  }

  /* dropdown lista */
  .nav__list{
    position: fixed;
    top: var(--header-h, 72px);
    left: 0;
    right: 0;
    background: rgba(0,0,0,.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.10);

    margin: 0;
    padding: 14px 18px 18px;
    list-style: none;

    display: grid;
    gap: 8px;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 7000;
  }

  .nav__link{
    display:block;
    width:100%;
    padding: 14px 12px;
    border-radius: 14px;
  }
  .nav__link:hover{
    background: rgba(255,255,255,.06);
  }

  /* stan otwarty */
  .nav.is-open .nav__list{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ============================
   FOOTER MOBILE CENTERING
   ============================ */
@media (max-width: 980px){
  .footer__main{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    text-align: center !important;
    justify-items: center !important;
    padding: 64px 0 40px !important;
  }

  .footer__nav{
    margin-left: 0 !important;
    align-items: center !important;
  }

  .footer__right{
    align-items: center !important;
  }

  .footer__social{
    justify-content: center !important;
  }

  .footer__btn{
    width: min(320px, 92vw);
    justify-content: center;
  }
}

/* ============================
   WHY SECTION MOBILE (padding + układ)
   ============================ */
.why{
  padding: clamp(44px, 6vw, 90px) 0;
}

@media (max-width: 980px){
  .why__grid{
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .why__right{
    text-align: left;
  }

  .why__cta .btn{
    width: fit-content;
  }
}

@media (max-width: 520px){
  .why{
    padding: 40px 0 !important;
  }

  .why__title{
    font-size: 28px !important;
    line-height: 1.15 !important;
  }

  .why__text{
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .why__cta{
    margin-top: 14px;
  }

  .why__cta .btn{
    width: 100%;
    justify-content: center;
  }
}

/* === HARD FIX MOBILE MENU === */
@media (max-width: 820px){

  /* header zawsze klikalny */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 99999 !important;
  }

  /* hamburger zawsze nad wszystkim */
  .nav__toggle{
    position: relative;
    z-index: 100000 !important;
    pointer-events: auto !important;
  }

  /* menu dropdown: wymuszamy render (bez display:none) */
  .nav__list{
    position: fixed !important;
    top: var(--header-h, 72px) !important;
    left: 0 !important;
    right: 0 !important;

    display: grid !important;        /* <<< kluczowe */
    visibility: hidden !important;   /* zamiast display:none */
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    pointer-events: none !important;

    margin: 0 !important;
    padding: 14px 18px 18px !important;
    list-style: none !important;

    background: rgba(0,0,0,.94) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.10);
    gap: 8px;

    z-index: 100001 !important;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .nav.is-open .nav__list{
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* ===== FIX: warstwy tła/hero NIE mogą przechwytywać klików ===== */
.bg-gradient,
.bg-gradient *{
  pointer-events: none !important;
}

/* jeśli video/overlay też przykrywa header */
.hero__video,
.hero__overlay{
  pointer-events: none !important;
}

/* ===== FIX: menu mobilne zawsze nad wszystkim ===== */
@media (max-width: 820px){
  .site-header{
    position: sticky;
    top: 0;
    z-index: 99999 !important;
  }

  .nav__toggle{
    position: relative;
    z-index: 100000 !important;
    pointer-events: auto !important;
  }

  .nav__list{
    position: fixed !important;
    top: var(--header-h, 72px) !important;
    left: 0 !important;
    right: 0 !important;

    display: grid !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    pointer-events: none !important;

    margin: 0 !important;
    padding: 14px 18px 18px !important;
    list-style: none !important;

    background: rgba(0,0,0,.94) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.10);
    gap: 8px;

    z-index: 100001 !important;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .nav.is-open .nav__list{
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* ===== CONTACT MODAL (dark / gold) ===== */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  padding: 24px;
}

/* panel */
.contact-modal-content {
  width: min(520px, 92vw);
  background: #0b0b0b;              /* dark */
  color: #ffffff;                   /* text visible */
  border: 1px solid rgba(201, 163, 92, 0.35); /* gold-ish */
  border-radius: 16px;
  padding: 34px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  transition: 180ms ease;
}

/* state open animation */
.contact-modal.is-open .contact-modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* title */
.contact-modal-content h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* lines */
.contact-modal-content p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

.contact-modal-content strong {
  color: #c9a35c; /* gold accent */
  font-weight: 700;
}

/* links */
.contact-modal-content a {
  color: #c9a35c;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,163,92,0.35);
}
.contact-modal-content a:hover {
  border-bottom-color: rgba(201,163,92,0.75);
}

/* close button */
.close-modal {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  cursor: pointer;
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 22px;
  line-height: 1;
  transition: 160ms ease;
}
.close-modal:hover {
  background: rgba(201,163,92,0.10);
  border-color: rgba(201,163,92,0.35);
}

/* optional: subtle top accent line */
.contact-modal-content::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,163,92,0.9), transparent);
  opacity: 0.9;
  border-radius: 2px;
}

/* ===== Header Search (dark/gold) ===== */
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  position: relative;
}

.icon-btn{
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.92);
  cursor: pointer;
  display:grid;
  place-items:center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  transition: 160ms ease;
}
.icon-btn:hover{
  background: rgba(255,255,255,.06);
}

/* search form hidden by default (desktop) */
.header-search{
  display:flex;
  align-items:center;
  gap:10px;
  width: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: width 200ms ease, opacity 200ms ease;
}

.header-search.is-open{
  width: min(360px, 46vw);
  opacity: 1;
  pointer-events: auto;
}

.header-search__input{
  flex: 1;
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(201,163,92,.35);
  background: rgba(0,0,0,.55);
  color: #fff;
  outline: none;
}
.header-search__input::placeholder{
  color: rgba(255,255,255,.55);
}

.header-search__input:focus{
  border-color: rgba(201,163,92,.7);
  box-shadow: 0 0 0 4px rgba(201,163,92,.12);
}

.header-search__submit{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(201,163,92,.35);
  background: rgba(201,163,92,.10);
  color: #c9a35c;
  cursor: pointer;
  display:grid;
  place-items:center;
  transition: 160ms ease;
}
.header-search__submit:hover{
  background: rgba(201,163,92,.18);
  border-color: rgba(201,163,92,.55);
}

/* accessibility helper */
.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* mobile: show as dropdown under header actions */
@media (max-width: 820px){
  .header-search{
    position:absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(92vw, 420px);
    padding: 10px;
    border-radius: 16px;
    background: rgba(0,0,0,.85);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 50px rgba(0,0,0,.55);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: 180ms ease;
  }

  .header-search.is-open{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-search__input{
    width: 100%;
  }
}

/* =========================================================
   HEADER + MOBILE MENU — FINAL FIX (wkleić na sam koniec)
   Naprawia konflikty z wcześniejszymi regułami.
========================================================= */

/* zawsze klikalny header ponad tłem */
.site-header{ z-index: 99999 !important; }
.site-header *{ pointer-events: auto; }

/* --- MOBILE --- */
@media (max-width: 820px){

  /* 1) hamburger widoczny */
  .nav__toggle{
    display: inline-grid !important;
    place-items: center !important;
    z-index: 100000 !important;
    position: relative !important;
  }

  /* 2) NIE ukrywaj całego nav (masz wcześniej .nav{display:none} na mobile) */
  .nav{
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }

  /* 3) lista jako dropdown pod headerem */
  .nav__list{
    position: fixed !important;
    top: var(--header-h, 68px) !important;
    left: 0 !important;
    right: 0 !important;

    background: rgba(0,0,0,.94) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255,255,255,.10) !important;

    margin: 0 !important;
    padding: 14px 18px 18px !important;
    list-style: none !important;

    display: grid !important;
    gap: 8px !important;

    /* zamknięte */
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    pointer-events: none !important;

    z-index: 100001 !important;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease !important;
  }

  /* otwarte (JS dodaje .is-open do .nav i/lub .nav__list) */
  .nav.is-open .nav__list,
  .nav__list.is-open{
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  /* linki 100% szerokości */
  .nav__item{ width: 100% !important; }
  .nav__link{
    display: block !important;
    width: 100% !important;
    padding: 14px 10px !important;
    border-radius: 14px !important;
  }
  .nav__link:hover{ background: rgba(255,255,255,.06) !important; }
  .nav__link::after{ display:none !important; }

  /* 4) Mega menu w mobile ma się rozwijać w środku listy */
  .mega{
    position: static !important;
    width: auto !important;
    background: transparent !important;
    border: 0 !important;
    padding-top: 0 !important;
    display: none !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
  .nav__item--mega.is-open .mega{ display:block !important; }

  /* 5) blokada scrolla przy otwartym menu (JS dodaje body.nav-open) */
  body.nav-open{ overflow: hidden !important; }
}

.hero__logo{
  display: flex;
  align-items: center;
}

.hero__logo-img{
  max-width: 320px; /* dopasuj do layoutu */
  width: 100%;
  height: auto;
  display: block;
}

/* responsive */
@media (max-width: 820px){
  .hero__logo-img{
    max-width: 220px;
  }
}

/* Footer language pills – hard fallback */
.footer__lang{ display:flex; gap:10px; align-items:center; }
.footer__langLink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:30px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.78);
  text-decoration:none;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.footer__langLink:hover{
  color:#fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
}
.footer__langLink.is-active{
  color:#000;
  background: var(--gold, #d3b36a);
  border-color: rgba(0,0,0,.08);
}

/* =========================
   CATS FULL — IMG IN HTML (LS SAFE)
   ========================= */
.catsFull{
  width: 100vw;
  height: 100vh;
}

.catsFull__grid{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.catsFull__tile{
  position: relative;
  overflow: hidden;
  display: block;
  background: #000;
  text-decoration: none;
}

.catsFull__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.35);   /* zoom żeby nie było pasów */
  transform-origin: center;
}

.catsFull__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.catsFull__overlay--dark{
  background: rgba(0,0,0,.35);
}

.catsFull__overlay--gold{
  background: rgba(179,148,94,.55);
}

.catsFull__label{
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 12px;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
}

/* mobile */
@media (max-width: 820px){
  .catsFull__grid{
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 25vh);
  }
  .catsFull{
    height: auto;
  }
}

.wc-netto{
  font-size: 12px;
  opacity: .7;
  margin-left: 4px;
  white-space: nowrap;
  font-weight: 600;
}

/* ============================
   FIX: 768px nachodzenie na stopkę
   (wkleić NA SAM KONIEC pliku)
   ============================ */

/* 1) Gradient ma być prawdziwym tłem */
.bg-gradient{ 
  z-index: -1 !important;
}

/* 2) Z-indexy: tylko header ma być najwyżej.
   Reszta NIE powinna mieć 999, bo robi stacking + overlap */
main, section, footer{
  position: relative;
  z-index: auto !important;
}

/* Header zostaje nad wszystkim */
.site-header{
  z-index: 99999 !important;
}

/* 3) Footer na pewno nad tłem, ale bez zabawy w 999 */
.footer{
  position: relative;
  z-index: 10;
}

/* 4) KLUCZ: usuń 100vh z EQUIP na mobile/tablet */
@media (max-width: 980px){
  .equip__wrap{
    height: auto !important;
    padding-top: 48px !important;
  }

  /* daj realny oddech przed stopką */
  .equip{
    padding-bottom: 96px !important;
  }

  /* footer niech nie wymusza wielkiej wysokości */
  .footer__main{
    min-height: auto !important;
  }
}

/* 5) jeśli nadal minimalnie dotyka na 768 */
@media (max-width: 820px){
  .equip{
    padding-bottom: 120px !important;
  }
}