/* =========================================================
   JURASSIC GYMS — modern outdoor gym
   Palette: charcoal + orange #ec7a1c + cream #e6e4e0
   ========================================================= */

:root {
  --dark: #1b1b1e;
  --dark-2: #26262a;
  --dark-3: #121214;
  --sand: #e6e4e0;
  --sand-2: #f4f3f0;
  --white: #fcfbf9;
  --orange: #ec7a1c;
  --orange-2: #ff9a45;
  --grey: #6b6b72;
  --grey-2: #a7a7ae;
  --orange-deep: #a04b08;

  --font-head: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 20px 60px -20px rgba(0,0,0,.28);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: var(--dark);
  background: var(--sand-2);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-head); line-height: 1; letter-spacing: .01em; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--orange); color: #fff; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section--dark { background: var(--dark); color: var(--sand); }
.section--dark .h2 { color: var(--white); }
.section--sand { background: var(--sand); }

.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.section__note { color: var(--grey); font-size: .9rem; margin: 0; }

.h2 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 800; text-transform: uppercase; margin-bottom: 1.2rem; }
.h3 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 700; text-transform: uppercase; color: var(--white); }
.accent { color: var(--orange); }
.section:not(.section--dark) .accent { color: var(--orange-deep); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--orange-deep);
  margin-bottom: 1rem;
}
.eyebrow--light, .hero .eyebrow { color: var(--orange-2); }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(236,122,28,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(236,122,28,.6); } 70% { box-shadow: 0 0 0 12px rgba(236,122,28,0); } 100% { box-shadow: 0 0 0 0 rgba(236,122,28,0); } }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  overflow: hidden; isolation: isolate; white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform .6s var(--ease);
}
.btn:hover::after { transform: translateX(100%); }
.btn:hover { transform: translateY(-3px); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.15rem; }
.btn--primary { background: var(--orange); color: var(--dark); box-shadow: 0 10px 30px -10px rgba(236,122,28,.7); }
.btn--primary:hover { box-shadow: 0 18px 40px -12px rgba(236,122,28,.8); background: var(--orange-2); }
.btn--ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.2); }
.btn--outline-light { border: 1.5px solid var(--grey-2); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__mark { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem, 8vw, 5rem); letter-spacing: .06em; color: var(--white); display: flex; gap: .3em; overflow: hidden; }
.loader__mark span { display: block; animation: slideUp .8s var(--ease) both; }
.loader__mark span:last-child { color: var(--orange); animation-delay: .1s; }
@keyframes slideUp { from { transform: translateY(110%); } to { transform: translateY(0); } }
.loader__bar { width: 160px; height: 3px; background: rgba(255,255,255,.12); border-radius: 3px; overflow: hidden; }
.loader__bar i { display: block; height: 100%; width: 40%; background: var(--orange); border-radius: 3px; animation: loadbar 1.1s var(--ease) infinite; }
@keyframes loadbar { 0% { transform: translateX(-100%); } 100% { transform: translateX(260%); } }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1rem 0; transition: padding .4s var(--ease);
}
.header::before {
  content: ''; position: absolute; inset: 0; background: rgba(27,27,30,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  opacity: 0; transition: opacity .4s; z-index: -1; border-bottom: 1px solid rgba(255,255,255,.06);
}
.header.is-scrolled { padding: .5rem 0; }
.header.is-scrolled::before, .header.is-solid::before { opacity: 1; }
.header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem; }

.logo { display: inline-flex; align-items: center; color: var(--white); position: relative; z-index: 102; }
.logo__text { font-family: var(--font-head); font-weight: 800; font-size: 1.85rem; letter-spacing: .04em; text-transform: uppercase; }
.logo__text b { color: var(--orange); font-weight: 800; }

