/* ============================================================
   PEŁNA STRONA — sześć kadrów żywego komiksu (tusz + ruch 2.5D
   + treść HTML). Zero frameworków, zero fontów zewnętrznych,
   zero builda. Jeden ciągły pionowy scroll: sześć nieruchomych
   teł (position:fixed) nakłada się/zanika (crossfade) zależnie
   od tego, która sekcja treści jest w viewporcie — treść zawsze
   przewija się NAD nimi.
   ============================================================ */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;   /* płynny scroll dla scrollIntoView i kotwic */
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;         /* zero poziomego scrolla */
  background: #0c0b09;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #141210;
  /* UWAGA: celowo BEZ overflow-y:hidden — pionowy scroll musi działać. */
}

/* ---------- EKRAN ŁADOWANIA (preloader) ---------- */
/* Domyślnie UKRYTY (display:none) — jeśli JS się nie wykona (albo padnie),
   strona nigdy nie zostaje zablokowana ekranem ładowania. Dopiero klasa
   "js" na <html> (dodawana natychmiast w <head>) go włącza; main.js chowa
   go (fade + display:none) po załadowaniu kadru okładki albo po ~5 s. */
#preloader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #0c0b09;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.js #preloader { display: flex; }

#preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-panel {
  max-width: 320px;
  width: 100%;
  text-align: center;
  animation: preloader-pulse 1.6s ease-in-out infinite;
}

.preloader-mark {
  margin: 0 0 6px;
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #ff4136;
}

.preloader-brand {
  margin: 0 0 14px;
  font-family: "Arial Black", Impact, "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
  font-size: 1.05rem;
}

.preloader-status {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b8261f;
}

.preloader-dots { display: inline-block; width: 1.4em; text-align: left; }

.preloader-bar {
  height: 10px;
  border: 2px solid #141210;
  background: #fff;
  overflow: hidden;
}

.preloader-bar-fill {
  display: block;
  height: 100%;
  width: 40%;
  background: #141210;
  animation: preloader-slide 1.1s ease-in-out infinite;
}

@keyframes preloader-slide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

@keyframes preloader-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.015); }
}

/* ---------- STOS SCEN TŁA (nieruchome, crossfade) ---------- */

#scene-bgs {
  position: fixed;
  inset: 0;
  z-index: 1;
}

.scene-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;           /* przycina najazd/paralaksę, żeby nie odsłonić krawędzi */
  background: #000;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.scene-bg.is-active {
  opacity: 1;
  z-index: 2;                 /* aktywna warstwa nad pozostałymi w trakcie fade'u */
}

.bg-zoom {
  position: absolute;
  inset: -3%;                 /* lekki naddatek, żeby zoom/paralaksa nie odsłoniły krawędzi */
  transform-origin: 50% 45%;
  animation: kenburns 18s ease-in-out infinite alternate;
  animation-play-state: paused;   /* najazd chodzi TYLKO na aktywnej scenie */
}
.scene-bg.is-active .bg-zoom { animation-play-state: running; }

.bg-parallax {
  position: absolute;
  inset: 0;
  transform: translate(var(--px, 0px), var(--py, 0px));
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.bg-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  user-select: none;
  -webkit-user-drag: none;
}

/* Kadr 1 (okładka): sylwetka z czerwonymi oczami jest przesunięta w lewo —
   na wąskich/pionowych ekranach domyślne centrowanie by ją ucięło. */
.scene-bg[data-scene="1"] .bg-img { object-position: 27% 38%; }
/* Kadr 3 (rządowa): utrzymaj oba pierwszoplanowe bloki budynków w kadrze. */
.scene-bg[data-scene="3"] .bg-img { object-position: 42% 55%; }

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* ---------- NAKŁADKI UNIFIKUJĄCE ---------- */

#grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 15;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  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='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

#vignette-overlay {
  position: fixed;
  inset: 0;
  z-index: 16;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 45%,
      rgba(0, 0, 0, 0) 55%,
      rgba(246, 241, 227, 0.22) 88%,
      rgba(246, 241, 227, 0.4) 100%);
}

/* ---------- PASEK MARKI ---------- */

#brand-bar {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 40;
}

