/* =====================================================================
   BIOCHEMIK — Propozycja 03 „EDITORIAL"
   Odważny, magazynowy kierunek: kość + mocne bloki koloru,
   Fraunces (display serif) + Manrope (body/UI), asymetria.
   ===================================================================== */

/* -------------------------------------------------------------------
   1. Zmienne / tokeny
------------------------------------------------------------------- */
:root {
  /* Kolory bazowe */
  --bone:        #faf6ef;   /* ciepła kość — tło bazowe */
  --bone-2:      #f3ecdd;   /* głębsza kość — karty */
  --bone-3:      #ece1cd;   /* najgłębsza kość — akcenty */
  --ink:         #002e5b;   /* granat — tekst na jasnym */
  --ink-deep:    #001f3d;   /* głębszy granat — bloki */
  --ink-deeper:  #001528;   /* prawie czarny granat */
  --orange:      #f15a22;   /* pomarańcz — akcent/CTA */
  --orange-deep: #d8410f;   /* pomarańcz hover */
  --blue:        #298bcb;   /* niebieski graficzny */

  /* Tekst na blokach pomarańczu (kontrast AA ≥ 4.5:1) */
  --on-orange:   #04223f;

  /* Linie / hairline */
  --line:        rgba(0, 46, 91, .14);
  --line-2:      rgba(0, 46, 91, .26);
  --line-light:  rgba(250, 246, 239, .18);
  --line-light-2:rgba(250, 246, 239, .32);

  /* Typografia */
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:  'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Wymiary */
  --wrap:   1320px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --nav-h:  76px;
  --r:      4px;

  --ease: cubic-bezier(.22, .68, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtelne ziarno papieru (atmosfera magazynowa) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

::selection { background: var(--orange); color: #fff; }

/* -------------------------------------------------------------------
   3. Utylity
------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden, .skip-link:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 2000;
  background: var(--ink);
  color: var(--bone);
  padding: .7rem 1.1rem;
  border-radius: var(--r);
  font-weight: 700;
}

.hex { width: 1em; height: 1em; color: var(--orange); flex: none; }
.ico { width: 1.1em; height: 1.1em; flex: none; }

/* Focus */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 100%;
  z-index: 1500;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: var(--orange);
  transform-origin: left;
}

/* -------------------------------------------------------------------
   4. Typografia wspólna
------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow .hex { width: 1.35em; height: 1.35em; }

.sec-title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2.1rem, 5.6vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-top: .35rem;
}
.sec-title em { font-style: italic; color: var(--orange); font-weight: 600; }
.sec-title--light { color: var(--bone); }
.sec-title--light em { color: var(--orange); }

/* Nagłówek sekcji z wielkim numerem */
.sec-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: start;
  margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
}
.sec-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  line-height: .8;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-2);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.sec-head--light .sec-num { -webkit-text-stroke-color: var(--line-light-2); }
.sec-head--onorange .sec-num { -webkit-text-stroke-color: rgba(4,34,63,.5); }
.sec-head--light .sec-title { color: var(--bone); }
.sec-head--onorange .sec-title { color: var(--on-orange); }
.sec-head--onorange .sec-title em,
.sec-head--onorange .eyebrow { color: var(--ink-deep); }

