/* =====================================================================
   Remonti.pl — Maciej Barański
   Usługi remontowo-budowlane i elektryczne — Poznań i okolice
   Design system / arkusz stylów
   Kolory: granat #000080 · niebieski #3300cc · zielony #01fc21
   ===================================================================== */

/* ---------- 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: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

ul { margin: 0 0 1em; padding-left: 1.25em; }

/* ---------- Zmienne / tokeny ---------- */
:root {
  --navy:   #000080;   /* granat — nagłówki, menu, ważne elementy */
  --navy-2: #0a0a5c;
  --blue:   #3300cc;   /* niebieski — przyciski, elementy interaktywne */
  --blue-d: #2600a0;
  --green:  #01fc21;   /* zielony — akcent / CTA */
  --green-d:#02d81c;

  --ink:    #14161c;   /* podstawowy tekst */
  --muted:  #55606f;   /* tekst pomocniczy */
  --line:   #e6e9f0;   /* linie / obramowania */
  --bg:     #ffffff;   /* tło strony */
  --bg-soft:#f5f7fc;   /* bardzo jasne tło sekcji */
  --bg-navy:#000080;

  --radius:   14px;
  --radius-lg:20px;
  --shadow:   0 1px 2px rgba(16,20,40,.06), 0 8px 24px rgba(16,20,40,.06);
  --shadow-lg:0 10px 40px rgba(0,0,64,.14);

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --sp: clamp(56px, 8vw, 104px); /* pionowy rytm sekcji */
}

/* ---------- Dostępność ---------- */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--navy); color: #fff; padding: 10px 16px;
  border-radius: 0 0 10px 10px; z-index: 1000; font-weight: 700;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; text-decoration: none; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--sp); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #eaeaff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.section__head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 48px); }
.section__head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .7em;
}
.eyebrow::before { content: ""; display:inline-block; width: 26px; height: 3px; background: var(--green); vertical-align: middle; margin-right: 10px; border-radius: 3px; }

h1 { font-size: clamp(2rem, 5vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); }

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em; justify-content: center;
  font-weight: 800; font-size: 1rem; line-height: 1; cursor: pointer;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Zielony = CTA (akcent, oszczędnie) */
.btn--cta { background: var(--green); color: #002b06; box-shadow: 0 6px 18px rgba(1,252,33,.28); }
.btn--cta:hover { background: var(--green-d); box-shadow: 0 10px 26px rgba(1,252,33,.38); }

/* Niebieski = przyciski / elementy interaktywne */
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-d); }

/* Granat / kontur */
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); background: #fff; }

.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: #f0f2ff; }

.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / nawigacja ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 18px;
  min-height: 74px; width: 100%; max-width: var(--wrap);
  padding-inline: var(--gutter); margin-inline: auto;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { height: 58px; width: auto; border-radius: 8px; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 900; color: var(--navy); font-size: 1.12rem; letter-spacing: -.02em; }
.brand__sub  { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }

.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-block; padding: 10px 14px; border-radius: 9px;
  font-weight: 700; font-size: .96rem; color: var(--navy);
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover { background: var(--bg-soft); text-decoration: none; }
.nav__link[aria-current="page"] { color: var(--blue); }
.nav__link[aria-current="page"]::after {
  content: ""; display: block; height: 3px; border-radius: 3px; background: var(--green); margin-top: 4px;
}

.nav__cta { margin-left: 8px; }

/* Desktop: menu i przycisk CTA w jednej linii, po prawej stronie */
@media (min-width: 941px) {
  .nav { align-items: center; padding-right: var(--gutter); }
  .brand { margin-right: 32px; }                 /* logo po lewej */
  .nav__menu { display: flex; align-items: center; flex: 1; }
  .nav__list { align-items: center; flex-wrap: nowrap; }   /* menu tuż przy logo, do lewej */
  .nav__cta { margin-left: auto; }               /* zielony przycisk do prawej krawędzi */
  .nav__cta .btn { padding: 13px 26px; font-size: 1rem; }
}

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 2px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2.5px; background: var(--navy); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -7px; left: 0; }
.nav__toggle span::after  { position: absolute; top: 7px; left: 0; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav { padding-right: var(--gutter); }
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed; inset: 74px 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 22px;
    display: none; box-shadow: var(--shadow-lg);
  }
  .nav__menu.open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 14px 12px; font-size: 1.05rem; border-radius: 10px; }
  .nav__link[aria-current="page"]::after { display: inline-block; width: 26px; margin-left: 8px; margin-top: 0; vertical-align: middle; }
  .nav__cta { margin: 12px 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--bg-soft); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; padding-block: clamp(20px, 2.6vw, 40px);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  font-weight: 700; font-size: .9rem; padding: 8px 15px; border-radius: 999px; margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(1,252,33,.22); }