/* Desktop nav: pill with links in the middle column, actions in the right column */
.nav { display: contents; }
.nav__list {
  display: flex; align-items: center; gap: .1rem; width: fit-content; margin: 0 auto; padding: .3rem;
  border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nav__link {
  display: block; padding: .55rem 1.05rem; border-radius: 999px; white-space: nowrap;
  color: var(--sand); font-weight: 600; font-size: .92rem; letter-spacing: .01em;
  transition: background .3s, color .3s;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav__link.is-active { color: var(--dark); background: var(--sand); }
.nav__actions { display: flex; align-items: center; gap: .7rem; }
.nav__cta { padding: .62rem 1.2rem; font-size: .95rem; }
.nav__foot { display: none; }

/* Language: segmented EN | PL, current one filled */
.lang { display: inline-flex; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); }
.lang__opt {
  padding: .42rem .7rem; border-radius: 999px; line-height: 1;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem; letter-spacing: .12em; color: var(--grey-2);
  transition: background .3s, color .3s;
}
.lang__opt:hover { color: #fff; }
.lang__opt.is-current { background: var(--orange); color: var(--dark); }

.burger { display: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.08); flex-direction: column; align-items: center; justify-content: center; gap: 5px; position: relative; z-index: 102; }
.burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Compact desktop (1100–1280): tighter pill */
@media (max-width: 1280px) {
  .nav__link { padding: .5rem .8rem; font-size: .88rem; }
  .nav__cta { padding: .58rem 1rem; font-size: .9rem; }
  .header__inner { gap: 1rem; }
}

/* Mobile / tablet: full-screen menu */
@media (max-width: 1100px) {
  .header__inner { grid-template-columns: 1fr auto; }
  .nav {
    display: flex; flex-direction: column; position: fixed; inset: 0; z-index: 101;
    background: var(--dark-3); padding: 6rem clamp(1.25rem, 6vw, 3rem) 2rem; overflow-y: auto;
    transform: translateX(100%); visibility: hidden;
  }
  .nav.is-ready { transition: transform .55s var(--ease), visibility .55s; }
  .nav.is-open { transform: none; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; width: 100%; margin: 0; padding: 0; gap: 0; background: none; border: 0; backdrop-filter: none; counter-reset: navn; }
  .nav__list li { counter-increment: navn; border-bottom: 1px solid rgba(255,255,255,.08); opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .nav.is-open .nav__list li { opacity: 1; transform: none; }
  .nav.is-open .nav__list li:nth-child(1) { transition-delay: .12s; }
  .nav.is-open .nav__list li:nth-child(2) { transition-delay: .17s; }
  .nav.is-open .nav__list li:nth-child(3) { transition-delay: .22s; }
  .nav.is-open .nav__list li:nth-child(4) { transition-delay: .27s; }
  .nav.is-open .nav__list li:nth-child(5) { transition-delay: .32s; }
  .nav.is-open .nav__list li:nth-child(6) { transition-delay: .37s; }
  .nav__link { display: flex; align-items: baseline; gap: 1rem; padding: 1rem 0; border-radius: 0; background: none !important; color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 6vw, 2.6rem); text-transform: uppercase; letter-spacing: .02em; }
  .nav__link::before { content: counter(navn, decimal-leading-zero); font-family: var(--font-body); font-size: .75rem; font-weight: 700; letter-spacing: .15em; color: var(--orange); min-width: 1.6rem; }
  .nav__link:hover, .nav__link.is-active { color: var(--orange); }
  .nav__actions { margin-top: auto; padding-top: 2rem; flex-direction: column; align-items: stretch; gap: .9rem; opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease) .42s, transform .5s var(--ease) .42s; }
  .nav.is-open .nav__actions { opacity: 1; transform: none; }
  .nav__cta { order: -1; width: 100%; padding: 1rem; font-size: 1.1rem; }
  .lang { display: grid; grid-template-columns: 1fr 1fr; width: 100%; padding: 4px; }
  .lang__opt { text-align: center; padding: .75rem; font-size: 1rem; }
  .nav__foot { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; margin: 1.2rem 0 0; font-size: .9rem; color: var(--grey-2); }
  .nav__foot a:hover { color: var(--orange); }
  .burger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--white); overflow: hidden; padding: 7rem 0 5rem;
}
.hero__media { position: absolute; inset: -10% 0; z-index: 0; will-change: transform; }
.hero__video { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(18,18,20,.92) 0%, rgba(18,18,20,.7) 45%, rgba(18,18,20,.3) 100%),
    linear-gradient(180deg, rgba(18,18,20,.55) 0%, transparent 30%, rgba(18,18,20,.9) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 900px; }
.hero__title {
  font-size: clamp(3.4rem, 10.5vw, 8.2rem); font-weight: 800; text-transform: uppercase; line-height: .92; margin: .5rem 0 1.5rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .word { display: block; transform: translateY(110%); animation: wordUp 1s var(--ease) forwards; }
.hero__title .line:nth-child(1) .word { animation-delay: .35s; }
.hero__title .line:nth-child(2) .word { animation-delay: .45s; }
.hero__title .line:nth-child(3) .word { animation-delay: .55s; }
.hero__title .line:nth-child(4) .word { animation-delay: .65s; }
@keyframes wordUp { to { transform: translateY(0); } }
.hero__lead { max-width: 560px; font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--sand); margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: 2rem 3rem; margin-top: 3.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15); width: fit-content;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-head); font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; color: var(--orange); line-height: 1; }
.hero__stats li > span { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-2); margin-top: .3rem; }