/* -------------------------------------------------------------------
   5. Przyciski
------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
  padding: .95em 1.5em;
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.btn .ico { transition: transform .25s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }

.btn--solid {
  background: var(--orange);
  color: var(--on-orange);           /* granat na pomarańczu — AA */
  box-shadow: 0 10px 24px -12px rgba(241, 90, 34, .8);
}
.btn--solid:hover { background: var(--orange-deep); color: #fff; transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bone); transform: translateY(-2px); }

.btn--lg { padding: 1.05em 1.8em; font-size: 1.02rem; }
.btn--sm { padding: .7em 1.15em; font-size: .9rem; }
.btn--block { width: 100%; justify-content: center; }

/* -------------------------------------------------------------------
   6. Dekoracje (prążki, heksagon)
------------------------------------------------------------------- */
.deco-stripes {
  position: absolute;
  background: repeating-linear-gradient(
    var(--orange) 0 8px,
    transparent 8px 16px
  );
  pointer-events: none;
}
.deco-stripes--hero {
  width: 180px; height: 120px;
  right: 0; bottom: -30px;
  opacity: .9;
  mask-image: linear-gradient(90deg, transparent, #000 40%);
}
.deco-hex {
  position: absolute;
  pointer-events: none;
  color: rgba(4, 34, 63, .16);
}
.deco-hex .hex { width: 100%; height: 100%; color: inherit; }
.deco-hex--why {
  width: clamp(160px, 24vw, 360px);
  height: clamp(160px, 24vw, 360px);
  right: -4%; top: 8%;
}

/* -------------------------------------------------------------------
   7. Nawigacja
------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--bone) 80%, transparent);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  backdrop-filter: blur(12px) saturate(1.3);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--bone) 94%, transparent);
  box-shadow: 0 8px 30px -18px rgba(0, 31, 61, .5);
}
.nav__inner {
  height: var(--nav-h);
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo img { height: 40px; width: auto; }

.nav__menu {
  display: none;
  align-items: center;
  gap: clamp(.6rem, 1.6vw, 1.7rem);
  margin-left: auto;
}
.nav__menu a {
  position: relative;
  font-size: .92rem;
  font-weight: 600;
  padding: .4rem 0;
  color: var(--ink);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__menu a:hover::after,
.nav__menu a:focus-visible::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: .8rem; }
.nav__actions .btn--sm { display: none; }

/* Hamburger */
.burger {
  width: 46px; height: 46px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 2px solid var(--ink);
  border-radius: var(--r);
}
.burger span {
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobilne (overlay) */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink-deep);
  color: var(--bone);
  padding: calc(var(--nav-h) + 1.5rem) var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu[hidden] { display: none; }
.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 1rem;
}
.mobile-menu__kicker {
  font-size: .74rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange);
}
.mobile-menu__close { font-weight: 700; color: var(--bone); }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__nav a {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  line-height: 1.05;
  padding: .5rem 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--bone);
}
.mobile-menu__nav a .mm-num {
  font-family: var(--sans);
  font-size: .8rem; font-weight: 700;
  color: var(--orange);
}
.mobile-menu__nav a:hover { color: var(--orange); }

/* -------------------------------------------------------------------
   8. HERO
------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(1.5rem, 4vw, 2.75rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.hero::after {   /* watermark heksagon w tle */
  content: "";
  position: absolute;
  left: -8%; top: 20%;
  width: clamp(220px, 40vw, 620px);
  aspect-ratio: 1;
  background: url("../assets/hexagonal-star.svg") center/contain no-repeat;
  opacity: .06;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}
.eyebrow--hero { margin-bottom: 1.5rem; }

.hero__title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2.7rem, 8.2vw, 7.2rem);
  line-height: .94;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.hero__title .line { display: block; }
.hero__title em { font-style: italic; color: var(--orange); }
.hero__title .excl { color: var(--orange); }

.hero__lede {
  max-width: 40ch;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: color-mix(in srgb, var(--ink) 85%, transparent);
  margin-bottom: 2rem;
}
.hero__lede strong { color: var(--ink); font-weight: 800; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 2.6rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
  max-width: 540px;
}
.hero__meta > div {
  padding-right: clamp(1.2rem, 3vw, 2.4rem);
  margin-right: clamp(1.2rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
}
.hero__meta > div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__meta dt {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: .25rem;
}
.hero__meta dd { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; }

/* Media hero */
.hero__media { position: relative; }
.hero__photo {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(0, 31, 61, .7);
}
.hero__photo img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  top: -18px; right: 18px;
  background: var(--ink-deep);
  color: var(--bone);
  width: 92px; height: 92px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1;
  box-shadow: 0 20px 40px -20px rgba(0, 31, 61, .8);
}
.hero__badge-year { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; }
.hero__badge-label {
  font-size: .6rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--orange); margin-top: 2px;
}

.accred-card {
  position: absolute;
  left: -10px; bottom: -22px;
  background: var(--orange);
  color: var(--on-orange);
  padding: 1rem 1.2rem;
  border-radius: var(--r);
  box-shadow: 0 24px 48px -24px rgba(241, 90, 34, .9);
  max-width: 260px;
}
.accred-card__title {
  display: block;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: .5rem;
}
.accred-card__list { display: flex; gap: 1.4rem; list-style: none; padding: 0; }
.accred-card__list li { display: flex; flex-direction: column; }
.accred-card__list b { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; line-height: 1; }
.accred-card__list span { font-size: .72rem; font-weight: 600; }

