/* ===========================================================================
   POLMET — arkusz stylów strony
   Źródło: projekt z Claude Design (design/…/Polmet Startseite.dc.html i dwa
   pozostałe pliki .dc.html) na systemie „Modernist” z podmienionym akcentem.
   Wartości (clamp, odstępy, kolory) przeniesione 1:1 ze stylów inline
   projektu — zmieniaj tu, nie w HTML.
   =========================================================================== */

/* --- Font: Archivo 400/600/800 ----------------------------------------------
   Na wersji testowej font ładuje się z Google Fonts (link w <head>).
   Przed startem produkcyjnym w Niemczech przenieść pliki woff2 do
   assets/fonts/ i włączyć poniższe @font-face (RODO — wyrok LG München). */
/*
@font-face{font-family:"Archivo";font-style:normal;font-weight:400;font-display:swap;src:url("../fonts/archivo-400-latin.woff2") format("woff2")}
@font-face{font-family:"Archivo";font-style:normal;font-weight:600;font-display:swap;src:url("../fonts/archivo-600-latin.woff2") format("woff2")}
@font-face{font-family:"Archivo";font-style:normal;font-weight:800;font-display:swap;src:url("../fonts/archivo-800-latin.woff2") format("woff2")}
*/

/* --- Tokeny ---------------------------------------------------------------- */
:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201e1d;
  --color-divider: color-mix(in srgb, #201e1d 40%, transparent);

  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-neutral-800: #444141;
  --color-neutral-900: #2d2b2b;

  /* akcent Polmet — brąz kowalski zamiast czerwieni systemu */
  --color-accent: #8a6f3c;
  --color-accent-100: #f5f1e8;
  --color-accent-200: #e8dfc9;
  --color-accent-300: #d3c49f;
  --color-accent-400: #b89f6c;
  --color-accent-500: #8a6f3c;
  --color-accent-600: #755d31;
  --color-accent-700: #5d4a27;
  --color-accent-800: #43351b;
  --color-accent-900: #2b2211;

  --font-heading: "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;

  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-6: 24px; --space-8: 32px;
  --radius: 0px;

  --shadow-sm: 0 1px 2px color-mix(in srgb, #2d2b2b 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2d2b2b 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2d2b2b 22%, transparent);

  --gutter: clamp(16px, 4vw, 48px);
  --sec-y: clamp(48px, 6vw, 92px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* --- Baza ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--color-bg); color: var(--color-text);
  font-family: var(--font-body); font-size: 15px; line-height: 1.55; font-weight: 400;
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 var(--space-2); }
p { margin: 0 0 var(--space-3); }
a { color: var(--color-accent); text-underline-offset: 3px; }
a:hover { color: var(--color-accent-700); }
img { display: block; max-width: 100%; }
figure { margin: 0; }
button { font: inherit; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }
.grayscale { filter: grayscale(1) contrast(1.08); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hr { height: 2px; border: 0; margin: var(--space-4) 0; background: var(--color-divider); }
.pretty { text-wrap: pretty; }
.muted { color: var(--color-neutral-700); }

/* --- Komponenty systemu ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: 800; font-size: 14px; line-height: 1.2;
  color: var(--color-text); background: transparent; border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2); border-radius: var(--radius);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn svg { display: block; flex: none; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-600); color: #fff; }
.btn-primary:active { background: var(--color-accent-700); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); color: var(--color-text); }
.btn-secondary:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }
.btn-ghost { color: var(--color-accent); padding-inline: var(--space-1); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent-700); }
.btn-lg { font-size: 15px; padding: 14px 22px; }
.btn-lg-icon { font-size: 15px; padding: 15px 24px; gap: 10px; }
/* na ciemnym tle */
.btn-outline-dark { border: 1px solid var(--color-neutral-600); color: var(--color-bg); }
.btn-outline-dark:hover { border-color: var(--color-accent); color: var(--color-accent-400); }
/* na tle akcentu */
.btn-on-accent { background: var(--color-bg); color: var(--color-text); }
.btn-on-accent:hover { background: #fff; color: var(--color-text); }
.btn-outline-accent { border: 1px solid rgba(255,255,255,.6); color: #fff; }
.btn-outline-accent:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

.tag { display: inline-flex; align-items: center; font-size: 11px; letter-spacing: .02em; padding: 3px 10px; border-radius: 0; }
.tag-outline { border: 1px solid var(--color-accent); color: var(--color-accent); }
.tag-sm { font-size: 12px; }

.field > label { display: block; font-size: 12px; margin-bottom: 5px; color: color-mix(in srgb, var(--color-text) 70%, transparent); }
.input {
  width: 100%; min-height: 36px; padding: 6px 10px; font: inherit; font-size: 14px;
  color: var(--color-text); caret-color: var(--color-accent); background: var(--color-surface);
  border: 1px solid var(--color-divider); border-radius: 0;
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 90px; resize: vertical; }
.input.is-invalid { border-color: #b3261e; }
.field-error { display: none; font-size: 12px; color: #b3261e; margin-top: 4px; }
.field.has-error .field-error { display: block; }

/* checkbox „radio” z projektu: kwadrat 18px, aktywny = akcent z białym wnętrzem */
.check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 14px; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.check .box { width: 18px; height: 18px; flex: none; margin-top: 2px; border: 2px solid var(--color-divider); background: transparent; transition: background .12s ease, border-color .12s ease; }
.check input:checked + .box { border-color: var(--color-accent); background: var(--color-accent); box-shadow: inset 0 0 0 3px var(--color-bg); }
.check input:focus-visible + .box { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.check .lbl b { font-family: var(--font-heading); font-weight: 800; font-size: 14px; }
.check .lbl small { display: block; font-size: 12px; color: var(--color-neutral-700); }
.check .consent { font-size: 12px; color: var(--color-neutral-700); line-height: 1.5; }

/* przycisk-opcja (OPT_BASE / OPT_ON z projektu) */
.opt {
  text-align: left; cursor: pointer; font-family: var(--font-body); background: var(--color-bg);
  border: 1px solid var(--color-divider); border-radius: 0; padding: 10px 12px; color: var(--color-text);
  transition: border-color .12s ease, background .12s ease;
}
.opt:hover { border-color: var(--color-accent); }
.opt.is-on { background: var(--color-accent-100); border: 2px solid var(--color-accent); padding: 9px 11px; }
.opt b { font-family: var(--font-heading); font-weight: 800; font-size: 14px; display: block; }
.opt small { font-size: 11px; color: var(--color-neutral-700); display: block; margin-top: 2px; }
.opt-h { font-family: var(--font-heading); font-weight: 800; font-size: 14px; min-width: 74px; text-align: center; }
.opt-w { min-width: 80px; }
.opt-chip { font-size: 13px; font-family: var(--font-heading); font-weight: 800; padding: 8px 14px; }
.opt-chip.is-on { padding: 7px 13px; }
.opt-sort { font-size: 12px; font-family: var(--font-heading); font-weight: 800; padding: 7px 12px; }
.opt-sort.is-on { padding: 6px 11px; }
.opt-color { display: inline-flex; align-items: center; gap: 8px; }
.opt-color .sw { width: 20px; height: 20px; display: inline-block; border: 1px solid var(--color-divider); }
.opt-color span:last-child { font-size: 12px; font-weight: 600; }
.opt-gate b { font-size: 13px; }
.opt-gate small { margin-top: 0; }
.opt-center { text-align: center; font-family: var(--font-heading); font-weight: 800; font-size: 13px; }

/* --- Układ ------------------------------------------------------------------ */
.wrap { max-width: 1320px; margin: 0 auto; padding-inline: var(--gutter); }
.section { border-bottom: 2px solid var(--color-divider); }
.section > .wrap { padding-block: var(--sec-y); }
.section-surface { background: var(--color-surface); }
.sec-head { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: flex-end; margin-bottom: 40px; }
.sec-head .right { margin-left: auto; }
.sec-head-tight { margin-bottom: 32px; }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 4vw, 64px); }
.split-tight { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 0 clamp(24px, 4vw, 64px); }

.kicker {
  font-size: 11px; text-transform: uppercase; letter-spacing: .24em; font-weight: 800;
  color: var(--color-accent-700); margin-bottom: 18px; border-left: 2px solid var(--color-accent); padding-left: 12px;
}
.kicker-dark { color: var(--color-accent-400); font-size: 12px; margin-bottom: 26px; }
.kicker-line { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; border: 0; padding: 0; }
.kicker-line::before { content: ""; width: 52px; height: 2px; background: var(--color-accent); display: block; }
.h2 { font-size: clamp(30px, 3.4vw, 50px); margin: 0; letter-spacing: -0.03em; }
.h2-sm { font-size: clamp(28px, 3.1vw, 44px); letter-spacing: -0.03em; margin: 0 0 18px; }
.lead { max-width: 56ch; color: var(--color-neutral-800); margin: 0 0 40px; }
.copy { color: var(--color-neutral-800); max-width: 50ch; }
.note { font-size: 12px; color: var(--color-neutral-700); }

/* siatka komórek (1-2px fug na tle dividera) */
.cells { display: grid; gap: 2px; background: var(--color-divider); border: 2px solid var(--color-divider); }
.cells > * { background: var(--color-bg); }
.cells-1 { gap: 1px; border-width: 1px; }
.cells-220 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cells-240 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.cells-200 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.cells-fill-240 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.cells-fill-260 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.cells-fill-270 { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
.cells-fill-280 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.cells-290 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.cells-320 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.cells-rule { border-left: 0; border-right: 0; }

/* placeholder zdjęcia — do czasu wgrania fotografii */
.ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--color-neutral-600);
  background: var(--color-neutral-200) repeating-linear-gradient(135deg, transparent 0 14px, rgba(0,0,0,.035) 14px 15px);
}
.ph-dark { background-color: var(--color-neutral-800); color: var(--color-neutral-400); background-image: repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,.04) 14px 15px); }
.cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* --- Pasek górny ----------------------------------------------------------- */
.topbar { background: var(--color-text); color: var(--color-bg); font-size: 12px; }
.topbar .wrap { padding-block: 8px; display: flex; flex-wrap: wrap; gap: 8px 28px; align-items: center; }
.topbar .claim { text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.topbar .hours { opacity: .6; }
.topbar .right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.topbar .phone { color: var(--color-bg); text-decoration: none; font-weight: 800; }
.lang { display: flex; align-items: center; border-left: 1px solid rgba(243,242,242,.3); padding-left: 16px; }
.lang a, .lang span { padding: 3px 9px; letter-spacing: .06em; text-decoration: none; color: var(--color-bg); }
.lang a { opacity: .7; }
.lang a:hover { opacity: 1; color: var(--color-bg); }
.lang .is-on { background: var(--color-accent); color: #fff; font-weight: 800; }
@media (max-width: 640px) { .topbar .claim { font-size: 11px; } .topbar .hours { display: none; } }

/* --- Nagłówek --------------------------------------------------------------- */
.header { position: sticky; top: 0; z-index: 40; background: var(--color-bg); border-bottom: 2px solid var(--color-divider); }
.header .wrap { padding-block: 12px; display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; }
.brand { display: block; line-height: 0; }
.brand img { height: 38px; width: auto; image-rendering: auto; }
.nav { display: flex; flex-wrap: wrap; gap: 2px; margin-left: auto; align-items: center; }
.nav a:not(.btn) {
  text-decoration: none; color: var(--color-text); font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; padding: 8px 10px;
}
.nav a:not(.btn):hover { background: var(--color-surface); color: var(--color-text); }
.nav .btn { margin-left: 8px; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--color-divider); background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { display: block; }
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav { display: none; flex-direction: column; align-items: stretch; width: 100%; margin: 4px 0 0; padding-top: 8px; border-top: 1px solid var(--color-divider); }
  .header.is-open .nav { display: flex; }
  .nav a:not(.btn) { padding: 12px 8px; border-bottom: 1px solid color-mix(in srgb, var(--color-text) 12%, transparent); }
  .nav .btn { margin: 12px 0 4px; justify-content: flex-start; }
}

.crumbs { border-bottom: 1px solid var(--color-divider); }
.crumbs .wrap { padding-block: 10px; font-size: 12px; color: var(--color-neutral-700); display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { text-decoration: none; }
.crumbs .cur { color: var(--color-text); font-weight: 600; }

/* --- Hero ------------------------------------------------------------------ */
.hero { background: var(--color-neutral-900); color: var(--color-bg); border-bottom: 2px solid var(--color-accent); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 0 clamp(24px, 4vw, 64px); }
.hero-copy { padding: clamp(48px, 6.5vw, 104px) 0 clamp(40px, 4vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.hero-copy-sub { padding: clamp(40px, 5.5vw, 88px) 0 clamp(36px, 4vw, 60px); }
.hero-copy-pl { padding: clamp(44px, 6vw, 96px) 0 clamp(36px, 4vw, 64px); }
.hero h1 { font-size: clamp(42px, 5.8vw, 86px); line-height: .94; letter-spacing: -0.04em; margin: 0 0 30px; color: var(--color-bg); }
.hero h1 em { font-style: normal; color: var(--color-accent); }
.hero-copy-sub h1 { font-size: clamp(38px, 5vw, 72px); line-height: .97; margin-bottom: 26px; }
.hero-copy-pl h1 { font-size: clamp(40px, 5.4vw, 78px); line-height: .96; margin-bottom: 28px; }
.hero p { font-size: clamp(16px, 1.3vw, 19px); max-width: 44ch; margin: 0 0 38px; color: var(--color-neutral-300); text-wrap: pretty; }
.hero-copy-sub p { max-width: 46ch; font-size: clamp(16px, 1.3vw, 18px); margin-bottom: 34px; }
.hero-copy-pl p { font-size: clamp(16px, 1.3vw, 18px); margin-bottom: 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero-copy-sub .hero-cta { margin-bottom: 40px; }
.hero-copy-pl .hero-cta { margin-bottom: 44px; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; }
.stats > div { background: var(--color-neutral-900); padding: 18px 20px; box-shadow: 0 0 0 1px var(--color-neutral-700); }
.stats b { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 27px; line-height: 1.1; color: var(--color-bg); }
.stats-sm b { font-size: 24px; }
.stats-pl b { font-size: 25px; }
.stats span { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--color-neutral-400); }
.hero-media { position: relative; min-height: clamp(360px, 46vw, 700px); border-left: 1px solid var(--color-neutral-700); }
.hero-media-sub { min-height: clamp(320px, 42vw, 620px); }
.hero-media-pl { min-height: clamp(320px, 44vw, 660px); }
.hero-main { position: absolute; inset: 0; overflow: hidden; }
.hero-detail {
  position: absolute; left: clamp(-64px, -4vw, -16px); bottom: clamp(24px, 5vw, 72px); width: clamp(140px, 26%, 230px);
  aspect-ratio: 3/4; border: 5px solid var(--color-neutral-900); box-shadow: 0 24px 60px rgba(0,0,0,.55); overflow: hidden;
}
.hero-badge {
  position: absolute; left: 0; bottom: 0; background: var(--color-accent); color: #fff; padding: 15px 22px;
  font-family: var(--font-heading); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .12em;
  pointer-events: none; display: flex; align-items: center; gap: 10px;
}
.hero-badge-pl { padding: 14px 20px; letter-spacing: .1em; }
@media (max-width: 720px) {
  .hero-media { border-left: 0; margin-inline: calc(-1 * var(--gutter)); }
  .hero-detail { left: 12px; }
}

/* --- Pasek USP -------------------------------------------------------------- */
.usp { border-bottom: 2px solid var(--color-divider); background: var(--color-surface); }
.usp .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.usp .item { padding: 32px 26px; border-right: 2px solid var(--color-divider); display: flex; flex-direction: column; gap: 14px; }
.usp .item:first-child { padding-left: 0; }
.usp .item:last-child { padding-right: 0; border-right: 0; }
.usp svg { display: block; }
.usp b { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 17px; margin-bottom: 4px; }
.usp span { font-size: 13px; color: var(--color-neutral-700); }
.usp-pl .item { padding: 26px 24px; gap: 0; }
.usp-pl b { font-size: 16px; }
@media (max-width: 760px) {
  .usp .item { border-right: 0; border-bottom: 2px solid var(--color-divider); padding-inline: 0; }
  .usp .item:last-child { border-bottom: 0; }
}

/* --- Porównanie (suwak) ---------------------------------------------------- */
.cmp-hint { margin-left: auto; display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--color-neutral-700); text-transform: uppercase; letter-spacing: .14em; }
.cmp { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--color-neutral-200); cursor: ew-resize; touch-action: none; user-select: none; }
.cmp .layer { position: absolute; inset: 0; }
.cmp .layer img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.cmp .clip { clip-path: inset(0 48% 0 0); transition: clip-path .18s ease-out; }
.cmp.is-dragging .clip, .cmp.is-dragging .line { transition: none; }
.cmp .label { position: absolute; top: clamp(14px, 2vw, 26px); padding: 10px 16px; pointer-events: none; }
.cmp .label b { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 13px; letter-spacing: .04em; }
.cmp .label span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; margin-top: 2px; }
.cmp .label-l { left: 0; background: var(--color-neutral-900); color: var(--color-bg); }
.cmp .label-l span { color: var(--color-neutral-400); }
.cmp .label-r { right: 0; background: var(--color-accent); color: #fff; text-align: right; }
.cmp .label-r span { opacity: .85; }
.cmp .line { position: absolute; top: 0; bottom: 0; left: 52%; width: 3px; background: var(--color-accent); display: flex; align-items: center; justify-content: center; pointer-events: none; transform: translateX(-1.5px); transition: left .18s ease-out; }
.cmp .knob { width: 52px; height: 52px; flex: none; background: var(--color-accent); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
@media (max-width: 640px) {
  .cmp .label { padding: 8px 10px; }
  .cmp .label span { display: none; }
  .cmp .knob { width: 40px; height: 40px; }
}
.cmp-facts { border-top: 0; margin-top: 0; }
.cmp-facts > div { padding: 20px 22px; }
.cmp-facts .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--color-neutral-600); margin-bottom: 10px; }
.cmp-facts .row { display: flex; gap: 16px; justify-content: space-between; align-items: baseline; }
.cmp-facts .row span:first-child { font-size: 14px; color: var(--color-neutral-800); }
.cmp-facts .row span:last-child { font-family: var(--font-heading); font-weight: 800; font-size: 14px; color: var(--color-accent-700); text-align: right; }
.cmp-foot { display: flex; flex-wrap: wrap; gap: 12px 32px; align-items: center; margin-top: 20px; }
.cmp-foot p { font-size: 13px; color: var(--color-neutral-700); max-width: 58ch; margin: 0; text-wrap: pretty; }
.cmp-foot .btn { margin-left: auto; }

/* --- Oferta (karty produktów) ---------------------------------------------- */
.product { text-decoration: none; color: var(--color-text); display: flex; flex-direction: column; }
.product:hover { background: var(--color-surface); color: var(--color-text); }
.product .media { aspect-ratio: 5/4; position: relative; overflow: hidden; background: var(--color-neutral-200); }
.product .media > * { position: absolute; inset: 0; transition: transform .7s var(--ease); }
.product:hover .media > * { transform: scale(1.06); }
.product .body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product .name { font-family: var(--font-heading); font-weight: 800; font-size: 18px; }
.product .desc { font-size: 13px; color: var(--color-neutral-700); line-height: 1.5; text-wrap: pretty; }
.product .from { margin-top: auto; padding-top: 14px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: var(--color-accent-700); }
.extras { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.extras .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--color-neutral-700); margin-right: 8px; }

/* --- Tabela modeli ---------------------------------------------------------- */
.sort { margin-left: auto; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.sort .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--color-neutral-700); }
.tscroll { overflow-x: auto; }
.models { width: 100%; min-width: 780px; border-collapse: collapse; }
.models th { text-align: left; padding: 10px 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; border-bottom: 2px solid var(--color-divider); }
.models th:first-child { padding-left: 0; }
.models th.num { text-align: right; }
.models td { padding: 14px 12px; border-bottom: 1px solid var(--color-divider); font-size: 14px; vertical-align: middle; }
.models td:first-child { padding-left: 0; font-family: var(--font-heading); font-weight: 800; font-size: 15px; }
.models td:first-child small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--color-neutral-700); }
.models td.num { text-align: right; font-family: var(--font-heading); font-weight: 800; white-space: nowrap; }
.models td:last-child { padding-right: 0; text-align: right; }
.models td:last-child .btn { font-size: 12px; white-space: nowrap; }
.models tr.is-on { background: var(--color-accent-100); }
.models-foot { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.models-foot .btn { margin-left: auto; }

/* --- Kalkulator ------------------------------------------------------------- */
.calc { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2px; background: var(--color-divider); border: 2px solid var(--color-divider); }
.calc > div { background: var(--color-bg); }
.calc-form { padding: clamp(20px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 28px; }
.calc .step { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; margin-bottom: 12px; }
.calc .step-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.calc .step-row .step { margin: 0; }
.calc .val { font-family: var(--font-heading); font-weight: 800; font-size: 20px; }
.calc .val-sm { font-size: 18px; }
.grid-150 { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.grid-170 { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 8px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.range { width: 100%; accent-color: var(--color-accent); height: 28px; margin: 0; }
.range-scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--color-neutral-700); }
.calc .checks { display: flex; flex-direction: column; gap: 14px; border-top: 2px solid var(--color-divider); padding-top: 22px; }
.calc-out { display: flex; flex-direction: column; }
.calc-out .head { padding: clamp(20px, 2.4vw, 32px) clamp(20px, 2.4vw, 32px) 0; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.calc-out .head .step { margin: 0; }
.calc-out .head span:last-child { font-size: 11px; color: var(--color-neutral-700); }
.preview-wrap { padding: 16px clamp(20px, 2.4vw, 32px) 0; }
.preview { background: var(--color-neutral-200); border: 1px solid var(--color-divider); padding: 26px 18px 0; overflow: hidden; }
.preview .fence { transition: height .2s ease; }
.preview .ground { height: 14px; background: var(--color-neutral-400); margin: 0 -18px; }
.preview-sm { padding: 18px 14px 0; }
.preview-sm .ground { height: 10px; margin: 0 -14px; }
.preview-cap { display: flex; justify-content: space-between; gap: 12px; font-size: 11px; color: var(--color-neutral-700); margin-top: 6px; }
.breakdown { padding: clamp(20px, 2.4vw, 32px); display: flex; flex-direction: column; margin-top: 8px; }
.breakdown-flat { margin-top: 0; }
.breakdown .row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--color-divider); font-size: 14px; }
.breakdown .row span:first-child { color: var(--color-neutral-800); }
.breakdown .row span:last-child { font-family: var(--font-heading); font-weight: 800; white-space: nowrap; }
.total { margin-top: auto; background: var(--color-accent); color: #fff; padding: clamp(20px, 2.4vw, 32px); }
.total .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; opacity: .85; margin-bottom: 8px; }
.total .sum { font-family: var(--font-heading); font-weight: 800; font-size: clamp(28px, 3.2vw, 44px); line-height: 1; letter-spacing: -0.03em; }
.total .fine { font-size: 13px; margin-top: 12px; opacity: .9; max-width: 42ch; }
.total .cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* --- Galeria (siatka jednolita — DE) --------------------------------------- */
.gal-hint { margin-left: auto; display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--color-neutral-700); text-transform: uppercase; letter-spacing: .14em; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2px; background: var(--color-divider); border: 2px solid var(--color-divider); }
.gal-grid figure { background: var(--color-bg); }
.gal-grid figure.is-hidden { display: none; }
.gal-grid .frame { aspect-ratio: 3/2; position: relative; overflow: hidden; cursor: pointer; background: var(--color-neutral-200); }
.gal-grid .frame > * { position: absolute; inset: 0; transition: transform .7s var(--ease); }
.gal-grid .frame:hover > * { transform: scale(1.05); }
.gal-grid figcaption { padding: 12px 16px; display: flex; justify-content: space-between; gap: 12px; font-size: 12px; margin: 0; }
.gal-grid figcaption span:first-child { font-weight: 600; color: var(--color-text); }
.gal-grid figcaption span:last-child { color: var(--color-neutral-700); text-transform: uppercase; letter-spacing: .08em; }

