/* ==========================================================================
   remonty-paszowozow.pl — styles.css
   --------------------------------------------------------------------------
   Spis sekcji:
   1.  Zmienne (kolory, odstępy, typografia) — :root
   2.  Reset i podstawy
   3.  Tło / atmosfera (ziarno, poświaty)
   4.  Typografia i elementy współdzielone
   5.  Przyciski
   6.  Nagłówek / nawigacja + menu mobilne
   7.  Hero + ilustracja SVG wozu
   8.  Pasek marek
   9.  Liczniki
   10. Korzyści (karty)
   11. Proces (sekcja ciemna)
   12. Co remontujemy (2 kolumny)
   13. FAQ (akordeon)
   14. CTA końcowe + formularz
   15. Stopka
   16. Animacje wejścia (reveal)
   17. Dostępność / prefers-reduced-motion
   18. Responsywność (breakpointy)
   ========================================================================== */

/* ========================================================================
   1. ZMIENNE  — wszystkie kolory i ustawienia do edycji w jednym miejscu
   ======================================================================== */
:root {
  /* --- Kolory: ciepła paleta rolniczo-warsztatowa --- */
  --paper:        #f6f1e6;   /* główne tło (kremowe) */
  --paper-2:      #efe7d6;   /* delikatnie ciemniejsze tło / karty */
  --paper-3:      #e7dcc6;   /* obramowania / detale */
  --ink:          #1b2a1e;   /* tekst główny (ciemna zieleń-grafit) */
  --ink-soft:     #4a5a48;   /* tekst pomocniczy */
  --ink-faint:    #6f7d6b;   /* podpisy */

  --field:        #2c5938;   /* zieleń marki (primary) */
  --field-700:    #234a2e;   /* ciemniejsza zieleń */
  --field-900:    #14271b;   /* najciemniejsza — sekcje ciemne */

  --harvest:      #e0a33e;   /* bursztynowy akcent (CTA, detale) */
  --harvest-600:  #c9842b;   /* ciemniejszy bursztyn (hover, obramowania) */
  --steel:        #8a9285;   /* stonowana stal (detale) */

  --line:         rgba(27, 42, 30, 0.12);   /* hairline na jasnym tle */
  --line-light:   rgba(246, 241, 230, 0.16); /* hairline na ciemnym tle */

  /* --- Cienie (miękkie, lekko zielone) --- */
  --shadow-sm: 0 1px 2px rgba(20, 39, 27, 0.06), 0 1px 1px rgba(20, 39, 27, 0.05);
  --shadow-md: 0 14px 34px -16px rgba(20, 39, 27, 0.20);
  --shadow-lg: 0 34px 64px -24px rgba(20, 39, 27, 0.30);
  --shadow-amber: 0 16px 34px -14px rgba(201, 132, 43, 0.50);

  /* --- Promienie --- */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* --- Typografia --- */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* --- Odstępy / układ --- */
  --maxw: 1180px;
  --gutter: clamp(1.1rem, 5vw, 2.6rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --header-h: 70px;

  /* --- Ruch --- */
  --ease: cubic-bezier(0.22, 0.72, 0.2, 1);
  --t-fast: 0.18s var(--ease);
  --t: 0.32s var(--ease);
}

/* ========================================================================
   2. RESET I PODSTAWY
   ======================================================================== */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;                 /* zero poziomego przewijania */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }

ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--harvest-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Link "Przejdź do treści" */
.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--field);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r) var(--r);
  font-weight: 700;
  transition: top var(--t);
}
.skip-link:focus { top: 0; }

/* ========================================================================
   3. TŁO / ATMOSFERA
   ======================================================================== */
/* Subtelne ziarno na całej stronie */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ========================================================================
   4. TYPOGRAFIA I ELEMENTY WSPÓŁDZIELONE
   ======================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}

h2 { font-size: clamp(2rem, 1.35rem + 2.9vw, 3.35rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem); font-weight: 600; }

strong { font-weight: 700; }

.u-accent {
  color: var(--field);
  font-style: italic;
  font-weight: 500;
}

/* "Eyebrow" — mała etykieta nad nagłówkiem */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--field);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--harvest); }
.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--harvest);
  box-shadow: 0 0 0 4px rgba(224, 163, 62, 0.2);
}