.hero__vtext {
  display: none;
  position: absolute;
  right: -46px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--line-2);
  white-space: nowrap;
}

/* -------------------------------------------------------------------
   9. MARQUEE
------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-block: 2px solid var(--ink-deep);
  padding-block: .7rem;
}
.marquee--orange { background: var(--orange); }
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-right: 1.6rem;
  white-space: nowrap;
}
.marquee__group b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  color: var(--on-orange);
}
.marquee__group .hex { width: clamp(1rem, 2vw, 1.5rem); height: clamp(1rem, 2vw, 1.5rem); color: var(--ink-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* -------------------------------------------------------------------
   10. PASEK ZAUFANIA — liczniki + odznaki
------------------------------------------------------------------- */
.trust { padding-block: clamp(4rem, 9vw, 7.5rem); }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.stat {
  background: var(--bone);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.stat__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: .85;
  letter-spacing: -.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: .92rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--ink) 75%, transparent);
  max-width: 22ch;
}

.seals {
  list-style: none;
  padding: 0;
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.6rem);
  align-items: center;
}
.seal {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding-right: clamp(1rem, 3vw, 2.6rem);
  border-right: 1px solid var(--line);
}
.seal:last-child { border-right: 0; padding-right: 0; }
.seal__mark {
  display: grid;
  place-content: center;
  width: 46px; height: 46px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.seal__txt { font-weight: 700; font-size: .95rem; }

/* -------------------------------------------------------------------
   11. USŁUGI — poziomy scroll
------------------------------------------------------------------- */
.services {
  background: var(--ink-deep);
  color: var(--bone);
  padding-block: clamp(4rem, 9vw, 7.5rem);
  position: relative;
  overflow: hidden;
}
.services__head {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.services__intro {
  max-width: 46ch;
  color: color-mix(in srgb, var(--bone) 78%, transparent);
  font-size: 1.05rem;
}

.rail {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-block: .5rem;
}
.rail::-webkit-scrollbar { display: none; }
.rail__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.6rem);
  padding-inline: var(--gutter);
  width: max-content;
  list-style: none;
  margin: 0;
}
/* wyrównanie railu do kontenera */
@media (min-width: 1400px) {
  .rail__track { padding-inline: calc((100vw - var(--wrap)) / 2 + var(--gutter)); }
}

.svc {
  scroll-snap-align: start;
  flex: 0 0 min(84vw, 380px);
  min-height: 440px;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease);
}
.svc:hover { transform: translateY(-6px); }
.svc--navy   { background: var(--ink); color: var(--bone); }
.svc--orange { background: var(--orange); color: var(--on-orange); }
.svc--paper  { background: var(--bone); color: var(--ink); }

.svc__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px currentColor;
  opacity: .5;
  margin-bottom: 1rem;
}
.svc__icon {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--bone);
  display: grid;
  place-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 24px -14px rgba(0,0,0,.5);
}
.svc__icon img { width: 42px; height: 42px; }
.svc__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.65rem;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: .6rem;
}
.svc__desc { font-size: .98rem; opacity: .9; margin-bottom: 1.1rem; }
.svc__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-weight: 600;
  font-size: .92rem;
}
.svc__list li {
  padding-left: 1.1rem;
  position: relative;
  opacity: .92;
}
.svc__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  background: var(--orange);
  transform: rotate(45deg);
}
.svc--orange .svc__list li::before { background: var(--ink-deep); }
.svc__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  align-self: flex-start;
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
}
.svc__link .ico { transition: transform .25s var(--ease); }
.svc__link:hover .ico { transform: translateX(4px); }

/* Sterowanie railem */
.rail__ctrl {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.rail__bar {
  flex: 1;
  height: 3px;
  background: var(--line-light);
  border-radius: 3px;
  overflow: hidden;
}
.rail__bar span {
  display: block;
  height: 100%;
  width: 25%;
  background: var(--orange);
  border-radius: 3px;
  transition: transform .2s linear, width .2s linear;
}
.rail__btns { display: flex; gap: .6rem; }
.rail__btn {
  width: 52px; height: 52px;
  border: 2px solid var(--line-light-2);
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: var(--bone);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s;
}
.rail__btn svg { width: 22px; height: 22px; }
.rail__btn:hover:not(:disabled) { background: var(--orange); border-color: var(--orange); color: var(--on-orange); }
.rail__btn:disabled { opacity: .35; cursor: not-allowed; }

/* -------------------------------------------------------------------
   12. WYSZUKIWARKA
------------------------------------------------------------------- */
.finder { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }

.finder__box { margin-bottom: 2rem; }
.finder__field {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 3px solid var(--ink);
  padding: 1rem .2rem;
  transition: border-color .25s var(--ease);
}
.finder__field:focus-within { border-color: var(--orange); }
.finder__ico { width: 28px; height: 28px; color: var(--ink); flex: none; }
.finder__field input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  font-weight: 400;
  outline: none;
  min-width: 0;
}
.finder__field input::placeholder { color: color-mix(in srgb, var(--ink) 40%, transparent); }

