:root {
  --ink: #1c1c1a;
  --ink-soft: #2b2b28;
  --cream: #f5f0e7;
  --paper: #fffdf8;
  --coral: #ff6a4d;
  --coral-dark: #e54e32;
  --lime: #c9eb67;
  --sky: #a8d9e8;
  --line: rgba(28, 28, 26, 0.18);
  --muted: #6c6b64;
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --radius: 26px;
  --container: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

@property --nav-dot-size {
  syntax: "<length>";
  inherits: true;
  initial-value: 7px;
}

@property --nav-dot-color {
  syntax: "<color>";
  inherits: true;
  initial-value: #1c1c1a;
}

@property --nav-label-opacity {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

@property --nav-label-shift {
  syntax: "<length>";
  inherits: true;
  initial-value: -8px;
}

body {
  timeline-scope: --nav-start, --nav-about, --nav-offer, --nav-process, --nav-reviews, --nav-contact, --youth-motion;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Designerski ekran wejścia — w całości CSS, bez skryptów */
.page-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
  pointer-events: auto;
  animation: loader-exit .8s 2.35s cubic-bezier(.76, 0, .24, 1) forwards;
}

.page-loader::before,
.page-loader::after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.page-loader::before { left: -26vw; top: -21vw; }
.page-loader::after { right: -27vw; bottom: -24vw; }

.loader-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 75%);
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  animation: loader-grid-in 1.6s cubic-bezier(.22,1,.36,1) both;
}

.loader-content {
  position: relative;
  z-index: 3;
  width: min(720px, calc(100vw - 48px));
  text-align: center;
}

.loader-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.55);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  animation: loader-copy-in .6s .22s ease forwards;
}

.loader-kicker span { width: 24px; height: 2px; background: var(--coral); }

.loader-wordmark {
  font-size: clamp(3.6rem, 9vw, 8rem);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.065em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(38px) skewY(3deg);
  animation: loader-title-in .9s .35s cubic-bezier(.16,1,.3,1) forwards;
}

.loader-wordmark em { color: var(--lime); font-family: var(--serif); font-weight: 600; }

.loader-progress {
  position: relative;
  overflow: hidden;
  width: min(480px, 72vw);
  height: 2px;
  margin: 42px auto 16px;
  background: rgba(255,255,255,.14);
}

.loader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--lime), var(--sky));
  transform: translateX(-101%);
  animation: loader-progress 1.75s .48s cubic-bezier(.65,0,.35,1) forwards;
}

.loader-meta {
  display: flex;
  justify-content: space-between;
  width: min(480px, 72vw);
  margin-inline: auto;
  color: rgba(255,255,255,.38);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  animation: loader-copy-in .5s .7s ease forwards;
}

.loader-orbit {
  position: absolute;
  z-index: 2;
  width: min(590px, 76vw);
  aspect-ratio: 1;
  opacity: 0;
  animation: orbit-in .9s .1s ease forwards, orbit-turn 18s 1s linear infinite;
}

.orbit-ring { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; }
.orbit-ring-two { inset: 15%; border-style: dashed; }
.orbit-dot { position: absolute; display: block; border-radius: 50%; box-shadow: 0 0 30px currentColor; }
.orbit-dot-coral { top: 8%; left: 23%; width: 10px; height: 10px; color: var(--coral); background: var(--coral); }
.orbit-dot-lime { right: 1%; bottom: 42%; width: 13px; height: 13px; color: var(--lime); background: var(--lime); }
.orbit-dot-sky { bottom: 5%; left: 29%; width: 7px; height: 7px; color: var(--sky); background: var(--sky); }

@keyframes loader-copy-in { to { opacity: 1; transform: none; } }
@keyframes loader-title-in { to { opacity: 1; transform: none; } }
@keyframes loader-progress { to { transform: translateX(0); } }
@keyframes loader-grid-in { from { opacity: 0; transform: scale(1.15); } to { opacity: .22; transform: scale(1); } }
@keyframes orbit-in { from { opacity: 0; transform: scale(.72); } to { opacity: 1; transform: scale(1); } }
@keyframes orbit-turn { to { rotate: 360deg; } }
@keyframes loader-exit {
  0% { opacity: 1; clip-path: inset(0 0 0 0); }
  65% { opacity: 1; clip-path: inset(0 0 100% 0); }
  100% { opacity: 0; visibility: hidden; pointer-events: none; clip-path: inset(0 0 100% 0); }
}

body::selection { background: var(--lime); color: var(--ink); }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 { line-height: 1; letter-spacing: -0.045em; }

h1, h2 { font-weight: 600; }

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 5.6vw, 5.8rem);
}

h2 em, h1 em {
  font-family: var(--serif);
  font-weight: 600;
}

.container { width: var(--container); margin-inline: auto; }

.section-pad { padding: 130px 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 20px;
  padding: 12px 18px;
  background: var(--lime);
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  transition: top .2s ease;
}

.skip-link:focus { top: 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow > span { width: 30px; height: 2px; background: var(--coral); }
.eyebrow-light { color: rgba(255,255,255,.62); }

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -45%;
  width: 30%;
  height: 260%;
  background: rgba(255,255,255,.28);
  transform: rotate(20deg) translateX(-180%);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}

.button:hover { transform: translateY(-3px); }
.button:hover::before { transform: rotate(20deg) translateX(620%); }
.button span { font-size: 1.1rem; transition: transform .25s ease; }
.button:hover span { transform: rotate(45deg) scale(1.08); }
.button-small { min-height: 44px; padding-inline: 20px; }
.button-large { min-height: 68px; padding-inline: 30px; }
.button-coral { background: var(--coral); color: var(--ink); }
.button-coral:hover { background: #ff826a; }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: #383833; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: .86rem;
  font-weight: 700;
}

.text-link span { color: var(--coral-dark); }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(4px, -4px); }
.text-link-light { color: white; border-color: rgba(255,255,255,.45); }
.text-link-light span { color: var(--lime); }

.float-nav {
  position: fixed;
  z-index: 300;
  top: 50%;
  left: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 9px;
  border: 1px solid rgba(28,28,26,.13);
  border-radius: 100px;
  background: rgba(255,253,248,.84);
  box-shadow: 0 12px 38px rgba(28,28,26,.10);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translate(-72px, -50%);
  animation: float-nav-in .75s 2.75s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes float-nav-in { to { opacity: 1; transform: translate(0, -50%); } }

.float-nav-progress {
  position: absolute;
  z-index: 0;
  top: 25px;
  bottom: 25px;
  left: 50%;
  width: 1px;
  overflow: hidden;
  background: rgba(28,28,26,.14);
  transform: translateX(-50%);
}

.float-nav-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral-dark);
  transform: scaleY(0);
  transform-origin: center top;
}

.float-nav a {
  --nav-dot-size: 7px;
  --nav-dot-color: var(--ink);
  --nav-label-opacity: 0;
  --nav-label-shift: -8px;
  position: relative;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
}

.float-nav a > span {
  width: var(--nav-dot-size);
  height: var(--nav-dot-size);
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--nav-dot-color);
  box-shadow: 0 0 0 1px rgba(28,28,26,.18);
  transition: width .3s cubic-bezier(.16,1,.3,1), height .3s cubic-bezier(.16,1,.3,1), background .3s ease;
}

.float-nav a em {
  position: absolute;
  left: 42px;
  display: block;
  padding: 7px 10px;
  border-radius: 6px;
  color: white;
  background: var(--ink);
  box-shadow: 0 7px 22px rgba(28,28,26,.15);
  font-size: .61rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: var(--nav-label-opacity);
  pointer-events: none;
  transform: translateX(var(--nav-label-shift));
  transition: opacity .22s ease, transform .3s cubic-bezier(.16,1,.3,1);
}

.float-nav a:hover > span,
.float-nav a:focus-visible > span { width: 13px; height: 13px; background: var(--coral); }
.float-nav a:hover em,
.float-nav a:focus-visible em { opacity: 1; transform: translateX(0); }

@supports (animation-timeline: scroll()) {
  .float-nav-progress i {
    animation: nav-progress linear both;
    animation-timeline: scroll(root block);
  }
}

@keyframes nav-progress { to { transform: scaleY(1); } }

.nav-chapter-start { view-timeline: --nav-start block; }
.nav-chapter-about { view-timeline: --nav-about block; }
.nav-chapter-offer { view-timeline: --nav-offer block; }
.nav-chapter-process { view-timeline: --nav-process block; }
.nav-chapter-reviews { view-timeline: --nav-reviews block; }
.nav-chapter-contact { view-timeline: --nav-contact block; }