/* Nagłówek sekcji */
.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.section-head--light h2 { color: var(--paper); }
.section-sub {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 40rem;
}
.section-head--light .section-sub { color: rgba(246, 241, 230, 0.78); }

.ico-check {
  width: 1.15em; height: 1.15em;
  flex: none;
  fill: none;
  stroke: var(--field);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========================================================================
   5. PRZYCISKI
   ======================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85em 1.5em;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  will-change: transform;
}
.btn .ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

.btn--lg { padding: 1.05em 1.9em; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* Główny — bursztynowy */
.btn--primary {
  background: var(--harvest);
  color: var(--ink);
  box-shadow: var(--shadow-amber);
}
.btn--primary:hover {
  background: #ecb255;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -14px rgba(201, 132, 43, 0.6);
}
.btn--primary:active { transform: translateY(0); }

/* Drugorzędny — kontur */
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.6px var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

/* Lekki puls przy ikonie telefonu */
.btn--call .ico { animation: ring 2.6s var(--ease) infinite; transform-origin: center; }
@keyframes ring {
  0%, 88%, 100% { transform: rotate(0); }
  90% { transform: rotate(-12deg); }
  93% { transform: rotate(10deg); }
  96% { transform: rotate(-6deg); }
}

/* ========================================================================
   6. NAGŁÓWEK / NAWIGACJA
   ======================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 230, 0.78);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.site-header.is-scrolled {
  background: rgba(246, 241, 230, 0.92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

/* Logo / marka */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.brand__mark { display: grid; place-items: center; transition: transform var(--t); }
.brand:hover .brand__mark { transform: rotate(-6deg); }
.brand__mark-bg { fill: var(--field); }
.brand__mark-a { fill: var(--harvest); }
.brand__mark-b { fill: var(--harvest); opacity: 0.82; }
.brand__mark-c { fill: var(--harvest); opacity: 0.62; }
.brand__a { color: var(--ink-soft); }
.brand__b { color: var(--ink); }
.brand__c { color: var(--harvest-600); }

/* Linki desktop */
.nav__links { display: flex; align-items: center; gap: 0.3rem; }
.nav__link {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.32rem;
  height: 2px;
  background: var(--harvest);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active { color: var(--field); }
.nav__link.is-active::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 0.8rem; }
.nav__cta { padding: 0.7em 1.2em; font-size: 0.92rem; }

/* Hamburger */
.nav__toggle { display: none; padding: 0.55rem; border-radius: var(--r-sm); }
.nav__toggle-box { display: grid; gap: 5px; width: 26px; }
.nav__toggle-box span {
  height: 2.5px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t-fast);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-box span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-box span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-box span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Menu mobilne (nakładka) */
.nav__mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100dvh - var(--header-h));
  z-index: 90;
  overflow-y: auto;
  background: var(--paper);          /* pełne kryjące tło */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.nav__mobile.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1.6rem;
  padding-bottom: 2rem;
}
.nav__mobile-links { display: flex; flex-direction: column; }
.nav__mobile-links a {
  display: block;
  padding: 0.95rem 0.4rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.nav__mobile-links a:hover { color: var(--field); padding-left: 0.9rem; }
.nav__mobile-cta { margin-top: 1.4rem; }
.nav__mobile-note { margin-top: 1rem; color: var(--ink-faint); font-size: 0.9rem; text-align: center; }

/* ========================================================================
   7. HERO
   ======================================================================== */
.hero { position: relative; overflow: hidden; padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: var(--section-y); }
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(46% 50% at 82% 18%, rgba(224, 163, 62, 0.26), transparent 70%),
    radial-gradient(50% 55% at 12% 12%, rgba(44, 89, 56, 0.20), transparent 72%),
    radial-gradient(60% 60% at 50% 110%, rgba(44, 89, 56, 0.12), transparent 70%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.55rem, 1.5rem + 4.8vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 1.3rem;
}
.hero__lead {
  font-size: clamp(1.1rem, 1.02rem + 0.5vw, 1.32rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.hero__points li { display: inline-flex; align-items: center; gap: 0.5rem; }

/* Wizual + chipy */
.hero__visual { position: relative; }
.wagon { width: 100%; height: auto; overflow: visible; }

.hero__chip {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.8rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  animation: float 6s var(--ease) infinite;
}
.hero__chip strong { font-family: var(--font-display); font-size: 1.45rem; line-height: 1; color: var(--field); }
.hero__chip span { font-size: 0.78rem; font-weight: 600; color: var(--ink-faint); }
.hero__chip--1 { top: 6%; right: -2%; }
.hero__chip--2 { bottom: 10%; left: -4%; animation-delay: -3s; }
.hero__chip--2 strong { color: var(--harvest-600); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Kolory ilustracji wozu (SVG) --- */
.w-ground { fill: rgba(20, 39, 27, 0.12); }
.wagon__group { transform-origin: center; animation: wagonFloat 7s var(--ease) infinite; }
@keyframes wagonFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.w-chassis { fill: var(--field-900); }
.w-body { fill: var(--field); }
.w-band { fill: rgba(246, 241, 230, 0.16); }
.w-seam { fill: none; stroke: var(--field-900); stroke-width: 2; opacity: 0.5; }
.w-rim { fill: var(--field-700); }
.w-mouth { fill: var(--field-900); }
.w-auger { fill: none; stroke: var(--harvest); stroke-width: 5; stroke-linecap: round; }
.w-auger-core { stroke: var(--harvest-600); stroke-width: 3; opacity: 0.55; }
.w-door { fill: var(--harvest); }
.w-chute { fill: var(--harvest-600); }
.w-ladder { stroke: var(--steel); stroke-width: 2.4; stroke-linecap: round; }
.w-steel-stroke { stroke: var(--field-900); stroke-width: 7; stroke-linecap: round; fill: none; }
.w-hitch { fill: var(--paper); stroke-width: 5; }
.w-tire { fill: var(--field-900); }
.w-rim2 { fill: var(--steel); }
.w-hub { fill: var(--paper-2); }
.w-shine { fill: rgba(255, 255, 255, 0.5); animation: shine 5.5s var(--ease) infinite; }
@keyframes shine {
  0%, 100% { transform: translateX(-40px); opacity: 0; }
  45% { opacity: 0.7; }
  70% { transform: translateX(340px); opacity: 0; }
}
.w-spark { fill: var(--harvest); animation: spark 3.4s var(--ease) infinite; transform-origin: center; }
.w-spark--2 { animation-delay: -1.7s; }
@keyframes spark {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  50% { opacity: 1; transform: scale(1); }
}

/* ========================================================================
   8. PASEK MAREK
   ======================================================================== */
.brands {
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands__head {
  text-align: center;
  font-weight: 600;
  color: var(--ink-faint);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
}
.brands__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.7rem 1rem;
}
.brands__track li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.5rem);
  color: var(--ink);
  opacity: 0.55;
  padding: 0.3rem 0.75rem;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.brands__track li:hover { opacity: 1; color: var(--field); }

/* ========================================================================
   9. LICZNIKI
   ======================================================================== */
.stats { padding-block: var(--section-y); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat {
  text-align: center;
  padding: 1rem 0.5rem;
  position: relative;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.75rem; top: 50%;
  transform: translateY(-50%);
  height: 56%;
  width: 1px;
  background: var(--line);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 1.8rem + 3vw, 4rem);
  line-height: 1;
  color: var(--field);
  letter-spacing: -0.02em;
}
.stat__suffix { color: var(--harvest-600); }
.stat__label {
  display: block;
  margin-top: 0.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ========================================================================
   10. KORZYŚCI
   ======================================================================== */
.benefits { padding-block: var(--section-y); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.4vw, 2rem);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
}
.benefit { position: relative; overflow: hidden; }
.benefit::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(224, 163, 62, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity var(--t);
}
.benefit:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: var(--paper);
}
.benefit:hover::before { opacity: 1; }
.benefit__ico {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--field);
  margin-bottom: 1.2rem;
  transition: transform var(--t), background var(--t);
}
.benefit:hover .benefit__ico { transform: rotate(-6deg) scale(1.05); background: var(--field-700); }
.benefit__ico svg {
  width: 27px; height: 27px;
  fill: none;
  stroke: var(--harvest);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit h3 { margin-bottom: 0.5rem; }
.benefit p { color: var(--ink-soft); font-size: 0.98rem; }

/* ========================================================================
   11. PROCES (sekcja ciemna)
   ======================================================================== */
.process {
  position: relative;
  overflow: hidden;
  background: var(--field-900);
  color: var(--paper);
  padding-block: var(--section-y);
}
.process__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 88% 8%, rgba(224, 163, 62, 0.18), transparent 70%),
    radial-gradient(45% 50% at 5% 95%, rgba(44, 89, 56, 0.5), transparent 70%);
}
.process .container { position: relative; z-index: 1; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 2rem;
  border-top: 2px solid var(--line-light);
}
.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--harvest);
  margin-bottom: 0.9rem;
}
.step h3 { color: var(--paper); margin-bottom: 0.5rem; }
.step p { color: rgba(246, 241, 230, 0.72); font-size: 0.98rem; }

