  /* =========================================================
     PL:ON - strona główna
     ========================================================= */

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--fg-1);
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  button {
    font-family: inherit;
    cursor: pointer;
    background: transparent;
    border: 0;
    color: inherit;
    padding: 0;
  }
  img { display: block; }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ---------- Reusable bits ----------------------------- */
  .eyebrow {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--fg-2);
  }
  .eyebrow .dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--accent);
    margin: 0 10px 1px 0;
    vertical-align: middle;
  }

  /* Logo plate - white box with PL:ON wordmark inside */
  .plate {
    background: #fff;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
  }
  .plate img { height: 22px; width: auto; }
  .plate.lg img { height: 32px; }
  .plate.xl img { height: 44px; }

  /* Sub-brand sig - plate + mint serif italic name */
  .sig { display: inline-flex; align-items: center; }
  .sig .name {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    color: var(--accent);
    margin-left: -10px;
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .sig .plate img { height: 22px; }
  .sig .name { font-size: 28px; }
  .sig.sm .plate img { height: 18px; }
  .sig.sm .name { font-size: 22px; margin-left: -8px; }
  .sig.lg .plate img { height: 30px; }
  .sig.lg .name { font-size: 36px; margin-left: -12px; }

  /* Reversed sig - name BEFORE the plate (used for Młody PL:ON,
     to avoid duplicating the PL:ON wordmark) */
  .sig.reversed { flex-direction: row-reverse; }
  .sig.reversed .name { margin-left: 0; margin-right: -10px; }
  .sig.reversed.sm .name { margin-right: -8px; }
  .sig.reversed.lg .name { margin-right: -12px; }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border: 0;
    background: var(--accent);
    color: var(--accent-fg);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: 0;
    transition: background 180ms cubic-bezier(.2,.7,.2,1), transform 180ms cubic-bezier(.2,.7,.2,1);
  }
  .btn:hover { background: var(--accent-hover); }
  .btn:active { transform: translateY(1px); }
  .btn .arrow {
    width: 14px; height: 10px; flex: none;
  }

  .btn.ghost {
    background: transparent;
    color: var(--fg-1);
    border: 1px solid var(--fg-1);
  }
  .btn.ghost:hover { background: rgba(255,255,255,.06); }

  .btn.dark {
    background: var(--plon-black);
    color: var(--fg-1);
    border: 1px solid var(--border);
  }
  .btn.dark:hover { background: var(--plon-graphite); }

  /* Text link */
  .tlink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fg-1);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: color 180ms, border-color 180ms;
  }
  .tlink:hover { color: var(--accent); border-bottom-color: var(--accent); }
  .tlink .arrow { width: 14px; height: 10px; }

  /* =========================================================
     NAV
     ========================================================= */
  .nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    border-bottom: 1px solid var(--border-soft);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    gap: 36px;
    height: 72px;
  }
  .nav-logo { margin-right: auto; display: inline-flex; align-items: center; gap: 14px; }
  .nav-logo .plate img { height: 29px; } /* +30% header logo (22px x 1.3 = 28.6 -> 29px). Scoped to nav only. */
  .nav-logo .tag {
    font-size: 11px;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--fg-3);
    border-left: 1px solid var(--border);
    padding-left: 14px;
    height: 22px;
    display: flex;
    align-items: center;
  }
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nav-link {
    position: relative;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--fg-1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }
  .nav-link:hover { color: var(--accent); }
  .nav-link .chev {
    width: 10px; height: 10px;
    transition: transform 180ms;
  }
  .nav-link[aria-expanded="true"] .chev { transform: rotate(180deg); }
  .nav-link.active::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--accent);
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px;
  }
  .nav-cta .lang {
    font-size: 12px;
    color: var(--fg-2);
    letter-spacing: 0.06em;
  }
  .nav-cta .lang b { color: var(--fg-1); }
  .nav-cta .btn { padding: 10px 16px; font-size: 13px; }

  /* Inicjatywy dropdown ----------------------------------- */
  .nav-item { position: relative; }
  .dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: -12px;
    width: 720px;
    background: var(--plon-black);
    border: 1px solid var(--border);
    padding: 28px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 180ms cubic-bezier(.2,.7,.2,1), transform 180ms cubic-bezier(.2,.7,.2,1);
    box-shadow: 0 24px 60px rgba(0,0,0,.5);
  }
  .nav-item[data-open="true"] .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .dropdown::before {
    content: "";
    position: absolute;
    top: -8px; left: 0; right: 0;
    height: 8px;
  }
  .dd-intro h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .dd-intro p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--fg-2);
    margin: 0 0 16px;
  }
  .dd-intro .tlink { font-size: 12px; }

  .dd-list { display: flex; flex-direction: column; gap: 2px; }
  .dd-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 14px;
    border: 1px solid transparent;
    transition: border-color 180ms, background 180ms;
  }
  .dd-item:hover {
    border-color: var(--border);
    background: rgba(255,255,255,0.02);
  }
  .dd-item .meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
  .dd-item .meta .desc {
    font-size: 12px;
    color: var(--fg-3);
  }
  .dd-item .arrow {
    width: 14px; height: 10px;
    opacity: 0.4;
    transition: opacity 180ms, transform 180ms;
  }
  .dd-item:hover .arrow { opacity: 1; transform: translateX(4px); color: var(--accent); }
  .dd-item .badge {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 2px 6px;
    margin-left: 4px;
  }

  /* =========================================================
     HERO
     ========================================================= */
  .hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 0;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: end;
    min-height: 720px;
    padding-bottom: 140px;
  }
  .hero-copy { max-width: 720px; }
  .hero-eyebrow { margin-bottom: 28px; }
  .hero h1 {
    font-size: clamp(48px, 6.4vw, 96px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0 0 0;
  }
  .hero h1 .serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.015em;
  }
  .hero .lead {
    margin-top: 32px;
    max-width: 560px;
    font-size: 18px;
    line-height: 1.55;
    color: var(--fg-2);
  }
  .hero .cta-row {
    margin-top: 40px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }
  .hero .meta-row {
    margin-top: 56px;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
  }
  .hero .meta-row .item .v {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .hero .meta-row .item .v .accent { color: var(--accent); }
  .hero .meta-row .item .l {
    font-size: 12px;
    color: var(--fg-3);
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    margin-top: 8px;
  }

  /* Right-side documentary photo placeholder + festival card */
  .hero-right {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 0;
  }
  .photo {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .photo .ph-caption {
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-size: 10px;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--fg-3);
    background: rgba(0,0,0,.6);
    padding: 4px 8px;
  }
  .photo svg.placeholder {
    width: 100%; height: 100%;
  }

  .hero-festival {
    background: var(--plon-graphite);
    border: 1px solid var(--border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .hero-festival .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-festival .label {
    font-size: 11px;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--accent);
  }
  .hero-festival h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
  }
  .hero-festival .when {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: var(--fg-2);
  }
  .hero-festival .when b { color: var(--fg-1); font-weight: 600; }
  .hero-festival .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .hero-festival .price-row .price {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 18px;
  }
  .hero-festival .price-row .price small { color: var(--fg-3); font-weight: 400; font-size: 11px; letter-spacing: 0.06em; margin-left: 6px; }

  /* Wavy signature lines - bottom of hero ----------------- */
  .sig-lines {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
  }
  .sig-lines svg { width: 100%; height: 100%; display: block; }
  @keyframes drift {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100px); }
  }
  .sig-lines .drift-a { animation: drift 22s linear infinite; }
  .sig-lines .drift-b { animation: drift 32s linear infinite reverse; }

  /* =========================================================
     SECTIONS
     ========================================================= */
  section { padding: 120px 0; position: relative; }
  section.tight { padding: 80px 0; }

  .section-head {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 48px;
    align-items: end;
    margin-bottom: 56px;
  }
  .section-head .lab {
    font-size: 12px;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--fg-3);
    border-left: 2px solid var(--accent);
    padding-left: 14px;
    line-height: 1.5;
  }
  .section-head h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0;
    max-width: 720px;
  }
  .section-head h2 .serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    color: var(--accent);
  }
  .section-head .head-link { justify-self: end; }

  /* =========================================================
     IDEA
     ========================================================= */
  .idea {
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
  }
  .idea-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .idea blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: var(--fg-1);
    margin: 0;
    max-width: 620px;
  }
  .idea blockquote em {
    color: var(--accent);
    font-style: italic;
  }
  .idea .copy p {
    color: var(--fg-2);
    font-size: 17px;
    line-height: 1.6;
  }
  .idea .copy p + p { margin-top: 16px; }
  .idea .copy .key {
    color: var(--fg-1);
    font-weight: 500;
  }
  .idea .pillars {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .idea .pillars .pill {
    background: var(--plon-black);
    padding: 22px 20px;
  }
  .idea .pillars .pill .h {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .idea .pillars .pill .h .num {
    width: 24px; height: 24px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .idea .pillars .pill .h .t {
    font-weight: 700;
    font-size: 15px;
  }
  .idea .pillars .pill p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--fg-3);
  }

  /* =========================================================
     INICJATYWY (subbrandy)
     ========================================================= */
  .inicjatywy { background: var(--plon-black); }
  .ini-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }
  .ini-card {
    background: var(--plon-graphite);
    border: 1px solid var(--border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    transition: border-color 180ms, transform 220ms cubic-bezier(.2,.7,.2,1);
  }
  .ini-card:hover { border-color: var(--accent); }
  .ini-card:hover .ini-arrow { color: var(--accent); transform: translateX(6px); }
  .ini-card .ini-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }
  .ini-card .meta {
    font-size: 11px;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--fg-3);
  }
  .ini-card .meta .live {
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 2px 6px;
    margin-right: 8px;
  }
  .ini-card .meta .soon {
    color: var(--fg-2);
    border: 1px solid var(--border);
    padding: 2px 6px;
    margin-right: 8px;
  }
  .ini-card .ini-title-row { margin-top: auto; }
  .ini-card h3 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin: 0 0 10px;
  }
  .ini-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--fg-2);
    margin: 0;
  }
  .ini-card .footer-row {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--fg-3);
    letter-spacing: 0.04em;
  }
  .ini-card .ini-arrow {
    width: 18px; height: 12px;
    transition: transform 180ms, color 180ms;
  }
  .ini-card.span-6 { grid-column: span 6; }
  .ini-card.span-4 { grid-column: span 4; }
  .ini-card.span-3 { grid-column: span 3; }
  .ini-card.featured {
    background: linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 60%, #0a0a0a 100%);
    border: 1px solid var(--accent);
    min-height: 380px;
  }
  .ini-card.featured::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(800px 320px at 80% 110%, color-mix(in srgb, var(--sb-color) 12%, transparent), transparent 60%);
  }

  /* - Subbrandy (Kartusz): kolor + font per data-sb. Tokeny --c-... / --sb-color w tokens.css - */
  /* Lockup: plytka jest referencja wysokosci; kolorowy blok rozciaga sie do tej
     samej wysokosci (stretch) i centruje tresc - niezaleznie od metryk fontu
     subbrandu (Anton/Manrope). Plytka i blok flush gora/dol, identyczna wysokosc. */
  .sig.kartusz { align-items: stretch; }
  .sig.kartusz .plate { align-items: center; }
  .sig.kartusz .name {
    display: inline-flex; align-items: center;
    background: var(--sb-color); color: var(--sb-on);
    margin-left: 0; padding: 0 12px; line-height: 1;
    font-style: normal;
  }
  .sig.kartusz[data-sb="festiwal"] .name {
    font-family: var(--font-serif); font-style: italic; font-weight: 700;
  }
  .sig.kartusz[data-sb="camp"] .name {
    font-family: var(--font-camp); font-weight: 400; text-transform: uppercase; letter-spacing: .02em;
  }
  .sig.kartusz[data-sb="mlody"] .name {
    font-family: var(--font-mlody); font-weight: 800; letter-spacing: -.01em;
  }
  .sig.kartusz[data-sb="air"] .name {
    font-family: var(--font-air); font-weight: 800; text-transform: uppercase; letter-spacing: .18em;
  }
  .sig.kartusz.reversed .name { margin: 0; }

  .ini-card[data-sb] { --accent: var(--sb-color); }
  .ini-card[data-sb]::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--sb-color); z-index: 1; pointer-events: none;
  }
  .ini-card[data-sb]:hover { border-color: var(--sb-color); }
  .ini-card[data-sb] .ini-arrow,
  .ini-card[data-sb] .arrow,
  .ini-card[data-sb] .tlink:hover { color: var(--sb-color); }
  .ini-card[data-sb] .meta .live { color: var(--sb-color); border-color: var(--sb-color); }
  /* Glow per subbrand na kartach nie-featured (Camp/Mlody/AIR) - subtelniejszy niz Festiwal */
  .ini-card[data-sb]:not(.featured)::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(560px 220px at 85% 115%, color-mix(in srgb, var(--sb-color) 7%, transparent), transparent 60%);
  }
  .sb-role {
    font-size: 10px; letter-spacing: var(--tracking-caps); text-transform: uppercase;
    color: var(--sb-color); border: 1px solid var(--sb-color); padding: 2px 7px;
    display: inline-block; margin-right: 8px;
  }

  /* - Tagi/etykiety/sygnatury-tekstowe subbrandow: remap --accent na element.
     Baza (.tag, .cat, .sig .name) uzywa var(--accent) → lokalny --accent przejmuje
     kolor subbrandu bez walki ze specyficznoscia (wzorem .ini-card[data-sb]). - */
  .tag[data-sb],
  .cat[data-sb] { --accent: var(--sb-color); }
  /* Sygnatura tekstowa (NIE kartusz) w kolorze subbrandu - np. nav dropdown */
  .sig[data-sb]:not(.kartusz) { --accent: var(--sb-color); }

  /* Photo strip on a card */
  .ini-photo {
    width: 100%;
    aspect-ratio: 5 / 2; /* kafle T06 = 1100x440, rowna wysokosc paska w 4 kartach */
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  /* =========================================================
     KALENDARIUM
     ========================================================= */
  .kal-list {
    border-top: 1px solid var(--border);
  }
  .kal-row {
    display: grid;
    grid-template-columns: 110px 1fr auto auto;
    gap: 32px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    transition: background 180ms;
    cursor: pointer;
  }
  .kal-row:hover { background: rgba(255,255,255,0.02); }
  .kal-row:hover .kal-arrow { color: var(--accent); transform: translateX(6px); }
  .kal-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
  }
  .kal-date .d {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 40px;
    letter-spacing: -0.02em;
  }
  .kal-date .m {
    font-size: 12px;
    color: var(--fg-3);
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    margin-top: 6px;
  }
  .kal-info .kal-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .kal-info .kal-meta {
    margin-top: 8px;
    font-size: 13px;
    color: var(--fg-3);
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }
  .kal-info .kal-meta .tag {
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 1px 8px;
    font-size: 10px;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
  }
  .kal-status {
    font-size: 12px;
    color: var(--fg-2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .kal-status.open { color: var(--accent); }
  .kal-arrow {
    width: 22px; height: 14px;
    transition: transform 180ms, color 180ms;
    color: var(--fg-3);
  }

  /* Featured festival row */
  .kal-festival {
    margin-top: 56px;
    background: var(--plon-graphite);
    border: 1px solid var(--border);
    padding: 40px 44px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .kal-festival .big-date {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .kal-festival .big-date .d {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 96px;
    letter-spacing: -0.04em;
    line-height: 0.9;
  }
  .kal-festival .big-date .d .sm {
    font-size: 32px;
    color: var(--accent);
    margin-left: 4px;
    vertical-align: top;
  }
  .kal-festival .big-date .y {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 0.02em;
    margin-top: 14px;
  }
  .kal-festival h3 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0 0 12px;
  }
  .kal-festival .where { display: flex; gap: 24px; color: var(--fg-2); font-size: 14px; align-items: center; flex-wrap: wrap; }
  .kal-festival .where b { color: var(--fg-1); }
  .kal-festival .where .dot { width: 4px; height: 4px; background: var(--fg-3); border-radius: 50%; display: inline-block; }
  .kal-festival .blurb {
    margin-top: 16px;
    color: var(--fg-2);
    font-size: 15px;
    line-height: 1.55;
    max-width: 480px;
  }
  .kal-festival .actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; min-width: 180px; }
  .kal-festival .actions .pill {
    display: flex;
    justify-content: space-between;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
  }
  .kal-festival .actions .pill b { color: var(--accent); }

  /* =========================================================
     WARTOŚCI
     ========================================================= */
  .wartosci {
    background: linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
  }
  .wartosci-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .wartosc {
    background: var(--plon-black);
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 280px;
    position: relative;
    transition: background 180ms;
  }
  .wartosc:hover { background: var(--plon-graphite); }
  .wartosc .num {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.04em;
  }
  /* #18 glif - akcent przy numerze, jezyk KV, kolor mint subtelny */
  .wartosc .wartosc-glyph {
    position: absolute; top: 28px; right: 24px;
    width: 40px; height: 40px;
    color: var(--plon-mint); opacity: .28;
    pointer-events: none;
    transition: opacity 180ms, transform 320ms cubic-bezier(.2,.7,.2,1);
  }
  .wartosc .wartosc-glyph svg { width: 100%; height: 100%; display: block; }
  .wartosc:hover .wartosc-glyph { opacity: .55; transform: rotate(30deg); }
  .wartosc h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.1;
  }
  .wartosc p {
    color: var(--fg-2);
    font-size: 14px;
    line-height: 1.55;
    margin-top: auto;
  }

  /* =========================================================
     NEWSLETTER + Aktualności mini
     ========================================================= */
  .news {
    background: var(--plon-black);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
  }
  .news-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 96px;
    align-items: start;
  }
  .nl-card {
    border: 1px solid var(--border);
    padding: 40px 36px;
    background: var(--plon-graphite);
    position: relative;
    overflow: hidden;
  }
  .nl-card h3 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--fg-1);
    margin: 0 0 18px;
  }
  .nl-card h3 em { color: var(--accent); font-style: italic; }
  .nl-card p { color: var(--fg-2); font-size: 14px; line-height: 1.55; max-width: 460px; margin: 0; }
  .nl-card ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .nl-card ul li {
    color: var(--fg-2);
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .nl-card ul li::before {
    content: "→";
    color: var(--accent);
    flex: none;
  }
  .nl-form {
    margin-top: 28px;
    display: flex;
    gap: 0;
    align-items: stretch;
    border: 1px solid var(--border);
  }
  .nl-form input {
    flex: 1;
    background: transparent;
    border: 0;
    color: var(--fg-1);
    padding: 16px 18px;
    font-family: var(--font-sans);
    font-size: 14px;
    outline: 0;
  }
  .nl-form input::placeholder { color: var(--fg-3); }
  .nl-form button {
    background: var(--accent);
    color: var(--accent-fg);
    border: 0;
    padding: 0 24px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .nl-form button:hover { background: var(--accent-hover); }
  .nl-card .micro {
    margin-top: 10px;
    color: var(--fg-3);
    font-size: 11px;
  }

  /* Aktualności (3 items) */
  .akt-list { display: flex; flex-direction: column; gap: 20px; }
  .akt {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-top: 1px solid var(--border-soft);
    cursor: pointer;
    transition: background 180ms;
  }
  .akt:hover .akt-title { color: var(--accent); }
  .akt-thumb {
    width: 96px;
    height: 72px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .akt-thumb svg { width: 100%; height: 100%; }
  .akt-meta {
    font-size: 11px;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--fg-3);
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
  }
  .akt-meta .cat { color: var(--accent); }
  .akt-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--fg-1);
    transition: color 180ms;
  }
  .akt-foot {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
  }

  /* =========================================================
     BIG CTA / Festiwal
     ========================================================= */
  .cta-festival {
    background: var(--plon-black);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-soft);
  }
  .cta-festival .inner {
    padding: 140px 0 180px;
    position: relative;
    z-index: 1;
  }
  .cta-festival h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(56px, 8vw, 132px);
    line-height: 0.96;
    letter-spacing: -0.025em;
    margin: 0;
    max-width: 1100px;
  }
  .cta-festival h2 .accent { color: var(--accent); }
  .cta-festival .sub {
    margin-top: 32px;
    color: var(--fg-2);
    font-size: 18px;
    max-width: 620px;
    line-height: 1.55;
  }
  .cta-festival .actions {
    margin-top: 40px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }
  .cta-festival .lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
  }
  /* #19 CTA z falami - drift w przeciwfazie (transform only) */
  .cta-festival .lines .wave-drift { animation: ctaWaveDrift 26s linear infinite alternate; }
  .cta-festival .lines .wave-drift.slow { animation-duration: 38s; animation-direction: alternate-reverse; }
  @keyframes ctaWaveDrift { from { transform: translateX(0); } to { transform: translateX(-120px); } }
  @media (prefers-reduced-motion: reduce) {
    .cta-festival .lines .wave-drift { animation: none !important; }
  }

  /* =========================================================
     PARTNERZY
     ========================================================= */
  .partners { padding: 80px 0; border-top: 1px solid var(--border-soft); }
  .partners-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .partners-head .lab { font-size: 12px; letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--fg-3); }
  .partners-head h3 { font-size: 22px; font-weight: 700; }
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .pcell {
    background: var(--plon-black);
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fg-3);
    font-size: 13px;
    letter-spacing: 0.04em;
    font-weight: 500;
  }

  /* =========================================================
     FOOTER
     ========================================================= */
  footer {
    background: var(--plon-black);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  /* #05 Pattern - bardzo subtelna tekstura heksagonu (mask glyph-hex), opacity ~.04 */
  footer::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: var(--plon-mint); opacity: .04;
    -webkit-mask-image: url('glyphs/glyph-hex.svg');
    -webkit-mask-size: 84px 84px; -webkit-mask-repeat: repeat;
    mask-image: url('glyphs/glyph-hex.svg');
    mask-size: 84px 84px; mask-repeat: repeat;
  }
  footer::after {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, var(--plon-black) 78%);
  }
  footer > .container { position: relative; z-index: 1; }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  .foot-col h5 {
    font-size: 12px;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--fg-3);
    margin: 0 0 16px;
    font-weight: 600;
  }
  .foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .foot-col a { color: var(--fg-2); font-size: 14px; }
  .foot-col a:hover { color: var(--accent); }
  .foot-haslo {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--fg-1);
    margin: 18px 0 24px;
    max-width: 320px;
  }
  .foot-haslo em { color: var(--accent); font-style: italic; }
  .foot-addr {
    color: var(--fg-3);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 24px;
  }
  .foot-bottom {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--fg-3);
    font-size: 12px;
  }
  .foot-bottom .legal { display: flex; gap: 20px; }
  .foot-bottom a:hover { color: var(--accent); }

  /* SOC icons row */
  .social { display: flex; gap: 8px; margin-top: 6px; }
  .social a {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 180ms, color 180ms;
  }
  .social a:hover { border-color: var(--accent); color: var(--accent); }
  .social svg { width: 16px; height: 16px; }

  /* =========================================================
     Documentary photo placeholders (SVG)
     - Black/white linework - no AI slop
     ========================================================= */
  .ph-fig { width: 100%; height: 100%; display: block; }
  .ph-fig rect.bg { fill: #141414; }
  .ph-fig path, .ph-fig circle, .ph-fig rect.acc { fill: none; stroke: rgba(255,255,255,0.12); stroke-width: 1; }
  .ph-fig .mint { stroke: var(--accent); opacity: 0.65; }
  .ph-fig text {
    font-family: var(--font-sans);
    font-size: 10px;
    fill: var(--fg-3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* =========================================================
     Tiny utilities
     ========================================================= */
  .row { display: flex; align-items: center; gap: 8px; }
  .grow { flex: 1; }

  /* Skip link (a11y) */
  .skip-link {
    position: absolute;
    left: 16px;
    top: -56px;
    z-index: 100;
    background: var(--accent);
    color: var(--accent-fg);
    padding: 12px 18px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    transition: top 160ms var(--ease-out-quart);
  }
  .skip-link:focus { top: 16px; }

  /* Hero key-visual backdrop (brand twist-hexagon motif) */
  .hero-kv {
    position: absolute;
    top: -120px;
    right: -200px;
    width: 880px;
    height: 880px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.22;
    --kv-color: var(--plon-mint);
    /* C+A+B: parallax na wrapperze (sterowane JS przez transform inline) */
    will-change: transform;
  }
  .hero-kv svg { width: 100%; height: 100%; display: block; }
  .hero .container { position: relative; z-index: 1; }
  .hero .sig-lines { z-index: 1; }
  @media (max-width: 1080px) {
    .hero-kv { top: -80px; right: -260px; width: 620px; height: 620px; opacity: 0.14; }
  }

  /* =========================================================
     LIGHT THEME (scoped) - dark kanoniczny, light = „negatyw"
     Reguły remapują role-tokeny + celowane nadpisania surowych
     wartości klas prototypu. Można mieszać bloki dark/light.
     ========================================================= */
  [data-theme="light"] {
    --bg: #FFFFFF;
    --bg-elevated: #FAFAFA;
    --bg-inverse: #0A0A0A;
    --fg-1: #0A0A0A;
    --fg-2: #3F3F3F;
    --fg-3: #6B6B6B;
    --fg-inverse: #FFFFFF;
    --accent: #3CE8B0;
    --accent-hover: #1FB084;
    --accent-fg: #0A0A0A;
    --accent-ink: #0F7355;   /* mint-ink - akcent jako TEKST (AA na bieli) */
    --border: #E4E4E4;
    --border-soft: rgba(0,0,0,0.08);
    --focus-ring: #0F7355;
    background: var(--bg);
    color: var(--fg-1);
  }
  /* surowe tła klas prototypu → biel / elevated */
  [data-theme="light"].wartosci { background: #fff; }
  [data-theme="light"] .wartosc,
  [data-theme="light"] .pcell,
  [data-theme="light"] .ticket { background: var(--bg); }
  [data-theme="light"] .wartosc:hover { background: var(--bg-elevated); }
  [data-theme="light"] .nl-card,
  [data-theme="light"] .ticket.featured { background: var(--bg-elevated); }
  [data-theme="light"] .plate { border: 1px solid var(--border); }
  /* akcent-jako-tekst → ink (WCAG AA na bieli) */
  [data-theme="light"] .wartosc .num,
  [data-theme="light"] .section-head h2 .serif,
  [data-theme="light"] .nl-card h3 em,
  [data-theme="light"] .ticket .price small,
  [data-theme="light"] .status,
  [data-theme="light"] .badge,
  [data-theme="light"] .partners-head .lab,
  [data-theme="light"] .tlink:hover { color: var(--accent-ink); }
  [data-theme="light"] .badge { border-color: var(--accent-ink); }
  [data-theme="light"] .btn.ghost { color: var(--fg-1); border-color: var(--fg-1); }
  [data-theme="light"] .btn.ghost:hover { background: rgba(0,0,0,.05); }
  [data-theme="light"] .tlink { color: var(--fg-1); }

  /* =========================================================
     TICKETS - „Bilety i sprzedaż" (baza komponentów)
     ========================================================= */
  .bilety { background: var(--bg); border-top: 1px solid var(--border-soft); }
  .tickets { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
  .ticket {
    background: var(--bg); border: 1px solid var(--border);
    padding: 28px; display: flex; flex-direction: column; gap: 14px; min-height: 380px;
    transition: border-color var(--dur-fast) var(--ease-out-quart), transform var(--dur-fast) var(--ease-out-quart);
  }
  .ticket:hover { border-color: var(--accent); transform: translateY(-4px); }
  .ticket.featured { background: var(--bg-elevated); border-color: var(--accent); }
  .ticket .tag {
    align-self: flex-start; font-size: 10px; letter-spacing: var(--tracking-caps);
    text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); padding: 3px 8px;
  }
  .ticket .name { font-size: 22px; font-weight: 700; }
  .ticket .price { font-size: 44px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
  .ticket .price small { font-size: 13px; color: var(--fg-3); font-weight: 400; letter-spacing: .04em; }
  .ticket ul { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--fg-2); }
  .ticket li { display: flex; gap: 8px; }
  .ticket li::before { content: "✓"; color: var(--accent); flex: none; font-weight: 700; }
  .ticket .btn { margin-top: auto; }
  .btn.block { justify-content: center; width: 100%; }
  .bilety .bilety-note {
    margin-top: 28px; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px; padding-top: 24px; border-top: 1px solid var(--border-soft);
    font-size: 13px; color: var(--fg-3);
  }

  /* =========================================================
     STATUS · pulse (live)
     ========================================================= */
  .status { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
  .status .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); position: relative; }
  .status .pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--accent); animation: ping 1.8s cubic-bezier(0,0,.2,1) infinite; }
  @keyframes ping { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

  /* =========================================================
     REVEAL-ON-SCROLL + counters
     ========================================================= */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--dur-slow) var(--ease-out-quart), transform var(--dur-slow) var(--ease-out-quart); }
  .reveal.is-in { opacity: 1; transform: none; }
  .reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity var(--dur-slow) var(--ease-out-quart), transform var(--dur-slow) var(--ease-out-quart); }
  .reveal-stagger.is-in > * { opacity: 1; transform: none; }
  .reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
  .reveal-stagger.is-in > *:nth-child(2) { transition-delay: 80ms; }
  .reveal-stagger.is-in > *:nth-child(3) { transition-delay: 160ms; }
  .reveal-stagger.is-in > *:nth-child(4) { transition-delay: 240ms; }

  /* =========================================================
     KEY-VISUAL animations (CSS-only) + @property color cycle
     ========================================================= */
  @property --kv-color { syntax: "<color>"; inherits: true; initial-value: #3CE8B0; }
  .kv-spin-wrap .kv__art { transform-box: fill-box; transform-origin: 50% 50%; animation: kv-spin 60s linear infinite; }
  @keyframes kv-spin { to { transform: rotate(360deg); } }
  .kv-breathe .kv__art { transform-box: fill-box; transform-origin: 50% 50%; animation: kvBreathe 7s ease-in-out infinite; }
  @keyframes kvBreathe { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.05); opacity: 1; } }

  /* --- KV jako akcenty sekcyjne - inline stroke-SVG + recolor (C) + ruch (B) --- */
  /* C: recolor inline <svg> przez --kv-color (działa tylko na inline SVG, nie <img>) */
  .kv-accent svg .kv__art { stroke: var(--kv-color, var(--plon-mint)); }
  /* B: parallax na OUTER (.kv-accent, sterowane JS przez --kv-par),
     float/spin przeniesione na INNER (svg) → brak konfliktu transform. */
  .kv-accent {
    position: absolute; pointer-events: none; z-index: 0;
    --kv-par: 0px;
    transform: translate3d(0, var(--kv-par), 0);
    will-change: transform;
    transition: transform 120ms linear;
  }
  .kv-accent img, .kv-accent svg { display: block; width: 100%; height: 100%; }
  .kv-accent.float img, .kv-accent.float svg { animation: kvFloat 9s ease-in-out infinite; }
  @keyframes kvFloat {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50%     { transform: translateY(-14px) rotate(4deg); }
  }
  .kv-accent.spin img, .kv-accent.spin svg { animation: kv-spin 90s linear infinite; }
  /* B: draw-on/scale-in przy wejściu sekcji (spójne z hero moment) */
  .kv-accent.kv-enter { opacity: 0; }
  .kv-accent.kv-enter img, .kv-accent.kv-enter svg { transform: scale(.82); }
  .kv-accent.kv-enter.is-in { opacity: var(--kv-target-op, .4); transition: opacity 900ms var(--ease-out-quart); }
  .kv-accent.kv-enter.is-in img, .kv-accent.kv-enter.is-in svg { transform: scale(1); transition: transform 1100ms var(--ease-out-expo); }
  .inicjatywy, .idea, .cta-festival { overflow: hidden; }
  .inicjatywy .container, .idea .container { position: relative; z-index: 1; }

  /* =========================================================
     MOBILE MENU - hamburger + pełnoekranowy overlay
     ========================================================= */
  .nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; margin-left: 2px; }
  .nav-toggle .bars { position: relative; display: block; width: 22px; height: 2px; background: var(--fg-1); transition: background var(--dur-instant); }
  .nav-toggle .bars::before, .nav-toggle .bars::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--fg-1); transition: transform var(--dur-fast) var(--ease-out-quart); }
  .nav-toggle .bars::before { top: -7px; }
  .nav-toggle .bars::after { top: 7px; }
  body.menu-open .nav-toggle .bars { background: transparent; }
  body.menu-open .nav-toggle .bars::before { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-toggle .bars::after { transform: translateY(-7px) rotate(-45deg); }

  .mobile-overlay {
    position: fixed; inset: 0; z-index: 55; background: var(--plon-black);
    display: flex; flex-direction: column; padding: 92px 32px 40px;
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform var(--dur-base) var(--ease-out-expo), opacity var(--dur-base);
    overflow-y: auto;
  }
  body.menu-open .mobile-overlay { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-overlay .mob-link { font-size: 26px; font-weight: 700; letter-spacing: -.02em; padding: 14px 0; border-bottom: 1px solid var(--border-soft); display: flex; justify-content: space-between; align-items: center; }
  .mobile-overlay .mob-link:hover { color: var(--accent); }
  .mobile-overlay .mob-sub { display: grid; gap: 2px; padding: 6px 0 14px; }
  .mobile-overlay .mob-sub a { font-size: 15px; color: var(--fg-2); padding: 9px 0 9px 16px; border-left: 1px solid var(--border); }
  .mobile-overlay .mob-sub a:hover { color: var(--accent); border-color: var(--accent); }
  .mobile-overlay .mob-foot { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 16px; }
  .mobile-overlay .mob-foot .btn { justify-content: center; }
  .mobile-overlay .mob-lang { font-size: 13px; color: var(--fg-2); letter-spacing: .06em; }
  .mobile-overlay .mob-lang b { color: var(--fg-1); }

  /* =========================================================
     prefers-reduced-motion - natychmiastowe stany
     ========================================================= */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
    .sig-lines .drift-a, .sig-lines .drift-b, .kv-spin-wrap .kv__art, .kv-breathe .kv__art,
    .kv-accent.float, .kv-accent.spin,
    .kv-accent.float img, .kv-accent.float svg, .kv-accent.spin img, .kv-accent.spin svg { animation: none !important; }
    /* C+A+B: brak parallax / draw-on przy reduced-motion - KV od razu w stanie docelowym */
    .kv-accent { transform: none !important; }
    .kv-accent.kv-enter { opacity: var(--kv-target-op, .4) !important; }
    .kv-accent.kv-enter img, .kv-accent.kv-enter svg { transform: none !important; }
  }

  @media (max-width: 1080px) {
    .hero-inner { grid-template-columns: 1fr; padding-bottom: 80px; }
    .section-head { grid-template-columns: 1fr; }
    .ini-card.span-6, .ini-card.span-4, .ini-card.span-3 { grid-column: span 12; }
    .news-grid { grid-template-columns: 1fr; gap: 48px; }
    .idea-grid { grid-template-columns: 1fr; gap: 40px; }
    .kal-festival { grid-template-columns: 1fr; }
    .wartosci-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .tickets { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .nav-menu { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-cta .lang { display: none; }
    .nav-cta .btn { padding: 9px 14px; }
  }
  @media (max-width: 560px) {
    .wartosci-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .foot-grid { grid-template-columns: 1fr; gap: 36px; }
    .foot-col a, .foot-addr { word-break: break-word; }
    .kal-row { grid-template-columns: 52px 1fr auto; gap: 14px; }
    .kal-row .kal-arrow { display: none; }
    .kal-date .d { font-size: 30px; }
    .kal-info .kal-title { font-size: 18px; }
    .kal-festival { padding: 28px 24px; }
    .kal-festival .big-date .d { font-size: 64px; }
    .hero .meta-row { gap: 28px; }
    /* C+A+B: stonowana obecność KV na mobile zamiast display:none (parallax pozostaje, subtelnie) */
    .kv-accent { opacity: .16 !important; transform: translate3d(0, var(--kv-par,0px), 0) scale(.6); transform-origin: top right; }
    .kv-accent.kv-enter.is-in { opacity: .16 !important; }
    .hero-kv { opacity: 0.10; }
  }
  @media (max-width: 420px) {
    .nav-cta .btn { display: none; }
  }

  /* ============================================================
     GRAPHICS (T11) - pelne formy POC wg zatwierdzonej mapy.
     TLO pod boksem (.kv-bg) + Poswiata per-karta (.ini-glow + .ini-glow-sharp,
     symbole sym-kv-fill + sym-kv-card) + Maska (.idea-mask) + Pattern (footer).
     Recolor wylacznie przez --kv-color = --sb-color.
     Wzorzec POC: prototype/poc-kv-boxes/ (kvb-glow / kvb-mask / kvb-pattern).
     ============================================================ */
  .kv-bg {
    position: absolute; z-index: 0; pointer-events: none;
    opacity: var(--kv-bg-op, .12);
    mix-blend-mode: screen;
  }
  .kv-bg img, .kv-bg svg { display:block; width:100%; height:100%; }
  /* sekcje z tlem: tresc nad motywem */
  .inicjatywy, .wartosci, .bilety, .kalendarium { position: relative; overflow: hidden; }
  .inicjatywy .container, .wartosci .container, .bilety .container, .kalendarium .container { position: relative; z-index: 1; }
  /* #06 Poswiata per-karta - rozmyty PELNY KV (aurora) przy prawej krawedzi + maly ostry KV.
     Recolor --kv-color = --sb-color. Element boczny, nie wypelnienie. */
  .ini-card { position: relative; overflow: hidden; }
  .ini-card[data-sb] { --kv-color: var(--sb-color, var(--plon-mint)); }
  .ini-glow {
    position: absolute; z-index: 0; pointer-events: none;
    top: 50%; right: -8%; transform: translateY(-50%) scale(.9);
    width: 52%; aspect-ratio: 1; opacity: .34;
    filter: blur(64px) saturate(1.25);
  }
  .ini-glow-sharp {
    position: absolute; z-index: 0; pointer-events: none;
    top: 50%; right: 2%; transform: translateY(-50%);
    width: 30%; aspect-ratio: 1; opacity: .45;
  }
  .ini-glow svg, .ini-glow-sharp svg { width: 100%; height: 100%; display: block; }
  /* tresc karty nad grafika; warstwy poswiaty wykluczone (zostaja z-index:0) */
  .ini-card > *:not(.ini-glow):not(.ini-glow-sharp) { position: relative; z-index: 1; }

  /* #06 Poswiata - boks Festiwalu (kolor na sztywno festiwal przez data-sb) */
  .kal-festival[data-sb] { --kv-color: var(--sb-color, var(--plon-mint)); }
  .kal-festival .ini-glow { width: 40%; opacity: .26; right: 2%; }
  .kal-festival .ini-glow-sharp { width: 20%; opacity: .3; right: 4%; }
  .kal-festival > *:not(.ini-glow):not(.ini-glow-sharp) { position: relative; z-index: 1; }

  /* #04 Maska - Idea: pelny KV ~68% szer. przy prawej, gradient-mask ku tekstowi, mint */
  .idea-mask {
    position: absolute; z-index: 0; pointer-events: none;
    top: 0; right: 0; bottom: 0; width: 68%; opacity: .16;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
  }
  .idea-mask img { height: 100%; width: auto; margin-left: auto; display: block; }

  /* animacja tla - natywne breathe/spin DS, pod reduced-motion */
  .kv-bg.breathe svg, .kv-bg.breathe img { transform-box: fill-box; transform-origin:50% 50%; animation: kvBreathe 9s ease-in-out infinite; }
  .kv-bg.spin svg, .kv-bg.spin img { animation: kv-spin 120s linear infinite; }
  @media (prefers-reduced-motion: reduce) {
    .kv-bg.breathe svg, .kv-bg.breathe img, .kv-bg.spin svg, .kv-bg.spin img { animation: none !important; }
  }
  @media (max-width: 860px) {
    .kv-bg { opacity: calc(var(--kv-bg-op, .12) * .6) !important; }
    .ini-glow { opacity: .20; }
    .ini-glow-sharp { opacity: .28; }
    .kal-festival .ini-glow { opacity: .16; }
    .idea-mask { opacity: .10; }
  }

  /* pre-launch: niedostepny przycisk „Bilety wkrotce" */
  .btn.is-soon, .is-soon { cursor: default; opacity: .6; pointer-events: none; }

  /* ---------- Consent banner (RODO / Consent Mode v2) -------- */
  /* Pasek pełnej szerokości u dołu, slide-up przez klasy .is-visible / .hidden. */
  .consent-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: var(--bg-elevated);
    color: var(--fg-1);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-2);
    font-family: var(--font-sans);
    transform: translateY(100%);
    opacity: 0;
    transition: transform .3s ease-out, opacity .3s ease-out;
    will-change: transform, opacity;
  }
  .consent-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
  }
  /* Gdy baner jest .hidden - nie animujemy, tylko chowamy. */
  .consent-banner.hidden { display: none; }

  .consent-banner .cb-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .consent-banner .cb-main { flex: 1 1 auto; min-width: 0; }
  .consent-banner .cb-title {
    font-weight: 700;
    font-size: var(--fs-h3);
    margin: 0 0 6px;
    letter-spacing: var(--tracking-tight);
    color: var(--accent);
  }
  .consent-banner .cb-text {
    color: var(--fg-2);
    font-size: var(--fs-body);
    line-height: var(--lh-relaxed);
    margin: 0;
    max-width: 760px;
  }
  .consent-banner .cb-text a { color: var(--accent); text-decoration: underline; }

  .consent-banner .cb-cats {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
  }
  .consent-banner .cb-cats.hidden { display: none; }
  .consent-banner .cb-cat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
  }
  .consent-banner .cb-cat-body { flex: 1 1 auto; min-width: 0; }
  .consent-banner .cb-cat-name {
    display: block;
    font-weight: 600;
    font-size: var(--fs-body);
    color: var(--fg-1);
  }
  .consent-banner .cb-cat-tag {
    font-weight: 400;
    font-size: var(--fs-caption);
    color: var(--fg-3);
    margin-left: 4px;
  }
  .consent-banner .cb-cat-desc {
    display: block;
    font-size: var(--fs-caption);
    color: var(--fg-3);
    line-height: var(--lh-normal);
    margin-top: 2px;
  }

  /* Custom checkbox kategorii - akcent DS (--plon-mint) */
  .consent-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px; height: 18px;
    margin: 2px 0 0;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    flex: 0 0 auto;
    position: relative;
    transition: background var(--dur-fast) var(--ease-out-quart), border-color var(--dur-fast) var(--ease-out-quart);
  }
  .consent-checkbox:checked {
    background: var(--plon-mint);
    border-color: var(--plon-mint);
  }
  .consent-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px; top: 1px;
    width: 5px; height: 10px;
    border: solid var(--accent-fg);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .consent-checkbox:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  .consent-checkbox:disabled { cursor: not-allowed; opacity: .6; }

  .consent-banner .cb-toggle {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--font-sans);
    font-size: var(--fs-caption);
    font-weight: 600;
    color: var(--accent);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
  }
  .consent-banner .cb-toggle:hover { color: var(--accent-hover); }

  .consent-banner .cb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .consent-banner .cb-btn {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--fs-body);
    padding: 10px 18px;
    border-radius: var(--radius-2);
    cursor: pointer;
    border: 1px solid var(--border);
    color: var(--fg-1);
    background: transparent;
    transition: background var(--dur-fast) var(--ease-out-quart), color var(--dur-fast) var(--ease-out-quart);
  }
  .consent-banner .cb-btn:hover { border-color: var(--accent); color: var(--accent); }
  .consent-banner .cb-btn.cb-primary {
    background: var(--plon-mint);
    color: var(--accent-fg);
    border-color: var(--plon-mint);
  }
  .consent-banner .cb-btn.cb-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--accent-fg);
  }
  @media (min-width: 880px) {
    .consent-banner .cb-inner { flex-direction: row; align-items: flex-start; }
    .consent-banner .cb-actions { flex-shrink: 0; padding-top: 2px; }
  }
  @media (max-width: 520px) {
    .consent-banner .cb-inner { padding: 16px; }
    .consent-banner .cb-actions .cb-btn { flex: 1 1 auto; text-align: center; }
  }
  /* reduced-motion - bez slide/transition, natychmiastowy stan */
  @media (prefers-reduced-motion: reduce) {
    .consent-banner { transition: none !important; transform: none !important; }
  }