.hero__scroll { position: absolute; left: 50%; bottom: 2rem; z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; transform: translateX(-50%); }
.hero__scroll span { position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--orange); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee { background: var(--orange); color: var(--dark); overflow: hidden; padding: .9rem 0; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; letter-spacing: .12em; text-transform: uppercase; }
.marquee__track { display: flex; gap: 2.5rem; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track i { font-style: normal; color: var(--orange-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about__text p { color: #4b4b52; }
.about__text em { color: var(--orange-deep); font-style: italic; }
.about__pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.pill { padding: .45rem 1rem; border-radius: 999px; background: var(--white); border: 1px solid var(--grey-2); font-size: .85rem; font-weight: 600; color: var(--dark); transition: background .3s, color .3s, transform .3s var(--ease); }
.pill:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

.about__visual { position: relative; }
.photo-card { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; transform-style: preserve-3d; transition: transform .5s var(--ease); }
.photo-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform 1.2s var(--ease); }
.photo-card:hover img { transform: scale(1.05); }
.photo-card figcaption { position: absolute; left: 1.2rem; bottom: 1.2rem; padding: .5rem 1rem; border-radius: 999px; background: rgba(27,27,30,.85); backdrop-filter: blur(8px); color: var(--white); font-size: .82rem; font-weight: 600; }
.about__badge {
  position: absolute; right: -1rem; top: -1.5rem; background: var(--orange); color: var(--dark);
  padding: 1.1rem 1.4rem; border-radius: 18px; display: flex; align-items: center; gap: .9rem; box-shadow: 0 20px 40px -15px rgba(236,122,28,.7);
}
.about__badge strong { font-family: var(--font-head); font-size: 3rem; font-weight: 800; line-height: 1; }
.about__badge span { font-size: .8rem; font-weight: 700; line-height: 1.25; text-transform: uppercase; letter-spacing: .05em; }

.float { animation: floatY 5s ease-in-out infinite; }
.float-slow { animation: floatY 7s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Devices ---------- */
.devices { overflow: hidden; }
.device { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; padding: clamp(2rem, 5vw, 4rem) 0; }
.device + .device { border-top: 1px solid rgba(255,255,255,.08); }
.device--reverse .device__media { order: 2; }
.device__media { position: relative; display: grid; place-items: center; min-height: 320px; }
.device__media img { position: relative; z-index: 1; max-height: 460px; width: auto; max-width: 100%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); }
.device__num { font-family: var(--font-head); font-size: 5rem; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--grey); display: block; margin-bottom: .5rem; }
.device__body p { color: var(--grey-2); }
.device__body .h3 { margin-bottom: 1rem; }

.checklist { display: grid; gap: .7rem; margin: 1.5rem 0 2rem; }
.checklist li { position: relative; padding-left: 2rem; color: var(--sand); }
.checklist li::before { content: ''; position: absolute; left: 0; top: .35em; width: 18px; height: 18px; border-radius: 50%; background: var(--orange); }
.checklist li::after { content: ''; position: absolute; left: 5px; top: calc(.35em + 4px); width: 7px; height: 4px; border-left: 2px solid var(--dark); border-bottom: 2px solid var(--dark); transform: rotate(-45deg); }

.quote { border-left: 3px solid var(--orange); padding: .5rem 0 .5rem 1.2rem; margin: 1.5rem 0; }
.quote p { margin: 0; font-size: 1.1rem; color: var(--white); font-style: italic; }
.quote strong { color: var(--orange); }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.why__sticky { position: sticky; top: 7rem; }
.why__sticky p { color: #4b4b52; }
.why__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.icon-card {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem; border: 1px solid rgba(27,27,30,.09);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
}
.icon-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--orange); }
.icon-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--sand); display: grid; place-items: center; margin-bottom: 1.2rem; color: var(--orange-deep); transition: background .3s, color .3s, transform .5s var(--ease); }
.icon-card:hover .icon-card__icon { background: var(--orange); color: var(--dark); transform: rotate(-6deg); }
.icon-card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-card h3 { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin-bottom: .5rem; }
.icon-card p { margin: 0; font-size: .95rem; color: #4b4b52; }

/* ---------- Compare ---------- */
.compare__images { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; max-width: 900px; margin: 0 auto 3rem; }
.compare__img { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--white); position: relative; box-shadow: var(--shadow); }
.compare__img img { aspect-ratio: 1; object-fit: contain; padding: 1rem; transition: transform .8s var(--ease); }
.compare__img:hover img { transform: scale(1.06); }
.compare__img figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: .7rem 1rem; text-align: center; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .95rem; }
.compare__img--ive figcaption { background: var(--orange); color: var(--dark); }
.compare__img--std figcaption { background: var(--grey); color: var(--white); }
.compare__vs { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--orange-deep); width: 72px; height: 72px; border-radius: 50%; background: var(--white); display: grid; place-items: center; box-shadow: var(--shadow); }