.hero h1 { margin-bottom: .35em; font-size: clamp(1.7rem, 4.25vw, 2.85rem); }
.hero__lead { font-size: clamp(1.06rem, 1.7vw, 1.28rem); color: var(--muted); max-width: 44ch; margin-bottom: 1.6em; }
.hero .btn-row { margin-bottom: 26px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 22px; color: var(--muted); font-weight: 600; font-size: .96rem; }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { flex: none; }

.hero__media { position: relative; width: 90%; margin-left: auto; } /* H-01: grafika ~10% mniejsza */
.hero__media img {
  width: 100%; aspect-ratio: 4/4; object-fit: cover; object-position: center top;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero__media::after {
  content: ""; position: absolute; inset: auto -14px -14px auto; width: 62%; height: 62%;
  background: linear-gradient(135deg, var(--green) 0%, transparent 60%);
  opacity: .16; border-radius: var(--radius-lg); z-index: -1;
}
/* H-01: plakietka wraca NA zdjęcie (lewy dolny róg, lekko poza krawędź) */
.hero__chip {
  position: absolute; left: -18px; bottom: 24px; z-index: 3; max-width: 268px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 13px 17px; display: flex; align-items: center; gap: 12px;
}
.hero__chip b { color: var(--navy); display: block; font-size: 1.02rem; }
.hero__chip small { color: var(--muted); }
.hero__chip .ic { width: 42px; height: 42px; flex: none; border-radius: 11px; background: var(--bg-soft); display: grid; place-items: center; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; width: 100%; }
  .hero__media img { aspect-ratio: 16/11; }
  .hero__chip { left: 10px; bottom: 12px; max-width: 66%; }
}

/* ---------- Karty usług (kafelki) ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px){ .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #d7dcf7; }
.card__ic {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: #eef0ff; color: var(--blue); margin-bottom: 18px;
}
.card__ic svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); margin-bottom: 1.1em; }
.card__more {
  margin-top: auto; font-weight: 800; color: var(--blue); display: inline-flex; align-items: center; gap: 6px;
}
.card__more:hover { text-decoration: none; gap: 10px; }
.card__more::after { content: "→"; transition: transform .15s ease; }

/* ---------- Sekcja "dlaczego warto" ---------- */
.why__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,5vw,56px); align-items: center; }
.perks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.perk {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
  display: flex; gap: 12px; align-items: flex-start;
}
.perk .tick {
  flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--green);
  display: grid; place-items: center; color: #002b06; font-weight: 900;
}
.perk b { color: var(--navy); display: block; }
.perk small { color: var(--muted); }
@media (max-width: 780px){ .why__grid { grid-template-columns: 1fr; } }

/* ---------- "Dlaczego warto" — projekt ze zdjęciem i kartami ---------- */
.why2 { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 4.5vw, 72px); align-items: center; }
.why2__media { display: flex; flex-direction: column; align-items: center; gap: clamp(20px, 2.5vw, 30px); }
.why2__media img { width: 100%; aspect-ratio: 4 / 3.3; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow-lg); }
.why2__body h2 { margin-bottom: .35em; }
.why2__body .lead { margin-bottom: clamp(24px, 3vw, 36px); }
.why2__cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 1.6vw, 22px); }
.wcard {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
  padding: 22px 24px;
  display: grid; grid-template-columns: auto 1fr; column-gap: 14px; row-gap: 6px; align-items: center;
}
.wcard__ic { grid-row: 1; grid-column: 1; width: 36px; height: 36px; border-radius: 50%; background: var(--green); display: grid; place-items: center; box-shadow: 0 0 0 4px rgba(1,252,33,.16); }
.wcard__ic svg { width: 20px; height: 20px; }
.wcard b { grid-row: 1; grid-column: 2; color: var(--navy); font-size: 1.08rem; }
.wcard p { grid-row: 2; grid-column: 1 / -1; color: var(--muted); margin: 0; font-size: .97rem; }
@media (max-width: 900px){ .why2 { grid-template-columns: 1fr; } .why2__media { order: -1; } }
@media (max-width: 460px){ .why2__cards { grid-template-columns: 1fr; } }

