/* ==========================================================================
   AUTO 303 — arkusz stylów
   Bez zewnętrznych zasobów: brak Google Fonts, brak CDN, brak trackerów.
   To decyzja świadoma — każdy zewnętrzny zasób to transfer IP użytkownika do
   osoby trzeciej, czyli powierzenie danych i wpis do polityki prywatności.
   Krój pisma: systemowy stack (natywny wygląd, zero requestów, zero CLS).
   ========================================================================== */

/* --- 1. Tokeny ---------------------------------------------------------- */
:root {
  /* Kolory */
  --ink:        #0E1116;   /* tło ciemnych sekcji */
  --ink-2:      #161B22;   /* karty na ciemnym */
  --ink-3:      #232B36;   /* obramowania na ciemnym */
  --amber:      #F5A524;   /* akcent — tylko na ciemnym tle */
  --amber-ink:  #8A4F03;   /* akcent na jasnym tle (kontrast AA na bieli) */
  --paper:      #FFFFFF;
  --paper-2:    #F5F7F9;
  --line:       #E2E6EA;
  --text:       #14181D;
  --text-mut:   #5B6672;   /* 5.6:1 na bieli */
  --on-ink:     #F4F6F8;
  --on-ink-mut: #A6B0BC;   /* 7.3:1 na --ink */
  --ok:         #1B7F4B;
  --err:        #B3261E;

  /* Rytm */
  --max:      1180px;
  --gutter:   clamp(1.25rem, 4vw, 2.5rem);
  --sect-y:   clamp(3.5rem, 9vw, 6.5rem);
  --radius:   14px;
  --radius-s: 9px;

  /* Typografia — skala płynna */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
  --fs-hero: clamp(2.1rem, 1.2rem + 3.9vw, 4.1rem);
  --fs-h2:   clamp(1.6rem, 1.1rem + 2.1vw, 2.6rem);
  --fs-h3:   clamp(1.12rem, 1rem + 0.5vw, 1.35rem);
  --fs-lead: clamp(1.05rem, 0.98rem + 0.45vw, 1.3rem);
  --fs-sm:   0.9rem;
  --fs-xs:   0.8rem;

  --shadow:    0 1px 2px rgba(14,17,22,.05), 0 8px 24px -12px rgba(14,17,22,.16);
  --shadow-lg: 0 2px 4px rgba(14,17,22,.06), 0 20px 48px -18px rgba(14,17,22,.28);
  --ring: 3px solid var(--amber-ink);
}