.compare__table { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.compare__row { display: grid; grid-template-columns: 1fr 1fr; }
.compare__row + .compare__row { border-top: 1px solid rgba(27,27,30,.09); }
.compare__cell { padding: 1.2rem 1.5rem; font-size: .95rem; position: relative; padding-left: 3rem; transition: background .3s; }
.compare__cell--ive { color: var(--dark); }
.compare__cell--std { color: var(--grey); background: var(--sand-2); }
.compare__row:not(.compare__row--head) .compare__cell::before { position: absolute; left: 1.4rem; top: 1.25rem; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: .7rem; font-weight: 800; }
.compare__row:not(.compare__row--head) .compare__cell--ive::before { content: '✓'; background: var(--orange); color: var(--dark); }
.compare__row:not(.compare__row--head) .compare__cell--std::before { content: '✕'; background: var(--grey-2); color: var(--white); }
.compare__row:hover .compare__cell--ive { background: rgba(236,122,28,.08); }
.compare__row--head .compare__cell { padding-left: 1.5rem; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; letter-spacing: .06em; }
.compare__row--head .compare__cell--ive { background: var(--orange); color: var(--dark); }
.compare__row--head .compare__cell--std { background: var(--grey); color: var(--white); }

/* ---------- Benefits ---------- */
.benefits { overflow: hidden; }

/* ---------- App ---------- */
.app { background: linear-gradient(180deg, var(--sand-2), var(--sand)); overflow: hidden; }
.app__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.app__text p { color: #4b4b52; }
.app__phone { position: relative; display: grid; place-items: center; padding: 2rem 0; }

.phone {
  position: relative; width: 290px; aspect-ratio: 9/18.5; border-radius: 42px; background: var(--dark-3);
  padding: 12px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.6), inset 0 0 0 2px rgba(255,255,255,.08);
  transform: rotate(-4deg); transition: transform .8s var(--ease);
}
.app__phone:hover .phone { transform: rotate(0deg) scale(1.02); }
.phone__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 90px; height: 24px; background: var(--dark-3); border-radius: 0 0 16px 16px; z-index: 2; }
.phone__screen { height: 100%; border-radius: 32px; background: linear-gradient(180deg, #2c2c31, #1b1b1e); color: var(--white); padding: 2.4rem 1.1rem 1rem; display: flex; flex-direction: column; gap: .9rem; overflow: hidden; }
.phone__top { display: flex; justify-content: space-between; align-items: center; }
.phone__logo { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.phone__logo b { color: var(--orange); }
.phone__avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-deep)); }
.phone__greet { font-size: .8rem; color: var(--grey-2); margin: 0; line-height: 1.4; }
.phone__greet strong { color: var(--white); font-size: 1rem; }
.phone__ring { position: relative; width: 120px; margin: 0 auto; }
.phone__ring svg { width: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,.1); stroke-width: 8; }
.ring-fg { fill: none; stroke: var(--orange); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; transition: stroke-dashoffset 1.6s var(--ease) .4s; }
.is-visible .ring-fg { stroke-dashoffset: 92; }
.phone__ring-label { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; line-height: 1; }
.phone__ring-label strong { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; }
.phone__ring-label span { font-size: .65rem; color: var(--grey-2); text-transform: uppercase; letter-spacing: .08em; }
.phone__list { display: grid; gap: .45rem; }
.phone__item { display: flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.06); padding: .55rem .7rem; border-radius: 10px; font-size: .72rem; }
.phone__item i { width: 8px; height: 8px; border-radius: 50%; background: var(--grey); }
.phone__item span { flex: 1; }
.phone__item b { color: var(--orange); }
.phone__item--active { background: rgba(236,122,28,.18); border: 1px solid rgba(236,122,28,.5); }
.phone__item--active i { background: var(--orange); box-shadow: 0 0 0 4px rgba(236,122,28,.25); }
.phone__tabs { margin-top: auto; display: flex; justify-content: space-around; font-size: .65rem; text-transform: uppercase; letter-spacing: .06em; color: var(--grey-2); padding-top: .5rem; border-top: 1px solid rgba(255,255,255,.08); }
.phone__tabs .on { color: var(--orange); }
.app__float { position: absolute; padding: .6rem 1rem; border-radius: 999px; background: var(--white); box-shadow: var(--shadow); font-size: .82rem; font-weight: 700; white-space: nowrap; }
.app__float--1 { top: 12%; right: 0; }
.app__float--2 { bottom: 14%; left: 0; }

.feature-list { display: grid; gap: .6rem; margin-top: 1.5rem; }
.feature-list li { display: flex; align-items: center; gap: 1rem; background: var(--white); border-radius: var(--radius-sm); padding: .9rem 1.1rem; border: 1px solid rgba(27,27,30,.09); transition: transform .4s var(--ease), border-color .3s; }
.feature-list li:hover { transform: translateX(6px); border-color: var(--orange); }
.feature-list__n { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--orange); width: 2rem; }
.feature-list div { display: flex; flex-direction: column; line-height: 1.35; }
.feature-list strong { font-size: .98rem; }
.feature-list div span { font-size: .85rem; color: var(--grey); }