.finder__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.4rem;
}
.tag {
  font-weight: 700;
  font-size: .88rem;
  padding: .5em 1.05em;
  border: 1.5px solid var(--line-2);
  border-radius: 100px;
  color: var(--ink);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.tag:hover { border-color: var(--ink); }
.tag.is-active {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.finder__count {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}

.finder__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  columns: 1;
  column-gap: clamp(2rem, 5vw, 4rem);
}
.fitem {
  break-inside: avoid;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .2s var(--ease);
}
.fitem:hover { padding-left: .6rem; }
.fitem__name { font-weight: 600; font-size: 1.02rem; }
.fitem__area {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
  white-space: nowrap;
}
.fitem.is-hidden { display: none; }
.fitem mark { background: color-mix(in srgb, var(--orange) 28%, transparent); color: inherit; border-radius: 2px; }

.finder__empty {
  padding: 2rem 0;
  font-size: 1.15rem;
  font-family: var(--serif);
}
.finder__empty a { color: var(--orange); border-bottom: 2px solid var(--orange); }

/* -------------------------------------------------------------------
   13. DLACZEGO MY — blok pomarańczowy
------------------------------------------------------------------- */
.why {
  background: var(--orange);
  color: var(--on-orange);
  padding-block: clamp(4rem, 9vw, 7.5rem);
  position: relative;
  overflow: hidden;
}
.pullquote {
  max-width: 20ch;
  margin: 0 0 clamp(2.5rem, 6vw, 4rem);
  position: relative;
}
.pullquote__mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: .6;
  color: var(--ink-deep);
  display: block;
}
.pullquote p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -.01em;
  max-width: 22ch;
  margin-top: -.4em;
}
.pullquote em { font-style: italic; color: #fff; }

.pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid rgba(4,34,63,.35);
}
.pillar {
  padding: clamp(1.5rem, 3vw, 2.2rem) 0;
  border-bottom: 2px solid rgba(4,34,63,.35);
  display: grid;
  gap: .5rem;
}
.pillar__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--ink-deep);
}
.pillar h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  line-height: 1.02;
}
.pillar p { max-width: 42ch; font-weight: 500; }

/* -------------------------------------------------------------------
   14. OŚ CZASU
------------------------------------------------------------------- */
.timeline { padding-block: clamp(4rem, 9vw, 7.5rem); }

.tl { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }
.tl__years {
  display: flex;
  gap: clamp(.6rem, 2vw, 1.4rem);
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--line);
}
.tl__years::-webkit-scrollbar { display: none; }
.tl__year {
  position: relative;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: color-mix(in srgb, var(--ink) 34%, transparent);
  padding: .3rem .2rem 1rem;
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.tl__year::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.tl__year:hover { color: var(--ink); }
.tl__year.is-active { color: var(--orange); }
.tl__year.is-active::after { transform: scaleX(1); }

.tl__panels { position: relative; min-height: 210px; }
.tl__panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
}
.tl__panel[hidden] { display: none; }
.tl__panel.is-active { animation: tlfade .5s var(--ease); }
@keyframes tlfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.tl__big {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(4rem, 16vw, 12rem);
  line-height: .8;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 2px var(--line-2);
}
.tl__panel h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.04;
  margin-bottom: .6rem;
}
.tl__panel p { max-width: 46ch; font-size: 1.08rem; }
.tl__panel strong { color: var(--orange); }