@supports (animation-timeline: view()) {
  .float-nav a[href="#start"] { animation: nav-section-current linear; animation-timeline: --nav-start; animation-range: entry 50% exit 50%; }
  .float-nav a[href="#o-mnie"] { animation: nav-section-current linear; animation-timeline: --nav-about; animation-range: entry 50% exit 50%; }
  .float-nav a[href="#oferta"] { animation: nav-section-current linear; animation-timeline: --nav-offer; animation-range: entry 50% exit 50%; }
  .float-nav a[href="#proces"] { animation: nav-section-current linear; animation-timeline: --nav-process; animation-range: entry 50% exit 50%; }
  .float-nav a[href="#opinie"] { animation: nav-section-current linear; animation-timeline: --nav-reviews; animation-range: entry 50% exit 50%; }
  .float-nav a[href="#kontakt"] { animation: nav-section-current linear; animation-timeline: --nav-contact; animation-range: entry 50% exit 50%; }
}

@keyframes nav-section-current {
  from, to {
    --nav-dot-size: 13px;
    --nav-dot-color: #eb734f;
    --nav-label-opacity: 1;
    --nav-label-shift: 0px;
  }
}

@supports not (animation-timeline: view()) {
  .float-nav a[href="#start"] {
    --nav-dot-size: 13px;
    --nav-dot-color: #eb734f;
    --nav-label-opacity: 1;
    --nav-label-shift: 0px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 9% 16%, rgba(201,235,103,.10), transparent 27%),
    var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -180px;
  bottom: 70px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  gap: 70px;
  min-height: calc(100svh - 54px);
  padding-top: 90px;
  padding-bottom: 90px;
}

.hero-copy { align-self: center; position: relative; z-index: 2; }

.hero-copy > * {
  opacity: 0;
  transform: translateY(35px);
  animation: hero-item-in .8s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-copy > :nth-child(1) { animation-delay: 2.75s; }
.hero-copy > :nth-child(2) { animation-delay: 2.88s; }
.hero-copy > :nth-child(3) { animation-delay: 3.02s; }
.hero-copy > :nth-child(4) { animation-delay: 3.15s; }
.hero-copy > :nth-child(5) { animation-delay: 3.28s; }

@keyframes hero-item-in { to { opacity: 1; transform: none; } }

.hero h1 {
  margin-bottom: 30px;
  max-width: 820px;
  font-size: clamp(3.8rem, 7.4vw, 7.6rem);
}

.hero h1 em { color: var(--lime); }

.hero-lead {
  max-width: 660px;
  margin-bottom: 35px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.5vw, 1.26rem);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 30px; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 540px;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.hero-proof div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 15px; }
.hero-proof strong { color: var(--coral); font-size: 1.25rem; }
.hero-proof span { color: rgba(255,255,255,.55); font-size: .74rem; line-height: 1.3; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  width: min(100%, 530px);
  height: min(67vh, 720px);
  min-height: 540px;
  overflow: hidden;
  border-radius: 280px 280px 26px 26px;
  opacity: 0;
  clip-path: inset(0 0 100% 0 round 280px 280px 26px 26px);
  animation: hero-visual-in 1.15s 2.88s cubic-bezier(.76,0,.24,1) forwards;
}

@keyframes hero-visual-in { to { opacity: 1; clip-path: inset(0 0 0 0 round 280px 280px 26px 26px); } }

.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; filter: grayscale(100%); animation: hero-photo-breathe 12s 4s ease-in-out infinite alternate; }

@keyframes hero-photo-breathe { from { transform: scale(1.01); } to { transform: scale(1.065); } }

.hero-note {
  position: absolute;
  right: -12px;
  bottom: 12%;
  display: flex;
  align-items: center;
  width: 225px;
  padding: 17px 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-detail-in .65s 3.55s cubic-bezier(.22,1,.36,1) forwards;
}

.hero-note::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--coral);
}

@keyframes hero-detail-in { to { opacity: 1; transform: none; } }

.spark {
  position: absolute;
  top: 15%;
  left: -8px;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
  font-size: 2rem;
  opacity: 0;
  transform: scale(.65);
  animation: spark-in .65s 3.45s cubic-bezier(.22,1,.36,1) forwards, spark-turn 10s 4.1s linear infinite;
}

@keyframes spark-in { to { opacity: 1; transform: scale(1); } }
@keyframes spark-turn { to { rotate: 360deg; } }

.hero-ticker {
  border-top: 1px solid rgba(255,255,255,.11);
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.hero-ticker-window {
  width: min(860px, calc(100% - 48px));
  margin-inline: auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
}

.hero-ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker 42s linear infinite;
}

.hero-ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 17px 0;
  color: rgba(255,255,255,.78);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .20em;
  white-space: nowrap;
}

.hero-ticker i { margin: 0 22px; color: var(--lime); font-style: normal; }

@keyframes ticker { to { transform: translateX(-50%); } }

.statement,
.process,
.gallery { position: relative; overflow: hidden; }

.statement { background: var(--cream); }

.statement::before,
.process::before,
.gallery::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(28,28,26,.10);
  border-radius: 46% 54% 63% 37% / 39% 42% 58% 61%;
  pointer-events: none;
}

.statement::before { right: -145px; bottom: -175px; }
.process::before { top: 90px; left: -190px; width: 390px; height: 390px; }
.gallery::before { top: 15%; right: -170px; border-color: rgba(255,255,255,.12); }
.statement > .container,
.process > .container,
.gallery > .container { position: relative; z-index: 1; }

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr);
  align-items: start;
  gap: clamp(55px, 7vw, 100px);
}

.statement h2 { max-width: 820px; margin: 0; font-size: clamp(3rem, 4.55vw, 4.65rem); line-height: 1.02; letter-spacing: -.055em; text-wrap: balance; }
.statement h2 em { color: var(--coral-dark); }
.statement h2 em { display: inline-block; white-space: nowrap; padding-right: .06em; }
.statement-grid > p:last-child { max-width: 390px; margin: 8px 0 0; color: var(--muted); font-size: .98rem; line-height: 1.65; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(390px, .9fr) 1.1fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.about-visual { position: relative; padding: 28px 0 0 28px; }

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0 55px 80px 0;
  border: 1px solid var(--line);
  border-radius: 240px 240px 0 0;
}

.portrait-arch {
  position: relative;
  overflow: hidden;
  height: 700px;
  border-radius: 240px 240px 0 0;
  background: var(--cream);
}

.portrait-arch img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.portrait-arch img { transition: transform 1s cubic-bezier(.16,1,.3,1), filter .5s ease; }
.portrait-arch:hover img { transform: scale(1.045); filter: saturate(1.08); }

.about-badge {
  position: absolute;
  right: -35px;
  bottom: 55px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 225px;
  padding: 18px 22px;
  background: var(--lime);
  box-shadow: 0 20px 50px rgba(28,28,26,.15);
}

.about-badge strong { font-family: var(--serif); font-size: 2.8rem; line-height: 1; }
.about-badge span { font-size: .72rem; font-weight: 600; line-height: 1.35; }

.about-copy h2 { font-size: clamp(2.7rem, 4.7vw, 5rem); }
.about-copy .lead { color: var(--ink); font-size: 1.2rem; font-weight: 600; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }

.signature-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.signature-line img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.signature-line p { display: flex; flex-direction: column; margin: 0; line-height: 1.4; }
.signature-line strong { font-size: .9rem; }
.signature-line span { color: var(--muted); font-size: .74rem; }

.offer { color: white; background: var(--ink); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 65px;
}

.section-heading h2 { margin: 0; }
.section-heading h2 em { color: var(--lime); }
.section-heading > p { margin: 0 0 12px; color: rgba(255,255,255,.6); }

.service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 40px;
  color: var(--ink);
  border-radius: var(--radius);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -155px;
  bottom: -155px;
  border: 1px solid rgba(28,28,26,.23);
  border-radius: 50%;
  transition: width .55s ease, height .55s ease, right .55s ease, bottom .55s ease;
}

.service-card:hover { transform: translateY(-10px) rotate(-.35deg); box-shadow: 0 30px 60px rgba(0,0,0,.22); }
.service-card:hover::after { width: 330px; height: 330px; right: -105px; bottom: -105px; }
.service-coral { background: var(--coral); }
.service-lime { background: var(--lime); }
.service-sky { background: var(--sky); }
.service-cream { background: var(--cream); }

