/* ==========================================================================
   jakuzywac.ai – wspólny arkusz stylów CAŁEJ strony (v2, redesign)
   Jeden plik dla strony głównej, podstron i artykułów.
   Podpinanie: ze strony głównej  href="styl.css"
               z folderu artykuly/ href="../styl.css"
   ========================================================================== */

/* ---------- 1. TOKENY (kolory, wymiary) ---------- */
:root {
  --krem:        #f9fafc;   /* tło strony */
  --krem-ciemny: #eef1f7;   /* tło wyróżnionych sekcji */
  --linia:       #dde2ec;   /* cienkie linie, obramowania */
  --tekst:       #1b2336;   /* tekst podstawowy */
  --tekst-drugi: #4d566c;   /* tekst pomocniczy (kontrast AA na kremie) */
  --akcent:      #2b4178;   /* granat marki */
  --akcent-jasny:#4663aa;   /* granat rozjaśniony (hover, ciemne tło) */
  --bursztyn:    #f0b458;   /* wyróżnienie na granacie (baner) */
  --max:         1160px;    /* szerokość układu */
  --czytanie:    760px;     /* szerokość kolumny tekstu artykułu */
}

/* ---------- 2. RESET I BAZA ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; } /* płynne przewijanie tylko, gdy użytkownik nie wyłączył animacji */
}
body {
  background: var(--krem);
  color: var(--tekst);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;             /* duży, czytelny tekst bazowy */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: var(--akcent); }
a:hover { color: var(--akcent-jasny); }
::selection { background: rgba(43,65,120,0.18); }
/* wyraźny stan focus dla obsługi klawiaturą – wszędzie */
:focus-visible { outline: 3px solid var(--akcent); outline-offset: 2px; border-radius: 2px; }

/* link „przeskocz do treści" dla czytników i klawiatury */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--akcent); color: #fff;
  padding: 0.8rem 1.2rem; z-index: 200; text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- 3. BANER WEBINARU (element czasowy) ---------- */
.baner {
  background: var(--tekst); color: #fff;
  font-size: 0.9rem; padding: 0.7rem 1.4rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem 1rem; flex-wrap: wrap; text-align: center;
}
.baner__kiedy {
  letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.74rem; font-weight: 700; color: var(--bursztyn);
}
.baner__tytul { font-family: 'Lora', serif; }
.baner a {
  color: var(--bursztyn); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
  padding: 0.35rem 0; /* większy cel dotykowy */
}
.baner a:hover { color: #fff; }

/* ---------- 4. NAWIGACJA ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249,250,252,0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linia);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 0.5rem 1.4rem;
  min-height: 80px; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.logo {
  display: inline-flex; align-items: center;
  font-family: 'Lora', serif; font-weight: 600; font-size: 1.35rem;
  letter-spacing: -0.01em; text-decoration: none; color: var(--tekst);
}
.logo span { color: var(--akcent); }
.logo__znak { height: 64px; width: 64px; margin-right: 0.7rem; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__link {
  color: var(--tekst); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  padding: 0.7rem 0.2rem; /* cel dotykowy ≥44px */
  transition: color 0.2s;
}
.nav__link:hover { color: var(--akcent); }
.nav__pill {
  color: var(--akcent); text-decoration: none; font-size: 0.95rem; font-weight: 600;
  padding: 0.6rem 1.3rem; border: 1.5px solid rgba(43,65,120,0.35);
  border-radius: 999px; transition: background 0.2s, border-color 0.2s;
}
.nav__pill:hover { background: rgba(43,65,120,0.07); border-color: var(--akcent); }

/* przycisk menu – widoczny tylko na węższych ekranach i tylko z JS */
.nav__toggle {
  display: none;
  align-items: center; gap: 0.5rem;
  background: none; border: 1.5px solid var(--linia); border-radius: 8px;
  padding: 0.6rem 1rem; font: inherit; font-size: 0.95rem; font-weight: 600;
  color: var(--tekst); cursor: pointer;
}
.nav__toggle:hover { border-color: var(--akcent); color: var(--akcent); }
@media (max-width: 899px) {
  .js .nav__toggle { display: inline-flex; }
  .js .nav__links {
    display: none;
    flex-direction: column; align-items: stretch;
    width: 100%; gap: 0; padding: 0.3rem 0 1rem;
  }
  .js .nav--open .nav__links { display: flex; }
  .js .nav__links .nav__link {
    padding: 0.9rem 0.3rem; font-size: 1.05rem;
    border-top: 1px solid var(--linia);
  }
  .js .nav__links .nav__pill {
    margin-top: 0.8rem; text-align: center; padding: 0.85rem 1.3rem;
  }
}