/* ---------- Galeria / realizacje ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter {
  border: 2px solid var(--line); background: #fff; color: var(--navy);
  font-weight: 700; padding: 9px 18px; border-radius: 999px; cursor: pointer; font-size: .95rem;
  transition: all .15s ease;
}
.filter:hover { border-color: var(--blue); }
.filter[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__item {
  position: relative; border: 0; padding: 0; margin: 0; background: var(--bg-soft);
  border-radius: var(--radius); overflow: hidden; cursor: zoom-in; aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item .tag {
  position: absolute; left: 10px; top: 10px; background: rgba(0,0,128,.86); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.gallery__item.is-hidden { display: none; }
@media (max-width: 780px){ .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px){ .gallery { grid-template-columns: 1fr; } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; background: rgba(6,8,24,.92);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 86vh; width: auto; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__btn {
  position: absolute; background: rgba(255,255,255,.14); border: 0; color: #fff; cursor: pointer;
  width: 54px; height: 54px; border-radius: 50%; font-size: 26px; display: grid; place-items: center;
  transition: background .15s ease;
}
.lightbox__btn:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-weight: 700; background: rgba(255,255,255,.14); padding: 6px 14px; border-radius: 999px; }
@media (max-width: 560px){ .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; } .lightbox__btn { width: 46px; height: 46px; } }

/* ---------- Split "O mnie" skrót ---------- */
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px,5vw,60px); align-items: center; }
.split--rev { grid-template-columns: 1.05fr .95fr; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/4.4; object-fit: cover; }
.split--fish { grid-template-columns: .82fr 1.18fr; }
.split--fish .split__media img { aspect-ratio: 4/3.6; object-position: center; }
/* Zdjęcia z postacią Macieja — utrzymaj sylwetkę w kadrze (szczególnie na mobile) */
img[src*="remonty-poznan-maciej-baranski-remonti-"] { object-position: center 25%; }
@media (max-width: 600px){
  .about-photos__item { aspect-ratio: 3/4; }
  .gallery__item { aspect-ratio: 3/4; }
}
@media (max-width: 820px){ .split, .split--rev { grid-template-columns: 1fr; } .split__media { order: -1; } .split__media img { aspect-ratio: 16/11; } }

/* Rząd 3 zdjęć w skrócie "O mnie" */
.about-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.about-photos__item { display: block; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); background: var(--bg-soft); }
.about-photos__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.about-photos__item:hover img { transform: scale(1.05); }

/* ---------- Karty certyfikatów ---------- */
.cert {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.cert::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--green); }
.cert__seal { width: 52px; height: 52px; border-radius: 12px; background: #eef0ff; color: var(--navy); display: grid; place-items: center; margin-bottom: 16px; }
.cert__seal svg { width: 28px; height: 28px; }
.cert h3 { font-size: 1.12rem; }
.cert p { color: var(--muted); margin-bottom: 0; font-size: .97rem; }
.cert__no { display: inline-block; font-weight: 800; color: var(--blue); font-size: .9rem; margin-bottom: .6em; }

/* ---------- Proces / kroki ---------- */
.steps { counter-reset: step; display: grid; gap: 16px; }
.steps--7 { grid-template-columns: repeat(4, 1fr); }
.steps--6 { grid-template-columns: repeat(3, 1fr); }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px 20px; box-shadow: var(--shadow);
}
.step__n {
  width: 40px; height: 40px; border-radius: 11px; background: var(--navy); color: #fff;
  font-weight: 900; display: grid; place-items: center; margin-bottom: 14px; font-size: 1.05rem;
}
.step h3 { font-size: 1.06rem; margin-bottom: .3em; }
.step p { color: var(--muted); margin-bottom: 0; font-size: .95rem; }
.section--navy .step { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.section--navy .step p { color: #c9c9f2; }
.section--navy .step__n { background: var(--green); color: #002b06; }
@media (max-width: 880px){ .steps--7, .steps--6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .steps--7, .steps--6 { grid-template-columns: 1fr; } }

/* ---------- Blok CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { color: #cfcffb; max-width: 52ch; margin: 0 auto 1.6em; }
.cta-band .btn-row { justify-content: center; }

/* H-06: zielony wariant dolnego CTA */
.cta-band--green { background: var(--green); }
.cta-band--green h2, .cta-band--green p { color: var(--navy); }
.btn--wa { background: var(--navy); color: #fff; }
.btn--wa:hover { background: var(--navy-2); }
@media (max-width: 560px){
  .cta-band--green .btn-row { flex-direction: column; align-items: stretch; }
  .cta-band--green .btn-row .btn { width: 100%; }
}

/* ---------- Cennik ---------- */
.notice {
  background: #eef0ff; border: 1px solid #d7dcf7; border-left: 5px solid var(--blue);
  border-radius: var(--radius); padding: 18px 22px; color: var(--navy); margin-bottom: 30px;
}
.notice strong { color: var(--navy); }

.pricelist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow);
}
.price-row .name { font-weight: 700; color: var(--navy); }
.price-row .val { font-weight: 800; color: var(--blue); white-space: nowrap; }
.price-row .val small { color: var(--muted); font-weight: 600; }
@media (max-width: 720px){ .pricelist { grid-template-columns: 1fr; } }
@media (max-width: 420px){ .price-row { flex-wrap: wrap; gap: 2px 12px; } .price-row .val { white-space: normal; } }

.price-group { margin-bottom: 12px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }

/* ---------- Lista usług (podstrona) ---------- */
.svc { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px,4vw,48px); align-items: start; padding-block: clamp(30px,4vw,44px); border-top: 1px solid var(--line); }
.svc:first-of-type { border-top: 0; }
.svc__aside .card__ic { margin-bottom: 16px; }
.svc__aside img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; margin-top: 14px; }
.svc__list { columns: 2; column-gap: 34px; list-style: none; padding: 0; margin: 0; }
.svc__list li { break-inside: avoid; padding: 8px 0 8px 30px; position: relative; color: var(--ink); }
.svc__list li::before {
  content: ""; position: absolute; left: 0; top: 13px; width: 16px; height: 9px;
  border-left: 3px solid var(--green); border-bottom: 3px solid var(--green);
  transform: rotate(-45deg); border-radius: 2px;
}
@media (max-width: 820px){ .svc { grid-template-columns: 1fr; } .svc__list { columns: 1; } }