/* ---------- Quality ---------- */
.quality__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.2rem; }
.q-card { background: var(--white); border-radius: var(--radius); padding: 2rem 1.6rem; border: 1px solid rgba(27,27,30,.09); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.q-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.q-card__big { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem, 4vw, 3.4rem); line-height: 1; color: var(--orange-deep); margin-bottom: .8rem; }
.q-card h3 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: .5rem; }
.q-card p { margin: 0; font-size: .92rem; color: #4b4b52; }
.q-card--accent { background: var(--dark); color: var(--sand); border-color: var(--dark); }
.q-card--accent .q-card__big { color: var(--orange); }
.q-card--accent h3 { color: var(--white); }
.q-card--accent p { color: var(--grey-2); }

/* ---------- Gyms slider ---------- */
.gyms { overflow: hidden; }
.gyms__slider { cursor: grab; user-select: none; }
.gyms__slider.is-dragging { cursor: grabbing; }
.gyms__track {
  display: flex; gap: 1.2rem; padding: 0 max(1.25rem, calc((100vw - var(--container)) / 2)) 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline-start: max(1.25rem, calc((100vw - var(--container)) / 2)); scrollbar-width: none; scroll-behavior: smooth;
}
.gyms__track::-webkit-scrollbar { display: none; }
.gyms__slider.is-dragging .gyms__track { scroll-snap-type: none; scroll-behavior: auto; }
.gym-card { flex: 0 0 min(78vw, 380px); scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--dark); box-shadow: var(--shadow); }
.gym-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .5s; pointer-events: none; }
.gym-card:hover img { transform: scale(1.08); }
.gym-card__info { position: absolute; inset: auto 0 0 0; padding: 3rem 1.3rem 1.2rem; background: linear-gradient(180deg, transparent, rgba(18,18,20,.9)); color: var(--white); }
.gym-card__info span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-2); }
.gym-card__title { font-size: 1.7rem; text-transform: uppercase; }
.gyms__nav { display: flex; gap: .7rem; margin-top: 1rem; }
.arrow { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--grey-2); display: grid; place-items: center; transition: background .3s, color .3s, transform .3s var(--ease), border-color .3s; }
.arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.arrow:hover { background: var(--dark); color: var(--white); border-color: var(--dark); transform: scale(1.06); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--orange); color: var(--dark); padding: clamp(3rem, 6vw, 5rem) 0; position: relative; overflow: hidden; }
.cta-band::before { content: 'JURASSIC'; position: absolute; left: -2%; top: 50%; transform: translateY(-50%); font-family: var(--font-head); font-weight: 800; font-size: 22vw; line-height: 1; color: rgba(255,255,255,.12); pointer-events: none; white-space: nowrap; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; }
.cta-band .h2 { max-width: 700px; }
.cta-band .accent { color: var(--dark-3); }
.cta-band .btn--primary { background: var(--dark); color: var(--white); box-shadow: 0 10px 30px -10px rgba(0,0,0,.45); }
.cta-band .btn--primary:hover { background: var(--dark-3); }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.contact__info p { color: var(--grey-2); }
.contact__lines { display: grid; gap: .8rem; margin: 1.5rem 0 2rem; }
.contact__line { display: inline-flex; align-items: center; gap: .9rem; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--white); transition: color .3s; width: fit-content; }
.contact__line:hover { color: var(--orange); }
.contact__ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .3s; }
.contact__line:hover .contact__ico { background: var(--orange); color: var(--dark); }
.contact__ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact__addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.addr { font-size: .92rem; line-height: 1.6; color: var(--grey-2); padding: 1.2rem; border-radius: var(--radius-sm); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.addr__label { display: block; font-family: var(--font-head); font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); margin-bottom: .4rem; }
.addr strong { display: block; color: var(--white); margin-bottom: .2rem; }


/* ---------- Footer ---------- */
.footer { background: var(--dark-3); color: var(--grey-2); padding: 2.5rem 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.logo--footer .logo__text { font-size: 1.4rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: .3rem 1.4rem; font-size: .9rem; }
.footer__nav a { transition: color .3s; }
.footer__nav a:hover { color: var(--orange); }
.footer__copy { margin: 0; font-size: .82rem; }

.to-top { position: fixed; right: 1.4rem; bottom: 1.4rem; width: 50px; height: 50px; border-radius: 50%; background: var(--orange); color: var(--dark); display: grid; place-items: center; box-shadow: 0 10px 30px -10px rgba(236,122,28,.8); opacity: 0; transform: translateY(20px); transition: opacity .4s, transform .4s var(--ease), background .3s; z-index: 90; }
.to-top.is-visible { opacity: 1; transform: translateY(0); }
.to-top:hover { background: var(--white); }
.to-top svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Reveal animations ---------- */
.reveal, .reveal-scale { opacity: 0; transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
.reveal { transform: translateY(36px); }
.reveal-scale { transform: scale(.92) translateY(20px); }
.reveal.is-visible, .reveal-scale.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .why__grid, .app__grid, .contact__grid, .about__grid { grid-template-columns: 1fr; }
  .why__sticky { position: static; }
  .device, .device--reverse { grid-template-columns: 1fr; }
  .device--reverse .device__media { order: 0; }
  .device__media { min-height: 240px; }
  .device__media img { max-height: 340px; }
  .app__phone { order: 2; }
  .about__badge { right: 0; top: -1rem; padding: .8rem 1rem; }
  .about__badge strong { font-size: 2.2rem; }
}

@media (max-width: 820px) {

  .hero { padding: 6.5rem 0 4.5rem; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 2rem; width: 100%; }
  .hero__scroll { display: none; }
  .why__cards { grid-template-columns: 1fr; }
  .compare__images { grid-template-columns: 1fr; max-width: 360px; }
  .compare__vs { margin: 0 auto; }
  .compare__row { grid-template-columns: 1fr; }
  .compare__row--head { display: none; }
  .compare__cell--std { border-top: 1px dashed rgba(27,27,30,.18); }
  .contact__addresses { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .app__float--1 { right: -.5rem; }
  .app__float--2 { left: -.5rem; }
}

@media (max-width: 480px) {
  .btn--lg { padding: .9rem 1.5rem; font-size: 1.05rem; }
  .hero__actions .btn { flex: 1 1 100%; }
  .phone { width: 250px; }
  .about__badge { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-scale, .hero__title .word { opacity: 1; transform: none; }
  .loader { display: none; }
}

/* =========================================================
   SUBPAGES
   ========================================================= */
.btn--outline { border: 1.5px solid var(--dark); color: var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--white); }

/* ---------- Page hero ---------- */
.page-hero { position: relative; background: var(--dark); color: var(--sand); padding: clamp(8rem, 16vw, 11rem) 0 clamp(3.5rem, 6vw, 5rem); overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: auto 0 0 0; height: 1px; background: rgba(255,255,255,.08); }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .35; filter: grayscale(.2); }
.page-hero--gym::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,27,30,.55), rgba(27,27,30,.95)); }
.page-hero .container { position: relative; }
.page-hero__title { font-size: clamp(3rem, 8vw, 6.4rem); font-weight: 800; text-transform: uppercase; line-height: .95; color: var(--white); margin-bottom: 1.2rem; }
.page-hero__lead { max-width: 620px; color: var(--grey-2); font-size: clamp(1rem, 1.3vw, 1.15rem); margin: 0; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 1.2rem 2.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); }
.page-hero__meta li { display: flex; flex-direction: column; }
.page-hero__meta strong { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.page-hero__meta span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-2); margin-top: .3rem; }
.backlink { display: flex; width: fit-content; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .9rem; color: var(--grey-2); margin-bottom: 1.5rem; transition: color .3s, transform .3s var(--ease); }
.backlink svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.backlink:hover { color: var(--orange); transform: translateX(-4px); }