/* --- Galeria kolażowa (PL, referencje) ------------------------------------- */
.collage { display: grid; grid-template-columns: repeat(auto-fit, minmax(clamp(64px, 7.5vw, 108px), 1fr)); gap: clamp(14px, 1.8vw, 32px); align-items: start; }
.collage figure { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.collage figure.is-in { opacity: 1; transform: none; }
.collage figure.is-hidden { display: none; }
.collage .frame { position: relative; overflow: hidden; cursor: pointer; background: var(--color-neutral-200); transform: translateY(0); transition: transform .45s var(--ease); }
.collage .frame:hover { transform: translateY(-8px); }
.collage .frame > .zoom { position: absolute; inset: 0; transition: transform .8s var(--ease); }
.collage .frame:hover > .zoom { transform: scale(1.05); }
.collage .badge { position: absolute; right: 0; top: 0; background: var(--color-accent); color: #fff; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.collage figcaption { padding: 14px 0 0; display: flex; gap: 14px; align-items: baseline; border-top: 1px solid var(--color-divider); margin-top: 14px; }
.collage .num { font-family: var(--font-heading); font-weight: 800; font-size: 12px; color: var(--color-accent); letter-spacing: .06em; }
.collage .cap { flex: 1; font-size: 14px; font-weight: 600; text-wrap: pretty; }
.collage .place { font-size: 11px; color: var(--color-neutral-600); text-transform: uppercase; letter-spacing: .12em; white-space: nowrap; }
/* sześć pozycji kolażu: rozpiętość na 12 kolumnach, proporcja, przesunięcie */
.collage .c1 { grid-column: span 7; } .collage .c1 .frame { aspect-ratio: 4/3; }
.collage .c2 { grid-column: span 5; margin-top: clamp(0px, 5vw, 76px); } .collage .c2 .frame { aspect-ratio: 3/4; }
.collage .c3 { grid-column: span 4; } .collage .c3 .frame { aspect-ratio: 1/1; }
.collage .c4 { grid-column: span 8; margin-top: clamp(0px, 3vw, 48px); } .collage .c4 .frame { aspect-ratio: 16/9; }
.collage .c5 { grid-column: span 6; margin-top: clamp(0px, 4vw, 64px); } .collage .c5 .frame { aspect-ratio: 3/2; }
.collage .c6 { grid-column: span 6; } .collage .c6 .frame { aspect-ratio: 3/2; }
@media (max-width: 640px) {
  .collage { grid-template-columns: 1fr 1fr; }
  .collage figure { grid-column: span 2 !important; margin-top: 0 !important; }
}

/* --- Kolory RAL --------------------------------------------------------------- */
.ral { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 2px; background: var(--color-divider); border: 2px solid var(--color-divider); }
.ral > div { background: var(--color-bg); }
.ral .chip { height: 54px; }
.ral .name { padding: 8px 8px 10px; font-size: 10px; line-height: 1.3; text-transform: uppercase; letter-spacing: .04em; color: var(--color-neutral-700); }

/* --- Zakład (ciemna sekcja) --------------------------------------------------- */
.werk { background: var(--color-neutral-900); color: var(--color-bg); border-top: 2px solid var(--color-accent); border-bottom: 2px solid var(--color-accent); }
.werk .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 0 clamp(24px, 4vw, 64px); }
.werk .media { position: relative; min-height: clamp(300px, 36vw, 560px); }
.werk .copy-col { padding: clamp(48px, 5.5vw, 92px) 0; display: flex; flex-direction: column; justify-content: center; }
.werk h2 { font-size: clamp(30px, 3.4vw, 50px); margin: 0 0 20px; letter-spacing: -0.035em; color: var(--color-bg); }
.werk p { color: var(--color-neutral-300); max-width: 48ch; text-wrap: pretty; font-size: 16px; }
.werk .rule { height: 2px; background: var(--color-neutral-700); margin: 32px 0; }
.werk .feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 26px 28px; }
.werk .feat { display: flex; gap: 14px; }
.werk .feat svg { flex: none; margin-top: 2px; }
.werk .feat b { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 15px; margin-bottom: 3px; color: var(--color-bg); }
.werk .feat span { font-size: 13px; color: var(--color-neutral-400); }
@media (max-width: 720px) { .werk .media { margin-inline: calc(-1 * var(--gutter)); min-height: 280px; } }