#brand-bar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f1e4;
  border: 3px solid #141210;
  padding: 6px 12px;
  box-shadow: 4px 4px 0 #141210;
  cursor: pointer;
  font: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
#brand-bar-btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 #141210; }
#brand-bar-btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 #141210; }

.brand-mark {
  background: #141210;
  color: #f5f1e4;
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 2px 6px;
  letter-spacing: 0.03em;
}

.brand-text {
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-weight: 900;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #141210;
}

/* ---------- INDEKS SCEN (nawigacja pionowa) ---------- */

#scene-nav {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
}

#scene-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

#scene-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  text-decoration: none;
  color: #f5f1e4;
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 0 8px rgba(0, 0, 0, 0.6);
}

#scene-nav .dot {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(245, 241, 228, 0.4);
  border: 2px solid #141210;
  box-shadow: 0 0 0 1px rgba(245, 241, 228, 0.55);
  transition: background 0.2s ease, transform 0.2s ease;
}

#scene-nav a:hover .dot { transform: scale(1.15); }

#scene-nav a.is-active .dot {
  background: #ff4136;
  transform: scale(1.3);
}
#scene-nav a.is-active .label { color: #ff4136; }

/* ---------- PRZEWIJANA TREŚĆ (ponad scenami tła) ---------- */

#page {
  position: relative;
  z-index: 20;               /* ponad #scene-bgs(1/2) i nakładkami (15/16) */
}

.scene {
  position: relative;
  min-height: 100vh;
  scroll-margin-top: 12px;    /* żeby scrollIntoView nie chował górnej krawędzi */
}

/* "Beat obrazu" — na desktopie w ogóle nie istnieje wizualnie (schowany);
   na wąskich ekranach (patrz media query niżej) staje się przezroczystą
   strefą na starcie sceny, przez którą widać pełną ilustrację tła. */
.scene-beat { display: none; }

/* Wspólny styl "kadru komiksu": papier, gruby czarny obrys, offsetowy cień —
   treść musi być czytelna nad ciemnym miastem, więc tło jest NIEPRZEZROCZYSTE. */
.comic-panel {
  background: #f5f1e4;
  border: 3px solid #141210;
  box-shadow: 9px 9px 0 rgba(20, 18, 16, 0.9);
  padding: 20px 24px;
  color: #201d19;
}

/* ---------- SCENA 1: OKŁADKA ---------- */