.service-top { display: flex; justify-content: flex-end; align-items: center; margin-bottom: 95px; }
.service-accent {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: rgba(28,28,26,.82);
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(28,28,26,.2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.08);
  transition: transform .5s cubic-bezier(.22,1,.36,1), background .35s ease;
}
.service-accent::before {
  content: "";
  width: 15px;
  height: 15px;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  transition: transform .65s cubic-bezier(.22,1,.36,1);
}
.service-accent::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(28,28,26,.22);
  border-top-color: transparent;
  border-radius: 50%;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.service-card:hover .service-accent { transform: scale(1.06); background: rgba(255,255,255,.38); }
.service-card:hover .service-accent::before { transform: rotate(45deg) scale(1.12); }
.service-card:hover .service-accent::after { transform: rotate(180deg); }
.service-card h3 { margin-bottom: 20px; font-size: clamp(2.3rem, 4vw, 4.3rem); }
.service-card p { max-width: 620px; font-size: .95rem; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 30px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 6px 11px; border: 1px solid rgba(28,28,26,.3); border-radius: 100px; font-size: .7rem; font-weight: 600; }

.team-feature { background: var(--paper); }

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }

.team-image { position: relative; overflow: hidden; border-radius: 22px; background: var(--cream); }
.team-image img { width: 100%; aspect-ratio: .86; object-fit: cover; filter: grayscale(100%); }
.team-image img { transition: transform 1s cubic-bezier(.16,1,.3,1), filter .5s ease; }
.team-image:hover img { transform: scale(1.045); filter: grayscale(0); }
.team-image > span { position: absolute; right: 20px; bottom: 20px; padding: 12px 18px; border: 1px solid rgba(28,28,26,.16); border-radius: 100px; background: var(--coral); box-shadow: 0 12px 30px rgba(28,28,26,.16); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.team-copy h2 em { color: var(--coral-dark); }
.team-copy .lead { font-size: 1.2rem; font-weight: 600; }
.team-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }

.mini-points { margin-top: 42px; border-top: 1px solid var(--line); }
.mini-points > div { position: relative; display: grid; grid-template-columns: 1fr; padding: 19px 14px 19px 28px; border-bottom: 1px solid var(--line); }
.mini-points > div { transition: padding-left .25s ease, background .25s ease; }
.mini-points > div:hover { padding-left: 34px; background: linear-gradient(90deg, rgba(255,106,77,.08), transparent 75%); }
.mini-points > div::before { content: ""; position: absolute; left: 4px; top: 27px; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); transition: transform .25s ease; }
.mini-points > div:hover::before { transform: scale(1.35); }
.mini-points p { display: grid; grid-template-columns: minmax(110px, .7fr) minmax(170px, 1fr); align-items: center; gap: 24px; margin: 0; font-size: .88rem; }
.mini-points strong { font-weight: 700; }
.mini-points p span { color: var(--muted); }

.process { background: var(--cream); }

.process-intro {
  display: grid;
  grid-template-columns: .75fr 2fr 1fr;
  gap: 35px;
  align-items: start;
  margin-bottom: 70px;
}
.process-intro h2 { margin: 0; font-size: clamp(2.7rem, 4.5vw, 5rem); }
.process-intro h2 em { color: var(--coral-dark); }
.process-intro > p:last-child { color: var(--muted); }

.process-route {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 16px;
  margin-bottom: 24px;
}
.process-route > strong {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.process-route > span {
  position: relative;
  flex: 1;
  height: 1px;
  background: var(--coral);
  transform-origin: left center;
}
.process-route > span::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -1px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 9px solid var(--coral);
}
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.process-steps article {
  position: relative;
  min-height: 285px;
  padding: 34px 28px 30px;
  border: 1px solid rgba(235,115,79,.55);
  background: rgba(255,255,255,.3);
  transform-origin: top center;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.process-steps article:hover {
  transform: none;
  border-color: rgba(235,115,79,.42);
  box-shadow: 0 22px 45px rgba(28,28,26,.08);
}
.process-steps article + article { padding-left: 28px; border-left: 1px solid rgba(235,115,79,.55); }
.process-steps article::before {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  margin-bottom: 16px;
  background: var(--coral);
  transition: width .35s ease;
}
.process-steps article:hover::before { width: 44px; }
.process-steps article::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 20px;
  height: 20px;
  background: linear-gradient(225deg, var(--cream) 46%, rgba(235,115,79,.45) 48%, rgba(255,255,255,.68) 51%);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.process-pin {
  position: absolute;
  z-index: 3;
  top: -1px;
  right: 32px;
  width: 13px;
  height: 18px;
  pointer-events: none;
}
.process-pin::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  width: 13px;
  height: 32px;
  border-top: 1px solid var(--coral);
  border-right: 1px solid var(--coral);
  border-radius: 0 13px 0 0;
  transform-origin: top left;
}
.process-steps h3 { margin-bottom: 20px; font-size: 1.8rem; }
.process-steps p { color: var(--muted); font-size: .9rem; }

.youth { color: white; background: #192e30; view-timeline: --youth-motion block; isolation: isolate; }
.youth-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; perspective: 1200px; }
.youth-copy { position: relative; }
.youth-copy::after {
  content: "";
  position: absolute;
  top: -38px;
  right: 8%;
  width: 1px;
  height: 110px;
  background: linear-gradient(var(--coral), transparent);
  transform-origin: top center;
}
.youth-copy h2 { font-size: clamp(2.7rem, 4.7vw, 5.2rem); }
.youth-copy h2 em { color: var(--lime); }
.youth-copy .lead { font-size: 1.2rem; font-weight: 600; }
.youth-copy > p:not(.eyebrow):not(.lead) { color: rgba(255,255,255,.62); }
.youth-copy .text-link { margin-top: 20px; }
.youth-image { position: relative; }
.youth-image img { width: 100%; aspect-ratio: 1.05; object-fit: cover; border-radius: 230px 230px 0 0; }
.youth-image { overflow: hidden; border-radius: 230px 230px 0 0; }
.youth-image img { transition: transform 1s cubic-bezier(.16,1,.3,1); }
.youth-image:hover img { transform: scale(1.045); }
.youth-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(105deg, transparent 36%, rgba(255,255,255,.34) 49%, transparent 62%);
  pointer-events: none;
  transform: translateX(-145%);
}
.youth-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 210px 210px 0 0;
  clip-path: inset(0 100% 100% 0);
  pointer-events: none;
}
.youth-label { position: absolute; z-index: 3; right: 44px; bottom: 34px; padding: 17px 22px; background: var(--lime); color: var(--ink); font-size: .75rem; font-weight: 700; }
.youth::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -90px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border: 42px solid rgba(235,115,79,.1);
  border-radius: 50%;
  pointer-events: none;
}