/* --- 2. Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}
body {
  margin: 0; font-family: var(--font); color: var(--text);
  background: var(--paper); line-height: 1.62;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.14; margin: 0 0 .5em; letter-spacing: -.021em;
                 text-wrap: balance; font-weight: 800; }
p { margin: 0 0 1em; text-wrap: pretty; }
a { color: inherit; }
:focus-visible { outline: var(--ring); outline-offset: 3px; border-radius: 4px; }

/* --- 3. Układ ----------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto;
        padding-inline: var(--gutter); }
.sect { padding-block: var(--sect-y); }
.sect--paper2 { background: var(--paper-2); border-block: 1px solid var(--line); }
.sect--ink { background: var(--ink); color: var(--on-ink); }
.sect--ink h2 { color: var(--on-ink); }
.sect--ink p  { color: var(--on-ink-mut); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--amber); color: var(--ink); padding: .75rem 1.25rem;
  font-weight: 700; border-radius: 0 0 var(--radius-s) 0;
}
.skip:focus { left: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: var(--amber-ink); margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px;
                   background: currentColor; border-radius: 2px; }
.sect--ink .eyebrow { color: var(--amber); }

.lead { font-size: var(--fs-lead); color: var(--text-mut); max-width: 62ch; }
.sect--ink .lead { color: var(--on-ink-mut); }

/* --- 4. Przyciski ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: var(--radius-s); border: 2px solid transparent;
  font: inherit; font-weight: 700; font-size: 1rem; text-decoration: none;
  cursor: pointer; transition: transform .12s ease, background-color .18s ease,
                               border-color .18s ease, color .18s ease;
  min-height: 48px; /* cel dotykowy */
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: #FFB93F; }
.btn--ghost { border-color: currentColor; color: var(--on-ink); }
.btn--ghost:hover { background: rgba(244,246,248,.1); }
.btn--dark { background: var(--ink); color: var(--on-ink); }
.btn--dark:hover { background: #202833; }
.btn--wide { width: 100%; }

/* --- 5. Nagłówek -------------------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 50; background: var(--ink);
  border-bottom: 1px solid var(--ink-3);
}
.hdr__in { display: flex; align-items: center; gap: 1.25rem;
           min-height: 72px; padding-block: .6rem; }
.hdr__logo { display: block; flex: 0 0 auto; }
.hdr__logo svg, .hdr__logo img { height: 40px; width: auto; }
.hdr__nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.hdr__nav a {
  color: var(--on-ink-mut); text-decoration: none; font-weight: 600;
  font-size: .95rem; padding: .55rem .8rem; border-radius: 7px;
  transition: color .15s ease, background-color .15s ease;
}
.hdr__nav a:hover { color: var(--on-ink); background: rgba(244,246,248,.07); }
.hdr__tel {
  display: inline-flex; align-items: center; gap: .5rem; margin-left: .5rem;
  background: var(--amber); color: var(--ink) !important; font-weight: 800;
  padding: .6rem 1.05rem !important; border-radius: var(--radius-s);
  white-space: nowrap; min-height: 44px;
}
.hdr__tel:hover { background: #FFB93F !important; }
.hdr__burger { display: none; }

@media (max-width: 860px) {
  .hdr__nav a:not(.hdr__tel) { display: none; }
  .hdr__logo svg, .hdr__logo img { height: 32px; }
  .hdr__tel { font-size: .92rem; }
}

/* Wąskie telefony (iPhone SE, Galaxy Fold złożony — 320 px).
   Logo + przycisk z numerem nie mieszczą się obok siebie i wypychają
   stronę w bok o kilka pikseli. Numer zostaje widoczny — to główne
   wezwanie do działania na telefonie — więc ścieśniamy logo i przycisk,
   a nie chowamy telefon. */
@media (max-width: 380px) {
  .hdr__in { gap: .6rem; }
  .hdr__logo svg, .hdr__logo img { height: 27px; }
  .hdr__tel { font-size: .86rem; gap: .35rem; padding: .55rem .7rem !important; }
}

/* --- 6. Hero ------------------------------------------------------------ */
.hero {
  background: var(--ink); color: var(--on-ink); position: relative;
  overflow: hidden; padding-block: clamp(3rem, 8vw, 6rem) clamp(3rem, 7vw, 5rem);
}
/* Delikatna „poświata reflektora" — czysty CSS, zero obrazków do pobrania */
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 130%;
  background: radial-gradient(58% 52% at 24% 12%, rgba(245,165,36,.16), transparent 68%);
  pointer-events: none;
}
.hero__in { position: relative; display: grid; gap: clamp(2rem, 5vw, 3.5rem);
            grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
            align-items: center; }
@media (max-width: 900px) { .hero__in { grid-template-columns: 1fr; } }