/* ---------- Usługi — sekcja: zdjęcie + lista (nowy układ) ---------- */
/* Szeroki kontener dla sekcji usług */
.wrap--wide { max-width: 1680px; }

/* U-01: równe kolumny 50/50, gap 60px, wyrównanie do góry */
.svc2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 60px; align-items: start; padding-block: clamp(34px, 4.5vw, 64px); }
.svc2 + .svc2 { border-top: 1px solid var(--line); }
.svc2:first-of-type { padding-top: 4px; } /* U-02: mniejszy odstęp nad pierwszą sekcją */
.svc2__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; border-radius: 26px; box-shadow: var(--shadow-lg); }
.svc2__body h2 { font-size: clamp(1.6rem, 2.4vw, 2.4rem); margin-bottom: .5em; }
.svc2__sub { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); margin-bottom: 1.6em; max-width: 60ch; }
/* wewnętrzna siatka kart: 2 kolumny, równa wysokość w rzędzie (U-03) */
.svc2__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 20px; list-style: none; padding: 0; margin: 0; }
.svc2__list li {
  position: relative; align-self: stretch;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 22px 16px 54px; font-weight: 500; font-size: 1.02rem; color: var(--ink);
  display: flex; align-items: center;
}
.svc2__list li::before {
  content: ""; position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%2312b528' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (max-width: 900px){ .svc2 { grid-template-columns: 1fr; gap: 28px; } .svc2__media { order: -1; } .svc2__media img { aspect-ratio: 16/10; } .svc2__body h2 { white-space: normal; } }
@media (max-width: 560px){ .svc2__list { grid-template-columns: 1fr; } }

/* ---------- Kontakt — nagłówek ze zdjęciem ---------- */
.page-hero__grid { display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(28px, 5vw, 68px); align-items: center; }
.page-hero--contact { padding-block: clamp(30px, 4vw, 56px); }
.page-hero--contact h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
.page-hero--contact .btn { margin-top: 26px; }
.page-hero__media img { width: 100%; aspect-ratio: 16/11; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-lg); }
@media (max-width: 860px){
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__media { order: -1; }
  .page-hero__media img { aspect-ratio: 16/10; }
}