/* --- Kroki ------------------------------------------------------------------- */
.steps { border-left: 0; border-right: 0; }
.steps > div { padding: 24px 20px 28px; display: flex; flex-direction: column; gap: 8px; }
.steps .n { font-family: var(--font-heading); font-weight: 800; font-size: 32px; color: var(--color-accent); line-height: 1; }
.steps .t { font-family: var(--font-heading); font-weight: 800; font-size: 17px; }
.steps .b { font-size: 13px; color: var(--color-neutral-700); line-height: 1.55; text-wrap: pretty; }
.steps .m { margin-top: auto; padding-top: 14px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--color-neutral-600); }

/* --- Karty B2B / akcesoria / opinie ---------------------------------------- */
.info-card { padding: 22px 20px; display: flex; flex-direction: column; gap: 8px; }
.info-card b { font-family: var(--font-heading); font-weight: 800; font-size: 16px; }
.info-card .b { font-size: 13px; color: var(--color-neutral-700); line-height: 1.55; text-wrap: pretty; }
.info-card .price { margin-top: auto; padding-top: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: var(--color-accent-700); }
.b2b-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.rating { margin-left: auto; display: flex; align-items: center; gap: 16px; border: 2px solid var(--color-divider); padding: 14px 18px; }
.rating .v { font-family: var(--font-heading); font-weight: 800; font-size: 38px; line-height: 1; }
.stars { color: var(--color-accent); letter-spacing: .1em; font-size: 15px; }
.rating small { display: block; font-size: 12px; color: var(--color-neutral-700); }
.review { padding: 22px 20px; display: flex; flex-direction: column; gap: 12px; }
.review .stars { font-size: 14px; }
.review .txt { font-size: 14px; line-height: 1.6; color: var(--color-neutral-800); text-wrap: pretty; }
.review .who { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--color-divider); display: flex; justify-content: space-between; gap: 12px; font-size: 12px; }
.review .who b { font-weight: 600; }
.review .who span { color: var(--color-neutral-600); }