.hero h1 { font-size: var(--fs-hero); color: var(--on-ink);
           letter-spacing: -.032em; margin-bottom: .45em; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero__lead { font-size: var(--fs-lead); color: var(--on-ink-mut);
              max-width: 54ch; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.25rem; }

.hero__facts { display: flex; flex-wrap: wrap; gap: 1.75rem 2.5rem;
               border-top: 1px solid var(--ink-3); padding-top: 1.5rem; }
.fact__n { font-size: 1.7rem; font-weight: 800; color: var(--amber);
           line-height: 1.1; letter-spacing: -.02em; }
.fact__l { font-size: var(--fs-xs); color: var(--on-ink-mut);
           text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }

/* Karta „szybka wycena" w hero */
.quickcard {
  background: var(--ink-2); border: 1px solid var(--ink-3);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
}
.quickcard h2 { font-size: var(--fs-h3); color: var(--on-ink); margin-bottom: .35em; }
.quickcard p  { font-size: var(--fs-sm); color: var(--on-ink-mut); margin-bottom: 1.35rem; }
.quickcard ul { list-style: none; margin: 0 0 1.5rem; padding: 0;
                display: grid; gap: .7rem; }
.quickcard li { display: flex; gap: .7rem; align-items: flex-start;
                font-size: .95rem; color: var(--on-ink); }
.quickcard li::before {
  content: ""; flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px;
  border-radius: 50%; background: rgba(245,165,36,.16);
  /* „ptaszek" jako maska SVG w data: URI — bez dodatkowego requestu */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-6.5' fill='none' stroke='%23F5A524' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* --- 7. Siatki i karty -------------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 860px) { .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.3rem, 2.4vw, 1.75rem);
  box-shadow: var(--shadow);
}
.card h3 { font-size: var(--fs-h3); margin-bottom: .4em; }
.card p  { font-size: .96rem; color: var(--text-mut); margin: 0; }
.card__ico {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 1.1rem;
  display: grid; place-items: center; background: #FFF3DE; color: var(--amber-ink);
}
.card__ico svg { width: 23px; height: 23px; }

/* Kroki procesu */
.steps { counter-reset: krok; margin-top: 2.75rem; }
.step { position: relative; padding-left: 4rem; }
.step::before {
  counter-increment: krok; content: counter(krok, decimal-leading-zero);
  position: absolute; left: 0; top: -.15rem;
  font-size: 1.5rem; font-weight: 800; color: var(--amber-ink);
  font-variant-numeric: tabular-nums;
}
.step::after {
  content: ""; position: absolute; left: .3rem; top: 2.2rem; bottom: -1.2rem;
  width: 2px; background: var(--line);
}
.step:last-child::after { display: none; }
.step h3 { font-size: var(--fs-h3); margin-bottom: .3em; }
.step p  { color: var(--text-mut); font-size: .96rem; margin: 0; }
@media (min-width: 861px) { .step::after { display: none; } }

/* --- 8. Oferty ---------------------------------------------------------- */
.oferta {
  display: flex; flex-direction: column; overflow: hidden; padding: 0;
  transition: transform .16s ease, box-shadow .16s ease;
}
.oferta:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.oferta__foto { aspect-ratio: 4 / 3; background: var(--paper-2);
                border-bottom: 1px solid var(--line); object-fit: cover; width: 100%; }
.oferta__body { padding: 1.25rem 1.35rem 1.45rem; display: flex;
                flex-direction: column; flex: 1; }
.oferta__tyt { font-size: 1.1rem; font-weight: 800; margin-bottom: .3rem; }
.oferta__meta { display: flex; flex-wrap: wrap; gap: .4rem .85rem;
                font-size: var(--fs-sm); color: var(--text-mut); margin-bottom: 1rem; }
.oferta__cena { margin-top: auto; font-size: 1.45rem; font-weight: 800;
                letter-spacing: -.02em; }
.oferta__cena small { display: block; font-size: var(--fs-xs); font-weight: 600;
                      color: var(--text-mut); letter-spacing: 0; }

.pusto {
  border: 2px dashed var(--line); border-radius: var(--radius);
  padding: clamp(2.25rem, 6vw, 3.75rem) var(--gutter); text-align: center;
  background: var(--paper);
}
.pusto h3 { font-size: var(--fs-h3); margin-bottom: .5em; }
.pusto p  { color: var(--text-mut); max-width: 52ch; margin-inline: auto; }

/* --- 9. FAQ ------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); margin-top: 2.5rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.35rem 3rem 1.35rem 0;
  font-weight: 700; font-size: 1.05rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .35rem; top: 1.7rem;
  width: 13px; height: 13px; border-right: 2.5px solid var(--amber-ink);
  border-bottom: 2.5px solid var(--amber-ink); transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.95rem; }
.faq details > div { padding-bottom: 1.5rem; color: var(--text-mut); max-width: 78ch; }
.faq details > div > :last-child { margin-bottom: 0; }

/* --- 10. Formularz ------------------------------------------------------ */
.kontakt__in { display: grid; gap: clamp(2rem, 5vw, 3.5rem);
               grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }
@media (max-width: 900px) { .kontakt__in { grid-template-columns: 1fr; } }

.dane { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.4rem; }
.dane dt { font-size: var(--fs-xs); text-transform: uppercase;
           letter-spacing: .08em; font-weight: 700; color: var(--amber);
           margin-bottom: .2rem; }
.dane dd { margin: 0; font-size: 1.05rem; color: var(--on-ink); }
.dane a { color: var(--on-ink); text-decoration-color: rgba(244,246,248,.35);
          text-underline-offset: 3px; }
.dane a:hover { color: var(--amber); }

.form { background: var(--ink-2); border: 1px solid var(--ink-3);
        border-radius: var(--radius); padding: clamp(1.5rem, 3.5vw, 2.25rem); }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr;
             margin-bottom: 1.1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.form__row .field { margin-bottom: 0; }
.field label { font-size: var(--fs-sm); font-weight: 700; color: var(--on-ink);
               margin-bottom: .45rem; }
.field label .req { color: var(--amber); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--on-ink);
  background: #0F141A; border: 1.5px solid var(--ink-3);
  border-radius: var(--radius-s); padding: .8rem .95rem; min-height: 48px;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: #6B7681; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,165,36,.22);
}
.field[data-blad="tak"] input, .field[data-blad="tak"] select,
.field[data-blad="tak"] textarea { border-color: #E4655C; }
.field__blad { font-size: var(--fs-xs); color: #F0938B; margin-top: .4rem;
               min-height: 1.1em; }

.zgoda { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1.4rem; }
.zgoda input { flex: 0 0 auto; width: 22px; height: 22px; min-height: 0;
               margin-top: .15rem; accent-color: var(--amber); }
.zgoda label { font-size: var(--fs-xs); color: var(--on-ink-mut);
               line-height: 1.55; font-weight: 400; }
.zgoda a { color: var(--amber); }

/* Honeypot — niewidoczny dla ludzi, widoczny dla botów.
   Bez `display:none` — część botów pomija ukryte pola. */
.hp { position: absolute !important; left: -9999px !important;
      width: 1px !important; height: 1px !important; overflow: hidden !important; }

.form__stopka { font-size: var(--fs-xs); color: var(--on-ink-mut);
                margin: 1rem 0 0; }
.form__status { border-radius: var(--radius-s); padding: .95rem 1.15rem;
                margin-bottom: 1.25rem; font-size: .95rem; font-weight: 600;
                display: none; }
.form__status[data-typ="ok"]    { display: block; background: rgba(27,127,75,.16);
                                  color: #6BD79C; border: 1px solid rgba(27,127,75,.4); }
.form__status[data-typ="blad"]  { display: block; background: rgba(179,38,30,.16);
                                  color: #F0938B; border: 1px solid rgba(179,38,30,.45); }

/* --- 11. Stopka --------------------------------------------------------- */
.ftr { background: var(--ink); color: var(--on-ink-mut);
       border-top: 1px solid var(--ink-3); padding-block: clamp(2.5rem,6vw,4rem) 2rem; }
.ftr__in { display: grid; gap: 2.5rem;
           grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr)); }
@media (max-width: 860px) { .ftr__in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ftr__in { grid-template-columns: 1fr; } }
.ftr svg, .ftr img { height: 38px; width: auto; margin-bottom: 1.25rem; }
.ftr h3 { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .1em;
          color: var(--on-ink); margin-bottom: 1rem; }
.ftr ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.ftr a { color: var(--on-ink-mut); text-decoration: none; font-size: .95rem; }
.ftr a:hover { color: var(--amber); text-decoration: underline;
               text-underline-offset: 3px; }
.ftr__prawne { font-size: var(--fs-xs); line-height: 1.75; }
.ftr__prawne strong { color: var(--on-ink); }
.ftr__dol { margin-top: 2.5rem; padding-top: 1.5rem;
            border-top: 1px solid var(--ink-3); display: flex; flex-wrap: wrap;
            gap: .6rem 1.5rem; justify-content: space-between;
            font-size: var(--fs-xs); }

/* --- 12. Strony treściowe (polityka prywatności itp.) ------------------- */
.proza { max-width: 76ch; }
.proza h2 { font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.8rem); margin-top: 2.5em; }
.proza h2:first-of-type { margin-top: 0; }
.proza h3 { font-size: var(--fs-h3); margin-top: 1.9em; }
.proza ul, .proza ol { padding-left: 1.35rem; margin: 0 0 1.15em; }
.proza li { margin-bottom: .5em; }
.proza table { width: 100%; border-collapse: collapse; margin: 0 0 1.5em;
               font-size: .95rem; }