/* -------------------------------------------------------------------
   15. PASMO ze zdjęciem
------------------------------------------------------------------- */
.band {
  position: relative;
  min-height: clamp(320px, 60vh, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.band__media { position: absolute; inset: -10% 0; z-index: -1; }
.band__media img { width: 100%; height: 120%; object-fit: cover; }
.band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,31,61,.15) 0%, rgba(0,31,61,.88) 100%);
}
.band__quote { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.band__quote p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--bone);
  max-width: 20ch;
}
.band__quote em { font-style: italic; color: var(--orange); }

/* -------------------------------------------------------------------
   16. ODDZIAŁY
------------------------------------------------------------------- */
.branches { padding-block: clamp(4rem, 9vw, 7.5rem); }
.branches__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.branch {
  background: var(--bone);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  min-height: 190px;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.branch:hover { background: var(--ink); color: var(--bone); }
.branch:hover .branch__tag { color: var(--orange); }
.branch:hover .branch__tel { color: var(--bone); border-color: var(--line-light-2); }
.branch__tag {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange);
}
.branch h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
}
.branch__addr { font-weight: 500; opacity: .9; }
.branch__tel {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 700;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  transition: border-color .25s var(--ease);
}
.branch__tel .ico { color: var(--orange); }
.branch--hq { background: var(--ink-deep); color: var(--bone); }
.branch--hq .branch__tel { border-color: var(--line-light); }
.branch--hq:hover { background: var(--ink); }

.branches__map {
  position: relative;
  background: var(--bone-2);
  min-height: 280px;
  grid-column: 1 / -1;
}
.branches__map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  filter: grayscale(.5) contrast(1.02) sepia(.12);
  transition: filter .4s var(--ease);
}
.branches__map:hover iframe { filter: none; }
.branches__map-link {
  position: absolute;
  left: 1rem; bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  background: var(--bone);
  color: var(--ink);
  font-weight: 700;
  font-size: .85rem;
  padding: .6em 1em;
  border-radius: var(--r);
  box-shadow: 0 10px 24px -12px rgba(0,31,61,.6);
}
.branches__map-link .ico { color: var(--orange); }

/* -------------------------------------------------------------------
   17. STREFA B2B
------------------------------------------------------------------- */
.b2b {
  position: relative;
  background: var(--ink-deeper);
  color: var(--bone);
  padding-block: clamp(4rem, 9vw, 7.5rem);
  overflow: hidden;
  isolation: isolate;
}
.b2b__bg { position: absolute; inset: -10% 0; z-index: -2; }
.b2b__bg img { width: 100%; height: 120%; object-fit: cover; opacity: .4; }
.b2b::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, var(--ink-deeper) 30%, rgba(0,21,40,.5) 100%);
}
.b2b__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.b2b__lede { max-width: 44ch; font-size: 1.1rem; margin: 1.2rem 0 1.6rem; color: color-mix(in srgb, var(--bone) 85%, transparent); }
.b2b__lede strong { color: #fff; }
.b2b__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: .7rem;
}
.b2b__perks li {
  display: flex;
  align-items: center;
  gap: .7em;
  font-weight: 600;
}
.b2b__perks .ico { color: var(--orange); width: 1.3em; height: 1.3em; }

/* Mock LIMS */
.b2b__card {
  background: color-mix(in srgb, var(--bone) 97%, transparent);
  color: var(--ink);
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.8);
  border: 1px solid rgba(255,255,255,.1);
  max-width: 420px;
  width: 100%;
  justify-self: start;
}
.b2b__card-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}
.b2b__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.b2b__dot:nth-child(1) { background: var(--orange); }
.b2b__card-title { margin-left: auto; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: color-mix(in srgb, var(--ink) 65%, transparent); }
.b2b__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .95rem;
}
.b2b__row span { color: color-mix(in srgb, var(--ink) 60%, transparent); font-weight: 600; }
.b2b__row b { font-weight: 700; }
.b2b__status { color: #1f8a4c; }
.b2b__bar { height: 8px; background: var(--bone-3); border-radius: 8px; margin-top: 1.1rem; overflow: hidden; }
.b2b__bar span { display: block; height: 100%; width: 78%; background: var(--orange); border-radius: 8px; }

/* -------------------------------------------------------------------
   18. AKTUALNOŚCI
------------------------------------------------------------------- */
.news { padding-block: clamp(4rem, 9vw, 7.5rem); }
.news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.4rem);
}
.post {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding-top: 1.4rem;
  border-top: 3px solid var(--ink);
}
.post__cat {
  font-size: .7rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange);
}
.post h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  line-height: 1.1;
}
.post h3 a { background-image: linear-gradient(var(--orange), var(--orange)); background-size: 0% 2px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .3s var(--ease); padding-bottom: 2px; }
.post h3 a:hover { background-size: 100% 2px; }
.post p { color: color-mix(in srgb, var(--ink) 78%, transparent); }
.post__date {
  margin-top: auto;
  font-size: .8rem; font-weight: 700;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
  padding-top: .6rem;
}