/* ========================================================================
   12. CO REMONTUJEMY (2 kolumny)
   ======================================================================== */
.about { padding-block: var(--section-y); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.checklist { display: grid; gap: 0.9rem; margin-top: 2rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.checklist .ico-check { margin-top: 0.28em; }
.checklist strong { color: var(--ink); }
.about__cta { margin-top: 2.2rem; }

/* Zdjęcie / placeholder */
.about__media { margin: 0; }
.shot {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(135deg, var(--field) 0%, var(--field-900) 100%);
  transform: rotate(1.4deg);
  transition: transform var(--t);
}
.about__media:hover .shot { transform: rotate(0); }
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Placeholder pokazywany, gdy nie ma zdjęcia */
.shot__ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  color: rgba(246, 241, 230, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.5rem;
}
.shot__ph svg { width: 56px; height: 56px; fill: none; stroke: var(--harvest); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.shot:not(.shot--empty) .shot__ph { display: none; } /* gdy zdjęcie jest, placeholder ukryty (img na wierzchu) */
.shot__cap {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-faint);
  font-style: italic;
}

/* ========================================================================
   12b. REALIZACJE / PORTFOLIO (efekt przed/po)
   ======================================================================== */
.cases { padding-block: var(--section-y); }
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2.2vw, 1.6rem);
}
.case {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.case:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }

