/* ============================================================================
   Pora na Zieleń — redesign 2026-07 (handoff Claude Design)
   Editorial "ciepły papier": Bricolage Grotesque (nagłówki 700-800) +
   Schibsted Grotesk (body), pigułkowy header, hero 2-kolumnowy na tle --bg,
   limonkowe badge, ciemna butelkowa zieleń jako banda (now-bar, autor, stopka).
   Fonty SELF-HOSTED (RODO: zero requestów do Google). Bez dark-mode (design go
   nie przewiduje). HTML generuje wspólny silnik C# — klasy jak u ogrodnika.
   ========================================================================== */

/* ---------- Fonty (variable woff2 w /assets/fonts/) ---------- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url(/assets/fonts/bricolage-grotesque-vf.woff2) format("woff2-variations");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url(/assets/fonts/schibsted-grotesk-vf.woff2) format("woff2-variations");
  font-weight: 400 900;
  font-display: swap;
}

/* ---------- Tokeny ---------- */
:root {
  --bg:      #F5F3EC;   /* ciepły papier */
  --ink:     #0E1B12;   /* tekst główny */
  --forest:  #0C2E1C;   /* butelkowa zieleń — bandy, H2 artykułu */
  --green:   #1F8A47;   /* zieleń akcentowa — linki, kickery */
  --lime:    #D9F650;   /* limonka — badge, CTA na ciemnym */
  --orange:  #FF5C38;   /* akcent Dom */
  --terra:   #C4551F;   /* terakota — akcent Dom (ciemniejszy) */
  --card:    #FFFFFE;   /* karty */
  --line:    #E2DECF;   /* obramowania */
  --line2:   #E5E1D1;   /* obramowania kart */
  --muted:   #4A5344;   /* tekst drugorzędny */
  --muted2:  #6B7362;   /* tekst trzeciorzędny (daty, liczniki) */
  --foot:    #0A1A10;   /* stopka */
  --hoverbg: #EDEADD;   /* tło hover linków nav */
  --sh-head: 0 12px 32px rgba(14,27,18,.08);   /* header-pigułka */
  --sh-card: 0 20px 50px rgba(14,27,18,.14);   /* karty hover */
  --sh-feat: 0 22px 60px rgba(12,46,28,.22);   /* featured / hero-panel */
  --wrap: 1280px;
  --read: 720px;
  --head: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --sans: "Schibsted Grotesk", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection { background: #E4F3BF; color: var(--forest); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
img { max-width: 100%; }
a { color: var(--green); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
main { min-height: 40vh; }

/* wspólny wzorzec kickera (13px/700/ls .16em/uppercase) */
.kicker, .hero-kicker, .post-kicker, .panel-kicker, .about-kicker,
.home-calnow-kicker, .cal-season-months, .tldr-head, .calc-label,
.author-kicker, .toc-side-label, .toc-progress-label, .calc-res-kicker,
.tool-promo-kicker, .post-metabar {
  font-family: var(--sans);
  font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.kicker { color: var(--green); }

/* ---------- Dostępność ---------- */
/* skip-link: schowany poza ekranem, wysuwa się TYLKO na focus (fix buga:
   wcześniej brak stylu = link wisiał na stałe nad headerem) */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--lime); color: var(--forest);
  font-weight: 800; text-decoration: none;
  padding: 12px 22px; border-radius: 999px;
}
.skip-link:focus {
  position: fixed; left: 22px; top: 16px; z-index: 200;
  outline: 2px solid var(--forest); outline-offset: 2px;
}
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px; }

/* ---------- Header (sticky pigułka) ---------- */
.site-header { position: sticky; top: 10px; z-index: 90; margin-top: 14px; }
.header-inner {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,254,.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--sh-head);
  padding: 10px 12px 10px 22px;
}
@supports not (backdrop-filter: blur(14px)) { .header-inner { background: #FFFFFE; } }
.brand {
  display: flex; align-items: center; gap: 10px; flex: none;
  font-family: var(--head); font-weight: 700; font-size: 19px; letter-spacing: -.02em;
  color: var(--forest); text-decoration: none; margin-right: 12px;
}
.brand-logo { width: 30px; height: 30px; display: block; border-radius: 50%; }
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  color: var(--ink); text-decoration: none;
  font-size: 14.5px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.site-nav a:hover { background: var(--lime); color: var(--forest); }

/* wyszukiwarka-pigułka (bez ramki, tło hoverbg) */
.search { position: relative; flex: none; margin-left: auto; }
.search-ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted2); pointer-events: none; }
.search input {
  width: 200px; height: 40px; border: 0; border-radius: 999px;
  background: var(--hoverbg); color: var(--ink); padding: 0 16px 0 40px;
  font: 500 14px var(--sans); outline: none;
  transition: width .25s ease, box-shadow .15s ease;
}
.search input::placeholder { color: var(--muted2); }
.search input:focus { width: 250px; box-shadow: 0 0 0 2px var(--green); }
.search-results {
  position: absolute; top: calc(100% + 10px); right: 0; width: 340px; max-height: 62vh; overflow: auto;
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--sh-card); z-index: 95;
  opacity: 0; transform: translateY(-4px); transition: opacity .16s ease, transform .16s ease;
  pointer-events: none;
}
.search-results.open { opacity: 1; transform: none; pointer-events: auto; }
.search-results .sr-item { display: flex; flex-direction: column; gap: 2px; padding: 11px 18px; text-decoration: none; border-bottom: 1px solid var(--line2); }
.search-results .sr-item:last-child { border-bottom: 0; }
.search-results .sr-item:hover, .search-results .sr-item.is-active { background: var(--hoverbg); }
.search-results .sr-title { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.search-results .sr-cat { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green); }
.search-results .sr-empty { padding: 14px 18px; font-size: 13.5px; color: var(--muted); }

/* ikona social w headerze (renderuje się tylko przy skonfigurowanym profilu) */
.header-social { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: var(--muted); text-decoration: none; }
.header-social:hover { color: var(--forest); background: var(--lime); }