.proza th, .proza td { text-align: left; padding: .7rem .85rem;
                       border: 1px solid var(--line); vertical-align: top; }
.proza th { background: var(--paper-2); font-weight: 700; }
.proza__scroll { overflow-x: auto; }

/* --- 13. Druk ----------------------------------------------------------- */
@media print {
  .hdr, .hero__cta, .form, .skip { display: none !important; }
  body { color: #000; background: #fff; }
  .sect--ink, .hero, .ftr { background: #fff !important; color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}

/* --- 14. Warsztat i cennik --------------------------------------------- */
.cennik__spis {
  display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin-bottom: 2.5rem;
  padding: 1.1rem 1.25rem; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: var(--fs-sm);
}
.cennik__spis a { color: var(--amber-ink); text-decoration: none; font-weight: 600; }
.cennik__spis a:hover { text-decoration: underline; text-underline-offset: 3px; }

table.cennik { width: 100%; border-collapse: collapse; margin: 0 0 2.25rem;
               font-size: .94rem; }
table.cennik th, table.cennik td {
  text-align: left; padding: .62rem .8rem; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.cennik th { background: var(--paper-2); font-weight: 700; white-space: nowrap;
                  position: sticky; top: 72px; z-index: 1; }
table.cennik td.num { text-align: right; white-space: nowrap;
                      font-variant-numeric: tabular-nums; }
table.cennik td.uwaga { color: var(--text-mut); font-size: .87rem; }
table.cennik tbody tr:hover { background: #FFFCF5; }
.cennik__zastrz { font-size: var(--fs-xs); color: var(--text-mut);
                  border-top: 1px solid var(--line); padding-top: 1.25rem; }

/* Cennik-skrót na stronie warsztatu */
.ceny { display: grid; gap: 0; border: 1px solid var(--line);
        border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.ceny__w { display: flex; align-items: baseline; gap: 1rem; padding: .85rem 1.15rem;
           border-bottom: 1px solid var(--line); }
.ceny__w:last-child { border-bottom: 0; }
.ceny__n { flex: 1; min-width: 0; }
.ceny__c { font-weight: 800; white-space: nowrap; font-variant-numeric: tabular-nums; }
.ceny__c small { display: block; font-weight: 500; font-size: var(--fs-xs);
                 color: var(--text-mut); text-align: right; }

/* Lista „czego NIE robimy" — czytana jako ostrzeżenie, nie jako brak */
.niedost { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.niedost li { display: flex; gap: .85rem; align-items: flex-start;
              font-size: .96rem; color: var(--on-ink-mut); }
.niedost li::before {
  content: ""; flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px;
  border-radius: 50%; background: rgba(244,246,248,.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6.5 6.5l7 7M13.5 6.5l-7 7' fill='none' stroke='%23A6B0BC' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.niedost strong { color: var(--on-ink); }

/* Miejsce na PRAWDZIWE zdjęcia warsztatu — do czasu sesji zdjęciowej
   pokazujemy neutralny placeholder zamiast zdjęcia z banku/AI. */
.foto-slot {
  aspect-ratio: 16 / 10; border: 2px dashed var(--ink-3); border-radius: var(--radius);
  display: grid; place-items: center; text-align: center; padding: 2rem;
  color: var(--on-ink-mut); font-size: var(--fs-sm); background: var(--ink-2);
}

/* --- 15. Klasy zamiast atrybutów style="" ------------------------------
   To NIE jest kwestia porządku w kodzie, tylko warunek działania strony
   na produkcji. Nagłówek Content-Security-Policy w serwer/nginx-auto303.conf
   ma `style-src 'self'` BEZ 'unsafe-inline', więc przeglądarka blokuje każdy
   atrybut style="" — element traci wtedy cały swój styl.
   Objaw jest podstępny: lokalnie (python -m http.server, bez CSP) strona
   wygląda dobrze i rozjeżdża się dopiero po wgraniu na serwer.
   Zasada: żadnego style="" w HTML. Nowy wyjątek = nowa klasa tutaj.
   ---------------------------------------------------------------------- */

/* Odstępy akapitów wiodących i przycisków */
.lead--luz    { margin-bottom: 2.75rem; }
.lead--luz-xl { margin-bottom: 3rem; }
.lead--zwarty { margin-bottom: 0; }
.lead--srodek { margin-inline: auto; }
.p--gora-s    { margin-top: 1.5rem; }
.p--gora-m    { margin-top: 2rem; }
.p--gora-l    { margin-top: 3rem; }

/* Wyróżnienia w tekście — na ciemnym i na jasnym tle */
.mocny--jasny  { color: var(--on-ink); }
.mocny--ciemny { color: var(--text); }

/* Siatka dwukolumnowa z szerszą rynną (sekcje „Skup aut" i „O nas") */
.grid--szer   { gap: clamp(2rem, 5vw, 4rem); }
.grid--srodek { align-items: center; }

/* Opis w karcie oferty */
.oferta__opis { font-size: .95rem; margin-bottom: 1rem; }

/* Blok identyfikacyjny sprzedawcy — obowiązek z art. 5 uśude */
.dane-firmy {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--ink-3);
  font-size: var(--fs-xs); color: var(--on-ink-mut); line-height: 1.8;
}
.dane-firmy strong { color: var(--on-ink); }
.dane-firmy a      { color: var(--on-ink-mut); }

/* Formularz kontaktowy */
.form__tyt  { color: var(--on-ink); font-size: var(--fs-h3); margin-bottom: 1.5rem; }
.label__opc { font-weight: 400; color: var(--on-ink-mut); }
.field__blad--zgoda { margin-top: -.9rem; display: block; }

/* Strony prozy — regulamin, polityka prywatności */
.proza__h1        { font-size: var(--fs-h2); max-width: 26ch; }
.proza__h1--waski { max-width: 22ch; }

/* Strona 404 */
.sect--pelny { min-height: 100vh; display: grid; place-items: center; }
.srodek      { text-align: center; }
.blad__logo  { display: block; margin: 0 auto 2.5rem; }
.blad__tyt   { color: var(--on-ink); font-size: var(--fs-h2); }
.blad__akcje { margin-top: 2rem; display: flex; gap: .85rem;
               justify-content: center; flex-wrap: wrap; }

/* Zastrzeżenie prawne pod sekcją (finansowanie) — ma być czytelne,
   ale wyraźnie podrzędne wobec treści. Nie zmniejszaj poniżej --fs-xs:
   nieczytelny drobny druk to dokładnie to, co UOKiK kwestionuje. */
.drobne { margin-top: 2.25rem; padding-top: 1.25rem;
          border-top: 1px solid var(--line);
          font-size: var(--fs-xs); color: var(--text-mut);
          line-height: 1.75; max-width: 78ch; }
.sect--ink .drobne { border-top-color: var(--ink-3); color: var(--on-ink-mut); }