/* Pole zdjęcia z dwoma warstwami: „po" (domyślnie) i „przed" (na hover/focus) */
.case__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--field-900);
}
.case__media:focus-visible { outline: 3px solid var(--harvest-600); outline-offset: -3px; }
.case__img { position: absolute; inset: 0; display: grid; place-items: center; }
.case__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.case__img--after { z-index: 1; background: linear-gradient(140deg, var(--field) 0%, var(--field-900) 100%); }
.case__img--before {
  z-index: 2;
  opacity: 0;
  transition: opacity var(--t);
  background: linear-gradient(140deg, #6e6456 0%, #2c2820 100%); /* zużyty / skorodowany */
}
.case:hover .case__img--before,
.case:focus-within .case__img--before { opacity: 1; }

.case__ph svg { width: 60px; height: 60px; fill: none; stroke: rgba(224, 163, 62, 0.85); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.case__ph--worn svg { stroke: rgba(246, 241, 230, 0.42); }

.case__state {
  position: absolute;
  left: 12px; top: 12px;
  z-index: 3;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.case__state--after { background: var(--harvest); color: var(--ink); }
.case__state--before { background: rgba(20, 39, 27, 0.72); color: var(--paper); }

.case__body { padding: clamp(1.2rem, 2vw, 1.6rem); }
.case__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--field);
  background: rgba(44, 89, 56, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.85rem;
}
.case__body h3 { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.28rem); margin-bottom: 0.5rem; }
.case__body p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1rem; }
.case__meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.case__meta li { font-size: 0.85rem; color: var(--ink-faint); }
.case__meta strong { color: var(--field); font-family: var(--font-display); font-size: 1.02rem; }

.cases__note { text-align: center; margin-top: clamp(2rem, 4vw, 2.8rem); color: var(--ink-soft); }
.cases__note a { color: var(--field); font-weight: 700; border-bottom: 2px solid var(--harvest); }

