/* =================================================================
   ŁUKOSZ — Polskie Mięso i Wędliny
   Modernistyczny motyw: czysty, jasny (złoto / czerń — wg logo Łukosz)
   Wersja statyczna (placeholder) — 2026
   ================================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  /* ---- Paleta marki: złoto / czerń (logo Łukosz — PANTONE 1245C / 141C / 2001C) ---- */
  --gold-50:  #fdf7e7;   /* najjaśniejszy tint */
  --gold-100: #fbeccb;   /* soft */
  --gold-200: #ffee8c;   /* logo: złoto jasne (2001C) */
  --gold-300: #ffd462;   /* logo: złoto mid (141C) */
  --gold-400: #ecb43a;
  --gold-500: #df9d24;   /* logo: złoto głębokie (1245C) — główny akcent */
  --gold-600: #c2860f;   /* hover / ciemniejsze złoto */
  --gold-700: #9a6a0c;   /* złoty tekst na bieli (kontrast AA) */
  --gold-800: #6f4c08;

  --ink: #1a1611;        /* prawie-czerń (ciepła) — napisy, jak w logo */
  --ink-soft: #3d352a;
  --muted: #807663;
  --line: #ece3d1;

  --bg: #ffffff;
  --bg-soft: #faf5ea;        /* ciepła kość słoniowa */
  --paper-dark:  #1c160d;    /* ciemne tła: stopka, CTA */
  --paper-dark2: #0f0b05;

  /* Aliasy do istniejących nazw → mapowane na złoto (zgodność wsteczna) */
  --green-900: var(--paper-dark);
  --green-700: var(--gold-700);
  --green-600: var(--gold-500);
  --green-500: var(--gold-400);
  --green-300: var(--gold-300);
  --green-tint:   #fbf2db;
  --green-tint-2: #fdf8ed;

  --sand: #ffd462;          /* z logo */
  --sand-soft: #fbeccb;
  --brown: #6b4e28;         /* ciepły brąz (oznaczenia) */

  /* Typografia */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Skala / kształty */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 3px rgba(60, 40, 6, .07), 0 1px 2px rgba(60, 40, 6, .05);
  --shadow: 0 10px 30px -12px rgba(80, 54, 8, .20);
  --shadow-lg: 0 30px 60px -20px rgba(80, 54, 8, .30);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 84px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { color: var(--ink-soft); }

::selection { background: var(--gold-300); color: var(--ink); }

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--green-tint-2); }
.center { text-align: center; }
.narrow { max-width: 760px; }
.narrow.center { margin-inline: auto; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-800);
  background: var(--green-tint);
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-600); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 16px; }

/* ---------- 4. Przyciski ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); color: var(--ink); box-shadow: var(--shadow); }
.btn--primary:hover { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: #fff; color: var(--green-700); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green-300); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn--light:hover { background: #fff; color: var(--green-700); transform: translateY(-2px); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; color: var(--green-700);
}
.arrow-link svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.arrow-link:hover svg { transform: translateX(5px); }

/* ---------- 5. Header / nawigacja ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.nav__logo img { height: 68px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a:not(.btn) {
  font-family: var(--font-head); font-weight: 600; font-size: .96rem;
  color: var(--ink-soft); padding: 10px 14px; border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav__menu a:not(.btn):hover { color: var(--gold-800); background: var(--green-tint); }
.nav__menu a.is-active { color: var(--green-700); }
.nav__cta { margin-left: 8px; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; border: 0;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 16px 20px 26px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s; max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav__menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__menu a:not(.btn) { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__menu .nav__cta { margin: 12px 0 0; }
  .nav__menu .btn { justify-content: center; }
}

/* ---------- 6. Hero ---------- */
.hero { position: relative; padding-block: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 500px at 85% -5%, var(--green-tint) 0%, transparent 60%),
    radial-gradient(700px 600px at 5% 110%, var(--sand-soft) 0%, transparent 55%),
    var(--bg);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title { margin-bottom: 22px; }
.hero__title .accent { color: var(--gold-700); }
.hero__text { font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 52ch; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 32px; }
.hero__stat strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--green-700); line-height: 1; }
.hero__stat span { font-size: .92rem; color: var(--muted); }
.hero__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-lg); background: var(--green-tint);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  padding: 12px 18px; border-radius: 100px; box-shadow: var(--shadow); font-weight: 700; font-family: var(--font-head);
}
.hero__badge .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--green-600); color: var(--ink); display: grid; place-items: center; }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; aspect-ratio: 16/11; }
}