/* --- Cennik ------------------------------------------------------------------ */
.prices { width: 100%; border-collapse: collapse; }
.prices th { text-align: left; padding: 10px 0; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; border-bottom: 2px solid var(--color-divider); }
.prices th:last-child { text-align: right; }
.prices td { padding: 11px 0; border-bottom: 1px solid var(--color-divider); font-size: 14px; }
.prices td:last-child { text-align: right; font-family: var(--font-heading); font-weight: 800; white-space: nowrap; }

/* --- Partnerzy ---------------------------------------------------------------- */
.partners { border-bottom: 2px solid var(--color-divider); }
.partners .wrap { padding-block: 26px; display: flex; flex-wrap: wrap; gap: 12px 36px; align-items: center; }
.partners .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: var(--color-neutral-600); }
.partners span:not(.lbl) { font-family: var(--font-heading); font-weight: 800; font-size: 17px; color: var(--color-neutral-500); }

/* --- Kontakt ------------------------------------------------------------------- */
.contact .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 0 clamp(24px, 4vw, 64px); }
.contact .info { padding: var(--sec-y) 0; }
.contact .info p { color: var(--color-neutral-800); max-width: 44ch; text-wrap: pretty; }
.contact .list { display: grid; gap: 18px; max-width: 42ch; }
.contact .list small { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--color-neutral-600); margin-bottom: 2px; }
.contact .list a { font-family: var(--font-heading); font-weight: 800; font-size: 22px; text-decoration: none; }
.contact .list a.mail { font-size: 18px; }
.contact .list div > div { font-size: 15px; }
.contact .form-col { border-left: 2px solid var(--color-divider); padding: var(--sec-y) 0 var(--sec-y) clamp(24px, 4vw, 64px); }
@media (max-width: 720px) { .contact .form-col { border-left: 0; padding-left: 0; padding-top: 0; } }
.form { display: grid; gap: 16px; }
.form .row2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.form .actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { display: none; border: 2px solid #b3261e; padding: 14px 16px; font-size: 14px; }
.form-msg.is-on { display: block; }
.form-ok { display: none; border: 2px solid var(--color-accent); padding: 32px; }
.form-ok.is-on { display: block; }
.form-ok b { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 26px; margin-bottom: 10px; }
.form-ok p { color: var(--color-neutral-800); margin: 0 0 18px; }
.form.is-sent { display: none; }

/* --- Plakat (banner akcentowy) ------------------------------------------------- */
.poster { background: var(--color-accent); color: #fff; }
.poster .wrap { padding-block: clamp(48px, 6vw, 96px); }
.poster .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .2em; font-weight: 800; opacity: .8; margin-bottom: 20px; }
.poster .big { font-family: var(--font-heading); font-weight: 800; font-size: clamp(34px, 5.6vw, 80px); line-height: .98; letter-spacing: -0.035em; max-width: 20ch; }
.poster .cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* --- Stopka -------------------------------------------------------------------- */
.footer { background: var(--color-text); color: var(--color-bg); }
.footer .cols { padding-block: clamp(36px, 4vw, 64px); display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.footer .logo { font-family: var(--font-heading); font-weight: 800; font-size: 26px; letter-spacing: -0.03em; }
.footer .tag-line { font-size: 12px; opacity: .65; margin-top: 6px; max-width: 30ch; }
.footer .h { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; opacity: .6; margin-bottom: 10px; }
.footer .links { display: grid; gap: 6px; font-size: 13px; }
.footer .links a { color: var(--color-bg); text-decoration: none; opacity: .85; }
.footer .links a:hover { opacity: 1; color: var(--color-bg); text-decoration: underline; }
.footer .links span { opacity: .85; }
.footer .links a.plain { opacity: 1; }
.footer .bottom { border-top: 1px solid rgba(243,242,242,.2); }
.footer .bottom .wrap { padding-block: 16px; display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 12px; opacity: .6; }
.footer .bottom a { color: var(--color-bg); text-decoration: none; }
.footer .bottom a:first-of-type { margin-left: auto; }
.footer .bottom a:hover { text-decoration: underline; color: var(--color-bg); }

/* --- Lightbox ------------------------------------------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 80; background: rgba(22,20,17,.96); display: none; flex-direction: column; }
.lightbox.is-open { display: flex; }
.lightbox .top { display: flex; align-items: center; gap: 20px; padding: 18px var(--gutter); border-bottom: 1px solid var(--color-neutral-800); }
.lightbox .cnt { font-family: var(--font-heading); font-weight: 800; font-size: 13px; color: var(--color-accent); letter-spacing: .1em; }
.lightbox .ttl { color: var(--color-bg); font-size: 15px; font-weight: 600; }
.lightbox .plc { color: var(--color-neutral-400); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.lightbox .ico { background: transparent; border: 1px solid var(--color-neutral-600); color: var(--color-bg); width: 42px; height: 42px; flex: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox .ico:hover { border-color: var(--color-accent); color: var(--color-accent); }
.lightbox .close { margin-left: auto; }
.lightbox .stage { flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; gap: clamp(8px, 2vw, 28px); padding: clamp(16px, 3vw, 40px) clamp(8px, 2vw, 28px); }
.lightbox .nav-btn { width: 48px; height: 48px; border-color: var(--color-neutral-700); }
.lightbox .pic { flex: 1; max-width: 1100px; height: 100%; position: relative; background: var(--color-neutral-800); }
.lightbox .pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.lightbox .foot { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; padding: 16px var(--gutter); border-top: 1px solid var(--color-neutral-800); }
.lightbox .foot span { color: var(--color-neutral-400); font-size: 12px; }
.lightbox .foot .btn { margin-left: auto; font-size: 14px; }
body.has-lightbox { overflow: hidden; }

/* --- Pływające CTA ----------------------------------------------------------------- */
.sticky-cta { position: fixed; right: 0; bottom: 0; z-index: 50; display: flex; flex-direction: column; }
.sticky-cta a { text-decoration: none; padding: 12px 18px; font-family: var(--font-heading); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.sticky-cta .wa { background: var(--color-text); color: var(--color-bg); }
.sticky-cta .tel { background: var(--color-accent); color: #fff; }
.sticky-cta a:hover { filter: brightness(1.15); }

/* --- Moderne Zäune: warianty, FAQ, technika ----------------------------------------- */
.variant { display: flex; flex-direction: column; }
.variant.is-on { box-shadow: inset 0 0 0 2px var(--color-accent); }
.variant .head { padding: 20px 20px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.variant .head b { font-family: var(--font-heading); font-weight: 800; font-size: 18px; }
.variant .head span { font-size: 12px; font-weight: 800; color: var(--color-accent-700); white-space: nowrap; }
.variant .pv { padding: 16px 20px 0; }
.variant .body { padding: 14px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.variant .desc { font-size: 13px; color: var(--color-neutral-700); line-height: 1.55; text-wrap: pretty; }
.variant .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.variant .tags .tag { font-size: 11px; }
.tech-list { display: grid; gap: 14px; max-width: 46ch; }
.tech-list .row { display: flex; gap: 16px; justify-content: space-between; border-bottom: 1px solid var(--color-divider); padding-bottom: 10px; }
.tech-list .row span:first-child { font-size: 14px; color: var(--color-neutral-800); }
.tech-list .row span:last-child { font-size: 14px; font-family: var(--font-heading); font-weight: 800; text-align: right; }
.tech-media { position: relative; min-height: clamp(280px, 30vw, 460px); overflow: hidden; }
.tech-media .inner { position: absolute; inset: -8%; }
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--color-divider); }
.faq .q { border-bottom: 1px solid var(--color-divider); }
.faq button { width: 100%; text-align: left; background: transparent; border: 0; padding: 18px 0; cursor: pointer; display: flex; gap: 16px; align-items: baseline; font-family: var(--font-heading); font-weight: 800; font-size: 16px; color: var(--color-text); }
.faq button span:first-child { flex: 1; }
.faq button .sign { color: var(--color-accent); font-size: 20px; line-height: 1; }
.faq .a { display: none; font-size: 14px; line-height: 1.65; color: var(--color-neutral-800); padding: 0 0 20px; max-width: 58ch; }
.faq .q.is-open .a { display: block; }

/* --- Reveal / parallax ---------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], .collage figure { opacity: 1; transform: none; transition: none; }
  [data-parallax] { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* --- Strony tekstowe (Impressum, Datenschutz) ---------------------------------------- */
.prose { max-width: 72ch; padding-block: var(--sec-y); }
.prose h1 { font-size: clamp(30px, 3.4vw, 50px); letter-spacing: -0.03em; margin-bottom: 24px; }
.prose h2 { font-size: 22px; margin-top: 32px; }
.prose p, .prose li { color: var(--color-neutral-800); font-size: 15px; }
.prose .todo { border: 2px solid var(--color-accent); padding: 16px 18px; background: var(--color-accent-100); color: var(--color-accent-800); font-size: 14px; }