/* ========================================================================
   13. FAQ (akordeon)
   ======================================================================== */
.faq { padding-block: var(--section-y); }
.faq__list {
  max-width: 50rem;
  margin-inline: auto;
  display: grid;
  gap: 0.8rem;
}
.faq__item {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.faq__item:has(.faq__q[aria-expanded="true"]) {
  border-color: var(--harvest);
  box-shadow: var(--shadow-md);
  background: var(--paper);
}
.faq__h { margin: 0; }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem);
  font-weight: 600;
  color: var(--ink);
  transition: color var(--t-fast);
}
.faq__q:hover { color: var(--field); }
.faq__chev {
  width: 22px; height: 22px;
  flex: none;
  fill: none;
  stroke: var(--field);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--t);
}
.faq__q[aria-expanded="true"] .faq__chev { transform: rotate(180deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t);
}
.faq__a.is-open { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a-inner p {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
}
.faq__link {
  display: inline-block;
  margin-top: 0.3rem;
  color: var(--field);
  font-weight: 700;
  border-bottom: 2px solid var(--harvest);
  transition: color var(--t-fast);
}
.faq__link:hover { color: var(--harvest-600); }

/* ========================================================================
   14. CTA KOŃCOWE + FORMULARZ (sekcja ciemna)
   ======================================================================== */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--field-900);
  color: var(--paper);
  padding-block: var(--section-y);
}
.cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(45% 55% at 80% 90%, rgba(224, 163, 62, 0.2), transparent 70%),
    radial-gradient(50% 55% at 10% 0%, rgba(44, 89, 56, 0.55), transparent 72%);
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.cta__copy h2 { color: var(--paper); }
.cta__copy .btn--call { margin-top: 2rem; }
.cta__contact {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
}
.cta__contact li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(246, 241, 230, 0.82);
  font-weight: 600;
}
.cta__contact .ico { width: 22px; height: 22px; fill: none; stroke: var(--harvest); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.cta__contact a { transition: color var(--t-fast); }
.cta__contact a:hover { color: var(--harvest); }

/* Formularz */
.form {
  background: rgba(246, 241, 230, 0.05);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.form__title { color: var(--paper); margin-bottom: 0.4rem; }
.form__sub { color: rgba(246, 241, 230, 0.7); font-size: 0.95rem; margin-bottom: 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(246, 241, 230, 0.9);
  margin-bottom: 0.4rem;
}
.field__opt { color: rgba(246, 241, 230, 0.5); font-weight: 500; }
.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.98rem;
  color: var(--paper);
  background: rgba(20, 39, 27, 0.5);
  border: 1.5px solid var(--line-light);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(246, 241, 230, 0.4); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--harvest);
  background: rgba(20, 39, 27, 0.7);
  box-shadow: 0 0 0 3px rgba(224, 163, 62, 0.18);
}
/* Walidacja: pole błędne po próbie wysłania */
.field input:user-invalid {
  border-color: #e07a5f;
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.15);
}
.form__note { margin-top: 1rem; text-align: center; font-size: 0.9rem; color: rgba(246, 241, 230, 0.7); }
.form__note a { color: var(--harvest); font-weight: 700; }