/* ---------- 7. Image placeholder (wersja robocza) ---------- */
.ph {
  position: relative; display: grid; place-items: center; isolation: isolate;
  background:
    linear-gradient(135deg, var(--green-tint) 0%, #fff 55%, var(--sand-soft) 130%);
  color: var(--green-700); overflow: hidden;
}
.ph::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(46,125,50,.10) 0 12px, transparent 13px),
    radial-gradient(circle at 70% 65%, rgba(46,125,50,.08) 0 18px, transparent 19px),
    radial-gradient(circle at 45% 85%, rgba(247,215,157,.30) 0 14px, transparent 15px);
  background-size: 120px 120px;
}
.ph__label { display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; letter-spacing: .01em; }
.ph__label svg { width: 34px; height: 34px; opacity: .6; }
.ph__label small { font-weight: 600; color: var(--muted); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- 8. Karty / siatki ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-300); }
.card__media { aspect-ratio: 4/3; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__tag { font-family: var(--font-head); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-700); }
.card__body h3 { font-size: 1.18rem; }
.card__body p { font-size: .96rem; }
.card__foot { margin-top: auto; padding-top: 8px; }

/* Karta-kategoria (link) */
.cat {
  position: relative; display: flex; align-items: flex-end; min-height: 210px;
  padding: 22px; border-radius: var(--radius); overflow: hidden;
  background: var(--ink); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .55s var(--ease); }
.cat:hover .cat__img { transform: scale(1.06); }
.cat::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(18,12,4,.05) 0%, rgba(18,12,4,.32) 48%, rgba(18,12,4,.82) 100%); }
.cat__name { position: relative; z-index: 2; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.cat__arrow { position: absolute; z-index: 2; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 2px 10px rgba(0,0,0,.28); transition: transform .3s var(--ease), background .3s; }
.cat:hover .cat__arrow { background: var(--gold-500); transform: rotate(-45deg); }
.cat:hover .cat__arrow svg { stroke: var(--ink); }
.cat__arrow svg { width: 18px; height: 18px; stroke: var(--gold-700); }

/* Feature / wartości */
.feature { display: flex; flex-direction: column; gap: 14px; }
.feature__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--green-tint); color: var(--gold-700); display: grid; place-items: center; }
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.2rem; }
.feature p { font-size: .98rem; }

/* ---------- 9. Split (tekst + media) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split ul.checks { display: grid; gap: 12px; margin-top: 24px; }
.checks li { position: relative; padding-left: 34px; color: var(--ink-soft); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c2860f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: -1; } }

/* ---------- 10. Oś czasu (historia) ---------- */
.timeline { position: relative; max-width: 880px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--green-300), var(--green-tint)); }
.tl-item { position: relative; padding: 0 0 38px 38px; }
.tl-item::before { content: ""; position: absolute; left: -7px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--green-600); border: 4px solid #fff; box-shadow: 0 0 0 2px var(--green-300); }
.tl-item__year { font-family: var(--font-head); font-weight: 800; color: var(--green-700); font-size: 1.35rem; line-height: 1; margin-bottom: 8px; }
.tl-item__title { font-weight: 700; font-family: var(--font-head); margin-bottom: 6px; }
.tl-item p { font-size: .98rem; }

/* ---------- 11. Stół z danymi / kontakt ---------- */
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.info-card .role { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-700); font-weight: 700; font-family: var(--font-head); margin-bottom: 14px; }
.info-card a { color: var(--green-700); font-weight: 600; }
.info-card a:hover { text-decoration: underline; }
.dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 22px; font-size: .96rem; }
.dl dt { color: var(--muted); }
.dl dd { color: var(--ink); font-weight: 600; }

/* ---------- 12. Certyfikaty ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; }
.cert {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease); aspect-ratio: 3/4;
}
.cert:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cert img { width: 100%; height: 100%; object-fit: contain; }

/* Zakładki (taby zakładów) */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.tab {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--ink-soft);
  padding: 12px 22px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff; transition: all .2s;
}
.tab.is-active, .tab:hover { background: var(--green-600); color: var(--ink); border-color: var(--gold-700); }
.tab-panel { display: none; } .tab-panel.is-active { display: block; animation: fade .4s var(--ease); }

/* ---------- 13. Banner CTA ---------- */
.cta-band {
  background: linear-gradient(150deg, var(--paper-dark), var(--paper-dark2));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content:""; position:absolute; inset:0; opacity:.5; background: radial-gradient(540px 320px at 88% 8%, var(--gold-500), transparent 62%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); margin: 16px auto 32px; max-width: 56ch; }