.scene-cover {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.hero-panel {
  max-width: 440px;
  animation: slidein 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-neon {
  display: inline-block;
  margin: 0 0 14px;
  padding: 10px 14px;
  background: #141210;
  border: 2px solid #ff4136;
  color: #ff4136;
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(255, 45, 40, 0.85),
    0 0 18px rgba(255, 45, 40, 0.55),
    0 0 34px rgba(255, 45, 40, 0.3);
}

.hero-kicker {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b8261f;
}

.hero-title {
  margin: 0 0 14px;
  font-family: "Arial Black", Impact, "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1.16;
  text-transform: uppercase;
}

.hero-panel .hero-lead {
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.45;
}

.next-btn {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  background: #fff;
  border: 2px solid #141210;
  padding: 7px 16px;
  cursor: pointer;
  box-shadow: 3px 3px 0 #141210;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.next-btn:hover   { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #141210; }
.next-btn:active,
.next-btn.nudge   { transform: translate(2px, 2px);   box-shadow: 1px 1px 0 #141210; }

/* Wskaźnik scrolla — osobny od CTA, przewija tylko o jedną scenę dalej */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  color: #f5f1e4;
  font-family: "Arial Black", Impact, Arial, sans-serif;
  text-shadow: 0 0 6px rgba(0,0,0,0.9), 0 1px 2px rgba(0,0,0,0.9);
}
.scroll-cue-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-cue-arrow {
  font-size: 1.4rem;
  line-height: 1;
  animation: bob 1.6s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

@keyframes slidein {
  from { transform: translateX(-130%); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}

/* ---------- SCENY 2–6: KOLUMNA TREŚCI (intro + panele) ---------- */

.scene-body {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}

.scene-intro {
  max-width: 640px;
  margin: 0 0 40px;
}

.scene-intro h2 {
  margin: 0 0 12px;
  font-family: "Arial Black", Impact, "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  border-bottom: 3px solid #141210;
  padding-bottom: 10px;
}

.scene-intro p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.job-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.job-co {
  margin: 0;
  font-family: "Arial Black", Impact, "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.job-meta {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #b8261f;             /* akcent czerwony, spójny z neonem marki */
}

.job-desc {
  margin: 4px 0 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

/* Cytat/akcent — panel 2 (Wieża AI) */
.quote-panel {
  max-width: 640px;
  margin: 32px 0 0;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
}
.quote-panel p { margin: 0; }
.quote-panel .quote-source { margin-top: 10px; font-style: normal; font-size: 0.85rem; }

.scene-next {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.scene-next p {
  margin: 0;
  font-size: 0.92rem;
  font-style: italic;
}

/* ---------- SCENA 6: PORTRET + WSTĘP ("twarz za biurkiem") ---------- */
/* Wiersz: portret (komiksowy panel ze zdjęciem + podpisem) obok wstępu.
   Na wąskich ekranach (patrz media query niżej) kolumna — portret NAD
   wstępem, bo w kodzie stoi jako pierwszy element. Formularz pod spodem
   pozostaje nienaruszony. */
.contact-top {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin: 0 0 40px;
}

/* Nadpisuje ogólny margines .scene-intro (0 0 40px) — w tym układzie
   margines dolny "niesie" cały wiersz .contact-top, nie sam wstęp. */
.contact-top .scene-intro { margin: 0; flex: 1 1 auto; min-width: 0; }

.portrait-panel {
  flex: 0 0 170px;
  margin: 0;
  padding: 12px;
  text-align: center;
}

.portrait-img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid #141210;
}

.portrait-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
}

.portrait-name {
  font-family: "Arial Black", Impact, "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.portrait-role {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #b8261f;
}

/* ---------- SCENA 6: FORMULARZ KONTAKTOWY ---------- */

.contact-form {
  max-width: 480px;
  margin: 8px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-row input,
.form-row textarea {
  font: inherit;
  font-size: 0.95rem;
  padding: 9px 10px;
  border: 2px solid #141210;
  background: #fff;
  color: #141210;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 3px solid #b8261f;
  outline-offset: 1px;
}

.submit-btn { align-self: flex-start; }

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 3px 3px 0 #141210;
}

.form-note {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.85rem;
  font-weight: 700;
  color: #141210;
}

/* Komunikat sukcesu — zielonkawy akcent (odpowiedź process_form.php). */
.form-note.is-success { color: #1b6e29; }

/* Komunikat błędu — czerwony akcent, spójny z resztą komiksowej palety. */
.form-note.is-error { color: #e53935; }

/* ---------- STOPKA (w scenie 6) ---------- */

#site-footer {
  max-width: 640px;
  text-align: left;
}

.footer-brand {
  margin: 0 0 10px;
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.footer-links a {
  color: #141210;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #141210;
}
.footer-links a:hover { color: #b8261f; border-color: #b8261f; }

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: #55504a;
}

.footer-note {
  margin: 4px 0 0;
  font-size: 0.82rem;   /* ten sam krój i kolor co © */
  color: #55504a;
}

/* ---------- ANIMACJA WEJŚCIA PANELI PRZY SCROLLU ---------- */
/* Domyślnie (bez JS) treść jest w pełni widoczna — zero ryzyka, że coś
   zniknie na zawsze, gdy skrypt się nie wykona. Dopiero klasa "js" na
   <html> (dodawana natychmiast w <head>) włącza animowane ukrycie,
   a IntersectionObserver w main.js odkrywa panele przy scrollu. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- DOSTĘPNOŚĆ / RUCH ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bg-parallax { transition: none; }
  .hero-panel { animation: none; }
  .scroll-cue-arrow { animation: none; }
  .scene-beat-cap-arrow { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .scene-bg { transition: none; }
  #preloader { transition: none; }
  .preloader-panel { animation: none; }
  .preloader-bar-fill { animation: none; width: 70%; }
}

/* Ken Burns i paralaksa myszy — wyłączone na mobile i przy reduced-motion */
@media (prefers-reduced-motion: reduce), (max-width: 700px) {
  .bg-zoom { animation: none !important; }
  .bg-parallax { transform: none !important; transition: none; }
}

/* ---------- MOBILE / WĄSKIE EKRANY (telefon + tablet, < 900px) ---------- */
/* Desktop (≥900px) nie jest tu w ogóle ruszany. Rytm komiksowy na wąskich
   ekranach: najpierw duży, w pełni widoczny kadr ilustracji (patrz
   .scene-beat — przezroczysty, więc widać przez niego aktywne tło z
   #scene-bgs), dopiero POD nim płynie czytelna treść na papierowym tle
   paneli. Próg 900px pokrywa telefony i wąskie tablety (test na 768px). */
@media (max-width: 899px) {
  #brand-bar-btn { padding: 5px 9px; gap: 6px; }
  .brand-text { display: none; }

  /* Boczny indeks kropek nachodził na treść (np. na formularz w scenie 6) —
     na wąskich ekranach zwykły scroll wystarczy, więc chowamy go całkowicie.
     Marka u góry (#brand-bar) zostaje jako jedyny stały punkt orientacyjny. */
  #scene-nav { display: none; }

  /* SCENA 1 — okładka: sekcja wyższa niż jeden ekran, żeby panorama miasta
     z wieżą była widoczna w całości jako pierwsza rzecz na ekranie, zanim
     wjedzie (przypięty do dołu, jak na desktopie) panel z manifestem. */
  .scene-cover { padding: 16px; min-height: 132vh; }

  .hero-panel {
    max-width: none;
    padding: 16px 18px;
    box-shadow: 6px 6px 0 rgba(20, 18, 16, 0.9);
  }
  .hero-panel .hero-lead { font-size: 0.9rem; }
  .hero-title { font-size: 1.35rem; }

  /* Na wąskich ekranach panel powitalny zaczyna wjeżdżać już w pierwszym
     ekranie (przypięty do dołu wyższej sekcji) — osobny wskaźnik scrolla
     nachodziłby na CTA. CTA i naturalny gest przewijania wystarczą. */
  .scroll-cue { display: none; }

  /* SCENY 2–6: BEAT OBRAZU — górna strefa sekcji (~85vh) jest przezroczysta,
     jedyny element na tle to komiksowa plakietka z numerem/tytułem sceny. */
  .scene-beat {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 85vh;
    padding: 0 16px 22px;
  }

  .scene-beat-cap {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #141210;
    border: 2px solid #ff4136;
    box-shadow: 4px 4px 0 rgba(20, 18, 16, 0.9);
  }

  .scene-beat-cap-text {
    font-family: "Arial Black", Impact, Arial, sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ff4136;
    text-shadow: 0 0 8px rgba(255, 45, 40, 0.7);
  }

  .scene-beat-cap-arrow {
    font-size: 1.1rem;
    line-height: 1;
    color: #f5f1e4;
    animation: bob 1.6s ease-in-out infinite;
  }

  .scene-body { padding: 44px 16px 70px; }

  .scene-intro { padding: 16px 18px; }
  .scene-intro h2 { font-size: 1.4rem; }
  .scene-intro p  { font-size: 0.9rem; }

  .panel-grid { grid-template-columns: 1fr; gap: 16px; }
  .job-panel { padding: 16px 18px; }

  .quote-panel { padding: 16px 18px; font-size: 0.98rem; }

  .scene-next {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 16px 18px;
  }

  /* SCENA 6 — portret NAD wstępem (kolumna; portret stoi pierwszy w kodzie),
     rozsądny, ograniczony rozmiar — nie na całą wysokość ekranu. */
  .contact-top {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0 0 28px;
  }
  .contact-top .scene-intro { width: 100%; }
  .portrait-panel { flex: 0 0 auto; width: 100%; max-width: 190px; }

  .contact-form { padding: 16px 18px; }

  /* Większe, wygodniejsze w dotyku pola formularza kontaktowego. */
  .form-row input,
  .form-row textarea { padding: 12px 12px; font-size: 1rem; }
  .submit-btn { align-self: stretch; padding: 12px 18px; font-size: 1rem; }

  #site-footer { padding: 16px 18px; }
}