/* ---------- Gyms list ---------- */
.gyms-list__filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.filter { padding: .55rem 1.2rem; border-radius: 999px; border: 1.5px solid rgba(27,27,30,.15); font-family: var(--font-head); font-weight: 700; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; color: var(--dark); transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease); }
.filter:hover { transform: translateY(-2px); border-color: var(--dark); }
.filter.is-active { background: var(--dark); color: var(--white); border-color: var(--dark); }
.gyms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.gym-card--grid { flex: none; display: block; }
.gym-card.is-filtered-out { display: none; }

/* ---------- Gym detail ---------- */
.gym-banner { margin: 0 auto clamp(2.5rem, 5vw, 4rem); max-width: 900px; }
.gym-banner img { width: 100%; height: auto; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery--1 { grid-template-columns: 1fr; }
.gallery--2, .gallery--4 { grid-template-columns: repeat(2, 1fr); }
.gallery__item { display: block; position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; background: var(--dark); box-shadow: var(--shadow); }
.gallery--1 .gallery__item { aspect-ratio: 16/9; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .4s; }
.gallery__item::after { content: '+'; position: absolute; right: .8rem; bottom: .8rem; width: 38px; height: 38px; border-radius: 50%; background: var(--orange); color: var(--dark); font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; display: grid; place-items: center; opacity: 0; transform: scale(.6); transition: opacity .3s, transform .4s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; transform: scale(1); }

.gym-map__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.gym-map__info p { color: var(--grey-2); }
.map-embed { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--dark-2); box-shadow: var(--shadow); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.15) contrast(1.05); }