/* ---------- 14. Strona: nagłówek podstrony ---------- */
.page-hero { padding-block: clamp(54px, 7vw, 90px) clamp(28px, 4vw, 44px); background: var(--green-tint-2); border-bottom: 1px solid var(--line); }
.page-hero .crumbs { font-size: .86rem; color: var(--muted); margin-bottom: 14px; font-family: var(--font-head); font-weight: 600; }
.page-hero .crumbs a:hover { color: var(--green-700); }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.3rem); }
.page-hero p { margin-top: 16px; max-width: 60ch; }

/* ---------- 15. Sekcja DOFINANSOWANIE (wymóg prawny) ---------- */
.dotacja-box {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: clamp(22px, 4vw, 40px); box-shadow: var(--shadow-sm);
}
.dotacja-box h2 { margin-bottom: 6px; }
.dotacja-box h3 { color: var(--green-700); margin: 30px 0 16px; }
.dotacja-files { display: grid; gap: 10px; margin-top: 18px; }
.dotacja-file {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--green-tint-2); transition: border-color .2s, transform .2s, box-shadow .2s; font-weight: 600;
}
.dotacja-file:hover { border-color: var(--green-300); transform: translateX(3px); box-shadow: var(--shadow-sm); }
.dotacja-file svg { width: 26px; height: 26px; color: var(--gold-700); flex: none; }
.dotacja-file span { color: var(--green-700); }
.dotacja-banner { margin-top: 24px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.dotacja-banner img { width: 100%; height: auto; }
.dotacja-note { font-size: .9rem; color: var(--muted); margin-top: 14px; }

/* ---------- 15b. Katalog produktów (filtr + karty) ---------- */
.filterbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 4vw, 44px); }
.filter-btn {
  font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--ink-soft);
  padding: 10px 18px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff;
  transition: all .2s var(--ease); display: inline-flex; align-items: center; gap: 8px;
}
.filter-btn span { font-size: .78rem; color: var(--muted); }
.filter-btn:hover { border-color: var(--green-300); color: var(--green-700); }
.filter-btn.is-active { background: var(--green-600); color: var(--ink); border-color: var(--gold-700); }
.filter-btn.is-active span { color: rgba(0,0,0,.55); }

.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.prod {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.prod:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-300); }
.prod.is-hidden { display: none; }
.prod__media { position: relative; aspect-ratio: 4/3; background: var(--green-tint); overflow: hidden; }
.prod__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.prod:hover .prod__media img { transform: scale(1.05); }
.prod__badges { position: absolute; left: 12px; top: 12px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.badge { font-family: var(--font-head); font-weight: 700; font-size: .7rem; letter-spacing: .02em; padding: 5px 11px; border-radius: 100px; color: #fff; box-shadow: var(--shadow-sm); }
.badge--strefa { background: var(--gold-500); color: var(--ink); }
.badge--gluten { background: var(--brown); }
.prod__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod__cat { font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--gold-700); }
.prod__name { font-size: 1.12rem; line-height: 1.2; }
.prod__desc { font-size: .9rem; color: var(--muted); line-height: 1.55; }
.catalog-empty { display: none; text-align: center; padding: 60px 0; color: var(--muted); font-family: var(--font-head); font-weight: 700; }
.catalog-empty.is-shown { display: block; }

/* ---------- 15c. Karty marek (logo + link zewnętrzny) ---------- */
.card--brand { color: inherit; }
.card--brand__logo { display: grid; place-items: center; padding: 30px 28px; min-height: 172px; background: var(--gold-50); border-bottom: 1px solid var(--line); }
.card--brand__logo img { max-height: 120px; width: auto; transition: transform .4s var(--ease); }
.card--brand:hover .card--brand__logo img { transform: scale(1.04); }
.card--brand__logo--dark { background: #000; border-bottom-color: #000; }
.card--brand .arrow-link { margin-top: 14px; }

/* ---------- 16. Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.78); padding-block: 64px 28px; margin-top: 0; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand img { height: 58px; width: auto; background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); padding: 9px 14px; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,.28); margin-bottom: 18px; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: .92rem; max-width: 34ch; }
.footer__col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 10px; font-size: .95rem; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 22px; font-size: .86rem; color: rgba(255,255,255,.55); }
.footer__bottom a:hover { text-decoration: underline; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- 17. Animacje wejścia ---------- */
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 18. Drobne ---------- */
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--green-700); background: var(--green-tint); padding: 8px 16px; border-radius: 100px; }
.pill--accent { background: var(--gold-500); color: var(--ink); }
.featured-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 2px 0 16px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--green-700); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 200; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gold-700); outline-offset: 2px; border-radius: 4px; }