/* -------------------------------------------------------------------
   19. KONTAKT + formularz
------------------------------------------------------------------- */
.contact { padding-block: clamp(4rem, 9vw, 7.5rem); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.contact__details {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: grid;
  gap: 1.1rem;
}
.contact__details li { display: flex; gap: 1rem; align-items: flex-start; font-weight: 600; }
.contact__details .ico { color: var(--orange); width: 1.4em; height: 1.4em; margin-top: .15em; }
.contact__details a { border-bottom: 2px solid transparent; transition: border-color .2s; }
.contact__details a:hover { border-color: var(--orange); }

.form { display: grid; gap: 1.4rem; }
.form__row { display: grid; gap: 1.4rem; }
.form__row--2 { grid-template-columns: 1fr; }

.field { display: grid; gap: .4rem; }
.field__label {
  font-size: .78rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}
.field__label em { font-style: normal; text-transform: none; letter-spacing: 0; font-weight: 600; opacity: .7; }
.field input, .field textarea {
  border: none;
  border-bottom: 2px solid var(--line-2);
  background: transparent;
  padding: .7rem .1rem;
  font-size: 1.05rem;
  outline: none;
  transition: border-color .25s var(--ease);
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus { border-color: var(--orange); }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--ink) 38%, transparent); }
.field.has-error input, .field.has-error textarea { border-color: var(--orange-deep); }

.field__error {
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange-deep);
  min-height: 1em;
}
.field__error--block { display: block; margin-top: -.6rem; }

/* Checkbox */
.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  align-items: start;
  cursor: pointer;
}
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check__box {
  width: 26px; height: 26px;
  border: 2px solid var(--ink);
  border-radius: var(--r);
  display: grid;
  place-content: center;
  color: transparent;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.check__box svg { width: 16px; height: 16px; }
.check input:checked + .check__box { background: var(--orange); border-color: var(--orange); color: var(--on-orange); }
.check input:focus-visible + .check__box { outline: 3px solid var(--orange); outline-offset: 3px; }
.check__txt { font-size: .9rem; font-weight: 500; color: color-mix(in srgb, var(--ink) 82%, transparent); }
.check__txt a { color: var(--orange); font-weight: 700; }

.form__success {
  display: flex;
  align-items: center;
  gap: .7em;
  background: var(--ink-deep);
  color: var(--bone);
  padding: 1rem 1.2rem;
  border-radius: var(--r);
  font-weight: 600;
}
.form__success .ico { color: var(--orange); width: 1.4em; height: 1.4em; }

/* -------------------------------------------------------------------
   20. STOPKA
------------------------------------------------------------------- */
.footer {
  background: var(--ink-deeper);
  color: var(--bone);
  padding-block: clamp(3rem, 7vw, 5rem) 2.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-light);
}
.footer__word {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--bone);
}
.footer__brand p { max-width: 40ch; margin-top: 1rem; color: color-mix(in srgb, var(--bone) 74%, transparent); }