/* Stan sukcesu */
.form__success {
  text-align: center;
  padding: 2rem 1rem;
  animation: pop 0.5s var(--ease);
}
.form__success h3 { color: var(--paper); margin-bottom: 0.6rem; }
.form__success p { color: rgba(246, 241, 230, 0.8); margin-bottom: 0.6rem; }
.form__success-ico {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--harvest);
}
.form__success-ico svg { width: 32px; height: 32px; fill: none; stroke: var(--ink); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.form__success-call { margin-top: 1.4rem; }
.form__success-call .btn { margin-top: 0.8rem; }
@keyframes pop {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ========================================================================
   15. STOPKA
   ======================================================================== */
.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.brand--footer { margin-right: 0; }
.footer__desc { margin-top: 1rem; color: var(--ink-soft); max-width: 26rem; font-size: 0.98rem; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.footer__col ul { display: grid; gap: 0.6rem; }
.footer__col a, .footer__col li { color: var(--ink-soft); font-size: 0.96rem; transition: color var(--t-fast); }
.footer__col a:hover { color: var(--field); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.88rem;
  color: var(--ink-faint);
}
.footer__top-link { font-weight: 700; transition: color var(--t-fast); }
.footer__top-link:hover { color: var(--field); }

/* ========================================================================
   16. ANIMACJE WEJŚCIA (reveal)
   ======================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ========================================================================
   17. DOSTĘPNOŚĆ / prefers-reduced-motion
   ======================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ========================================================================
   18. RESPONSYWNOŚĆ
   ======================================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { max-width: 460px; margin-inline: auto; order: 2; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .cta__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }      /* na mobile telefon jest w menu */
  .nav__toggle { display: block; }
}

@media (max-width: 760px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .stat:nth-child(2)::after { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__media { max-width: 380px; margin-inline: auto; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
}

@media (max-width: 560px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .stat::after { display: none !important; }
  .hero__cta .btn { width: 100%; }
  .hero__chip--1 { right: 0; top: 2%; }
  .hero__chip--2 { left: 0; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 380px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* ========================================================================
   19. ARTYKUŁ / PORADNIK (podstrony blogowe)
   ======================================================================== */
.article { padding-block: clamp(2.4rem, 5vw, 4rem) var(--section-y); }
.article__inner { max-width: 760px; margin-inline: auto; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-bottom: 1.8rem;
}
.breadcrumb a { color: var(--ink-soft); font-weight: 600; transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--field); }
.breadcrumb span { color: var(--paper-3); }

.article h1 {
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.1rem);
  line-height: 1.06;
  margin-bottom: 1rem;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: var(--ink-faint);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2.2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.article__meta span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* Treść artykułu */
.prose > * + * { margin-top: 1.1rem; }
.prose p { color: #38462f; }
.prose h2 {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.95rem);
  color: var(--field);
  margin-top: 2.6rem;
  line-height: 1.15;
}
.prose h3 { margin-top: 1.6rem; }
.prose strong { color: var(--ink); }
.prose a {
  color: var(--field);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--harvest);
  text-underline-offset: 3px;
}
.prose ul { list-style: none; display: grid; gap: 0.6rem; }
.prose ul li { position: relative; padding-left: 1.5rem; color: #38462f; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0.25rem; top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--harvest);
}

/* Wyróżniony blok (TL;DR / wniosek) */
.callout {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--harvest);
  border-radius: var(--r);
  padding: 1.3rem 1.5rem;
}
.callout h3 { margin: 0 0 0.4rem; color: var(--field); }
.callout p { margin: 0; color: var(--ink-soft); }

/* Tabela cen (z poziomym przewijaniem na małych ekranach) */
.table-wrap { overflow-x: auto; margin-block: 0.4rem; -webkit-overflow-scrolling: touch; }
.price-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; min-width: 420px; }
.price-table th, .price-table td { text-align: left; padding: 0.75rem 0.95rem; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--field); color: var(--paper); font-weight: 700; }
.price-table tbody tr:nth-child(even) { background: var(--paper-2); }
.price-table td:last-child { font-weight: 700; color: var(--field); white-space: nowrap; }

/* CTA w artykule */
.article-cta {
  margin-top: 2.6rem;
  background: var(--field-900);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
}
.article-cta h2 { color: var(--paper); margin: 0 0 0.6rem; }
.article-cta p { color: rgba(246, 241, 230, 0.8); margin: 0 auto 1.4rem; max-width: 34rem; }

/* Nagłówek uproszczony (artykuł) */
.subheader { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.subheader .brand__text { white-space: nowrap; }
.subheader .btn { padding: 0.7em 1.2em; font-size: 0.92rem; }
/* Na małych ekranach przycisk telefonu jako ikona, by logo zmieściło się w jednej linii */
@media (max-width: 460px) {
  .subheader .brand { font-size: 1.02rem; }
  .subheader .btn span { display: none; }
  .subheader .btn { padding: 0.7em 0.85em; }
}

.article__note {
  margin-top: 2.4rem;
  padding: 1rem 1.2rem;
  background: var(--paper-2);
  border: 1px dashed var(--paper-3);
  border-radius: var(--r);
  font-size: 0.88rem;
  color: var(--ink-faint);
}