/* ---------- 5. PRZYCISKI ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.7rem; border-radius: 6px; text-decoration: none;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.98rem;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn--primary { background: var(--akcent); color: #fff; }
.btn--primary:hover { background: var(--akcent-jasny); color: #fff; }
.btn--ghost { background: transparent; color: var(--akcent); border-color: rgba(43,65,120,0.4); }
.btn--ghost:hover { background: rgba(43,65,120,0.06); border-color: var(--akcent); }

/* ---------- 6. ETYKIETY SEKCJI ---------- */
.etykieta {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--akcent); margin-bottom: 0.7rem;
}

/* ---------- 7. STRONA GŁÓWNA: HERO ---------- */
.hero {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.4rem clamp(2.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__nadtytul {
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--akcent);
}
.hero__nadtytul::before { content: ""; width: 28px; height: 2px; background: var(--akcent); }
.hero h1 {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08;
  letter-spacing: -0.015em; margin-bottom: 1.3rem;
}
.hero h1 em { font-style: italic; color: var(--akcent); }
.hero__podtytul {
  display: block; margin-top: 0.8rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem); line-height: 1.3;
  font-weight: 500; color: var(--tekst-drugi);
}
.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.15rem); line-height: 1.65;
  color: var(--tekst-drugi); max-width: 32em; margin-bottom: 1.7rem;
  text-wrap: pretty;
}
.hero__akcje { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }
.hero__motto {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 1.15rem; color: var(--tekst);
}
.hero__foto img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid var(--linia); }

/* ---------- 8. DROGOWSKAZY („Co mogę tu osiągnąć?") ---------- */
.drogowskazy {
  max-width: var(--max); margin: 0 auto;
  border-top: 1px solid var(--tekst);
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.4rem clamp(3rem, 6vw, 4.5rem);
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
}
.drogowskazy h2, .sekcja h2 {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem); line-height: 1.2;
  text-wrap: balance;
}
.drogowskazy__wstep { margin-top: 0.9rem; color: var(--tekst-drugi); font-size: 0.98rem; }
.drogowskaz {
  display: grid; grid-template-columns: 56px minmax(0, 1fr) 36px;
  gap: 1.1rem; align-items: baseline;
  padding: 1.5rem 0.9rem; text-decoration: none; color: var(--tekst);
  border-top: 1px solid var(--linia);
  transition: background 0.2s;
}
.drogowskaz:last-child { border-bottom: 1px solid var(--linia); }
.drogowskaz:hover, .drogowskaz:focus-visible { background: var(--krem-ciemny); color: var(--tekst); }
.drogowskaz__nr { font-family: 'Lora', serif; font-size: 1.1rem; color: #98a1b6; }
.drogowskaz__tytul {
  display: block; font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.45rem); line-height: 1.25;
}
.drogowskaz__opis { display: block; margin-top: 0.35rem; color: var(--tekst-drugi); font-size: 0.95rem; }
.drogowskaz__strzalka { font-size: 1.3rem; color: var(--akcent); justify-self: end; }