/* ---------- Formularz ---------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; color: var(--navy); font-size: .95rem; }
.field .req { color: var(--blue); }
.field input, .field textarea, .field select {
  font: inherit; padding: 14px 16px; border: 2px solid var(--line); border-radius: 12px;
  background: #fff; color: var(--ink); width: 100%; transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--blue); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.field--file input { padding: 11px 14px; }
.hint { color: var(--muted); font-size: .85rem; }
.check { display: flex; gap: 12px; align-items: flex-start; }
.check input { width: 22px; height: 22px; flex: none; margin-top: 2px; accent-color: var(--blue); }
.check label { font-weight: 500; color: var(--muted); font-size: .92rem; }
.form__status { display: none; padding: 14px 18px; border-radius: 12px; font-weight: 600; }
.form__status.ok { display: block; background: #e9fde9; border: 1px solid var(--green); color: #044f0a; }
.form__status.err { display: block; background: #fdecec; border: 1px solid #f3b4b4; color: #8a1f1f; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Karty kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,44px); align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); margin-bottom: 18px; }
.info-card h3 { margin-bottom: .7em; }
.info-line { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; }
.info-line .ic { flex: none; width: 40px; height: 40px; border-radius: 11px; background: #eef0ff; color: var(--blue); display: grid; place-items: center; }
.info-line b { color: var(--navy); display: block; }
.info-line a { font-weight: 700; }
.info-line span { color: var(--muted); }

.map-embed { width: 100%; }
.map-embed iframe { display: block; width: 100%; height: 400px; border: 0; }

/* ---------- Mobilny pasek akcji ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(16,20,40,.08);
}
.mobile-bar .btn { padding: 14px 10px; font-size: .98rem; }
@media (max-width: 720px){ .mobile-bar { display: grid; } body { padding-bottom: 78px; } }

/* ---------- Stopka ---------- */
/* Kompaktowa fioletowa stopka (F-01) */
.footer { background: #3300cc; color: #d9d7ff; padding-block: clamp(28px,3vw,38px) 0; }
.footer a { color: #ffffff; transition: color .15s ease; }
.footer a:hover { color: var(--green); text-decoration: none; }
.footer__grid { display: grid; grid-template-columns: 1.3fr .9fr 1.1fr; gap: clamp(24px,3.5vw,44px); padding-bottom: 26px; }
.footer__brand { display: block; margin-bottom: 12px; }
.footer__brand img { height: 90px; width: auto; }
.footer p { color: #cfceff; margin: 0; }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .8em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer__contact div { margin-bottom: 10px; }
.footer__contact b { color: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.22); padding-block: 16px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .86rem; color: #bdbaff; }
@media (max-width: 760px){ .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand-col { grid-column: 1 / -1; } }
@media (max-width: 480px){ .footer__grid { grid-template-columns: 1fr; } .footer__bar { justify-content: flex-start; } }

/* ---------- Page hero (podstrony) ---------- */
.page-hero { background: var(--navy); color: #fff; padding-block: clamp(26px,3.5vw,44px); }
.page-hero .crumbs { margin-bottom: 12px; }
.page-hero .eyebrow { margin-bottom: .4em; }
.page-hero h1 { margin-bottom: .25em; font-size: clamp(1.75rem, 3.4vw, 2.55rem); }
.page-hero p { font-size: clamp(.98rem, 1.3vw, 1.1rem); }
/* mniejszy odstęp między niebieską sekcją a treścią */
.page-hero + .section { padding-top: clamp(28px,4vw,48px); }
.page-hero .eyebrow { color: #a9ffb4; }
.page-hero .eyebrow::before { background: var(--green); }
.page-hero h1 { color: #fff; }
.page-hero p { color: #cfcffb; max-width: 58ch; font-size: clamp(1.02rem,1.5vw,1.18rem); margin-bottom: 0; }
.crumbs { font-size: .85rem; color: #a9a9e6; margin-bottom: 18px; }
.crumbs a { color: #cfcffb; } .crumbs span { color: #fff; }

/* ---------- Drobne ---------- */
.center { text-align: center; }
.mt-lg { margin-top: clamp(28px,4vw,44px); }
.tel-link { font-weight: 800; color: var(--navy); }
hr.soft { border: 0; border-top: 1px solid var(--line); margin-block: clamp(30px,5vw,52px); }

/* ---------- Placeholder przy braku zdjęcia ---------- */
.img-missing { position: relative; background: repeating-linear-gradient(45deg, #eef0ff, #eef0ff 12px, #e6e9f8 12px, #e6e9f8 24px); }
.img-missing::after {
  content: "Zdjęcie"; position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--navy); font-weight: 800; font-size: .85rem; letter-spacing: .05em; opacity: .55;
}
.gallery__item.img-missing { cursor: default; }