.audience { background: var(--paper); }
.section-heading-dark > p { color: var(--muted); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.audience-grid article { min-height: 270px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-grid article { position: relative; transition: transform .3s ease, box-shadow .3s ease, background .3s ease; }
.audience-grid article:hover { z-index: 2; transform: translateY(-7px); background: var(--coral); box-shadow: 0 22px 45px rgba(28,28,26,.14); }
.audience-grid article:nth-child(2), .audience-grid article:nth-child(6) { background: var(--cream); }
.audience-grid article:nth-child(4) { background: var(--lime); }
.audience-grid article::before { content: ""; display: block; width: 10px; height: 10px; margin-bottom: 50px; border: 2px solid var(--coral); border-radius: 50%; transition: background .25s ease, transform .25s ease; }
.audience-grid article:hover::before { background: var(--ink); border-color: var(--ink); transform: scale(1.2); }
.audience-grid h3 { margin-bottom: 16px; font-size: 1.5rem; letter-spacing: -.035em; }
.audience-grid p { margin: 0; color: var(--muted); font-size: .86rem; }

.quote-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.quote-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.quote-image { overflow: hidden; }
.quote-image img { transition: transform 1.2s cubic-bezier(.16,1,.3,1), filter .6s ease; }
.quote-block:hover .quote-image img { transform: scale(1.04); filter: grayscale(30%); }
.quote-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 8vw, 130px); background: var(--coral); }
.quote-mark { height: 80px; font-family: var(--serif); font-size: 7rem; line-height: .9; }
.quote-copy blockquote { margin: 20px 0 35px; font-family: var(--serif); font-size: clamp(2.2rem, 3.8vw, 4rem); font-weight: 600; line-height: 1.12; letter-spacing: -.035em; }
.quote-copy cite { font-size: .78rem; font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.testimonials { background: var(--cream); }
.testimonials-heading { display: grid; grid-template-columns: .5fr 1.5fr; align-items: start; margin-bottom: 65px; }
.testimonials-heading h2 { margin: 0; font-size: clamp(2.7rem, 4.6vw, 5rem); }
.testimonials-heading h2 em { color: var(--coral-dark); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; align-items: stretch; }
.testimonial-grid article { display: flex; flex-direction: column; min-height: 410px; padding: 32px; background: var(--paper); border-radius: 20px; }
.testimonial-grid article { transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease; }
.testimonial-grid article:hover { transform: translateY(-10px); box-shadow: 0 25px 55px rgba(28,28,26,.13); }
.testimonial-grid .testimonial-featured { background: var(--ink); color: white; transform: translateY(-18px); }
.testimonial-grid .testimonial-featured:hover { transform: translateY(-28px); }
.stars { margin-bottom: 65px; color: var(--coral-dark); font-size: .8rem; letter-spacing: .22em; }
.testimonial-grid article > p { margin-bottom: 40px; font-family: var(--serif); font-size: 1.3rem; line-height: 1.45; }
.testimonial-grid footer { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testimonial-grid footer > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: .7rem; font-weight: 700; }
.testimonial-grid footer div { display: flex; flex-direction: column; }
.testimonial-grid footer strong { font-size: .8rem; }
.testimonial-grid footer small { color: var(--muted); font-size: .68rem; }

.gallery { overflow: hidden; }
.gallery-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 55px; }
.gallery-heading h2 { margin: 0; font-size: clamp(2.7rem, 4.7vw, 5rem); }
.gallery-heading h2 em { color: var(--coral-dark); }
.gallery-heading p { margin: 0; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 240px; gap: 14px; }
.gallery-grid figure { grid-column: span 4; margin: 0; overflow: hidden; }
.gallery-grid .gallery-tall { grid-row: span 2; }
.gallery-grid figure:nth-child(3) { grid-column: span 5; }
.gallery-grid figure:nth-child(5) { grid-column: span 5; }
.gallery-grid figure:nth-child(6) { grid-column: span 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter .35s ease, transform .6s ease; }
.gallery-grid figure:hover img { filter: grayscale(0); transform: scale(1.035); }
.gallery-grid figure:nth-child(5) img {
  object-position: center 22%;
  filter: grayscale(100%) contrast(1.16) brightness(.92);
}
.gallery-grid figure:nth-child(5):hover img {
  filter: grayscale(100%) contrast(1.2) brightness(.96);
}
.gallery-grid figure:nth-child(6) img {
  object-position: center 8%;
  filter: grayscale(100%) contrast(1.16) brightness(.92);
}
.gallery-grid figure:nth-child(6):hover img {
  filter: grayscale(100%) contrast(1.2) brightness(.96);
}

.faq { color: white; background: var(--ink); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro h2 { font-size: clamp(2.7rem, 4.7vw, 5rem); }
.faq-intro p:not(.eyebrow) { max-width: 420px; color: rgba(255,255,255,.55); }
.faq-intro .button { margin-top: 20px; }
.faq-list { border-top: 1px solid rgba(255,255,255,.18); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.18); }
.faq-list details { transition: padding-left .3s ease, background .3s ease; }
.faq-list details:hover { padding-left: 15px; background: linear-gradient(90deg, rgba(201,235,103,.06), transparent); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 28px 0; cursor: pointer; list-style: none; font-size: 1.08rem; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; transition: transform .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--coral); border-color: var(--coral); color: var(--ink); }
.faq-list details p { max-width: 680px; margin: -4px 70px 30px 0; color: rgba(255,255,255,.55); font-size: .9rem; }

.contact { background: var(--lime); }
.contact-shell { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: center; }
.contact-main h2 { max-width: 820px; font-size: clamp(3rem, 5.7vw, 6.2rem); }
.contact-main h2 em { color: var(--coral-dark); }
.contact-main > p:not(.eyebrow) { max-width: 680px; }
.contact-main .button { margin-top: 25px; }

.contact-card {
  position: relative;
  display: flex;
  min-height: 620px;
  padding: 38px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background: var(--ink);
  color: white;
  box-shadow: 0 34px 80px rgba(56,72,22,.25);
  isolation: isolate;
}

.contact-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -130px;
  right: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}

.contact-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -65px;
  bottom: 80px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(255,106,77,.12);
  border-radius: 50%;
}

.contact-card-head { position: relative; z-index: 1; max-width: 340px; }
.contact-card-head > span { display: block; margin-bottom: 18px; color: var(--lime); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-card-head h3 { margin: 0; font-size: clamp(2.25rem, 3.2vw, 3.15rem); line-height: 1.02; letter-spacing: -.05em; }
.contact-card-head h3 em { color: var(--coral); font-family: var(--serif); font-weight: 600; }

.contact-options { position: relative; z-index: 1; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.18); }

.contact-option {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 40px;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: padding .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.contact-option > span { color: rgba(255,255,255,.47); font-size: .58rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transition: color .3s ease; }
.contact-option strong { min-width: 0; font-size: .82rem; line-height: 1.35; overflow-wrap: anywhere; }
.contact-option i { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: 1rem; font-style: normal; transition: transform .3s ease, background .3s ease; }
.contact-option:hover { margin-inline: -14px; padding-inline: 14px; border-color: transparent; border-radius: 14px; color: var(--ink); }
.contact-option:hover > span { color: rgba(28,28,26,.58); }
.contact-option:hover i { transform: rotate(45deg); border-color: var(--ink); }
.contact-option-email:hover { background: var(--paper); }
.contact-option-phone:hover { background: var(--coral); }
.contact-option-map:hover { background: var(--lime); }

.contact-card-foot { position: relative; z-index: 1; display: grid; grid-template-columns: 54px 1fr; gap: 12px; align-items: center; margin-top: auto; padding-top: 30px; }
.contact-card-foot img { width: 54px; height: 54px; border: 2px solid rgba(255,255,255,.45); border-radius: 50%; object-fit: cover; }
.contact-card-foot p { display: flex; flex-direction: column; margin: 0; line-height: 1.35; }
.contact-card-foot p strong { font-size: .76rem; }
.contact-card-foot p span { color: rgba(255,255,255,.48); font-size: .65rem; }
.contact-card-foot > small { grid-column: 1 / -1; margin-top: 12px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.55); font-size: .64rem; letter-spacing: .05em; }

/* Indywidualne warstwy ruchu dla kolejnych sekcji */
.statement-grid { position: relative; }
.statement-grid::after {
  content: "";
  position: absolute;
  top: -36px;
  right: 14%;
  width: 54px;
  height: 54px;
  border: 12px solid rgba(235,115,79,.12);
  border-radius: 50%;
  pointer-events: none;
}

.signature-line { position: relative; overflow: hidden; }
.signature-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left center;
}

.offer .section-heading { position: relative; }
.offer .section-heading::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), rgba(255,255,255,.06));
  transform: scaleX(0);
  transform-origin: left center;
}

.team-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.25) 49%, transparent 60%);
  pointer-events: none;
  transform: translateX(-125%);
}

.process-steps { position: relative; }

.youth,
.audience,
.testimonials,
.faq { position: relative; overflow: hidden; }

.youth > .container,
.audience > .container,
.testimonials > .container,
.faq > .container { position: relative; z-index: 1; }

.youth::before,
.audience::after,
.testimonials::before,
.faq::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid currentColor;
  border-radius: 42% 58% 68% 32% / 48% 35% 65% 52%;
  opacity: .09;
  pointer-events: none;
}

.youth::before { top: -170px; left: -120px; }
.audience::after { right: -180px; bottom: -190px; color: var(--coral-dark); }
.testimonials::before { top: 20%; left: -220px; color: var(--coral-dark); }
.faq::after { right: -170px; bottom: -190px; color: var(--lime); }

.quote-copy { position: relative; overflow: hidden; }
.quote-copy > * { position: relative; z-index: 1; }
.quote-copy::after {
  content: "✦";
  position: absolute;
  right: -70px;
  bottom: -110px;
  color: rgba(28,28,26,.09);
  font-size: 19rem;
  line-height: 1;
  pointer-events: none;
}

.quote-copy cite::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  margin-right: 0;
  vertical-align: middle;
  background: currentColor;
}

.gallery-grid figure { position: relative; }
.gallery-grid figure::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.55);
  clip-path: inset(0 100% 100% 0);
  pointer-events: none;
}