.pager { background: var(--sand); border-top: 1px solid rgba(27,27,30,.08); }
.pager__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; padding: 1.5rem 0; }
.pager__link { display: flex; flex-direction: column; gap: .15rem; transition: color .3s; }
.pager__link span { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: #5c5c63; }
.pager__link strong { font-family: var(--font-head); font-size: 1.4rem; text-transform: uppercase; font-weight: 700; transition: transform .35s var(--ease); display: inline-block; }
.pager__link--next { text-align: right; align-items: flex-end; }
.pager__link:hover strong { color: var(--orange); }
.pager__link--prev:hover strong { transform: translateX(-4px); }
.pager__link--next:hover strong { transform: translateX(4px); }
.pager__all { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(27,27,30,.2); display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s; }
.pager__all svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.pager__all:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(18,18,20,.94); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; padding: 4rem 5rem; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { margin: 0; max-width: 100%; max-height: 100%; text-align: center; transform: scale(.94); transition: transform .45s var(--ease); }
.lightbox.is-open .lightbox__figure { transform: scale(1); }
.lightbox__figure img { max-width: min(100%, 1400px); max-height: calc(100vh - 10rem); width: auto; height: auto; border-radius: var(--radius-sm); box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); margin: 0 auto; }
.lightbox__figure figcaption { color: var(--grey-2); font-size: .85rem; margin-top: 1rem; letter-spacing: .05em; }
.lightbox__close, .lightbox__nav { position: absolute; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--white); display: grid; place-items: center; transition: background .3s, color .3s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--orange); color: var(--dark); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 1.2rem; }
.lightbox__nav--next { right: 1.2rem; }
.lightbox svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Partners ---------- */
.logo-strip { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2.5rem; }
.logo-strip__item { height: 56px; padding: .7rem 1.1rem; border-radius: var(--radius-sm); background: var(--white); display: grid; place-items: center; transition: transform .35s var(--ease), box-shadow .35s; }
.logo-strip__item img { max-height: 100%; max-width: 120px; width: auto; object-fit: contain; }
.logo-strip__item:hover { transform: translateY(-4px); box-shadow: 0 12px 30px -12px rgba(236,122,28,.6); }
.logo-strip__item--dark { background: var(--dark-2); border: 1px solid rgba(255,255,255,.1); }
.partner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding: clamp(2.5rem, 5vw, 4.5rem) 0; scroll-margin-top: 6rem; }
.partner + .partner { border-top: 1px solid rgba(27,27,30,.08); }
.partner--reverse .partner__media { order: -1; }
.partner__logo { display: inline-flex; align-items: center; justify-content: center; height: 72px; padding: .8rem 1.2rem; border-radius: var(--radius-sm); background: var(--white); border: 1px solid rgba(27,27,30,.08); margin-bottom: 1.2rem; }
.partner__logo img { max-height: 100%; max-width: 220px; width: auto; object-fit: contain; }
.partner__logo--dark { background: var(--dark); border-color: var(--dark); }
.partner__name { color: var(--dark); margin-bottom: 1rem; }
.partner__body p { color: #4b4b52; }
.partner__body .btn { margin-top: .5rem; }
.partner__media.gallery--3 .gallery__item:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.partner__media.gallery--3 { grid-template-columns: repeat(2, 1fr); }
.partner__media.gallery--1 .gallery__item { aspect-ratio: 3/2; }

/* ---------- Contact page ---------- */
.contact-page .contact__line { color: var(--dark); }
.contact-page .contact__line:hover { color: var(--orange); }
.contact-page .contact__ico { background: var(--sand); }
.contact-page .contact__line:hover .contact__ico { background: var(--orange); }
.contact-page .contact__lines { margin-top: 0; }
.contact-page .addr { background: var(--white); border-color: rgba(27,27,30,.09); color: #4b4b52; }
.contact-page .addr strong { color: var(--dark); }
.contact__partners { margin-top: 2rem; }
.contact__links { display: flex; flex-wrap: wrap; gap: .6rem; }
.contact__links a { padding: .5rem 1rem; border-radius: 999px; border: 1.5px solid rgba(27,27,30,.15); font-weight: 600; font-size: .9rem; transition: background .3s, color .3s, border-color .3s; }
.contact__links a:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.contact-maps__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.map-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-card .map-embed { border-radius: 0; box-shadow: none; aspect-ratio: 16/10; }
.map-card__info { padding: 1.2rem 1.5rem; color: var(--grey); font-size: .92rem; }
.map-card__info strong { display: block; color: var(--dark); font-family: var(--font-head); font-size: 1.4rem; text-transform: uppercase; }

@media (max-width: 1024px) {
  .gyms-grid { grid-template-columns: repeat(2, 1fr); }
  .gym-map__grid, .partner, .contact-maps__grid { grid-template-columns: 1fr; }
  .partner--reverse .partner__media { order: 0; }
}
@media (max-width: 820px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery--1 { grid-template-columns: 1fr; }
  .lightbox { padding: 4rem 1rem; }
  .lightbox__nav { top: auto; bottom: 1.2rem; transform: none; }
  .pager__link strong { font-size: 1.1rem; }
}
@media (max-width: 560px) {
  .gyms-grid { grid-template-columns: 1fr; }
  .gallery, .partner__media.gallery--3 { grid-template-columns: 1fr; }
  .partner__media.gallery--3 .gallery__item:first-child { grid-column: auto; aspect-ratio: 4/3; }
  .logo-strip__item { height: 48px; padding: .5rem .8rem; }
  .logo-strip__item img { max-width: 90px; }
}

/* ---------- Contact card (form temporarily disabled) ---------- */
.contact-card { background: var(--white); color: var(--dark); border-radius: var(--radius); padding: clamp(1.8rem, 3.5vw, 2.8rem); box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; }
.contact-card__ico { width: 56px; height: 56px; border-radius: 16px; background: var(--orange); color: var(--dark); display: grid; place-items: center; margin-bottom: .6rem; }
.contact-card__ico svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-card .eyebrow { margin-bottom: 0; }
.contact-card__title { font-family: var(--font-head); font-size: clamp(1.7rem, 2.6vw, 2.2rem); font-weight: 700; text-transform: uppercase; line-height: 1.05; }
.contact-card__text { color: #4b4b52; margin: 0 0 1rem; }
.contact-card__btn { text-transform: none; letter-spacing: .02em; font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; max-width: 100%; }
.contact-card__btn span { overflow: hidden; text-overflow: ellipsis; }
.contact-card__alt { margin-top: .4rem; font-weight: 600; color: var(--grey); transition: color .3s; }
.contact-card__alt:hover { color: var(--orange); }
@media (max-width: 480px) { .contact-card__btn { width: 100%; font-size: .95rem; } }

/* ---------- Benefits: bento grid ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; position: relative; z-index: 1; }
.bento__card {
  grid-column: span 4; padding: 1.6rem; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  transition: transform .5s var(--ease), border-color .3s, background .3s;
}
.bento__card:hover { transform: translateY(-6px); border-color: rgba(236,122,28,.6); background: rgba(255,255,255,.06); }
.bento__card--stat { grid-row: span 2; display: flex; flex-direction: column; background: var(--orange); border-color: var(--orange); color: var(--dark); }
.bento__card--stat:hover { background: var(--orange-2); border-color: var(--orange-2); }
.bento__big { font-family: var(--font-head); font-weight: 800; font-size: clamp(6rem, 11vw, 10.5rem); line-height: .85; letter-spacing: -.02em; }
.bento__stat-label { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.3rem, 1.8vw, 1.7rem); line-height: 1.05; text-transform: uppercase; margin: .8rem 0 1rem; }
.bento__stat-text { color: rgba(27,27,30,.9); margin: 0 0 auto; }
.bento__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.bento__chips li { padding: .42rem .85rem; border-radius: 999px; background: rgba(27,27,30,.14); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.bento__head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.bento__icon { flex: none; width: 50px; height: 50px; border-radius: 14px; background: rgba(236,122,28,.14); color: var(--orange); display: grid; place-items: center; transition: transform .5s var(--ease), background .3s, color .3s; }
.bento__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bento__card:hover .bento__icon { background: var(--orange); color: var(--dark); transform: rotate(-8deg) scale(1.06); }
.bento__head h3 { font-size: 1.5rem; text-transform: uppercase; color: var(--white); line-height: 1; }
.bento__head div > span { display: block; margin-top: .3rem; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-2); }
.bento__list { margin: 0; padding: 0; list-style: none; }
.bento__list li { display: flex; align-items: baseline; gap: .8rem; padding: .6rem 0; border-top: 1px solid rgba(255,255,255,.07); color: var(--sand); font-weight: 500; font-size: .95rem; line-height: 1.4; }
.bento__list li:first-child { border-top: 0; }
.bento__list b { font-family: var(--font-head); font-weight: 800; font-size: .95rem; color: var(--orange); min-width: 1.6rem; }
@media (max-width: 1024px) {
  .bento__card { grid-column: span 6; }
  .bento__card--stat { grid-column: span 12; grid-row: auto; }
  .bento__stat-text { margin-bottom: 0; }
  .bento__chips { margin-top: 1.2rem; }
}
@media (max-width: 640px) {
  .bento__card { grid-column: span 12; padding: 1.3rem; }
  .bento__big { font-size: 5.5rem; }
}

/* ---------- Partner logos: size normalisation ---------- */
.logo-strip__item img { max-height: calc(34px * var(--s, 1)); max-width: 150px; width: auto; height: auto; }
.partner__logo img { max-height: calc(46px * var(--s, 1)); max-width: 220px; width: auto; height: auto; }

/* ---------- Skip link ---------- */
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 1000; padding: .7rem 1.1rem; border-radius: 999px; background: var(--orange); color: var(--dark); font-weight: 700; transition: top .3s var(--ease); }
.skip-link:focus { top: 1rem; outline: 3px solid var(--white); }
main:focus { outline: none; }

/* ---------- Hero video pause/play ---------- */
.hero__video-toggle { position: absolute; right: 1.4rem; bottom: 1.6rem; z-index: 3; width: 44px; height: 44px; border-radius: 50%; background: rgba(27,27,30,.55); border: 1px solid rgba(255,255,255,.3); color: var(--white); display: grid; place-items: center; backdrop-filter: blur(8px); transition: background .3s, border-color .3s; }
.hero__video-toggle:hover { background: var(--orange); color: var(--dark); border-color: var(--orange); }
.hero__video-toggle svg { width: 18px; height: 18px; fill: currentColor; }
.hero__video-toggle .ico-play, .hero__video-toggle.is-paused .ico-pause { display: none; }
.hero__video-toggle.is-paused .ico-play { display: block; }
.hero__video-toggle[hidden] { display: none; }
@media (max-width: 820px) { .hero__video-toggle { right: 1rem; bottom: 1rem; } }

/* ---------- 404 ---------- */
.nf { background: var(--dark); color: var(--sand); min-height: 100vh; margin: 0; }
.nf__main { min-height: 100vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: .5rem; width: min(100% - 2.5rem, 760px); margin-inline: auto; padding: 4rem 0; }
.nf__logo { margin-bottom: 2rem; }
.nf__code { font-family: var(--font-head); font-weight: 800; font-size: clamp(6rem, 18vw, 12rem); line-height: .85; color: var(--orange); letter-spacing: -.02em; margin-bottom: 1rem; }
.nf__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 6vw, 3.6rem); text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: .8rem; }
.nf__text { color: var(--grey-2); max-width: 520px; margin-bottom: 1.5rem; }
.nf__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.nf__switch { margin-top: 3rem; font-size: .85rem; color: var(--grey); }
.nf__switch a:hover { color: var(--orange); }
.nf-en .nf__block[data-lang="pl"], .nf-pl .nf__block[data-lang="en"] { display: none; }
.nf__block + .nf__block { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.nf-en .nf__block + .nf__block, .nf-pl .nf__block + .nf__block { margin-top: 0; padding-top: 0; border-top: 0; }

/* ---------- Phone labels ---------- */
.contact__line-text { display: inline-flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.contact__line small { font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-2); }
.contact-page .contact__line small { color: var(--grey); }
.contact-card__alt a { font-weight: 700; color: var(--dark); }
.contact-card__alt a:hover { color: var(--orange); }
.contact-card__alt span { color: var(--grey-2); margin: 0 .2rem; }
.nav__foot a + a { margin-left: 0; }