.newsletter { margin-top: 1.8rem; max-width: 420px; }
.field--news .field__label { color: color-mix(in srgb, var(--bone) 80%, transparent); }
.newsletter__row { display: flex; gap: .6rem; margin-top: .5rem; }
.newsletter__row input {
  flex: 1;
  border: none;
  border-bottom: 2px solid var(--line-light-2);
  background: transparent;
  color: var(--bone);
  padding: .6rem .1rem;
  outline: none;
  min-width: 0;
}
.newsletter__row input:focus { border-color: var(--orange); }
.newsletter__row input::placeholder { color: color-mix(in srgb, var(--bone) 45%, transparent); }
.newsletter .field__error { color: #ff9f80; }
.newsletter__ok { font-size: .85rem; font-weight: 700; color: var(--orange); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.footer__cols h4 {
  font-size: .74rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.footer__cols a {
  display: block;
  padding: .35rem 0;
  color: color-mix(in srgb, var(--bone) 82%, transparent);
  font-weight: 600;
  transition: color .2s;
}
.footer__cols a:hover { color: var(--bone); }

.footer__accred {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding-block: 1.8rem;
  border-bottom: 1px solid var(--line-light);
}
.footer__accred span {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 700;
  font-size: .92rem;
}
.footer__accred .hex { width: 1.3em; height: 1.3em; }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: .84rem;
  color: color-mix(in srgb, var(--bone) 65%, transparent);
}
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; }
.footer__links a { border-bottom: 1px solid transparent; transition: border-color .2s; }
.footer__links a:hover { border-color: var(--orange); }

/* -------------------------------------------------------------------
   21. Reveal-on-scroll
------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* Hero — reveal linii przy wejściu (stagger) */
.js .hero__title .line { opacity: 0; transform: translateY(.4em); }
body.is-ready .hero__title .line { animation: lineIn .9s var(--ease) forwards; }
body.is-ready .hero__title .line:nth-child(1) { animation-delay: .12s; }
body.is-ready .hero__title .line:nth-child(2) { animation-delay: .24s; }
body.is-ready .hero__title .line:nth-child(3) { animation-delay: .36s; }
body.is-ready .hero__title .line:nth-child(4) { animation-delay: .48s; }
@keyframes lineIn { to { opacity: 1; transform: none; } }

/* -------------------------------------------------------------------
   22. Responsywność
------------------------------------------------------------------- */
@media (min-width: 620px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .form__row--2 { grid-template-columns: 1fr 1fr; }
  .news__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 760px) {
  .branches__grid { grid-template-columns: repeat(2, 1fr); }
  .branch--hq { grid-row: span 2; }
  .branches__map { grid-column: 1 / -1; }
  .footer__top { grid-template-columns: 1.3fr 1fr; }
  .finder__list { columns: 2; }
}

@media (min-width: 900px) {
  :root { --nav-h: 88px; }
  .nav__menu { display: flex; }
  .nav__actions .btn--sm { display: inline-flex; }
  .burger { display: none; }
  .nav__logo img { height: 44px; }

  .hero__grid {
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
  }
  .hero__media { margin-top: 0; }
  .hero__vtext { display: block; }
  .svc { flex-basis: 360px; }

  .b2b__grid { grid-template-columns: 1.15fr .85fr; }

  .tl__panel { grid-template-columns: auto 1fr; }
  .contact__grid { grid-template-columns: .9fr 1.1fr; }

  .branches__grid { grid-template-columns: repeat(3, 1fr); }
  .branch--hq { grid-column: 1; grid-row: span 2; }
  .branches__map { grid-column: 2 / 4; grid-row: 1 / 3; min-height: 380px; }
}

@media (min-width: 1200px) {
  .branches__grid { grid-template-columns: repeat(4, 1fr); }
  .branch--hq { grid-column: 1 / 2; grid-row: 1 / 3; }
  .branches__map { grid-column: 2 / 5; grid-row: 1 / 3; }
}

/* Duże ekrany — asymetryczne przesunięcie media w hero */
@media (min-width: 1100px) {
  .hero__media { transform: translateY(-8%); }
  .hero__photo img { aspect-ratio: 3 / 3.7; }
}

/* -------------------------------------------------------------------
   23. Prefers-reduced-motion
------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__title .line { opacity: 1 !important; transform: none !important; animation: none !important; }
  .marquee__track { animation: none !important; }
  [data-parallax] { transform: none !important; }
}

/* ===== Demo: przełącznik logo (klik w logo = stare ⇄ nowe) ===== */
.logoswap { cursor: pointer; }
.logoswap__new {
  display: none;
  position: relative;
  white-space: nowrap;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  padding-bottom: .3em;
  color: var(--ink);
  font-size: 27px;
}
.logoswap__new i {
  position: absolute; bottom: 0;
  height: .14em; border-radius: 999px;
  background: var(--orange);
}
.logoswap__new i:first-of-type { left: 0; width: 1.35em; }
.logoswap__new i:last-of-type { left: 1.55em; width: .58em; }
html.logo-new .logoswap__old { display: none; }
html.logo-new .logoswap__new { display: inline-block; }
.footer__word .logoswap__new {
  font-size: inherit;
  color: var(--bone);
  letter-spacing: -.03em;
  padding-bottom: .22em;
}