/* Animacje wejścia uruchamiane w momencie przewijania — nowoczesne przeglądarki */
@supports (animation-timeline: view()) {
  .hero-copy {
    animation: hero-copy-scroll linear both;
    animation-timeline: view();
    animation-range: exit 0% exit 82%;
  }

  .hero-visual {
    animation: hero-visual-scroll linear both;
    animation-timeline: view();
    animation-range: exit 0% exit 100%;
  }

  .statement-grid > *,
  .about-visual,
  .about-copy > *,
  .section-heading > *,
  .service-card,
  .team-image,
  .team-copy > *,
  .process-intro > *,
  .youth-copy > *,
  .youth-image,
  .audience-grid article,
  .quote-image,
  .quote-copy > *,
  .testimonials-heading > *,
  .testimonial-grid article,
  .gallery-heading > *,
  .gallery-grid figure,
  .faq-intro > *,
  .faq-list details,
  .contact-main > *,
  .contact-card,
  .footer-bottom > * {
    --reveal-x: 0px;
    --reveal-y: 68px;
    --reveal-rotate: 0deg;
    opacity: .01;
    translate: var(--reveal-x) var(--reveal-y);
    rotate: var(--reveal-rotate);
    scale: .955;
    transform-origin: center;
    animation: scroll-reveal cubic-bezier(.22, 1, .36, 1) both;
    animation-timeline: view();
    animation-range: entry 0% exit 0%;
  }

  .service-card:nth-child(odd),
  .audience-grid article:nth-child(odd),
  .testimonial-grid article:nth-child(odd),
  .gallery-grid figure:nth-child(odd) { --reveal-rotate: -3deg; }

  .service-card:nth-child(even),
  .audience-grid article:nth-child(even),
  .testimonial-grid article:nth-child(even),
  .gallery-grid figure:nth-child(even) { --reveal-rotate: 3deg; }

  .about-visual,
  .team-image,
  .quote-image {
    --reveal-x: -92px;
    --reveal-y: 0px;
    --reveal-rotate: -1.8deg;
  }

  .youth-image,
  .contact-card {
    --reveal-x: 92px;
    --reveal-y: 0px;
    --reveal-rotate: 1.8deg;
  }

  .service-card:nth-child(even),
  .audience-grid article:nth-child(3n + 2),
  .testimonial-grid article:nth-child(2),
  .gallery-grid figure:nth-child(even) {
    animation-range: entry 10% exit 0%;
  }

  .service-card:nth-child(3),
  .audience-grid article:nth-child(3n),
  .testimonial-grid article:nth-child(3),
  .gallery-grid figure:nth-child(3n) {
    animation-range: entry 20% exit 0%;
  }

  .service-card:nth-child(4),
  .audience-grid article:nth-child(3n + 1),
  .gallery-grid figure:nth-child(4n) {
    animation-range: entry 30% exit 0%;
  }

  .about-copy > :nth-child(2),
  .team-copy > :nth-child(2),
  .youth-copy > :nth-child(2),
  .quote-copy > :nth-child(2),
  .faq-intro > :nth-child(2),
  .contact-main > :nth-child(2) {
    animation-range: entry 10% exit 0%;
  }

  .about-copy > :nth-child(3),
  .team-copy > :nth-child(3),
  .youth-copy > :nth-child(3),
  .quote-copy > :nth-child(3),
  .faq-intro > :nth-child(3),
  .contact-main > :nth-child(3) {
    animation-range: entry 20% exit 0%;
  }

  .about-copy > :nth-child(n + 4),
  .team-copy > :nth-child(n + 4),
  .youth-copy > :nth-child(n + 4),
  .faq-intro > :nth-child(n + 4),
  .contact-main > :nth-child(n + 4) {
    animation-range: entry 30% exit 0%;
  }

  .portrait-arch img,
  .team-image img,
  .youth-image img,
  .quote-image img,
  .gallery-grid img {
    animation: media-parallax linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  .statement h2 em,
  .section-heading h2 em,
  .team-copy h2 em,
  .process-intro h2 em,
  .youth-copy h2 em,
  .testimonials-heading h2 em,
  .gallery-heading h2 em,
  .contact-main h2 em {
    animation: accent-scroll linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 0%;
  }

  .eyebrow > span {
    animation: line-draw linear both;
    animation-timeline: view();
    animation-range: entry 8% exit 0%;
    transform-origin: left center;
  }

  .statement::before,
  .process::before,
  .gallery::before {
    animation: orbit-scroll linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
}

@keyframes hero-copy-scroll {
  from { opacity: 1; translate: 0 0; }
  to { opacity: .15; translate: 0 -90px; }
}

@keyframes hero-visual-scroll {
  from { opacity: 1; translate: 0 0; rotate: 0deg; }
  to { opacity: .36; translate: 0 105px; rotate: 1.4deg; }
}

@keyframes media-parallax {
  from { translate: 0 -3%; scale: 1.055; }
  to { translate: 0 3%; scale: 1.055; }
}

@keyframes accent-scroll {
  0% { opacity: .35; translate: -32px 0; }
  58%, 100% { opacity: 1; translate: 0 0; }
}

@keyframes line-draw {
  0% { scale: 0 1; }
  58%, 100% { scale: 1 1; }
}

@keyframes orbit-scroll {
  from { translate: 0 70px; rotate: 0deg; }
  to { translate: 0 -70px; rotate: 135deg; }
}

/* Rozbudowana choreografia sekcji sterowana pozycją scrolla */
@supports (animation-timeline: view()) {
  /* Start */
  .hero::after {
    animation: hero-ring-scroll linear both;
    animation-timeline: view();
    animation-range: exit 0% exit 100%;
  }
  .hero h1 em {
    animation: hero-word-scroll linear both;
    animation-timeline: view();
    animation-range: exit 0% exit 92%;
  }
  .hero-note::before {
    animation: detail-dot-scroll linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  /* Manifest */
  .statement-grid::after {
    animation: statement-orbit linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  /* O mnie */
  .about-badge {
    animation: badge-dock cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 72%;
  }
  .about-badge strong {
    animation: badge-number linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .signature-line::after {
    animation: line-draw-wide linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 72%;
  }
  .signature-line img {
    animation: avatar-pop cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 5% cover 76%;
  }

  /* Oferta */
  .offer .section-heading::after {
    animation: line-draw-wide linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 68%;
  }
  .service-accent {
    animation: service-accent-arrive cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 76%;
  }
  .service-card::after {
    animation: service-orbit linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .service-card li {
    animation: micro-rise cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 70%;
  }
  .service-card li:nth-child(2) { animation-range: entry 8% cover 79%; }
  .service-card li:nth-child(3) { animation-range: entry 16% cover 88%; }

  /* Zespół */
  .team-image::after {
    animation: team-scan linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 88%;
  }
  .mini-points > div {
    animation: team-row cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 68%;
  }
  .mini-points > div:nth-child(2) { animation-range: entry 8% cover 78%; }
  .mini-points > div:nth-child(3) { animation-range: entry 16% cover 88%; }
  .mini-points > div::before {
    animation: dot-grow cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 72%;
  }

  /* Młodzież */
  .youth::before {
    animation: section-orbit linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .youth-label {
    animation: label-slide cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 76%;
  }
  .youth-copy .text-link span {
    animation: arrow-turn linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 82%;
  }

  /* Dla kogo */
  .audience::after {
    animation: section-orbit-reverse linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .audience-grid h3 {
    animation: audience-heading cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 72%;
  }
  .audience-grid article::before {
    animation: dot-grow cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 68%;
  }

  /* Cytat */
  .quote-copy::after {
    animation: quote-constellation linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .quote-copy cite::before {
    animation: cite-line cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 78%;
  }

  /* Opinie */
  .testimonials::before {
    animation: section-orbit linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .stars {
    animation: star-spread cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 74%;
  }
  .testimonial-grid footer > span {
    animation: avatar-pop cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 72%;
  }
  .testimonial-grid footer div {
    animation: micro-rise cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 8% cover 82%;
  }

  /* Galeria */
  .gallery-grid figure::after {
    animation: gallery-frame linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 76%;
  }
  .gallery-grid figure:nth-child(even)::after { animation-range: entry 12% cover 86%; }

  /* FAQ */
  .faq::after {
    animation: section-orbit-reverse linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .faq-list summary {
    animation: faq-summary cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 68%;
  }
  .faq-list summary span {
    animation: faq-control cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 74%;
  }

  /* Kontakt */
  .contact-card::before {
    animation: contact-orbit-one linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .contact-card::after {
    animation: contact-orbit-two linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .contact-option {
    animation: contact-row cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 68%;
  }
  .contact-option:nth-child(2) { animation-range: entry 8% cover 78%; }
  .contact-option:nth-child(3) { animation-range: entry 16% cover 88%; }
  .contact-card-foot img {
    animation: avatar-pop cubic-bezier(.16,1,.3,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 74%;
  }
}

/* Dedykowana, wielowarstwowa scena scrollowa — Młodzież i edukacja */
@supports (animation-timeline: view()) {
  .youth-copy .eyebrow {
    animation: youth-eyebrow-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
  }

  .youth-copy h2 {
    animation: youth-title-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
    transform-origin: left center;
  }

  .youth-copy h2 em {
    animation: youth-em-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
    transform-origin: left center;
  }

  .youth-copy .lead {
    animation: youth-lead-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
  }

  .youth-copy > p:not(.eyebrow):not(.lead) {
    animation: youth-body-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
  }

  .youth-copy .text-link {
    animation: youth-cta-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
  }

  .youth-copy .text-link span {
    animation: youth-arrow-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
  }

  .youth-copy::after {
    animation: youth-marker-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
  }

  .youth-image {
    animation: youth-image-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
    transform-origin: center bottom;
  }

  .youth-image img {
    animation: youth-photo-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
  }

  .youth-image::before {
    animation: youth-scan-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
  }

  .youth-image::after {
    animation: youth-frame-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
  }

  .youth-label {
    animation: youth-label-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
  }

  .youth::before {
    animation: youth-orbit-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
  }

  .youth::after {
    animation: youth-ring-scene linear both;
    animation-timeline: --youth-motion;
    animation-range: entry 0% exit 0%;
  }
}

@keyframes youth-eyebrow-scene {
  0% { opacity: 0; translate: 0 22px; letter-spacing: .2em; }
  28%, 100% { opacity: 1; translate: 0 0; letter-spacing: .14em; }
}

@keyframes youth-title-scene {
  0% { opacity: 0; translate: 0 46px; rotate: 0deg; scale: .96; clip-path: inset(0 0 100% 0); }
  40%, 100% { opacity: 1; translate: 0 0; rotate: 0deg; scale: 1; clip-path: inset(0); }
}

@keyframes youth-em-scene {
  0%, 16% { opacity: 0; translate: 0 24px; rotate: 0deg; scale: .97; }
  46%, 100% { opacity: 1; translate: 0 0; rotate: 0deg; scale: 1; }
}

@keyframes youth-lead-scene {
  0%, 14% { opacity: 0; translate: 0 32px; }
  46%, 100% { opacity: 1; translate: 0 0; }
}

@keyframes youth-body-scene {
  0%, 22% { opacity: 0; translate: 0 30px; }
  54%, 100% { opacity: 1; translate: 0 0; }
}

@keyframes youth-cta-scene {
  0%, 30% { opacity: 0; translate: 0 24px; scale: .96; }
  60%, 100% { opacity: 1; translate: 0 0; scale: 1; }
}

@keyframes youth-arrow-scene {
  0%, 36% { translate: -8px 8px; rotate: -45deg; scale: .7; }
  62%, 100% { translate: 0 0; rotate: 0deg; scale: 1; }
}

@keyframes youth-marker-scene {
  0% { opacity: 0; rotate: 0deg; scale: 1 0; }
  42%, 100% { opacity: 1; rotate: 0deg; scale: 1 1; }
}

@keyframes youth-image-scene {
  0% { opacity: 0; translate: 0 58px; rotate: 0deg; scale: .95; clip-path: inset(12% 0 0 0 round 230px 230px 0 0); }
  42%, 100% { opacity: 1; translate: 0 0; rotate: 0deg; scale: 1; clip-path: inset(0 round 230px 230px 0 0); }
}

@keyframes youth-photo-scene {
  0% { translate: 0 -3%; scale: 1.07; filter: saturate(.72) contrast(1.08); }
  50% { translate: 0 0; scale: 1.045; filter: saturate(.88) contrast(1.04); }
  100% { translate: 0 3%; scale: 1.06; filter: saturate(1) contrast(1); }
}

@keyframes youth-scan-scene {
  0%, 22% { opacity: 0; transform: translateX(-145%); }
  35% { opacity: 1; }
  65% { opacity: .8; transform: translateX(145%); }
  66%, 100% { opacity: 0; transform: translateX(145%); }
}

@keyframes youth-frame-scene {
  0%, 24% { opacity: 0; clip-path: inset(0 100% 100% 0); }
  54%, 100% { opacity: 1; clip-path: inset(0); }
}

@keyframes youth-label-scene {
  0%, 32% { opacity: 0; translate: 0 28px; rotate: 0deg; scale: .96; }
  60%, 100% { opacity: 1; translate: 0 0; rotate: 0deg; scale: 1; }
}

@keyframes youth-orbit-scene {
  0% { translate: -120px 130px; rotate: 0deg; scale: .55; }
  55% { translate: 105px -40px; rotate: 190deg; scale: 1.2; }
  100% { translate: 240px -180px; rotate: 330deg; scale: .8; }
}

@keyframes youth-ring-scene {
  0% { opacity: 0; translate: 150px 120px; rotate: 0deg; scale: .4; }
  50% { opacity: 1; translate: 0 0; rotate: 140deg; scale: 1; }
  100% { opacity: 0; translate: -170px -150px; rotate: 300deg; scale: 1.35; }
}

@keyframes hero-ring-scroll {
  from { translate: 0 90px; rotate: 0deg; scale: .82; }
  to { translate: -180px -100px; rotate: 150deg; scale: 1.18; }
}

@keyframes hero-word-scroll {
  from { opacity: 1; translate: 0 0; rotate: 0deg; }
  to { opacity: .32; translate: 38px -15px; rotate: -2deg; }
}

@keyframes detail-dot-scroll {
  from { scale: .55; box-shadow: 0 0 0 0 rgba(235,115,79,.35); }
  to { scale: 1.25; box-shadow: 0 0 0 12px rgba(235,115,79,0); }
}

@keyframes statement-orbit {
  from { opacity: .15; translate: -80px 75px; rotate: 0deg; scale: .65; }
  to { opacity: 1; translate: 110px -70px; rotate: 240deg; scale: 1.2; }
}

@keyframes badge-dock {
  from { opacity: 0; translate: 52px 42px; rotate: 14deg; scale: .62; }
  to { opacity: 1; translate: 0 0; rotate: 0deg; scale: 1; }
}

@keyframes badge-number {
  from { translate: 0 8px; rotate: -8deg; scale: .9; }
  to { translate: 0 -8px; rotate: 8deg; scale: 1.08; }
}

@keyframes line-draw-wide { to { transform: scaleX(1); } }

@keyframes avatar-pop {
  from { opacity: 0; translate: 0 20px; rotate: -12deg; scale: .45; }
  to { opacity: 1; translate: 0 0; rotate: 0deg; scale: 1; }
}

@keyframes service-accent-arrive {
  from { opacity: .1; translate: 25px -20px; rotate: -55deg; scale: .55; }
  to { opacity: 1; translate: 0 0; rotate: 0deg; scale: 1; }
}

@keyframes service-orbit {
  from { translate: 0 0; rotate: 0deg; }
  to { translate: -42px -35px; rotate: 160deg; }
}

@keyframes micro-rise {
  from { opacity: 0; translate: 0 15px; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes team-scan {
  from { transform: translateX(-125%); }
  to { transform: translateX(125%); }
}

@keyframes team-row {
  from { opacity: 0; translate: -30px 0; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes dot-grow {
  from { opacity: 0; rotate: -90deg; scale: 0; }
  to { opacity: 1; rotate: 0deg; scale: 1; }
}

@keyframes process-route-draw {
  from { scale: 0 1; }
  to { scale: 1 1; }
}

@keyframes process-route-drop {
  from { scale: 1 0; }
  to { scale: 1 1; }
}

@keyframes process-label-arrive {
  from { opacity: 0; translate: -16px 0; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes process-route-arrow {
  from { opacity: 0; translate: -18px 0; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes process-route-branch {
  from { clip-path: inset(0 0 100% 0); }
  to { clip-path: inset(0); }
}

@keyframes process-route-branch-mobile {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0); }
}

@keyframes process-card-arrive {
  0% { opacity: 0; translate: 0 0; rotate: 0deg; scale: .985 .96; filter: blur(0); }
  32% { opacity: .72; }
  100% { opacity: 1; translate: 0 0; rotate: 0deg; scale: 1 1; filter: blur(0); }
}

@keyframes process-bar {
  from { opacity: .2; scale: 0 1; }
  to { opacity: 1; scale: 1 1; }
}

@keyframes heading-unfold {
  from { opacity: 0; translate: 0 22px; letter-spacing: .02em; }
  to { opacity: 1; translate: 0 0; letter-spacing: -.035em; }
}

@keyframes section-orbit {
  from { translate: -80px 90px; rotate: 0deg; scale: .75; }
  to { translate: 120px -100px; rotate: 210deg; scale: 1.2; }
}

@keyframes section-orbit-reverse {
  from { translate: 90px 80px; rotate: 180deg; scale: 1.15; }
  to { translate: -110px -90px; rotate: -40deg; scale: .75; }
}

@keyframes label-slide {
  from { opacity: 0; translate: 70px 0; rotate: 3deg; }
  to { opacity: 1; translate: 0 0; rotate: 0deg; }
}

@keyframes arrow-turn {
  from { translate: -8px 8px; rotate: -45deg; scale: .7; }
  to { translate: 0 0; rotate: 0deg; scale: 1; }
}

@keyframes audience-heading {
  from { opacity: 0; translate: 18px 0; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes quote-constellation {
  from { translate: 90px 85px; rotate: -50deg; scale: .7; }
  to { translate: -95px -65px; rotate: 70deg; scale: 1.12; }
}

@keyframes cite-line {
  from { width: 0; margin-right: 0; }
  to { width: 34px; margin-right: 12px; }
}

@keyframes star-spread {
  from { opacity: 0; letter-spacing: 0; translate: -15px 0; }
  to { opacity: 1; letter-spacing: .22em; translate: 0 0; }
}

@keyframes gallery-frame {
  from { opacity: 0; clip-path: inset(0 100% 100% 0); }
  to { opacity: 1; clip-path: inset(0); }
}

@keyframes faq-summary {
  from { opacity: .1; translate: 28px 0; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes faq-control {
  from { opacity: 0; rotate: -90deg; scale: .45; }
  to { opacity: 1; rotate: 0deg; scale: 1; }
}

@keyframes contact-orbit-one {
  from { translate: 65px 75px; rotate: 0deg; scale: .8; }
  to { translate: -70px -65px; rotate: 130deg; scale: 1.18; }
}

@keyframes contact-orbit-two {
  from { translate: -45px 70px; rotate: -30deg; scale: .72; }
  to { translate: 80px -70px; rotate: 110deg; scale: 1.2; }
}

@keyframes contact-row {
  from { opacity: 0; translate: 36px 0; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes scroll-reveal {
  0% {
    opacity: .01;
    translate: var(--reveal-x) var(--reveal-y);
    rotate: var(--reveal-rotate);
    scale: .955;
    filter: blur(.8px);
  }
  48%, 100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
    scale: 1;
    filter: blur(0);
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  color: white;
  background:
    radial-gradient(circle at 52% 0, rgba(201,235,103,.09), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(235,115,79,.08), transparent 24%),
    #11120f;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
}

.footer-bottom { position: relative; z-index: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.36);
  font-size: .57rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.author-credit strong { color: rgba(255,255,255,.78); font-weight: 700; }
.footer-bottom > a { color: rgba(255,255,255,.72); transition: color .3s ease, transform .3s ease; }
.footer-bottom > a:hover { color: var(--lime); transform: translateY(-3px); }

/* Sekwencja procesu uruchamiana jeden raz po wejściu sekcji w ekran */
.motion-enabled .process:not(.process-active) .process-route > strong,
.motion-enabled .process:not(.process-active) .process-route > span,
.motion-enabled .process:not(.process-active) .process-route > span::after,
.motion-enabled .process:not(.process-active) .process-pin::before,
.motion-enabled .process:not(.process-active) .process-steps article,
.motion-enabled .process:not(.process-active) .process-steps article::before,
.motion-enabled .process:not(.process-active) .process-steps article > p,
.motion-enabled .process:not(.process-active) .process-steps h3 { animation: none !important; }

.motion-enabled .process:not(.process-active) .process-route > strong { opacity: 0; translate: -16px 0; }
.motion-enabled .process:not(.process-active) .process-route > span { scale: 0 1; }
.motion-enabled .process:not(.process-active) .process-route > span::after { opacity: 0; translate: -12px 0; }
.motion-enabled .process:not(.process-active) .process-pin::before { clip-path: inset(0 0 100% 0); }
.motion-enabled .process .process-steps article {
  translate: 0 0;
  rotate: 0deg;
  filter: blur(0);
}
.motion-enabled .process:not(.process-active) .process-steps article { opacity: 0; translate: 0 0; rotate: 0deg; scale: .985 .96; filter: blur(0); }
.motion-enabled .process:not(.process-active) .process-steps article::before { opacity: 0; scale: 0 1; }
.motion-enabled .process:not(.process-active) .process-steps article > p { opacity: 0; scale: .985 .96; }
.motion-enabled .process:not(.process-active) .process-steps h3 { opacity: 0; translate: 0 18px; }

.motion-enabled .process.process-active .process-route > strong {
  animation: process-label-arrive .48s cubic-bezier(.22,1,.36,1) both !important;
  animation-timeline: auto !important;
  animation-range: normal !important;
}
.motion-enabled .process.process-active .process-route > span {
  animation: process-route-draw 1.15s cubic-bezier(.22,1,.36,1) .12s both !important;
  animation-timeline: auto !important;
  animation-range: normal !important;
}
.motion-enabled .process.process-active .process-route > span::after {
  animation: process-route-arrow .3s cubic-bezier(.22,1,.36,1) 1.08s both !important;
  animation-timeline: auto !important;
  animation-range: normal !important;
}
.motion-enabled .process.process-active .process-pin::before {
  animation: process-route-branch .58s cubic-bezier(.22,1,.36,1) .48s both !important;
  animation-timeline: auto !important;
  animation-range: normal !important;
}
.motion-enabled .process.process-active .process-steps article:nth-child(2) .process-pin::before { animation-delay: .7s !important; }
.motion-enabled .process.process-active .process-steps article:nth-child(3) .process-pin::before { animation-delay: .92s !important; }

.motion-enabled .process.process-active .process-steps article {
  animation: process-card-arrive .72s cubic-bezier(.22,1,.36,1) .52s both !important;
  animation-timeline: auto !important;
  animation-range: normal !important;
}
.motion-enabled .process.process-active .process-steps article:nth-child(2) { animation-delay: .74s !important; }
.motion-enabled .process.process-active .process-steps article:nth-child(3) { animation-delay: .96s !important; }
.motion-enabled .process.process-active .process-steps article::before {
  animation: process-bar .45s cubic-bezier(.22,1,.36,1) .68s both !important;
  animation-timeline: auto !important;
  animation-range: normal !important;
  transform-origin: left center;
}
.motion-enabled .process.process-active .process-steps article:nth-child(2)::before { animation-delay: .9s !important; }
.motion-enabled .process.process-active .process-steps article:nth-child(3)::before { animation-delay: 1.12s !important; }
.motion-enabled .process.process-active .process-steps h3 {
  animation: heading-unfold .58s cubic-bezier(.22,1,.36,1) .7s both !important;
  animation-timeline: auto !important;
  animation-range: normal !important;
}
.motion-enabled .process.process-active .process-steps article:nth-child(2) h3 { animation-delay: .92s !important; }
.motion-enabled .process.process-active .process-steps article:nth-child(3) h3 { animation-delay: 1.14s !important; }
.motion-enabled .process.process-active .process-steps article > p {
  animation: uniform-item-arrive .68s cubic-bezier(.22,1,.36,1) .88s both !important;
  animation-timeline: auto !important;
}
.motion-enabled .process.process-active .process-steps article:nth-child(2) > p { animation-delay: 1.1s !important; }
.motion-enabled .process.process-active .process-steps article:nth-child(3) > p { animation-delay: 1.32s !important; }

@media (max-width: 1050px) {
  :root { --container: min(100% - 36px, 920px); }
  .footer-bottom { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-bottom > :nth-child(even) { text-align: right; }
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 30px; }
  .hero h1 { font-size: clamp(3.7rem, 7vw, 5.6rem); }
  .hero-image-wrap { min-height: 500px; }
  .statement-grid { grid-template-columns: 1.5fr 1fr; gap: 28px; }
  .about-grid, .team-grid, .youth-grid { gap: 55px; }
  .about-grid { grid-template-columns: .8fr 1.2fr; }
  .portrait-arch { height: 610px; }
  .process-intro { grid-template-columns: .7fr 1.5fr 1fr; }
  .faq-grid { gap: 65px; }
  .contact-shell { gap: 45px; }
}

@media (max-width: 820px) {
  .section-pad { padding: 95px 0; }
  .float-nav {
    top: auto;
    right: auto;
    bottom: 12px;
    left: 50%;
    flex-direction: row;
    padding: 8px 12px;
    transform: translate(-50%, 72px);
    animation-name: float-nav-in-mobile;
  }
  .float-nav a em {
    top: -42px;
    left: 50%;
    display: block;
    transform: translate(-50%, var(--nav-label-shift));
  }
  .float-nav a:hover em,
  .float-nav a:focus-visible em { transform: translate(-50%, 0); }
  .float-nav-progress { top: auto; right: 27px; bottom: 50%; left: 27px; width: auto; height: 1px; transform: translateY(50%); }
  .float-nav-progress i { width: 100%; height: 100%; transform: scaleX(0); transform-origin: left center; }
  .site-footer { padding-bottom: 105px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions { justify-content: center; }
  .hero-lead, .hero-proof { margin-inline: auto; }
  .hero-visual { max-width: 560px; width: 100%; margin: 0 auto; }
  .hero-image-wrap { height: 650px; }
  .statement-grid { grid-template-columns: 1fr; }
  .statement h2 { max-width: 670px; }
  .about-grid, .team-grid, .youth-grid, .faq-grid, .contact-shell { grid-template-columns: 1fr; }
  .about-visual { max-width: 580px; width: 92%; margin: 0 auto; }
  .about-copy { max-width: 680px; }
  .service-card { min-height: 470px; }
  .team-image { order: 2; }
  .team-copy { order: 1; }
  .process-intro { grid-template-columns: .35fr 1fr; }
  .process-intro h2, .process-intro > p:last-child { grid-column: 2; }
  .process-route { display: block; height: auto; margin-bottom: 0; }
  .process-route > strong { display: block; margin-bottom: 12px; }
  .process-route > span { display: block; width: 1px; height: 34px; margin-left: 9px; background: var(--coral); }
  .process-route > span::after { top: auto; right: -4px; bottom: -1px; border-top: 7px solid var(--coral); border-right: 4px solid transparent; border-left: 4px solid transparent; border-bottom: 0; }
  .process-steps { grid-template-columns: 1fr; gap: 18px; margin-left: 9px; padding-left: 38px; border-left: 1px solid var(--coral); }
  .process-steps article, .process-steps article + article { min-height: 0; padding: 31px 26px 30px; border: 1px solid rgba(235,115,79,.55); }
  .process-pin { top: 0; right: auto; left: -38px; width: 38px; height: 13px; }
  .process-pin::before {
    top: 0;
    left: 0;
    width: 38px;
    height: 13px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--coral);
    border-left: 1px solid var(--coral);
    border-radius: 0 0 0 13px;
  }
  .motion-enabled .process:not(.process-active) .process-route > span { scale: 1 0; }
  .motion-enabled .process:not(.process-active) .process-pin::before { clip-path: inset(0 100% 0 0); }
  .motion-enabled .process.process-active .process-route > span { animation-name: process-route-drop !important; transform-origin: top center; }
  .motion-enabled .process.process-active .process-pin::before { animation-name: process-route-branch-mobile !important; }
  .youth-copy { max-width: 680px; }
  .youth-image { max-width: 620px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-block { grid-template-columns: 1fr; }
  .quote-image { height: 570px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid .testimonial-featured { transform: none; }
  .testimonial-grid article { min-height: 330px; }
  .gallery-grid { grid-auto-rows: 210px; }
  .gallery-grid figure, .gallery-grid figure:nth-child(3), .gallery-grid figure:nth-child(5), .gallery-grid figure:nth-child(6) { grid-column: span 6; }
  .faq-intro { position: static; }
  .contact-card { max-width: 520px; width: 100%; margin: 0 auto; }
}

@media (max-width: 580px) {
  :root { --container: calc(100% - 28px); }
  .section-pad { padding: 75px 0; }
  h2 { font-size: 2.7rem; }
  .float-nav { bottom: 9px; gap: 2px; padding: 7px 9px; }
  .float-nav a { width: 28px; height: 28px; }
  .hero-grid { padding-top: 65px; padding-bottom: 55px; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 4.7rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 20px; }
  .hero-proof { grid-template-columns: 1fr; max-width: 340px; }
  .hero-image-wrap { min-height: 0; height: 540px; }
  .hero-note { right: -5px; width: 200px; }
  .spark { width: 58px; height: 58px; font-size: 1.5rem; }
  .statement h2 { font-size: 2.65rem; }
  .about-grid { gap: 70px; }
  .about-visual { padding-left: 15px; }
  .portrait-arch { height: 540px; }
  .about-badge { right: -12px; width: 205px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 440px; }
  .service-list { grid-template-columns: 1fr; }
  .service-card { min-height: 455px; padding: 30px; }
  .service-top { margin-bottom: 72px; }
  .mini-points p { display: block; }
  .mini-points strong, .mini-points p span { display: block; }
  .mini-points p span { margin-top: 3px; }
  .process-intro { grid-template-columns: 1fr; }
  .process-intro h2, .process-intro > p:last-child { grid-column: 1; }
  .youth-image img { aspect-ratio: .85; }
  .youth-label { right: 18px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article { min-height: 230px; }
  .audience-grid article::before { margin-bottom: 38px; }
  .quote-image { height: 460px; }
  .quote-copy { padding: 65px 28px; }
  .quote-copy blockquote { font-size: 2.2rem; }
  .testimonials-heading { grid-template-columns: 1fr; }
  .gallery-heading { align-items: start; flex-direction: column; gap: 14px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-grid figure, .gallery-grid figure:nth-child(3), .gallery-grid figure:nth-child(5), .gallery-grid figure:nth-child(6) { grid-column: span 1; }
  .gallery-grid .gallery-tall { grid-row: span 2; }
  .faq-list summary { font-size: .95rem; }
  .contact-main h2 { font-size: 3rem; }
  .contact-main .button { width: 100%; }
  .statement h2 em { white-space: normal; }
  .contact-card { min-height: 0; padding: 28px 22px; border-radius: 24px; }
  .contact-card-head h3 { font-size: 2.2rem; }
  .contact-options { margin-top: 30px; }
  .contact-option { grid-template-columns: 54px minmax(0, 1fr) 36px; gap: 10px; min-height: 78px; }
  .contact-option strong { font-size: .74rem; }
  .contact-option i { width: 36px; height: 36px; }
  .contact-card-foot { padding-top: 24px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 14px; }
  .footer-bottom > :nth-child(even) { text-align: left; }
}

@keyframes float-nav-in-mobile { to { opacity: 1; transform: translate(-50%, 0); } }

@media (max-width: 820px) {
  @supports (animation-timeline: scroll()) {
    .float-nav-progress i {
      animation: nav-progress-x linear both;
      animation-timeline: scroll(root block);
    }
  }
}

@keyframes nav-progress-x { to { transform: scaleX(1); } }

/* Jednolita choreografia wejścia — uruchamiana raz po wejściu elementu w ekran */
html.uniform-motion .uniform-reveal {
  opacity: 0;
  translate: 0 0;
  rotate: 0deg;
  scale: .985 .96;
  filter: blur(0);
  animation: none !important;
  animation-timeline: auto !important;
  transform-origin: center;
  will-change: opacity, scale;
}

html.uniform-motion .uniform-reveal.uniform-visible {
  animation: uniform-item-arrive .78s cubic-bezier(.22, 1, .36, 1) var(--uniform-delay, 0ms) both !important;
  animation-timeline: auto !important;
}

@keyframes uniform-item-arrive {
  0% { opacity: 0; translate: 0 0; rotate: 0deg; scale: .985 .96; filter: blur(0); }
  32% { opacity: .72; }
  100% { opacity: 1; translate: 0 0; rotate: 0deg; scale: 1 1; filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html.uniform-motion .uniform-reveal,
  html.uniform-motion .uniform-reveal.uniform-visible {
    opacity: 1 !important;
    translate: 0 0 !important;
    rotate: 0deg !important;
    scale: 1 !important;
    filter: none !important;
    animation: none !important;
  }
  .motion-enabled .process .process-route > strong,
  .motion-enabled .process .process-route > span,
  .motion-enabled .process .process-route > span::after,
  .motion-enabled .process .process-pin::before,
  .motion-enabled .process .process-steps article,
  .motion-enabled .process .process-steps article::before,
  .motion-enabled .process .process-steps article > p,
  .motion-enabled .process .process-steps h3 {
    opacity: 1 !important;
    translate: 0 0 !important;
    rotate: 0deg !important;
    scale: 1 !important;
    filter: none !important;
    clip-path: none !important;
    animation: none !important;
  }
}