/* hamburger — tylko mobile */
.nav-toggle { display: none; background: var(--hoverbg); border: 0; border-radius: 999px; width: 42px; height: 40px; cursor: pointer; padding: 0; }
.nav-toggle-bars { display: inline-flex; flex-direction: column; gap: 4px; }
.nav-toggle-bars span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero (editorial: tekst lewa / zdjęcie-panel prawa) ----------
   Silnik daje <section class="hero-cine" style="background-image:...">.
   Tło sekcji WYGASZAMY (inline style wygrywa, stąd !important na size),
   a zdjęcie odzyskuje pseudo-element ::after przez background:inherit
   i maluje je jako zaokrąglony panel w prawej kolumnie grida. */
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-cine {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: var(--wrap); margin: 0 auto; padding: clamp(32px, 5vw, 64px) 22px 8px;
  background-color: var(--bg);
  background-size: 0 0 !important;         /* gasi inline background-image na sekcji */
  background-repeat: no-repeat !important;
}
.hero-cine[style*="background-image"]::after {
  content: "";
  grid-column: 2; grid-row: 1; align-self: stretch;
  min-height: clamp(320px, 42vw, 520px);
  background: inherit;                     /* przejmuje url() z inline stylu sekcji */
  background-color: #E7E3D4;               /* placeholder, gdy obrazek nie doleci */
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  box-shadow: var(--sh-feat);
}
.hero-overlay { display: none; }           /* scrim niepotrzebny — tekst poza zdjęciem */
.hero-video { grid-column: 2; grid-row: 1; width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 28px; box-shadow: var(--sh-feat); }
.hero-content { grid-column: 1; grid-row: 1; align-self: center; position: static; }
.hero-cine .wrap { max-width: none; padding: 0; }
.hero-kicker { margin: 0 0 16px; color: var(--green); animation: heroRise .8s ease both; }
.hero-kicker::before { content: ""; display: inline-block; width: 26px; height: 3px; border-radius: 2px; background: var(--green); margin-right: 10px; vertical-align: middle; }
.hero-content h1 {
  margin: 0 0 20px;
  font-size: clamp(52px, 7vw, 92px); font-weight: 800;
  line-height: .98; letter-spacing: -.035em;
  color: var(--ink); max-width: 12ch;
  animation: heroRise .8s .08s ease both;
}
.hero-lead { margin: 0 0 30px; font-size: 18.5px; line-height: 1.6; color: var(--muted); max-width: 440px; animation: heroRise .8s .16s ease both; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; animation: heroRise .8s .24s ease both; }

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; border-radius: 999px;
  font-family: var(--sans); font-size: 15px; font-weight: 700; text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary { background: var(--forest); color: #F5F3EC; }
.btn-primary:hover { background: var(--green); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid #C9C4B0; }
.btn-ghost:hover { border-color: var(--forest); background: var(--hoverbg); }

/* ---------- Pasek „Teraz" pod hero (ciemna banda) ---------- */
.now-bar { display: block; max-width: var(--wrap); margin: clamp(28px, 4vw, 44px) auto 0; padding: 0 22px; text-decoration: none; }
.now-bar-inner {
  display: flex; align-items: center; gap: 14px; max-width: none;
  background: var(--forest); color: #F5F3EC;
  border-radius: 28px; padding: 18px 26px;
  font-size: 14.5px; transition: background .15s ease;
}
.now-bar:hover .now-bar-inner { background: #10402A; }
.now-bar-badge { flex: none; background: var(--lime); color: var(--forest); font-weight: 800; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; border-radius: 999px; padding: 5px 12px; }
.now-bar-text { color: #F5F3EC; }
.now-bar-link { margin-left: auto; font-weight: 700; white-space: nowrap; color: var(--lime); }

/* ---------- Sekcje strony głównej ---------- */
.home-section { padding-top: 72px; }
.home-section--last { padding-bottom: 88px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 30px; }
.section-head h2 { margin: 0; font-size: clamp(26px, 3vw, 34px); letter-spacing: -.025em; }
.section-head h2 a { color: inherit; text-decoration: none; }
.section-head h2 a:hover { color: var(--forest); }
.see-all { font-size: 14px; font-weight: 700; color: var(--forest); text-decoration: none; padding: 8px 16px; border-radius: 999px; background: var(--hoverbg); white-space: nowrap; }
.see-all:hover { background: var(--lime); }
.section-note { font-size: 13px; color: var(--muted2); }

/* Najnowsze: duży feature (tekst NA zdjęciu) + kolumna mini-kart */
.latest-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 28px; align-items: stretch; }
.feature-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  min-height: clamp(420px, 44vw, 560px);
  border-radius: 26px; overflow: hidden;
  padding: 30px 32px; text-decoration: none;
  box-shadow: var(--sh-feat);
}
.feature-card .card-imgwrap { position: absolute; inset: 0; border-radius: 0; aspect-ratio: auto; z-index: 0; }
.feature-card .card-imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.feature-card:hover .card-imgwrap img { transform: scale(1.04); }
.feature-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(10,26,16,.92) 0%, rgba(10,26,16,0) 55%); }
.feature-card > :not(.card-imgwrap) { position: relative; z-index: 2; }
.feature-card .card-cat { background: var(--lime); color: var(--forest); font-size: 12.5px; font-weight: 800; padding: 4px 12px; border-radius: 999px; }
.feature-card .diff { color: rgba(245,243,236,.75); }
.feature-title { font-family: var(--head); font-weight: 800; font-size: clamp(28px, 3vw, 42px); line-height: 1.05; letter-spacing: -.025em; color: #fff; text-wrap: balance; }
.feature-desc { margin: 0; font-size: 15px; line-height: 1.55; color: rgba(245,243,236,.82); max-width: 56ch; }
.feature-card .card-date { color: rgba(245,243,236,.6); font-size: 12.5px; }

.mini-list { display: flex; flex-direction: column; gap: 14px; }
.mini-item {
  display: grid; grid-template-columns: 104px 1fr; gap: 16px; align-items: center;
  background: var(--card); border: 1px solid var(--line2); border-radius: 20px; padding: 12px;
  text-decoration: none; color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mini-item:hover { transform: translateY(-3px); box-shadow: var(--sh-card); }
.mini-thumb { width: 104px; aspect-ratio: 4/3; overflow: hidden; border-radius: 14px; background: var(--hoverbg); }
.mini-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mini-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.mini-kicker { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.mini-title { font-family: var(--head); font-weight: 700; font-size: 17px; line-height: 1.25; letter-spacing: -.015em; }
.mini-date { font-size: 12.5px; color: var(--muted2); }

/* Panele duo: Kalendarz (ciemna banda) + Krótkie poradniki (karta) */
.duo-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; }
.panel { position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; padding: 40px; border-radius: 28px; text-decoration: none; color: var(--ink); min-height: 250px; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease; }
.panel:hover { transform: translateY(-3px); box-shadow: var(--sh-card); }
.panel-cal { background: var(--forest); color: #F5F3EC; }
.panel-cal .panel-title { color: #fff; }
.panel-cal p { color: rgba(245,243,236,.75); }
.panel-quick { background: var(--card); border: 1px solid var(--line2); }
.panel-numeral { position: absolute; top: -34px; right: 10px; font-family: var(--head); font-weight: 800; font-size: 190px; line-height: 1; color: var(--lime); opacity: .16; pointer-events: none; }
.panel-kicker { color: var(--lime); }
.panel-kicker--amber { color: var(--terra); }
.panel-title { font-family: var(--head); font-weight: 800; font-size: clamp(24px, 2.6vw, 30px); letter-spacing: -.02em; max-width: 16ch; }
.panel p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); max-width: 48ch; }
.panel-link { font-size: 14.5px; font-weight: 700; }
.panel-cal .panel-link { color: var(--lime); }
.panel-quick .panel-link { color: var(--forest); }

/* ---------- Karty artykułów (home / kategorie / powiązane / listy) ---------- */
.cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px 24px; }
.cards--dense { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px 20px; }
.card { display: block; }
.card-link {
  display: flex; flex-direction: column; gap: 10px; height: 100%;
  background: var(--card); border: 1px solid var(--line2); border-radius: 22px; overflow: hidden;
  text-decoration: none; color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card-link:hover { transform: translateY(-6px); box-shadow: var(--sh-card); }
.card-imgwrap { display: block; overflow: hidden; aspect-ratio: 3/2; background: var(--hoverbg); }
.card-imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.card-link:hover .card-imgwrap img { transform: scale(1.04); }
.card-meta { display: flex; align-items: center; gap: 12px; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.card-link .card-meta { padding: 6px 18px 0; }
.card-cat { color: var(--green); }
.diff { display: inline-flex; align-items: center; gap: 5px; color: var(--muted2); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }
.dot--sredni { background: var(--terra); }
.dot--zaawansowany { background: var(--orange); }
.card-title { font-family: var(--head); font-weight: 750; font-size: 20px; line-height: 1.2; letter-spacing: -.02em; padding: 0 18px; }
.cards--dense .card-title { font-size: 18.5px; }
.card-desc { margin: 0; padding: 0 18px; font-size: 13.5px; line-height: 1.55; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-date { font-size: 12.5px; color: var(--muted2); padding: 0 18px 18px; margin-top: auto; }
/* feature-card nadpisuje paddingi kartowe (leży na zdjęciu) */
.feature-card .card-meta, .feature-card .card-date { padding: 0; }

/* ---------- Nagłówek edytorialny (tagi, listy, 404) ---------- */
.page-head { padding: 64px 0 44px; max-width: 780px; }
.page-head--full { max-width: none; }
.page-head .kicker { color: var(--terra); }
.page-head h1 { margin: 10px 0 16px; font-size: clamp(44px, 6vw, 72px); line-height: 1; letter-spacing: -.03em; }
.page-head p { margin: 0; font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 56ch; }
.empty-note { color: var(--muted); padding: 2rem 0 4rem; font-size: 16px; }

/* kategoria: WIELKI nagłówek + zdjęcie-panel po prawej */
.cat-header { padding: 56px 0 44px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.cat-header h1 { margin: 0 0 18px; font-size: clamp(64px, 9vw, 128px); line-height: .95; letter-spacing: -.04em; }
.cat-header p { margin: 0; font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 56ch; }
.cat-photo { overflow: hidden; border-radius: 26px; width: 340px; aspect-ratio: 4/3; background: var(--hoverbg); box-shadow: var(--sh-feat); }
.cat-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* sticky chipy działów */
.cat-chips { position: sticky; top: 76px; z-index: 40; display: flex; gap: 8px; padding: 14px 0; background: var(--bg); overflow-x: auto; }
.cat-chips a { flex: none; padding: 9px 18px; border: 1.5px solid #D5D0BB; border-radius: 999px; font-size: 13.5px; font-weight: 700; color: var(--ink); text-decoration: none; background: var(--card); transition: background .15s ease, border-color .15s ease; }
.cat-chips a:hover { background: var(--lime); border-color: var(--forest); color: var(--forest); }
.cat-section { padding: 48px 0 0; scroll-margin-top: 140px; }
.cat-section:last-of-type { padding-bottom: 88px; }
.cat-section h2 { margin: 0 0 26px; font-size: clamp(24px, 3vw, 30px); letter-spacing: -.02em; display: flex; align-items: baseline; gap: 14px; }
.cat-count { font-family: var(--sans); font-size: 13px; color: var(--muted2); font-weight: 500; letter-spacing: 0; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 22px 0 0; font-size: 13px; color: var(--muted2); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted2); text-decoration: none; }
.breadcrumb a:hover { color: var(--forest); text-decoration: underline; }
.breadcrumb > span:last-child { color: var(--ink); }

/* ---------- Artykuł ---------- */
.read-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120; background: transparent; pointer-events: none; }
.read-progress-bar { height: 100%; width: 0; background: var(--green); transition: width .1s linear; }

.post-head { max-width: 860px; padding: 36px 0 8px; }
.post-kicker { display: flex; align-items: center; gap: 14px; letter-spacing: .12em; margin-bottom: 18px; }
.post-kicker .pk-cat { color: var(--green); }
.post-head h1 { margin: 0 0 22px; font-size: clamp(36px, 4.6vw, 56px); line-height: 1.05; letter-spacing: -.03em; }
.post-byline { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
.post-byline .pb-author { display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); font-weight: 700; }
.post-byline .pb-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; display: block; }
.post-byline .pb-sep { color: var(--line); }
/* ostatni span w byline = "X min czytania" → limonkowy badge */
.post-byline > span:last-child { background: var(--lime); color: var(--forest); font-weight: 800; font-size: 12.5px; border-radius: 999px; padding: 5px 12px; }

.post-figure { margin: 26px 0 0; border-radius: 26px; overflow: hidden; aspect-ratio: 21/9; background: var(--hoverbg); box-shadow: var(--sh-head); }
.post-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

.post-layout { display: grid; grid-template-columns: minmax(0, var(--read)) 1fr; gap: 64px; padding: 44px 0 72px; align-items: start; }

.post { font-size: 17.5px; line-height: 1.75; color: #2A3325; }
.post > p, .post-body > p { margin: 0 0 1.4em; }
.post > p:first-of-type { font-size: 21px; font-weight: 500; line-height: 1.6; color: var(--ink); }
.post h2 { margin: 44px 0 18px; font-size: 30px; font-weight: 800; letter-spacing: -.025em; line-height: 1.15; color: var(--forest); scroll-margin-top: 100px; }
.post h3 { margin: 34px 0 12px; font-size: 21px; font-weight: 750; letter-spacing: -.015em; scroll-margin-top: 100px; }
.post ul, .post ol { margin: 0 0 1.4em; padding-left: 1.4em; display: flex; flex-direction: column; gap: .65em; }
.post a { color: var(--green); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; font-weight: 600; }
.post a:hover { color: var(--forest); }
.post strong { color: var(--ink); }
.post img { border-radius: 18px; }

/* chwilowe podświetlenie nagłówka po kliknięciu w TOC (nav.js .is-flash) */
@keyframes heading-flash { 0% { background: #EDF7D0; } 100% { background: transparent; } }
.post h2.is-flash, .post h3.is-flash { animation: heading-flash 1.6s ease both; }

/* tabele: karta z ciemnym nagłówkiem */
.table-scroll, .post .table-wrap { overflow-x: auto; margin: 0 0 1.6em; -webkit-overflow-scrolling: touch; background: var(--card); border: 1px solid var(--line); border-radius: 18px; }
.table-scroll table { margin: 0; min-width: 560px; }
.post table { width: 100%; border-collapse: collapse; font-size: 14.5px; line-height: 1.55; }
.post thead th { text-align: left; padding: 12px 16px; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: var(--forest); color: #F5F3EC; }
.post tbody td { padding: 12px 16px; border-top: 1px solid var(--line2); vertical-align: top; }
.post tbody tr:nth-child(even) { background: #FAF8F0; }

/* „W skrócie" (TL;DR) */
.tldr { background: #EDF7D0; border-radius: 20px; padding: 24px 26px; margin: 0 0 36px; }
.tldr-head { display: block; color: var(--forest); margin-bottom: 8px; }
.tldr-ico { display: none; }
.tldr-body { margin: 0; font-size: 17px; line-height: 1.6; color: var(--ink); }

/* callouty: grid ikona 34px + treść */
.callout { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 24px 26px; border-radius: 20px; margin: 0 0 1.6em; background: var(--card); }
.callout > * { grid-column: 2; }
.callout > :first-child { margin-top: 0; }
.callout > :last-child { margin-bottom: 0; }
.callout p { font-size: .92em; margin: 0 0 .8em; }
.callout::before {
  grid-column: 1; grid-row: 1;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font: 800 16px var(--sans);
}
.callout--wskazowka { background: var(--card); border: 1.5px solid var(--green); }
.callout--wskazowka::before { content: "✓"; background: var(--green); color: #fff; }
.callout--warto { background: #EDF7D0; }
.callout--warto::before { content: "✦"; background: var(--forest); color: var(--lime); }
.callout--uwaga { background: #FFEDE6; }
.callout--uwaga::before { content: "!"; background: var(--orange); color: #fff; }
.callout--podsumowanie { background: #EDF7D0; }
.callout--podsumowanie::before { content: "≡"; background: var(--forest); color: var(--lime); }

/* FAQ jako akordeony */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin: 0 0 1.6em; }
.faq-list details { background: var(--card); border: 1px solid var(--line2); border-radius: 18px; }
.faq-list summary { padding: 16px 20px; font-weight: 700; font-size: .95em; cursor: pointer; color: var(--ink); }
.faq-list summary:hover { color: var(--forest); }
.faq-list details[open] summary { color: var(--forest); }
.faq-list details p { margin: 0; padding: 0 20px 18px; font-size: .92em; color: var(--muted); }

/* tagi pod artykułem + chmura tagów */
.post-tags { margin: 2em 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 7px 15px; border: 1.5px solid #D5D0BB; border-radius: 999px; background: var(--card); font-size: 12.5px; font-weight: 700; color: var(--ink); text-decoration: none; transition: background .15s ease, border-color .15s ease; }
.tag:hover { background: var(--lime); border-color: var(--forest); color: var(--forest); }
.tag-count { color: var(--muted2); font-weight: 500; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 0 88px; }

/* box autora (ciemna banda z limonkowym avatarem) */
.author-box { display: flex; gap: 20px; align-items: flex-start; background: var(--forest); color: #F5F3EC; border-radius: 24px; padding: 28px 30px; margin-top: 3em; }
.author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex: none; border: 3px solid var(--lime); }
.author-info { display: flex; flex-direction: column; gap: 5px; }
.author-kicker { color: rgba(245,243,236,.55); font-size: 11.5px; }
.author-name { font-family: var(--head); font-weight: 800; font-size: 20px; letter-spacing: -.02em; color: #fff; text-decoration: none; }
a.author-name:hover { text-decoration: underline; text-decoration-color: var(--lime); }
.author-role { margin: 0; font-size: 13.5px; color: var(--lime); font-weight: 600; }
.author-bio { margin: 2px 0 0; font-size: 14.5px; line-height: 1.6; color: rgba(245,243,236,.8); }

/* spis treści — desktop: sticky w prawej kolumnie */
.toc-side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 4px; padding-left: 24px; border-left: 1px solid var(--line); }
.toc-side-label { font-size: 11.5px; color: var(--muted2); margin-bottom: 10px; }
.toc-side a { font-size: 13.5px; line-height: 1.4; padding: 5px 0; text-decoration: none; color: var(--muted); font-weight: 500; transition: color .2s; }
.toc-side a:hover { color: var(--ink); }
.toc-side a.is-active { color: var(--forest); font-weight: 700; }
.toc-progress { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.toc-progress-label { font-size: 11.5px; color: var(--muted2); }
.toc-progress-val { font-family: var(--head); font-size: 30px; font-weight: 800; color: var(--forest); }

/* spis treści — mobile: <details> nad treścią */
.toc { display: none; margin: 0 0 1.8em; background: var(--card); border: 1px solid var(--line2); border-radius: 18px; }
.toc summary { padding: 15px 20px; font-weight: 700; font-size: .95em; cursor: pointer; }
.toc-list ul { list-style: none; margin: 0; padding: 4px 20px 16px; display: flex; flex-direction: column; gap: 2px; }
.toc-list a { display: block; padding: 5px 0; font-size: .9em; text-decoration: none; color: var(--muted); }
.toc-list a:hover, .toc-list a.is-active { color: var(--forest); }
.toc-list .toc-sub a { padding-left: 14px; font-size: .85em; }

/* powiązane wpisy */
.related { border-top: 1px solid var(--line); padding: 52px 0 80px; }
.related h2 { margin: 0 0 30px; font-size: clamp(24px, 3vw, 30px); letter-spacing: -.02em; }

/* ---------- Kalendarz ogrodnika (hub) ---------- */
.cal-now-note { display: flex; align-items: center; gap: 18px; padding: 20px 26px; background: var(--forest); color: #F5F3EC; border-radius: 24px; text-decoration: none; margin: 0 0 48px; font-size: 15px; transition: background .15s ease; }
a.cal-now-note:hover { background: #10402A; }
.cal-now-note strong { color: var(--lime); }
.cal-now-num { font-family: var(--head); font-weight: 800; font-size: 40px; color: var(--lime); line-height: 1; flex: none; }
.cal-now-link { margin-left: auto; font-weight: 700; font-size: 14.5px; color: var(--lime); white-space: nowrap; }

/* bandy pór roku: wiosna / lato / jesień / zima */
.cal-season { border-radius: 32px; padding: clamp(28px, 4vw, 52px); margin: 0 0 28px; }
.cal-spring { background: #E3F2D9; }
.cal-summer { background: #D9F650; }
.cal-autumn { background: #FFDCCB; }
.cal-winter { background: #DFE8E6; }
.cal-season-head { display: grid; grid-template-columns: 380px 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.cal-season:nth-of-type(even) .cal-season-head { grid-template-columns: 1fr 380px; }
.cal-season:nth-of-type(even) .cal-season-photo { order: 2; }
.cal-season-photo { margin: 0; overflow: hidden; border-radius: 24px; aspect-ratio: 4/3; background: rgba(255,255,254,.5); box-shadow: var(--sh-head); }
.cal-season-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cal-season-months { margin: 0; color: var(--forest); opacity: .7; }
.cal-season-title { margin: 8px 0 22px; font-size: clamp(32px, 4vw, 44px); letter-spacing: -.03em; color: var(--forest); }
.cal-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cal-tile a { position: relative; display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; background: rgba(255,255,254,.72); border-radius: 18px; text-decoration: none; color: var(--ink); transition: background .15s ease, transform .15s ease, box-shadow .15s ease; }
.cal-tile a:hover { background: #FFFFFE; transform: translateY(-2px); box-shadow: var(--sh-head); }
.cal-tile-num { font-family: var(--head); font-weight: 800; font-size: 26px; color: var(--muted2); line-height: 1; }
.cal-tile-name { font-weight: 700; font-size: 15.5px; }
/* bieżący miesiąc: pełna biel + cień + zielony numer */
.cal-tile--now a { background: #FFFFFE; box-shadow: var(--sh-card); }
.cal-tile--now .cal-tile-num { color: var(--green); }
.cal-tile-badge { position: absolute; top: 12px; right: 12px; font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--forest); color: var(--lime); border-radius: 999px; padding: 4px 10px; }

/* strona miesiąca (artykuł kalendarza) */
.cal-month { max-width: var(--read); margin: 0 auto; padding: 36px 0 72px; }
.cal-month h1 { font-size: clamp(36px, 4.6vw, 52px); line-height: 1.05; letter-spacing: -.03em; margin: 0 0 18px; }
.post-metabar { display: flex; align-items: center; gap: 14px; letter-spacing: .12em; margin: 0 0 18px; color: var(--muted2); font-size: 12.5px; }
.pm-cat { color: var(--green); font-weight: 800; }
.cal-month .post-figure { aspect-ratio: 16/9; }
.cal-month .tldr { margin-top: 26px; }
.cal-month .toc { display: block; margin-top: 1.4em; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); margin-top: 3em; padding-top: 1.6em; font-size: 14.5px; font-weight: 700; }
.cal-nav a { color: var(--green); text-decoration: none; }
.cal-nav a:hover { color: var(--forest); text-decoration: underline; }

/* ---------- Krótkie poradniki: wiersze-karty ---------- */
.quick-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 88px; }
.quick-row {
  display: grid; grid-template-columns: 200px 1fr auto; gap: 24px; align-items: center;
  background: var(--card); border: 1px solid var(--line2); border-radius: 20px; padding: 16px;
  text-decoration: none; color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.quick-row:hover { transform: translateY(-3px); box-shadow: var(--sh-card); }
.quick-thumb { overflow: hidden; border-radius: 14px; aspect-ratio: 3/2; background: var(--hoverbg); }
.quick-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.quick-row:hover .quick-thumb img { transform: scale(1.04); }
.quick-body { display: flex; flex-direction: column; gap: 7px; }
.quick-title { font-family: var(--head); font-weight: 750; font-size: 22px; line-height: 1.15; letter-spacing: -.02em; }
.quick-desc { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted); max-width: 68ch; }
.quick-chip { flex: none; font-size: 12.5px; font-weight: 800; color: var(--forest); background: var(--lime); border-radius: 999px; padding: 7px 15px; white-space: nowrap; }

/* ---------- Strony statyczne / autor ---------- */
.page { max-width: var(--read); margin: 0 auto; padding: 36px 0 72px; }
.page h1 { font-size: clamp(36px, 4.6vw, 52px); margin: 0 0 .6em; letter-spacing: -.03em; }
.author-hero { display: flex; gap: 24px; align-items: center; max-width: var(--read); margin: 0 auto; padding: 60px 0 8px; }
.author-avatar-lg { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; border: 3px solid var(--lime); box-shadow: var(--sh-head); }
.author-hero h1 { margin: 0 0 .2em; font-size: clamp(34px, 4vw, 48px); letter-spacing: -.03em; }
.author-hero .author-role { color: var(--green); }
.author-hero .author-bio { color: var(--muted); }
.post-list { padding: 40px 0 88px; }

/* ---------- „O nas" ---------- */
.about-hero { position: relative; border-radius: 28px; overflow: hidden; isolation: isolate; background-size: cover; background-position: center; margin: 24px 0 56px; box-shadow: var(--sh-feat); }
.about-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(158deg, rgba(10,26,16,.55), rgba(10,26,16,.82)); }
.about-hero-inner { position: relative; padding: clamp(2.4rem, 5vw, 4rem) clamp(1.4rem, 4vw, 3rem); max-width: 760px; color: #fff; }
.about-kicker { display: inline-block; color: var(--lime); margin-bottom: 12px; }
.about-hero h1 { color: #fff; margin: 0 0 16px; font-size: clamp(38px, 5vw, 60px); letter-spacing: -.03em; }
.about-lead { color: rgba(245,243,236,.85); font-size: 17.5px; line-height: 1.6; margin: 0; max-width: 60ch; }
.about-lead strong { color: #fff; }
.about-lead em { font-style: italic; }
.about-section { max-width: var(--read); margin: 0 auto 56px; }
.about-section > h2 { font-size: clamp(26px, 3.4vw, 34px); margin: 0 0 14px; letter-spacing: -.025em; }
.about-section-lead { color: var(--muted); font-size: 16px; margin: 0 0 22px; }
.about-team { max-width: var(--wrap); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.team-card { display: flex; gap: 18px; background: var(--card); border: 1px solid var(--line2); border-radius: 24px; padding: 24px; }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex: none; border: 3px solid var(--lime); }
.team-info h3 { margin: 0 0 2px; font-size: 22px; letter-spacing: -.02em; }
.team-role { margin: 0 0 10px; color: var(--green); font-weight: 700; font-size: 13.5px; }
.team-bio { margin: 0 0 10px; font-size: 14.5px; line-height: 1.6; }
.team-link { font-weight: 700; font-size: 14px; text-decoration: none; color: var(--forest); }
.team-link:hover { text-decoration: underline; text-decoration-color: var(--green); }
.about-split { max-width: var(--wrap); display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.about-split-text h2 { margin-top: 0; font-size: clamp(26px, 3.4vw, 34px); letter-spacing: -.025em; }
.about-checks { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 12px; }
.about-checks li { position: relative; padding-left: 32px; line-height: 1.55; font-size: 15.5px; }
.about-checks li::before { content: "✓"; position: absolute; left: 0; top: 2px; width: 21px; height: 21px; display: grid; place-items: center; background: var(--green); color: #fff; border-radius: 50%; font-size: 11px; font-weight: 800; }
.about-more { font-weight: 700; text-decoration: none; color: var(--forest); }
.about-more:hover { text-decoration: underline; text-decoration-color: var(--green); }
.about-split-media { margin: 0; }
.about-split-media img { width: 100%; height: 100%; max-height: 340px; object-fit: cover; border-radius: 26px; box-shadow: var(--sh-head); }
.about-cta-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 18px; }
.about-cta-links .btn { padding: 11px 20px; font-size: 13.5px; }
.about-cta-contact { margin: 0; }

/* hub narzędzi / 404: kafle obszarów */
.scope-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.scope-card a { display: flex; flex-direction: column; height: 100%; gap: 6px; background: var(--card); border: 1px solid var(--line2); border-radius: 24px; padding: 22px 24px; text-decoration: none; color: var(--ink); transition: transform .18s ease, box-shadow .18s ease; }
.scope-card a:hover { transform: translateY(-4px); box-shadow: var(--sh-card); }
.scope-name { font-family: var(--head); font-weight: 750; font-size: 20px; letter-spacing: -.02em; color: var(--forest); }
.scope-desc { color: var(--muted); font-size: 13.5px; line-height: 1.5; flex: 1; }
.scope-go { font-weight: 700; font-size: 13px; color: var(--green); margin-top: 6px; }

/* banda „kalendarz teraz" / CTA (ciemna zieleń) */
.home-calnow { max-width: 920px; margin: 0 auto 80px; }
.home-calnow-inner { background: var(--forest); color: #F5F3EC; border-radius: 32px; padding: clamp(36px, 5vw, 60px) clamp(26px, 5vw, 56px); }
.home-calnow-kicker { display: inline-block; color: var(--lime); }
.home-calnow h2 { margin: 8px 0 12px; font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -.025em; color: #fff; }
.home-calnow p { margin: 0 0 20px; color: rgba(245,243,236,.78); max-width: 66ch; line-height: 1.6; }
.home-calnow .btn-primary { background: var(--lime); color: var(--forest); font-weight: 800; }
.home-calnow .btn-primary:hover { background: #E7FB7E; }
.home-calnow .btn-ghost { border-color: rgba(245,243,236,.35); color: #F5F3EC; }
.home-calnow .btn-ghost:hover { border-color: var(--lime); background: rgba(255,255,255,.06); }

/* ---------- Kalkulatory (/narzedzia/) ---------- */
.calc { background: var(--card); border: 1px solid var(--line); border-radius: 26px; padding: 28px 30px; margin: 1.6em 0; }
.calc-form { display: flex; flex-direction: column; gap: 20px; }
.calc-field { border: 0; padding: 0; margin: 0; }
.calc-label { display: block; font-size: 12px; color: var(--green); margin-bottom: 8px; }
.calc-input { width: 160px; height: 48px; border: 1.5px solid #D5D0BB; border-radius: 14px; background: #fff; color: var(--ink); padding: 0 14px; font: 700 20px var(--sans); outline: none; }
.calc-input:focus { border-color: var(--green); }
.calc-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.calc-pill { cursor: pointer; }
.calc-pill input { position: absolute; opacity: 0; pointer-events: none; }
.calc-pill span { display: inline-flex; align-items: center; padding: 10px 18px; border: 1.5px solid #D5D0BB; border-radius: 999px; background: var(--card); font-size: 14px; font-weight: 700; color: var(--ink); transition: border-color .15s ease, background .15s ease, color .15s ease; }
.calc-pill:hover span { border-color: var(--forest); }
.calc-pill input:checked + span { background: var(--forest); border-color: var(--forest); color: #fff; }
.calc-pill input:focus-visible + span { outline: 2px solid var(--green); outline-offset: 2px; }
.calc-result { margin-top: 24px; border-top: 1px solid var(--line); padding-top: 20px; }
.calc-hint { margin: 0; color: var(--muted); font-size: 15px; }
.calc-warn { background: #FFEDE6; border-radius: 14px; padding: 14px 18px; font-size: 15px; line-height: 1.55; color: var(--ink); }
.calc-res-main { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.calc-res-kicker { font-size: 12px; color: var(--muted2); }
.calc-res-num { font-family: var(--head); font-weight: 800; font-size: clamp(36px, 5vw, 48px); line-height: 1.05; letter-spacing: -.02em; color: var(--forest); }
.calc-res-sub { font-size: 14px; color: var(--muted); }
.calc-res-list { list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-direction: column; gap: 7px; font-size: 15px; }
.calc-res-list li { position: relative; padding-left: 24px; }
.calc-res-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--green); font-weight: 800; }
.calc-res-note { margin: 0; font-size: 13.5px; color: var(--muted2); line-height: 1.55; }
.tools-grid { margin: 1.6em 0; }

/* ---------- Kalendarz siewu (/narzedzia/kalendarz-siewu-warzyw/) ---------- */
.sow-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.sow-pill { cursor: pointer; display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; border: 1.5px solid #D5D0BB; border-radius: 999px; background: var(--card); font: 700 14px var(--sans); color: var(--ink); transition: border-color .15s ease, background .15s ease, color .15s ease; }
.sow-pill:hover { border-color: var(--forest); }
.sow-pill:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.sow-pill[aria-pressed="true"] { background: var(--forest); border-color: var(--forest); color: #fff; }
.sow-chart { margin-top: 22px; }
.sow-months { display: grid; grid-template-columns: 130px 1fr; gap: 10px; margin-bottom: 6px; }
.sow-months-grid { display: grid; grid-template-columns: repeat(12, 1fr); font-size: 11px; font-weight: 700; letter-spacing: .04em; color: var(--muted2); text-align: center; }
.sow-row { display: grid; grid-template-columns: 130px 1fr; gap: 10px; align-items: center; margin-bottom: 10px; }
.sow-row-label { font-size: 13px; font-weight: 700; color: var(--muted); text-align: right; }
.sow-track { position: relative; height: 26px; background: #fff; border: 1px solid var(--line); border-radius: 10px; background-image: repeating-linear-gradient(to right, transparent, transparent calc(100%/12 - 1px), var(--line2) calc(100%/12 - 1px), var(--line2) calc(100%/12)); }
.sow-bar { position: absolute; top: 4px; bottom: 4px; border-radius: 7px; }
.sow-bar--rozsada { background: var(--terra); }
.sow-bar--grunt { background: var(--green); }
.sow-bar--zbior { background: var(--orange); }
.sow-now { position: absolute; top: -4px; bottom: -4px; width: 2px; background: var(--ink); opacity: .45; border-radius: 1px; }
.sow-legend { display: flex; flex-wrap: wrap; gap: 14px; margin: 14px 0 0; font-size: 12.5px; color: var(--muted); }
.sow-leg { display: inline-flex; align-items: center; gap: 6px; }
.sow-dot { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.sow-dot--now { width: 2px; height: 14px; background: var(--ink); opacity: .45; border-radius: 1px; }
.sow-note { margin: 14px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--ink); border-top: 1px solid var(--line); padding-top: 14px; }
.sow-artlink { margin: 8px 0 0; font-size: 14px; }
.sow-artlink a { font-weight: 700; color: var(--forest); text-decoration: none; }
.sow-artlink a:hover { text-decoration: underline; text-decoration-color: var(--green); }
@media (max-width: 640px) {
  .sow-months, .sow-row { grid-template-columns: 74px 1fr; gap: 8px; }
  .sow-row-label { font-size: 11.5px; }
}

/* box-zajawka narzędzia w artykułach */
.tool-promo { display: flex; align-items: center; gap: 16px; background: #EDF7D0; border-radius: 20px; padding: 20px 24px; margin: 1.8em 0; }
.tool-promo-body { flex: 1; }
.tool-promo-kicker { display: block; font-size: 11.5px; color: var(--green); margin-bottom: 3px; }
.tool-promo-title { font-family: var(--head); font-weight: 750; font-size: 1.1em; letter-spacing: -.015em; }
.tool-promo a.btn { flex: none; padding: 11px 20px; font-size: 13.5px; background: var(--forest); color: #F5F3EC; }
.tool-promo a.btn:hover { background: var(--green); }
@media (max-width: 560px) { .tool-promo { flex-direction: column; align-items: flex-start; } }

/* ---------- Toast social (renderuje się tylko przy skonfigurowanym profilu) ---------- */
.fb-pop {
  position: fixed; right: 24px; bottom: 24px; z-index: 80; width: 320px; max-width: calc(100vw - 32px);
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--sh-card); padding: 20px;
  opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease;
}
.fb-pop.is-in { opacity: 1; transform: none; }
.fb-pop[hidden] { display: none; }
.fb-pop-close { position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; border: none; background: transparent; color: var(--muted2); font-size: 18px; cursor: pointer; border-radius: 50%; line-height: 1; }
.fb-pop-close:hover { background: var(--hoverbg); color: var(--ink); }
.fb-pop-body { display: flex; flex-direction: column; gap: 8px; }
.fb-pop-kicker { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.fb-pop-title { font-family: var(--head); font-weight: 800; font-size: 19px; letter-spacing: -.02em; margin: 0; color: var(--ink); }
.fb-pop-text { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.fb-pop-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 42px; margin-top: 6px; background: var(--forest); color: #F5F3EC; border-radius: 999px; font-size: 14px; font-weight: 700; text-decoration: none; }
.fb-pop-btn:hover { background: var(--green); }

/* ---------- Stopka (pełna szerokość, bardzo ciemna zieleń) ---------- */
.site-footer { background: var(--foot); color: #F5F3EC; margin-top: 96px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-top: 64px; }
.foot-brand { font-family: var(--head); font-weight: 800; font-size: 24px; letter-spacing: -.02em; display: block; margin-bottom: 14px; color: #fff; }
.foot-col p { margin: 0 0 14px; font-size: 14.5px; line-height: 1.65; color: rgba(245,243,236,.6); max-width: 40ch; }
.foot-col h3 { margin: 0 0 14px; font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,243,236,.55); }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { color: rgba(245,243,236,.9); text-decoration: none; font-size: 14.5px; }
.foot-col a:hover { text-decoration: underline; text-decoration-color: var(--lime); text-underline-offset: 3px; }
.foot-socials { display: flex; gap: 10px; }
.foot-social { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(245,243,236,.25); border-radius: 50%; color: rgba(245,243,236,.9); text-decoration: none; }
.foot-social:hover { background: var(--lime); border-color: var(--lime); color: var(--forest); }
.foot-bottom { margin-top: 44px; border-top: 1px solid rgba(245,243,236,.12); }
.foot-bottom p { margin: 0; padding: 26px 0 32px; font-size: 13px; color: rgba(245,243,236,.5); }

/* ---------- Reveal-on-scroll (progresywnie — bez JS treść widoczna) ---------- */
.reveal { opacity: 1; transform: none; }
.reveal.pre { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsywność ---------- */
@media (max-width: 1080px) {
  .post-layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .toc-side { display: none; }
  .post .toc { display: block; }
}
@media (max-width: 900px) {
  .latest-grid { grid-template-columns: 1fr; gap: 24px; }
  .feature-card { min-height: 400px; }
  .duo-grid { grid-template-columns: 1fr; }
  .cal-season-head, .cal-season:nth-of-type(even) .cal-season-head { grid-template-columns: 1fr; gap: 20px; }
  .cal-season:nth-of-type(even) .cal-season-photo { order: 0; }
  .cat-header { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .cat-photo { width: 100%; max-width: 460px; }
  .about-split { grid-template-columns: 1fr; }
  .about-split-media { order: -1; }
  .team-grid { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .wrap { padding: 0 16px; }
  .site-header { top: 8px; margin-top: 10px; }
  .header-inner { gap: 8px; padding: 8px 10px 8px 16px; }
  .brand { margin-right: 4px; font-size: 17.5px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; order: 3; flex: none; }
  .search { order: 2; flex: 1; margin-left: 0; }
  .search input { width: 100%; }
  .search input:focus { width: 100%; }
  .search-results { left: 0; right: 0; width: auto; }
  .header-social { display: none; }
  /* menu mobilne: rozwijana karta pod pigułką (nav.js przełącza .is-open) */
  .site-nav {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); z-index: 89;
    flex-direction: column; align-items: stretch; gap: 0; padding: 0 18px;
    background: var(--card); border: 1px solid var(--line); border-radius: 22px;
    box-shadow: var(--sh-card);
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transition: max-height .25s ease, opacity .25s ease, visibility .25s;
  }
  .site-nav.is-open { max-height: 70vh; opacity: 1; visibility: visible; overflow: auto; padding: 10px 18px; }
  .site-nav a { display: block; padding: 13px 2px; border-radius: 0; border-bottom: 1px solid var(--line2); font-size: 15px; }
  .site-nav a:hover { background: transparent; color: var(--green); }
  .site-nav a:last-child { border-bottom: 0; }
  /* hero: jedna kolumna — tekst NAD zdjęciem */
  .hero-cine { grid-template-columns: 1fr; gap: 26px; padding-top: 30px; }
  .hero-cine[style*="background-image"]::after { grid-column: 1; grid-row: 2; min-height: 260px; }
  .hero-video { grid-column: 1; grid-row: 2; min-height: 260px; }
  .hero-content { grid-column: 1; grid-row: 1; }
  .hero-content h1 { font-size: clamp(38px, 10vw, 56px); margin-bottom: 16px; }
  .hero-lead { font-size: 16px; margin-bottom: 22px; }
  .hero-cta .btn { padding: 13px 22px; font-size: 14px; }
  .now-bar-inner { flex-wrap: wrap; gap: 8px 14px; border-radius: 22px; padding: 16px 20px; }
  .now-bar-link { margin-left: 0; flex-basis: 100%; }
  .home-section { padding-top: 48px; }
  .panel { padding: 28px 24px; min-height: 200px; }
  .quick-row { grid-template-columns: 104px 1fr; gap: 14px; }
  .quick-thumb { align-self: start; }
  .quick-chip { display: none; }
  .quick-title { font-size: 18px; }
  .post-head { padding-top: 24px; }
  .cat-chips { top: 66px; }
  .cal-now-note { flex-wrap: wrap; }
  .cal-now-link { margin-left: 0; flex-basis: 100%; }
}
@media (max-width: 640px) {
  .section-head { flex-wrap: wrap; }
  .cat-header h1 { font-size: clamp(44px, 12vw, 64px); }
  .page-head h1 { font-size: clamp(36px, 10vw, 52px); }
  .feature-card { padding: 22px 20px; min-height: 340px; }
  .author-box { flex-direction: column; }
  .author-hero { flex-direction: column; text-align: center; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-socials { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .scope-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .cal-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .cal-tile a { padding: 12px 12px; }
  .fb-pop { right: 12px; left: 12px; bottom: 12px; width: auto; }
  .post-byline { gap: 10px; }
  .calc-input { width: 100%; }
}

/* ---------- Ograniczony ruch ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-kicker, .hero-content h1, .hero-lead, .hero-cta { animation: none; }
  .reveal.pre { opacity: 1; transform: none; transition: none; }
  .card-link, .mini-item, .quick-row, .panel, .scope-card a, .cal-tile a,
  .card-imgwrap img, .quick-thumb img, .feature-card .card-imgwrap img,
  .search input, .fb-pop, .nav-toggle-bars span, .site-nav { transition: none; }
  .card-link:hover, .mini-item:hover, .quick-row:hover, .panel:hover,
  .scope-card a:hover, .cal-tile a:hover { transform: none; }
  .card-link:hover .card-imgwrap img, .quick-row:hover .quick-thumb img,
  .feature-card:hover .card-imgwrap img { transform: none; }
  .read-progress-bar { transition: none; }
  .post h2.is-flash, .post h3.is-flash { animation: none; }
}

/* ============================================================================
   MOTYW EDITORIAL — markup z RenderEditorial.cs, wartości 1:1 z prototypów
   Claude Design (Strona glowna.dc.html / Artykul.dc.html / Kategoria *.dc.html)
   ========================================================================== */
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes heroRise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroImg { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1); } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
::selection { background: #D9F650; color: #0C2E1C; }
body.theme-ed { overflow-x: clip; }
body.theme-ed main { max-width: none; padding: 0; }

/* Reveal (editorial.js) — BEZPIECZNIK: opacity chowamy TYLKO gdy <html> ma .reveal-on
   (JS dodaje ją zaraz na starcie). Bez JS / gdy skrypt padnie → treść widoczna zawsze. */
html.reveal-on .will-reveal { opacity: 0; transform: translateY(28px); }
.will-reveal, .is-in { transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.is-in { opacity: 1 !important; transform: translateY(0) !important; }

/* Pasek postępu czytania */
.read-progress { height: 4px; z-index: 99; }
.read-progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, #1F8A47, #D9F650); border-radius: 0 4px 4px 0; }

/* ---------- Header-pigułka ---------- */
.pill-head { position: sticky; top: 0; z-index: 90; padding: 14px 22px; }
.ph-in { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; background: rgba(255,255,254,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: 999px; padding: 10px 12px 10px 22px; box-shadow: 0 12px 32px rgba(14,27,18,.08); }
.ph-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.ph-logo { width: 34px; height: 34px; border-radius: 50%; background: var(--forest); display: grid; place-items: center; flex: none; }
.ph-name { font-family: var(--head); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.ph-nav { display: flex; align-items: center; gap: 4px; }
.ph-nav a { text-decoration: none; color: var(--ink); font-size: 14.5px; font-weight: 600; padding: 8px 14px; border-radius: 999px; transition: background .18s ease; white-space: nowrap; }
.ph-nav a:hover { background: var(--hoverbg); }
.ph-nav a.is-act { background: var(--lime); color: var(--forest); font-weight: 700; }
.ph-tools { display: flex; align-items: center; gap: 8px; }
.ph-tools .search { position: relative; display: flex; align-items: center; gap: 8px; background: var(--hoverbg); border-radius: 999px; padding: 0 16px; height: 40px; color: #5C6455; }
.ph-tools .search input { border: 0; background: transparent; outline: none; font: 500 14px var(--sans); color: var(--ink); width: 110px; }
.ph-tools .search-results { position: absolute; top: 48px; right: 0; width: 340px; max-height: 60vh; overflow: auto; background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 44px rgba(14,27,18,.14); padding: 8px; z-index: 95; }
.ph-now { display: inline-flex; align-items: center; gap: 8px; background: var(--forest); color: #F5F3EC; text-decoration: none; font-size: 14px; font-weight: 700; border-radius: 999px; padding: 10px 18px; transition: background .2s ease; white-space: nowrap; }
.ph-now:hover { background: var(--green); }
.ph-now-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex: none; }

/* ---------- Wspólne klocki ---------- */
.kick { margin: 0; display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }
.kick-line { width: 26px; height: 2px; background: var(--green); }
.kick-lime { color: var(--lime); } .kick-lime .kick-line { background: var(--lime); }
.kick-dark { color: var(--forest); font-weight: 800; }
.btn-solid { display: inline-flex; align-items: center; gap: 10px; background: var(--forest); color: #F5F3EC; text-decoration: none; font-weight: 700; font-size: 16px; padding: 16px 28px; border-radius: 999px; transition: transform .18s ease, background .2s ease; }
.btn-solid:hover { background: var(--green); transform: translateY(-2px); }
.btn-line { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--ink); text-decoration: none; font-weight: 700; font-size: 16px; padding: 15px 28px; border-radius: 999px; border: 1.5px solid #C9C4B0; transition: transform .18s ease, border-color .2s ease; }
.btn-line:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-lime { display: inline-flex; align-items: center; gap: 10px; background: var(--lime); color: var(--forest); text-decoration: none; font-weight: 800; font-size: 15.5px; padding: 15px 26px; border-radius: 999px; transition: transform .18s ease; align-self: flex-start; }
.btn-lime:hover { transform: translateY(-2px) scale(1.02); }
.btn-on-lime { background: var(--forest); color: var(--lime); font-weight: 800; font-size: 15.5px; padding: 15px 26px; align-self: flex-start; }
.btn-on-lime:hover { background: var(--forest); }
.badge-lime { background: var(--lime); color: var(--forest); font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.e-sec { max-width: 1280px; margin: 96px auto 0; padding: 0 22px; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.sec-head h2 { margin: 0; font-family: var(--head); font-weight: 800; font-size: clamp(36px, 4vw, 54px); letter-spacing: -0.03em; }
.sec-note { font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #8A927F; }
.f-kick { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.f-kick.is-ogrod { color: var(--green); } .f-kick.is-dom { color: var(--terra); }
.f-mdate { font-size: 12.5px; font-weight: 600; color: #8A927F; }

/* ---------- Hero ---------- */
.e-hero { position: relative; max-width: 1280px; margin: 0 auto; padding: 40px 22px 0; }
.eh-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.eh-copy { position: relative; z-index: 2; padding: 30px 0 60px; }
.eh-copy h1 { margin: 22px 0 0; font-family: var(--head); font-weight: 800; font-size: clamp(52px, 6.4vw, 92px); line-height: .98; letter-spacing: -0.035em; }
.eh-copy h1 .grn { color: var(--green); }
.eh-lead { margin: 26px 0 0; max-width: 440px; font-size: 18.5px; line-height: 1.6; color: var(--muted); }
.eh-cta { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.eh-a1 { animation: heroRise .8s .05s both cubic-bezier(.2,.7,.2,1); }
.eh-a2 { animation: heroRise .8s .15s both cubic-bezier(.2,.7,.2,1); }
.eh-a3 { animation: heroRise .8s .28s both cubic-bezier(.2,.7,.2,1); }
.eh-a4 { animation: heroRise .8s .4s both cubic-bezier(.2,.7,.2,1); }
.eh-a5 { animation: heroImg 1.1s .2s both cubic-bezier(.2,.7,.2,1); }
.eh-media { position: relative; z-index: 2; }
.eh-photo { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4/4.6; box-shadow: 0 30px 80px rgba(12,46,28,.25); will-change: transform; }
.eh-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.eh-scrim { position: absolute; inset: 0; background: linear-gradient(200deg, rgba(217,246,80,0) 55%, rgba(12,46,28,.42) 100%); }
.eh-cal { position: absolute; left: -34px; bottom: 34px; display: flex; align-items: center; gap: 14px; background: var(--card); border-radius: 20px; padding: 14px 20px 14px 14px; text-decoration: none; color: var(--ink); box-shadow: 0 18px 44px rgba(14,27,18,.18); animation: heroRise .8s .6s both cubic-bezier(.2,.7,.2,1); transition: transform .2s ease; }
.eh-cal:hover { transform: translateY(-3px); }
.eh-cal-num { width: 52px; height: 52px; border-radius: 14px; background: var(--lime); display: grid; place-items: center; font-family: var(--head); font-weight: 800; font-size: 22px; color: var(--forest); flex: none; }
.eh-cal-txt { display: flex; flex-direction: column; gap: 2px; }
.eh-cal-k { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.eh-cal-t { font-weight: 700; font-size: 15.5px; }
.eh-spin { position: absolute; top: -36px; right: -30px; width: 110px; height: 110px; animation: spinSlow 24s linear infinite; }
.eh-spin text { font-size: 10.6px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; fill: var(--forest); font-family: var(--sans); }
.eh-stroke { position: absolute; left: -10px; bottom: -34px; z-index: 1; font-family: var(--head); font-weight: 800; font-size: clamp(120px, 17vw, 240px); line-height: 1; letter-spacing: -0.04em; color: transparent; -webkit-text-stroke: 1.5px #D5D0BB; user-select: none; pointer-events: none; will-change: transform; }

/* ---------- Marquee ---------- */
.marq { margin-top: 74px; background: var(--forest); overflow: hidden; padding: 16px 0; }
.marq-track { display: flex; width: max-content; animation: marq 26s linear infinite; }
.marq-run { display: flex; align-items: center; gap: 34px; padding-right: 34px; }
.marq-run span { color: #F5F3EC; font-family: var(--head); font-weight: 700; font-size: 20px; white-space: nowrap; }
.marq-run i { color: var(--lime); font-size: 18px; font-style: normal; }

/* ---------- Świeżo posadzone ---------- */
.fresh-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 28px; align-items: stretch; }
.f-feat { position: relative; display: block; border-radius: 26px; overflow: hidden; text-decoration: none; color: var(--card); min-height: 520px; box-shadow: 0 22px 60px rgba(14,27,18,.16); transition: transform .25s ease; }
.f-feat:hover { transform: translateY(-5px); }
.f-feat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.f-scrim { position: absolute; inset: 0; background: linear-gradient(190deg, rgba(12,46,28,0) 30%, rgba(10,26,16,.88) 92%); }
.f-body { position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 14px; height: 100%; padding: 34px; }
.f-meta { display: flex; align-items: center; gap: 10px; }
.f-date { font-size: 13.5px; font-weight: 600; color: rgba(245,243,236,.85); }
.f-title { font-family: var(--head); font-weight: 800; font-size: clamp(28px, 3vw, 42px); line-height: 1.05; letter-spacing: -0.025em; max-width: 560px; }
.f-desc { max-width: 520px; font-size: 16px; line-height: 1.55; color: rgba(245,243,236,.82); }
.f-side { display: flex; flex-direction: column; gap: 14px; }
.f-mini { display: grid; grid-template-columns: 104px 1fr; gap: 16px; align-items: center; background: var(--card); border: 1px solid var(--line2); border-radius: 20px; padding: 12px; text-decoration: none; color: var(--ink); transition: transform .2s ease, box-shadow .2s ease; }
.f-mini:hover { transform: translateX(6px); box-shadow: 0 14px 34px rgba(14,27,18,.1); }
.f-thumb { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; display: block; }
.f-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.f-mbody { display: flex; flex-direction: column; gap: 5px; padding-right: 8px; }
.f-mtitle { font-family: var(--head); font-weight: 700; font-size: 17px; line-height: 1.2; letter-spacing: -0.015em; }
.f-all { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 15px; border: 1.5px solid #C9C4B0; border-radius: 999px; padding: 14px; transition: border-color .2s ease, background .2s ease; }
.f-all:hover { border-color: var(--ink); background: var(--card); }

/* ---------- Bandy ---------- */
.band { position: relative; border-radius: 32px; overflow: hidden; padding: 60px 56px; }
.band-cal { background: var(--forest); color: #F5F3EC; }
.bc-big { position: absolute; right: -30px; top: 50%; margin-top: -190px; font-family: var(--head); font-weight: 800; font-size: 380px; line-height: 1; color: rgba(217,246,80,.1); user-select: none; pointer-events: none; }
.bc-grid { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.bc-copy { display: flex; flex-direction: column; gap: 18px; }
.bc-copy h2 { margin: 0; font-family: var(--head); font-weight: 800; font-size: clamp(34px, 3.6vw, 50px); line-height: 1.04; letter-spacing: -0.03em; }
.bc-lead { margin: 0; max-width: 480px; font-size: 16.5px; line-height: 1.65; color: rgba(245,243,236,.78); }
.bc-months { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.bc-months a { text-decoration: none; text-align: center; padding: 16px 0 12px; border-radius: 14px; background: rgba(245,243,236,.07); color: rgba(245,243,236,.75); transition: background .2s ease; }
.bc-months a:hover { background: rgba(245,243,236,.16); }
.bc-months a b { display: block; font-family: var(--head); font-weight: 800; font-size: 21px; }
.bc-months a span { font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.bc-months a.is-now { background: var(--lime); color: var(--forest); box-shadow: 0 10px 30px rgba(217,246,80,.3); }
.bc-months a.is-now span { font-weight: 800; }
.band-quick { background: var(--lime); color: var(--forest); }
.bq-star { position: absolute; right: 46px; top: -20px; bottom: -20px; display: flex; align-items: center; opacity: .16; }
.bq-copy { position: relative; display: flex; flex-direction: column; gap: 18px; max-width: 620px; }
.bq-copy h2 { margin: 0; font-family: var(--head); font-weight: 800; font-size: clamp(34px, 3.8vw, 52px); line-height: 1.02; letter-spacing: -0.03em; color: var(--forest); }
.bq-copy p:not(.kick) { margin: 0; font-size: 17px; line-height: 1.6; color: rgba(12,46,28,.78); max-width: 520px; }

/* ---------- Dwa światy zieleni ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.duo-card { position: relative; display: block; border-radius: 26px; overflow: hidden; text-decoration: none; color: var(--card); aspect-ratio: 16/11; box-shadow: 0 22px 60px rgba(14,27,18,.16); }
.duo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.duo-scrim { position: absolute; inset: 0; background: linear-gradient(195deg, rgba(31,138,71,.06) 40%, rgba(12,46,28,.85) 96%); }
.duo-card.is-dom .duo-scrim { background: linear-gradient(195deg, rgba(196,85,31,.05) 40%, rgba(74,28,8,.85) 96%); }
.duo-body { position: relative; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; padding: 34px; gap: 10px; }
.duo-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.duo-name { font-family: var(--head); font-weight: 800; font-size: clamp(38px, 4vw, 58px); letter-spacing: -0.03em; }
.duo-arrow { width: 54px; height: 54px; border-radius: 50%; background: var(--lime); color: var(--forest); display: grid; place-items: center; flex: none; }
.duo-card.is-dom .duo-arrow { background: var(--orange); color: var(--card); }
.duo-desc { max-width: 430px; font-size: 15.5px; line-height: 1.55; color: rgba(245,243,236,.85); }

/* ---------- Artykuł ---------- */
.art-head { max-width: 1080px; margin: 0 auto; padding: 46px 22px 0; }
.ah-in { display: flex; flex-direction: column; gap: 20px; animation: heroRise .8s .05s both cubic-bezier(.2,.7,.2,1); }
.ah-chips { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.chip-cat { color: var(--card); font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; text-decoration: none; transition: background .2s ease; }
.chip-cat.is-ogrod { background: var(--green); } .chip-cat.is-ogrod:hover { background: var(--forest); }
.chip-cat.is-dom { background: var(--terra); } .chip-cat.is-dom:hover { background: #8F3A12; }
.chip-tag { background: var(--card); border: 1px solid var(--line); color: var(--muted); font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px; text-decoration: none; transition: border-color .2s ease, color .2s ease; }
.chip-tag:hover { border-color: var(--ink); color: var(--ink); }
.art-head h1 { margin: 0; font-family: var(--head); font-weight: 800; font-size: clamp(38px, 5vw, 66px); line-height: 1.02; letter-spacing: -0.032em; max-width: 900px; text-wrap: balance; }
.ah-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ah-author { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.ah-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; display: block; }
.ah-author span { display: flex; flex-direction: column; }
.ah-author b { font-weight: 700; font-size: 14.5px; }
.ah-author i { font-style: normal; font-size: 12.5px; color: #8A927F; }
.ah-sep { width: 1px; height: 30px; background: #DDD8C8; }
.ah-date { font-size: 14px; font-weight: 600; color: var(--muted); }
.read-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--lime); color: var(--forest); font-size: 13px; font-weight: 800; padding: 6px 13px; border-radius: 999px; }
.art-hero { margin-top: 36px; border-radius: 28px; overflow: hidden; aspect-ratio: 21/9; box-shadow: 0 26px 70px rgba(12,46,28,.2); animation: heroRise .9s .2s both cubic-bezier(.2,.7,.2,1); }
.art-hero img { width: 100%; height: 116%; object-fit: cover; display: block; will-change: transform; }
.art-grid { max-width: 1080px; margin: 0 auto; padding: 56px 22px 0; display: grid; grid-template-columns: 250px 1fr; gap: 56px; align-items: start; }
.art-toc { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 8px; }
.toc-h { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #8A927F; margin-bottom: 8px; }
.toc-list { display: flex; flex-direction: column; gap: 4px; }
.toc-list a { text-decoration: none; font-size: 14px; font-weight: 600; line-height: 1.35; padding: 9px 14px; border-radius: 12px; transition: all .2s ease; color: #6B7362; }
.toc-list a:hover { color: var(--forest); background: var(--hoverbg); }
.toc-list a.is-act { color: var(--forest); background: var(--lime); font-weight: 800; }
.toc-brief { margin-top: 22px; background: var(--forest); border-radius: 18px; padding: 20px; color: #F5F3EC; }
.tb-k { margin: 0 0 4px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); }
.tb-t { margin: 0; font-size: 13.5px; line-height: 1.6; color: rgba(245,243,236,.82); }
.art-body { max-width: 720px; min-width: 0; }
.art-author { margin: 56px 0 0; background: var(--forest); border-radius: 24px; padding: 30px 32px; display: grid; grid-template-columns: 76px 1fr; gap: 22px; align-items: center; color: #F5F3EC; }
.art-author img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; display: block; border: 3px solid var(--lime); }
.aa-k { display: block; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); margin-bottom: 2px; }
/* Box autora żyje wewnątrz .post — zbijamy artykułowe style linków (zieleń+podkreślenie na ciemnym tle) */
.aa-name, .post .art-author a.aa-name { font-family: var(--head); font-weight: 800; font-size: 21px; color: #F5F3EC; text-decoration: none; border-bottom: 0; display: inline-block; margin: 2px 0 6px; transition: color .2s ease; }
.aa-name:hover, .post .art-author a.aa-name:hover { color: var(--lime); text-decoration: none; border-bottom: 0; background: transparent; }
.art-author p { margin: 0; font-size: 14.5px; line-height: 1.6; color: rgba(245,243,236,.75); }
.art-rel { max-width: 1080px; margin: 90px auto 0; padding: 0 22px; }
.art-rel h2 { margin: 0 0 30px; font-family: var(--head); font-weight: 800; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.025em; }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* FAQ akordeony */
.faq-h { margin-top: 52px; }
.e-faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--line2); border-radius: 18px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; padding: 20px 24px; font-family: var(--head); font-weight: 700; font-size: 17px; text-align: left; color: var(--ink); cursor: pointer; letter-spacing: -0.01em; }
.faq-ico { width: 32px; height: 32px; border-radius: 50%; flex: none; display: grid; place-items: center; transition: all .25s ease; background: var(--hoverbg); color: var(--ink); }
.faq-item.is-open .faq-ico { transform: rotate(45deg); background: var(--forest); color: var(--lime); }
.faq-a { display: none; }
.faq-item.is-open .faq-a { display: block; }
.faq-a p { margin: 0; padding: 0 24px 22px; font-size: 15.5px; line-height: 1.65; color: var(--muted); }

/* ---------- Karty p-card (powiązane + kategoria) ---------- */
.p-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line2); border-radius: 22px; overflow: hidden; text-decoration: none; color: var(--ink); transition: transform .22s ease, box-shadow .22s ease; }
.p-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(14,27,18,.12); }
.p-card.is-hide { display: none; }
.p-thumb { aspect-ratio: 3/2; overflow: hidden; display: block; }
.p-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.p-body { display: flex; flex-direction: column; gap: 8px; padding: 20px 22px 24px; }
.p-title { font-family: var(--head); font-weight: 700; font-size: 18.5px; line-height: 1.2; letter-spacing: -0.015em; }
.p-desc { font-size: 14px; line-height: 1.55; color: var(--muted2); }

/* ---------- Strona kategorii ---------- */
.cat-hero { max-width: 1280px; margin: 0 auto; padding: 46px 22px 0; }
.ch-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: center; }
.ch-copy .kick { color: var(--green); }
.cat-hero.is-dom .ch-copy .kick { color: var(--terra); }
.cat-hero.is-dom .ch-copy .kick-line { background: var(--terra); }
.ch-copy h1 { margin: 18px 0 0; font-family: var(--head); font-weight: 800; font-size: clamp(64px, 9vw, 128px); line-height: .95; letter-spacing: -0.04em; }
.ch-desc { margin: 22px 0 0; font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 520px; }
.ch-count { margin: 14px 0 0; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #8A927F; }
.ch-photo { border-radius: 26px; overflow: hidden; aspect-ratio: 16/10; box-shadow: 0 22px 60px rgba(14,27,18,.16); }
.ch-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-list { max-width: 1280px; margin: 0 auto; padding: 44px 22px 0; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.chip { display: flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; border: 1.5px solid #D5D0BB; background: transparent; color: var(--muted); font: 700 14px var(--sans); cursor: pointer; transition: all .2s ease; }
.chip b { background: #E9E5D6; color: var(--muted2); font-size: 12px; padding: 2px 8px; border-radius: 999px; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-act { background: var(--forest); color: var(--card); border-color: var(--forest); }
.chip.is-act b { background: var(--lime); color: var(--forest); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---------- Stopka editorial ---------- */
.e-foot { margin-top: 110px; background: var(--foot); color: #F5F3EC; }
.ef-wrap { max-width: 1280px; margin: 0 auto; padding: 70px 22px 40px; }
.ef-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; border-bottom: 1px solid rgba(245,243,236,.12); }
.ef-col { display: flex; flex-direction: column; gap: 12px; }
.ef-name { font-family: var(--head); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; }
.ef-brand p { margin: 0; font-size: 14.5px; line-height: 1.65; color: rgba(245,243,236,.62); max-width: 320px; }
.ef-h { font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); }
.ef-col a { color: rgba(245,243,236,.75); text-decoration: none; font-size: 14.5px; transition: color .2s ease; }
.ef-col a:hover { color: #FFFFFE; }
.ef-socials { display: flex; gap: 10px; margin-top: 6px; }
.ef-socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(245,243,236,.25); display: grid; place-items: center; color: #F5F3EC; text-decoration: none; font-weight: 800; font-size: 15px; transition: all .2s ease; }
.ef-socials a:hover { background: var(--lime); color: var(--forest); border-color: var(--lime); }
.ef-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; flex-wrap: wrap; }
.ef-bottom p { margin: 0; font-size: 13px; color: rgba(245,243,236,.45); }
.ef-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 56px 22px 40px; }
.ef-row .ef-name { font-size: 24px; }
.ef-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.ef-links a { color: rgba(245,243,236,.75); text-decoration: none; font-size: 14.5px; font-weight: 600; }
.ef-links a:hover { color: #FFFFFE; }
.ef-copy { margin: 0; font-size: 13px; color: rgba(245,243,236,.45); }

/* ---------- Editorial mobile ---------- */
@media (max-width: 1020px) {
  .ph-nav { display: none; }
  body.nav-open .ph-nav { display: flex; position: absolute; top: 72px; left: 22px; right: 22px; flex-direction: column; align-items: stretch; background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 12px; box-shadow: 0 22px 60px rgba(14,27,18,.18); z-index: 95; }
  .pill-head .nav-toggle { display: inline-flex; }
  .ph-tools .search input { width: 70px; }
  .eh-grid { grid-template-columns: 1fr; gap: 26px; }
  .eh-copy { padding: 16px 0 0; }
  .eh-stroke { display: none; }
  .eh-cal { left: 12px; bottom: 18px; }
  .fresh-grid, .bc-grid, .duo, .ch-grid { grid-template-columns: 1fr; }
  .f-feat { min-height: 420px; }
  .band { padding: 40px 26px; }
  .bc-big { display: none; }
  .art-grid { grid-template-columns: 1fr; gap: 30px; }
  .art-toc { position: static; order: 2; }
  .rel-grid, .cat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ph-now { display: none; }
  .ph-tools .search { display: none; }
  .rel-grid, .cat-grid { grid-template-columns: 1fr; }
  .eh-copy h1 { font-size: clamp(44px, 12vw, 60px); }
  .ch-copy h1 { font-size: clamp(48px, 14vw, 72px); }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .art-author { grid-template-columns: 1fr; }
  .band { border-radius: 24px; }
}
/* ---------- O nas (editorial) ---------- */
.about-ed-body { max-width: 1080px; margin: 40px auto 0; padding: 0 22px; }
.about-ed-body .art-body { max-width: 720px; }
.team-ed { position: relative; display: flex; flex-direction: column; gap: 34px; }
.team-ed-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.team-ed-card { display: grid; grid-template-columns: 76px 1fr; gap: 20px; align-items: start; background: rgba(245,243,236,.07); border-radius: 22px; padding: 26px; }
.team-ed-card img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; border: 3px solid var(--lime); }
.tec-name { display: block; font-family: var(--head); font-weight: 800; font-size: 21px; margin: 4px 0 8px; }
.team-ed-card p { margin: 0 0 10px; font-size: 14.5px; line-height: 1.6; color: rgba(245,243,236,.75); }
.tec-link { color: var(--lime); text-decoration: none; font-weight: 700; font-size: 14px; }
.tec-link:hover { text-decoration: underline; }
.rules-ed { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.rules-ed li { position: relative; padding-left: 30px; font-size: 16px; line-height: 1.6; color: rgba(12,46,28,.85); }
.rules-ed li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--forest); color: var(--lime); display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.bq-copy p:not(.kick) a.btn-line { margin-left: 10px; }

/* ---------- Poradnik ekspresowy ---------- */
.quick-hero-sec { margin-top: 40px; }
.bq-h1 { margin: 0; font-family: var(--head); font-weight: 800; font-size: clamp(46px, 6vw, 84px); line-height: 1.0; letter-spacing: -0.035em; color: var(--forest); }
.f-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

/* ---------- Kalendarz — hub z bandami pór roku ---------- */
.calhub-head { max-width: 880px; margin: 46px auto 0; padding: 0 22px; text-align: center; }
.calhub-head h1 { margin: 16px 0 0; font-family: var(--head); font-weight: 800; font-size: clamp(48px, 7vw, 96px); line-height: .98; letter-spacing: -0.04em; }
.calhub-lead { margin: 18px auto 0; font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 560px; }
.cal-now-band { display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center; background: var(--forest); border-radius: 28px; padding: 34px 44px; color: #F5F3EC; text-decoration: none; transition: transform .2s ease; }
.cal-now-band:hover { transform: translateY(-3px); }
.cnb-num { position: relative; width: 96px; height: 96px; border-radius: 24px; background: var(--lime); color: var(--forest); display: grid; place-items: center; font-family: var(--head); font-weight: 800; font-size: 42px; flex: none; }
.cnb-dot { position: absolute; top: -6px; right: -6px; width: 16px; height: 16px; border-radius: 50%; background: var(--orange); }
.cnb-txt { display: flex; flex-direction: column; gap: 6px; }
.cnb-txt b { font-family: var(--head); font-weight: 800; font-size: 24px; }
.cnb-txt span { font-size: 15px; line-height: 1.55; color: rgba(245,243,236,.78); max-width: 640px; }
.cnb-go { width: 54px; height: 54px; border-radius: 50%; background: rgba(245,243,236,.12); display: grid; place-items: center; }
.calhub-seasons { display: flex; flex-direction: column; gap: 26px; margin-top: 60px; }
.season-band { border-radius: 32px; padding: 52px 56px; }
.sea-wiosna { background: #E3F2D9; } .sea-lato { background: var(--lime); }
.sea-jesien { background: #FFDCCB; } .sea-zima { background: #DFE8E6; }
.season-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 44px; align-items: center; }
.season-range { font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(14,27,18,.55); }
.season-copy h2 { margin: 8px 0 0; font-family: var(--head); font-weight: 800; font-size: clamp(44px, 5vw, 72px); letter-spacing: -0.035em; color: var(--ink); }
.season-months { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sm-card { display: flex; flex-direction: column; gap: 4px; background: rgba(255,255,254,.55); border-radius: 20px; padding: 20px 20px 16px; text-decoration: none; color: var(--ink); transition: transform .2s ease, background .2s ease; }
.sm-card:hover { background: #FFFFFE; transform: translateY(-4px); }
.sm-card.is-now { background: #FFFFFE; box-shadow: 0 18px 44px rgba(14,27,18,.14); }
.sm-card b { font-family: var(--head); font-weight: 800; font-size: 40px; line-height: 1; color: var(--ink); }
.sm-card.is-now b { color: var(--green); }
.sm-name { font-weight: 700; font-size: 16px; }
.sm-badge { align-self: flex-start; margin-top: 6px; background: var(--forest); color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.sm-go { align-self: flex-end; opacity: .45; }

/* === De-slop 5.07: fotograficzne bandy, karteczki, ghost-typografia === */
/* Banda kalendarza: zdjęcie bieżącego miesiąca pod gradientem, szklane kafle */
.bc-photo { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .4; }
.band-cal::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, #0C2E1C 32%, rgba(12,46,28,.72) 68%, rgba(12,46,28,.5)); }
.band-cal .bc-grid, .band-cal .bc-big { position: relative; z-index: 2; }
.band-cal::after { z-index: 1; }
.bc-months a { background: rgba(245,243,236,.1); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1px solid rgba(245,243,236,.14); }
.bc-months a.is-now { background: var(--lime); border-color: var(--lime); transform: rotate(-2deg); }
.bc-months a.is-now:hover { background: var(--lime); }
/* Stos karteczek w bandzie Poradnika (zamiast clip-artu) */
.qstack { position: absolute; right: 64px; top: 50%; transform: translateY(-50%); width: 300px; display: block; }
.qstack i { position: absolute; left: 0; right: 0; display: flex; flex-direction: column; gap: 10px; background: #FFFFFE; border-radius: 16px; padding: 18px 20px; font-style: normal; box-shadow: 0 16px 40px rgba(12,46,28,.18); }
.qstack i span { font-family: var(--head); font-weight: 700; font-size: 15.5px; line-height: 1.35; letter-spacing: -0.01em; color: var(--ink); }
.qstack i b { align-self: flex-start; background: var(--lime); color: var(--forest); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.qstack i:nth-child(1) { transform: rotate(-7deg) translateY(-78px); opacity: .85; }
.qstack i:nth-child(2) { transform: rotate(4deg) translateY(6px); opacity: .95; }
.qstack i:nth-child(3) { transform: rotate(-2deg) translateY(92px); }
.band-quick .bq-copy { max-width: 560px; }
/* Pory roku: zdjęcia miesięcy + konturowa nazwa pory w tle */
.season-band { position: relative; overflow: hidden; }
.season-ghost { position: absolute; right: -14px; bottom: -30px; font-family: var(--head); font-weight: 800; font-size: clamp(110px, 15vw, 210px); line-height: 1; letter-spacing: -0.04em; color: transparent; -webkit-text-stroke: 1.5px rgba(14,27,18,.12); user-select: none; pointer-events: none; }
.season-grid { position: relative; z-index: 2; }
.sm-card { padding: 0; overflow: hidden; gap: 0; }
.sm-ph { display: block; aspect-ratio: 3/2; overflow: hidden; }
.sm-ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.sm-card:hover .sm-ph img { transform: scale(1.05); }
.sm-row { display: flex; align-items: center; gap: 10px; padding: 14px 16px; }
.sm-row b { font-size: 26px; }
.sm-card.is-now { outline: 3px solid var(--forest); outline-offset: -3px; }
.sm-badge { margin-top: 0; margin-left: auto; }
.sm-go { margin-left: auto; align-self: center; }
/* Stopka: wielki konturowy wordmark */
.e-foot { border-top: 3px solid var(--lime); }
.ef-mark { margin: 44px 0 -10px; font-family: var(--head); font-weight: 800; font-size: clamp(56px, 11vw, 168px); line-height: .95; letter-spacing: -0.03em; white-space: nowrap; color: transparent; -webkit-text-stroke: 1.5px rgba(245,243,236,.16); user-select: none; overflow: hidden; }

/* Bandy: nagłówki ZAWSZE jasne na ciemnym tle (globalne h2 { color } nie może ich nadpisać) */
.band-cal h2, .band-cal .bc-copy h2 { color: #F5F3EC; }
.band-quick h2, .band-quick .bq-copy h2 { color: var(--forest); }

/* ---------- Zespół (O nas): JASNE karty, treść WIDOCZNA zawsze (bez reveal-opacity) ---------- */
.team-sec { max-width: 1080px; }
.team-head { max-width: 640px; margin-bottom: 32px; }
.team-head h2 { margin: 12px 0 0; font-family: var(--head); font-weight: 800; font-size: clamp(30px, 3.4vw, 46px); letter-spacing: -0.03em; color: var(--ink); }
.team-lead { margin: 14px 0 0; font-size: 16.5px; line-height: 1.6; color: var(--muted); }
.team-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tcard { position: relative; display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line2); border-radius: 24px; padding: 30px 30px 26px; box-shadow: 0 14px 40px rgba(14,27,18,.07); transition: transform .22s ease, box-shadow .22s ease; overflow: hidden; }
.tcard:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(14,27,18,.13); }
.tcard-top { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--green), var(--lime)); }
.tcard-av { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 4px solid var(--lime); margin: 6px 0 16px; }
.tcard-role { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.tcard-name { margin: 6px 0 0; font-family: var(--head); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; color: var(--ink); }
.tcard-bio { margin: 12px 0 18px; font-size: 15px; line-height: 1.65; color: var(--muted); }
.tcard-more { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--green-deep, #1B4A2F); text-decoration: none; transition: gap .2s ease; }
.tcard-more:hover { gap: 12px; }
@media (max-width: 720px) { .team-cards { grid-template-columns: 1fr; } }

/* ---------- Pracownia: karty-narzędzia (mini-interfejs: wejście → wynik) ---------- */
.tool-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 34px 0; }
.post .tool-card, .tool-card { display: flex; flex-direction: column; gap: 14px; background: var(--card); border: 1px solid var(--line2); border-top: 4px solid var(--green); border-radius: 24px; padding: 26px 26px 24px; text-decoration: none !important; color: var(--ink); box-shadow: 0 14px 40px rgba(14,27,18,.08); transition: transform .22s ease, box-shadow .22s ease; }
.post .tool-card:hover, .tool-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(14,27,18,.14); border-top-color: var(--forest); }
.post .tool-card * { text-decoration: none !important; border-bottom: 0 !important; }
.tc-top { display: flex; align-items: center; gap: 10px; }
.tc-free { background: var(--lime); color: var(--forest); font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.tc-kick { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #8A927F; }
.post .tool-card .tc-name, .tc-name { font-family: var(--head); font-weight: 800; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); }
.tc-demo { display: flex; align-items: stretch; gap: 8px; flex-wrap: wrap; background: var(--bg); border: 1px dashed #D5D0BB; border-radius: 16px; padding: 12px; }
.tc-in, .tc-out { display: flex; flex-direction: column; gap: 2px; justify-content: center; border-radius: 10px; padding: 8px 12px; min-width: 0; }
.tc-in { background: var(--card); border: 1px solid var(--line); }
.tc-in i, .tc-out i { font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #8A927F; }
.tc-in b { font-size: 13.5px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.tc-eq { align-self: center; font-family: var(--head); font-weight: 800; font-size: 20px; color: #8A927F; padding: 0 2px; }
.tc-out { background: var(--forest); }
.tc-out i { color: rgba(217,246,80,.8); }
.tc-out b { font-size: 14.5px; font-weight: 800; color: var(--lime); white-space: nowrap; }
.tc-desc { font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.post .tool-card .tc-btn, .tc-btn { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 9px; background: var(--forest); color: #F5F3EC !important; font-weight: 700; font-size: 14.5px; padding: 12px 22px; border-radius: 999px; transition: background .2s ease, gap .2s ease; }
.tool-card:hover .tc-btn { background: var(--green); gap: 13px; }
@media (max-width: 860px) { .tool-cards { grid-template-columns: 1fr; } }
@media (max-width: 400px) { .tc-eq { display: none; } .tc-out { width: 100%; } }

/* ---------- Pracownia (hub narzędzi) ---------- */
.work-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 34px 0; }
.work-card { position: relative; display: block; border-radius: 26px; overflow: hidden; text-decoration: none; color: #F5F3EC; aspect-ratio: 4/3.4; box-shadow: 0 22px 60px rgba(14,27,18,.16); transition: transform .25s ease; }
.work-card:hover { transform: translateY(-5px); }
.work-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wc-scrim { position: absolute; inset: 0; background: linear-gradient(195deg, rgba(12,46,28,.05) 30%, rgba(10,26,16,.9) 96%); }
.work-card.wc-lime .wc-scrim { background: linear-gradient(195deg, rgba(217,246,80,.05) 30%, rgba(72,84,10,.9) 96%); }
.wc-body { position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; height: 100%; padding: 30px; }
.wc-kick { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); }
.wc-name { font-family: var(--head); font-weight: 800; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.025em; color: #FFFFFE; }
.wc-desc { max-width: 420px; font-size: 15px; line-height: 1.55; color: rgba(245,243,236,.85); }
.wc-go { margin-top: 6px; font-weight: 800; font-size: 15px; color: var(--lime); }
/* Hub renderuje się wewnątrz .post (PagePage) — zbij style linków artykułowych (podkreślenia, zieleń) */
.post .work-card, .post .work-card:hover { text-decoration: none; border-bottom: 0; }
.post .work-card * { text-decoration: none !important; border-bottom: 0 !important; }
.post .work-card .wc-name { color: #FFFFFE; }
.post .work-card .wc-desc { color: rgba(245,243,236,.85); }
.post .work-card .wc-kick, .post .work-card .wc-go { color: var(--lime); }
.work-card .wc-scrim { background: linear-gradient(195deg, rgba(12,46,28,.18) 0%, rgba(10,26,16,.94) 96%); }
.work-card.wc-lime .wc-scrim { background: linear-gradient(195deg, rgba(30,40,8,.2) 0%, rgba(38,46,6,.94) 96%); }

/* ---------- Strona autora (editorial): JASNA karta, treść widoczna zawsze ---------- */
.author-card { position: relative; display: grid; grid-template-columns: 140px 1fr; gap: 34px; align-items: center; background: var(--card); border: 1px solid var(--line2); border-radius: 26px; padding: 36px; box-shadow: 0 14px 40px rgba(14,27,18,.07); overflow: hidden; }
.author-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--green), var(--lime)); }
.ac-avatar { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 5px solid var(--lime); }
.ac-name { margin: 8px 0 0; font-family: var(--head); font-weight: 800; font-size: clamp(34px, 4.5vw, 54px); letter-spacing: -0.03em; color: var(--ink); }
.ac-bio { margin: 14px 0 0; font-size: 16.5px; line-height: 1.65; color: var(--muted); max-width: 640px; }
@media (max-width: 620px) { .author-card { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 30px 24px; } }

/* ---------- Nawigacja miesiąc→miesiąc (kalendarz) ---------- */
.month-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 44px 0 0; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.month-nav a { text-decoration: none; font-weight: 700; font-size: 14.5px; padding: 11px 18px; border-radius: 999px; transition: background .2s ease, border-color .2s ease; }
.mn-prev, .mn-next { color: var(--ink); border: 1.5px solid var(--line2); }
.mn-prev:hover, .mn-next:hover { border-color: var(--ink); }
.mn-hub { background: var(--forest); color: #F5F3EC !important; }
.mn-hub:hover { background: var(--green); }
@media (max-width: 560px) { .author-band { grid-template-columns: 1fr; text-align: center; } .ab-avatar { margin: 0 auto; } .month-nav { justify-content: center; } .mn-hub { order: -1; flex-basis: 100%; text-align: center; } }

@media (max-width: 1020px) {
  .team-ed-cards, .work-duo, .season-grid { grid-template-columns: 1fr; }
  .season-band { padding: 36px 26px; }
  .cal-now-band { grid-template-columns: auto 1fr; padding: 26px; }
  .cnb-go { display: none; }
}
@media (max-width: 640px) {
  .season-months { grid-template-columns: 1fr; }
  .team-ed-card { grid-template-columns: 1fr; }
  .cal-now-band { grid-template-columns: 1fr; gap: 16px; }
  .ef-mark { font-size: clamp(40px, 13vw, 64px); }
}
@media (max-width: 1120px) {
  .qstack { display: none; }
  .band-quick .bq-copy { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .eh-a1, .eh-a2, .eh-a3, .eh-a4, .eh-a5, .ah-in, .art-hero { animation: none; }
  .marq-track { animation: none; }
  .eh-spin { animation: none; }
  .will-reveal { opacity: 1; transform: none; }
}