/* ---------- 9. SEKCJE DWUKOLUMNOWE (graf, o mnie) ---------- */
.sekcja { max-width: var(--max); margin: 0 auto; padding: clamp(3rem, 6vw, 4.5rem) 1.4rem; }
.sekcja--wyrozniona {
  max-width: none; background: var(--krem-ciemny);
  border-top: 1px solid var(--linia); border-bottom: 1px solid var(--linia);
}
.sekcja--wyrozniona > .sekcja__inner {
  max-width: var(--max); margin: 0 auto;
}
.sekcja__dwie {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.sekcja__dwie--odwrotnie { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.sekcja p { color: var(--tekst-drugi); }
.sekcja p + p { margin-top: 0.9rem; }
.sekcja h2 { margin-bottom: 1rem; color: var(--tekst); }
.link-strzalka {
  display: inline-block; margin-top: 1.2rem;
  font-weight: 600; font-size: 0.98rem; text-decoration: none;
  border-bottom: 2px solid rgba(43,65,120,0.3); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.link-strzalka:hover { border-bottom-color: var(--akcent); }
.sekcja figure img, .sekcja figure video { width: 100%; border: 1px solid var(--linia); }
.sekcja figcaption { margin-top: 0.6rem; font-size: 0.85rem; color: var(--tekst-drugi); }

/* ---------- 10. CZYTELNIA (spis treści jak w magazynie) ---------- */
.czytelnia { max-width: var(--max); margin: 0 auto; padding: clamp(3rem, 6vw, 4.5rem) 1.4rem 1rem; }
.czytelnia__naglowek {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1.4rem; flex-wrap: wrap;
  border-bottom: 1px solid var(--tekst); padding-bottom: 1rem;
}
.czytelnia__naglowek h2 {
  font-family: 'Lora', serif; font-weight: 600; font-size: clamp(1.9rem, 4vw, 2.4rem);
}
.czytelnia__naglowek p { color: var(--tekst-drugi); font-size: 0.92rem; max-width: 42em; }
.filar {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 2rem 0; border-bottom: 1px solid var(--linia);
}
.filar__opis { margin: 0.5rem 0 0.8rem; color: var(--tekst-drugi); font-size: 0.92rem; max-width: 26em; }
.filar__link {
  font-size: 0.88rem; font-weight: 600; text-decoration: none;
  border-bottom: 1.5px solid rgba(43,65,120,0.3); padding-bottom: 1px;
}
.filar__link:hover { border-bottom-color: var(--akcent); }
.wpis {
  display: block; text-decoration: none; color: var(--tekst);
  padding: 0.9rem 0.8rem; margin: 0 -0.8rem; border-radius: 4px;
  transition: background 0.2s;
}
.wpis:hover, .wpis:focus-visible { background: var(--krem-ciemny); color: var(--tekst); }
.wpis__tytul {
  display: block; font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.3rem); line-height: 1.3;
}
.wpis__opis { display: block; margin-top: 0.25rem; color: var(--tekst-drugi); font-size: 0.92rem; }
.wpis__meta { display: block; margin-top: 0.4rem; font-size: 0.8rem; color: #98a1b6; }

/* ---------- 11. MISJA + NEWSLETTER ---------- */
.misja { background: var(--tekst); color: var(--krem); }
.misja__inner { max-width: 760px; margin: 0 auto; padding: clamp(3.5rem, 7vw, 5rem) 1.4rem; text-align: center; }
.misja .etykieta { color: #8fa3d4; }
.misja h2 {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.2rem); line-height: 1.2;
  color: #fff; margin-bottom: 0.9rem; text-wrap: balance;
}
.misja p { color: rgba(249,250,252,0.82); max-width: 32em; margin: 0 auto 1.8rem; font-size: 1rem; }
.newsletter { display: flex; flex-wrap: wrap; gap: 0.6rem; max-width: 480px; margin: 0 auto; }
.newsletter input {
  flex: 1 1 230px; min-width: 0; padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 6px;
  font-size: 0.98rem; font-family: 'Inter', sans-serif;
  background: rgba(255,255,255,0.08); color: #fff;
}
.newsletter input::placeholder { color: rgba(249,250,252,0.55); }
.newsletter .btn--primary { background: var(--akcent-jasny); }
.newsletter .btn--primary:hover { background: #5a77bd; }
.newsletter.is-loading button { opacity: 0.55; pointer-events: none; }
.newsletter-msg {
  max-width: 480px; margin: 0.9rem auto 0;
  font-size: 0.92rem; min-height: 1.3em; line-height: 1.4;
  color: #8fa3d4; opacity: 0; transition: opacity 0.3s;
}
.newsletter-msg.is-visible { opacity: 1; }
.newsletter-msg.is-error { color: #ffb4a2; }

/* ---------- 12. STOPKA ---------- */
.stopka { border-top: 1px solid var(--linia); padding: 2.2rem 1.4rem; }
.stopka__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.2rem;
}
.stopka .logo { font-size: 1.05rem; }
.stopka__links { display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center; }
.stopka__links a {
  color: var(--tekst-drugi); text-decoration: none;
  font-size: 0.92rem; padding: 0.6rem 0; transition: color 0.2s;
}
.stopka__links a:hover { color: var(--akcent); }
.stopka__prawa { max-width: var(--max); margin: 1rem auto 0; font-size: 0.8rem; color: var(--tekst-drugi); }

/* ---------- 13. ARTYKUŁY (wspólne dla artykuly/*.html) ---------- */
.okruszki { font-size: 0.88rem; color: var(--tekst-drugi); margin-bottom: 1.4rem; }
.okruszki a { color: var(--tekst-drugi); text-decoration: none; }
.okruszki a:hover { color: var(--akcent); }
.tag-filaru {
  display: inline-block; font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--akcent);
  margin-bottom: 0.9rem;
}
.article-head { max-width: var(--czytanie); margin: 0 auto; padding: clamp(2.2rem, 5vw, 3.5rem) 1.4rem 1.2rem; }
.article-head h1 {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 2.8rem); line-height: 1.14;
  letter-spacing: -0.015em; text-wrap: balance; margin-bottom: 1rem;
}
.article-meta {
  font-size: 0.88rem; color: var(--tekst-drugi);
  display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; align-items: center;
}
.article-body { max-width: var(--czytanie); margin: 0 auto; padding: 0.8rem 1.4rem clamp(2.5rem, 5vw, 4rem); font-size: 1.08rem; }
.article-body > p:first-of-type { font-size: 1.16rem; color: var(--tekst); }
.article-body p { margin: 1.2rem 0; }
.article-body h2 {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(1.45rem, 3vw, 1.9rem); line-height: 1.25;
  margin: 2.4rem 0 0.9rem; text-wrap: balance;
}
.article-body h3 { font-family: 'Lora', serif; font-weight: 600; font-size: 1.24rem; margin: 1.9rem 0 0.6rem; }
.article-body ul, .article-body ol { margin: 1.1rem 0 1.1rem 1.3rem; }
.article-body li { margin: 0.45rem 0; }
.article-body a { text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.article-body blockquote {
  border-left: 3px solid var(--akcent); padding: 0.2rem 0 0.2rem 1.3rem;
  margin: 1.7rem 0; font-family: 'Lora', serif; font-style: italic;
  font-size: 1.12rem; color: var(--tekst);
}
.article-body hr { border: none; border-top: 1px solid var(--linia); margin: 2.4rem 0; }

/* ramka „uwaga" (prawnicze zastrzeżenia) */
.callout {
  background: #fff6ed; border: 1px solid #e0902f; border-left-width: 4px;
  padding: 1rem 1.2rem; margin: 1.7rem 0; font-size: 0.98rem;
}
.callout strong { color: #9a5a12; }

/* ramka „rozwijam dalej" */
.roadmap {
  background: var(--krem-ciemny); border: 1px dashed rgba(43,65,120,0.35);
  padding: 1.2rem 1.4rem; margin: 1.9rem 0;
}
.roadmap h3 { margin: 0 0 0.5rem; font-size: 1.08rem; }
.roadmap p { margin: 0.35rem 0; font-size: 0.95rem; color: var(--tekst-drugi); }

/* pudełko „pobierz skill" */
.skillbox { background: #fff; border: 1px solid var(--linia); padding: 1.5rem 1.5rem; margin: 2rem 0; }
.skillbox h3 { margin: 0 0 0.4rem; font-size: 1.2rem; font-family: 'Lora', serif; }
.skillbox p { margin: 0.5rem 0; font-size: 0.95rem; color: var(--tekst-drugi); }
.skillbox .btn { margin: 0.9rem 0.6rem 0 0; }

/* figury: wideo i obrazy w treści */
.media-fig { margin: 1.9rem 0; }
.media-fig img, .media-fig video { width: 100%; border: 1px solid var(--linia); background: #1b1b1b; }
.media-fig figcaption { margin-top: 0.55rem; font-size: 0.85rem; color: var(--tekst-drugi); text-align: center; }
.media-fig--czysta img { border: none; background: none; }

/* CTA na końcu artykułu */
.article-cta { max-width: var(--czytanie); margin: 2rem auto; padding: 0 1.4rem; }
.article-cta__box { background: var(--tekst); color: var(--krem); padding: clamp(1.8rem, 4vw, 2.6rem); text-align: center; }
.article-cta__box h2 { font-family: 'Lora', serif; font-weight: 600; font-size: clamp(1.4rem, 3vw, 1.8rem); color: #fff; margin-bottom: 0.7rem; }
.article-cta__box p { color: rgba(249,250,252,0.82); max-width: 32em; margin: 0 auto 1.3rem; font-size: 0.98rem; }

/* powrót do spisu */
.article-more { max-width: var(--czytanie); margin: 0 auto; padding: 0.8rem 1.4rem 1.8rem; }
.article-more a { font-weight: 600; text-decoration: none; }
.article-more a:hover { text-decoration: underline; }

/* strony przeglądowe filarów */
.cat-head { max-width: var(--czytanie); margin: 0 auto; padding: clamp(2.2rem, 5vw, 3rem) 1.4rem 0.5rem; }
.cat-head h1 {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 2.8rem); line-height: 1.14; margin: 0.5rem 0 0.9rem;
}
.cat-head .lead { font-size: 1.12rem; color: var(--tekst); margin: 0.4rem 0; }
.cat-head .lead + .lead { font-size: 1rem; color: var(--tekst-drugi); }
.cat-hero { max-width: var(--czytanie); margin: 1.4rem auto 0; padding: 0 1.4rem; }
.cat-hero img { width: 100%; height: clamp(200px, 32vw, 320px); object-fit: cover; border: 1px solid var(--linia); }
.cat-hero figcaption { margin-top: 0.55rem; font-size: 0.85rem; color: var(--tekst-drugi); text-align: center; }
/* lista artykułów kategorii – redakcyjnie, bez kart */
.cat-lista { max-width: var(--czytanie); margin: 1.6rem auto 2rem; padding: 0 1.4rem; }
.cat-lista .wpis { border-top: 1px solid var(--linia); border-radius: 0; padding: 1.1rem 0.8rem; }
.cat-lista .wpis:last-child { border-bottom: 1px solid var(--linia); }

/* ---------- 13b. STRONA „O MNIE" ---------- */
.intro {
  max-width: var(--czytanie); margin: 0 auto; padding: 1.2rem 1.4rem 0;
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 2.6rem); align-items: flex-start;
}
.intro__foto { flex: 0 0 auto; width: 220px; max-width: 100%; }
.intro__foto img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid var(--linia); }
.intro__tekst { flex: 1 1 300px; min-width: 260px; }
.intro__motto {
  font-family: 'Lora', serif; font-style: italic; font-weight: 500;
  font-size: 1.25rem; line-height: 1.4; color: var(--tekst);
  border-left: 3px solid var(--akcent); padding-left: 1.2rem; margin-bottom: 1rem;
}
.intro__tekst > p { color: var(--tekst-drugi); font-size: 0.98rem; }
.puenta {
  max-width: var(--czytanie); margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.4rem clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid var(--linia); text-align: center;
}
.puenta__pull {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(1.7rem, 4.2vw, 2.5rem); line-height: 1.18;
  letter-spacing: -0.015em; margin-bottom: 1.6rem; text-wrap: balance;
}
.puenta__pull em { font-style: italic; color: var(--akcent); }
.sekcja--waska { max-width: var(--czytanie); }
.sekcja--waska + .sekcja--waska { border-top: 1px solid var(--linia); }
.sekcja--waska .prose strong { font-weight: 600; color: var(--akcent); }
.sekcja--waska figure { margin-top: 1.8rem; }

/* ---------- 14. DELIKATNE ANIMACJE (wyłączane przez system) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22,0.61,0.36,1),
                transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
    transition-delay: var(--reveal-delay, 0ms);
  }
  .js [data-reveal].is-in { opacity: 1; transform: none; }
}
/* awaryjne pokazanie treści, gdyby obserwator nie zadziałał */
.js.reveal-fallback [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ---------- 15. RWD ---------- */
@media (max-width: 899px) {
  .hero { grid-template-columns: 1fr; }
  .hero__foto { order: -1; max-width: 340px; }
  .drogowskazy, .filar, .sekcja__dwie { grid-template-columns: 1fr; }
  .sekcja__dwie figure { max-width: 560px; }
}
@media (max-width: 480px) {
  body { font-size: 17px; }
  .hero__akcje .btn { flex: 1 1 100%; }
  .newsletter button { flex: 1 1 100%; }
  .drogowskaz { grid-template-columns: 40px minmax(0, 1fr); }
  .drogowskaz__strzalka { display: none; }
  .logo__znak { height: 52px; width: 52px; }
}
