/* GlobalBAU — wersja 2. Ta sama paleta co w logo (#008d58 / #212529),
   inny jezyk wizualny: ciemny pasek nawigacji, asymetryczny hero,
   uslugi jako pelnoszerokie wiersze, bloki koloru zamiast plywajacych kart. */

:root {
  --brand: #008d58;
  --brand-600: #007a4c;
  --brand-800: #004e32;
  --brand-950: #00301f;
  --brand-light: #8ee6b8;

  --ink: #212529;
  --ink-900: #15181b;
  --ink-700: #3b4348;
  --muted: #6a7278;

  --paper: #ffffff;
  --sand: #efedea;          /* cieply neutralny — celowo nie zielonkawy */
  --sand-deep: #e3e0db;
  --line: #d9d5cf;
  --line-dark: rgba(255, 255, 255, .16);

  --maxw: 1240px;
  --gutter: 22px;
  --header-h: 84px;
  --r: 3px;

  --sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 10px); }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0 0 .5em; color: var(--ink); font-weight: 800; line-height: 1.1; }
h1 { font-size: clamp(34px, 5.2vw, 62px); letter-spacing: -.028em; }
h2 { font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -.024em; }
h3 { font-size: clamp(18px, 1.8vw, 22px); letter-spacing: -.014em; }
h4 { font-size: 17px; }
p { margin: 0 0 1em; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1em; padding-left: 1.15em; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
@media (min-width: 900px) { :root { --gutter: 40px; } }

.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon-sm { width: 17px; height: 17px; }
.icon-lg { width: 34px; height: 34px; }

.skip-link { position: absolute; left: -9999px; z-index: 200; background: var(--brand);
  color: #fff; padding: 12px 18px; }
.skip-link:focus { left: 0; top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; }

/* ═══ Przyciski — prostokatne, bez cieni ═══ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border: 2px solid transparent; border-radius: var(--r);
  font: inherit; font-weight: 700; font-size: 14.5px; letter-spacing: .04em;
  text-transform: uppercase; cursor: pointer; text-decoration: none !important;
  transition: background .16s, color .16s, border-color .16s; }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-800); border-color: var(--brand-800); }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: #000; border-color: #000; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-lg { padding: 17px 32px; font-size: 15px; }

/* ═══ Naglowek — jeden ciemny pasek ═══ */
.site-header { position: sticky; top: 0; z-index: 90; background: var(--ink-900); color: #fff; }
.header-in { display: flex; align-items: stretch; justify-content: space-between;
  min-height: var(--header-h); gap: 16px; }
.site-header .container { max-width: none; padding-right: 0; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; padding: 14px 0; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.06; }
.brand-name { font-size: 22px; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.brand-name span { color: var(--brand-light); }
.brand-tag { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.5); white-space: nowrap; margin-top: 3px; }

.nav-toggle { display: inline-flex; align-items: center; gap: 9px; margin: 18px var(--gutter) 18px 0;
  background: none; border: 2px solid rgba(255,255,255,.3); border-radius: var(--r);
  padding: 10px 15px; font: inherit; font-weight: 700; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; color: #fff; cursor: pointer; }
@media (min-width: 1120px) { .nav-toggle { display: none; } }

.nav { display: none; }
.nav ul { list-style: none; margin: 0; padding: 0; }
.nav > ul { display: flex; align-items: stretch; height: 100%; }
.nav-item { position: relative; display: flex; }
.nav-link { display: inline-flex; align-items: center; gap: 4px; padding: 0 9px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  color: rgba(255,255,255,.85); white-space: nowrap; position: relative; }
.nav-link::after { content: ""; position: absolute; left: 9px; right: 9px; bottom: 26px;
  height: 2px; background: var(--brand-light); transform: scaleX(0); transform-origin: left;
  transition: transform .18s; }
.nav-link:hover { color: #fff; text-decoration: none; }
.nav-item:hover .nav-link::after, .nav-item.is-current .nav-link::after { transform: scaleX(1); }
.nav-link .chev { width: 11px; height: 11px; opacity: .6; transition: transform .2s; }
.nav-item:hover .chev { transform: rotate(180deg); }
.nav-link-icon { padding: 0 12px; }

/* pasek telefonu wtopiony w naglowek */
.header-phone { display: none; align-items: center; gap: 12px; padding: 0 22px;
  background: var(--brand); color: #fff; text-decoration: none; }
.header-phone:hover { background: var(--brand-800); text-decoration: none; }
.header-phone .icon { width: 22px; height: 22px; }
.header-phone b { display: block; font-size: 17px; letter-spacing: -.01em; white-space: nowrap; }
.header-phone span { display: block; font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; opacity: .8; white-space: nowrap; }
@media (min-width: 1120px) { .nav { display: block; } .header-phone { display: flex; } }
.header-phone .header-phone-text { display: none; }
@media (min-width: 1400px) {
  .header-phone .header-phone-text { display: block; }
  .header-phone { padding: 0 26px; }
}
/* w waskim zakresie desktopu menu musi byc ciasniejsze, zeby zmiescic 9 pozycji */
@media (min-width: 1120px) and (max-width: 1399px) {
  .nav-link { font-size: 11px; padding: 0 6px; letter-spacing: .01em; }
  .nav-link::after { left: 6px; right: 6px; }
}

/* rozwijane menu — ciemny panel */
.mega { position: absolute; left: 50%; top: 100%; transform: translate(-50%, 6px);
  min-width: 600px; background: var(--ink); border-top: 3px solid var(--brand);
  padding: 24px; opacity: 0; visibility: hidden; transition: opacity .16s, transform .16s;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.6); }
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-head { display: flex; align-items: center; gap: 11px; padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line-dark); }
.mega-head .icon { color: var(--brand-light); }
.mega-head strong { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.mega-head a { margin-left: auto; font-size: 12.5px; font-weight: 700; color: var(--brand-light);
  letter-spacing: .04em; }
.mega-list { display: grid; grid-template-columns: repeat(3, minmax(150px, 1fr)); gap: 0 8px; }
.mega-list a { display: block; padding: 8px 10px; font-size: 13.5px; color: rgba(255,255,255,.72);
  border-left: 2px solid transparent; }
.mega-list a:hover { color: #fff; background: rgba(255,255,255,.06);
  border-left-color: var(--brand); text-decoration: none; }

@media (max-width: 1119px) {
  .nav.is-open { display: block; position: fixed; inset: var(--header-h) 0 0; background: var(--ink-900);
    overflow-y: auto; padding: 8px var(--gutter) 70px; }
  .nav.is-open > ul { flex-direction: column; height: auto; }
  .nav.is-open .nav-item { flex-direction: column; border-bottom: 1px solid var(--line-dark); }
  .nav.is-open .nav-link { justify-content: space-between; padding: 17px 2px; font-size: 14px; }
  .nav.is-open .nav-link::after { display: none; }
  .nav.is-open .mega { position: static; transform: none; min-width: 0; opacity: 1; visibility: visible;
    background: none; box-shadow: none; border-top: 0; padding: 0 0 16px; display: none; }
  .nav.is-open .nav-item.is-open .mega { display: block; }
  .nav.is-open .mega-head { display: none; }
  .nav.is-open .mega-list { grid-template-columns: 1fr 1fr; }
  .nav-mobile-cta { display: block; margin-top: 22px; }
  .nav-mobile-cta .btn { width: 100%; }
  .nav.is-open .nav-home-label { position: static; width: auto; height: auto; overflow: visible;
    clip: auto; white-space: nowrap; margin-left: 4px; }
}
@media (min-width: 1120px) { .nav-mobile-cta { display: none; } }

/* ═══ Hero — asymetryczny podzial, zdjecie bez ciemnej nakladki ═══ */
.hero { position: relative; background: var(--ink-900); color: #fff; }
.hero-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.18fr .82fr; min-height: 620px; } }

.hero-panel { padding: 58px var(--gutter) 62px; display: flex; flex-direction: column;
  justify-content: center; width: 100%; }
@media (min-width: 980px) { .hero-panel { padding: 84px 62px 88px var(--gutter); } }
@media (min-width: 1320px) { .hero-panel { padding-left: calc((100vw - var(--maxw)) / 2 + var(--gutter)); } }

.hero-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 26px;
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brand-light); }
.hero-kicker::before { content: ""; width: 46px; height: 2px; background: var(--brand); flex: none; }
.hero h1 { color: #fff; margin-bottom: 22px; font-size: clamp(33px, 4.1vw, 54px); }
.br-lg { display: none; }
@media (min-width: 980px) { .br-lg { display: block; } }
.hero h1 em { font-style: normal; color: var(--brand-light); }
.hero-lead { color: rgba(255,255,255,.74); font-size: 17.5px; max-width: 46ch; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-media { position: relative; min-height: 320px; background: var(--ink); }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 980px) {
  .hero-media::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(90deg, var(--ink-900) 0%, rgba(21,24,27,0) 24%); }
}

/* zielony pas z danymi pod hero */
.metrics { background: var(--brand); color: #fff; }
.metrics-in { display: grid; grid-template-columns: 1fr; }
@media (min-width: 720px) { .metrics-in { grid-template-columns: repeat(3, 1fr); } }
.metric { padding: 24px 0; display: flex; flex-direction: column; gap: 8px; }
@media (min-width: 720px) {
  .metric + .metric { border-left: 1px solid rgba(255,255,255,.24); padding-left: 32px; }
  .metric { padding: 32px 0; }
}
@media (max-width: 719px) { .metric + .metric { border-top: 1px solid rgba(255,255,255,.24); } }
.metric b { font-size: clamp(30px, 3.2vw, 42px); font-weight: 800; letter-spacing: -.03em; line-height: 1; white-space: nowrap; }
.metric span { font-size: 14px; color: rgba(255,255,255,.88); max-width: 30ch; }

/* ═══ Sekcje ═══ */
.section { padding: 88px 0; }
@media (max-width: 700px) { .section { padding: 58px 0; } }
.section-sand { background: var(--sand); }
.section-dark { background: var(--ink-900); color: rgba(255,255,255,.72); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-green { background: var(--brand-950); color: rgba(255,255,255,.76); }
.section-green h2, .section-green h3 { color: #fff; }

/* naglowek sekcji — zawsze do lewej, z zielona kreska */
.shead { max-width: 62ch; margin-bottom: 50px; }
.shead .kicker { display: flex; align-items: center; gap: 13px; margin-bottom: 16px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brand); }
.shead .kicker::before { content: ""; width: 34px; height: 2px; background: var(--brand); flex: none; }
.section-dark .shead .kicker, .section-green .shead .kicker { color: var(--brand-light); }
.section-dark .shead .kicker::before, .section-green .shead .kicker::before { background: var(--brand-light); }
.shead h2 { margin-bottom: 0; }
.shead p { font-size: 17px; color: var(--muted); margin: 16px 0 0; }
.section-dark .shead p, .section-green .shead p { color: rgba(255,255,255,.68); }
.shead-row { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end;
  justify-content: space-between; margin-bottom: 50px; }
.shead-row .shead { margin-bottom: 0; }

/* ═══ Uslugi jako pelnoszerokie wiersze ═══ */
.rows { border-top: 1px solid var(--line); }
.row-item { position: relative; display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 18px; padding: 26px 20px 26px 4px;
  border-bottom: 1px solid var(--line); transition: background .18s, padding .18s, color .18s; }
.row-item:hover { background: var(--brand); color: #fff; padding-left: 22px; }
.row-num { font-size: 12.5px; font-weight: 800; letter-spacing: .1em; color: var(--brand);
  width: 32px; transition: color .18s; }
.row-item:hover .row-num { color: rgba(255,255,255,.75); }
.row-body { display: grid; grid-template-columns: 1fr; gap: 5px; }
@media (min-width: 900px) { .row-body { grid-template-columns: 290px 1fr; gap: 30px; align-items: baseline; } }
.row-item h3 { margin: 0; }
.row-item h3 a { color: var(--ink); transition: color .18s; }
.row-item h3 a:hover { text-decoration: none; }
.row-item:hover h3 a { color: #fff; }
.row-item p { margin: 0; font-size: 15.5px; color: var(--muted); transition: color .18s; }
.row-item:hover p { color: rgba(255,255,255,.9); }
.row-go { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border: 2px solid var(--line); border-radius: var(--r); color: var(--ink);
  transition: border-color .18s, background .18s, color .18s, transform .18s; }
.row-item:hover .row-go { border-color: #fff; background: #fff; color: var(--brand);
  transform: translateX(4px); }
.row-item .row-link::after { content: ""; position: absolute; inset: 0; }
.section-sand .rows, .section-sand .row-item, .section-sand .row-go { border-color: var(--sand-deep); }

/* ═══ Kafle (pozostale uslugi) ═══ */
.tiles { display: grid; gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .tiles { grid-template-columns: repeat(4, 1fr); } }
.tile { display: flex; flex-direction: column; gap: 14px; padding: 24px 20px; background: var(--paper);
  color: var(--ink); font-size: 14.5px; font-weight: 600; line-height: 1.35;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tile .icon { color: var(--brand); transition: color .16s; }
.tile:hover { background: var(--ink); color: #fff; text-decoration: none; }
.tile:hover .icon { color: var(--brand-light); }
.section-sand .tiles, .section-sand .tile { border-color: var(--sand-deep); }

/* ═══ Proces — pionowa linia serwisowa ═══ */
.flow { position: relative; }
.flow-col { position: relative; padding-left: 36px; }
.flow-col::before { content: ""; position: absolute; left: 7px; top: 12px; bottom: 12px; width: 2px;
  background: var(--line); }
.section-dark .flow-col::before, .section-green .flow-col::before { background: rgba(255,255,255,.2); }
.flow-step { position: relative; padding-bottom: 38px; }
.flow-col > .flow-step:last-child { padding-bottom: 0; }
.flow-step::before { content: ""; position: absolute; left: -36px; top: 7px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--paper); }
.section-sand .flow-step::before { box-shadow: 0 0 0 4px var(--sand); }
.section-dark .flow-step::before, .section-green .flow-step::before { box-shadow: 0 0 0 4px var(--ink-900); }
.flow-step .step-no { font-size: 11.5px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brand); }
.section-dark .flow-step .step-no, .section-green .flow-step .step-no { color: var(--brand-light); }
.flow-step h3 { margin: 7px 0 7px; }
.flow-step p { margin: 0; max-width: 52ch; }
@media (min-width: 900px) { .flow { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; } }

/* ═══ Dwie kolumny ═══ */
.duo { display: grid; gap: 44px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 940px) { .duo { grid-template-columns: 1fr 1fr; gap: 70px; } }
.duo-media { position: relative; }
.duo-media img { border-radius: var(--r); }
.duo-media::after { content: ""; position: absolute; left: -18px; bottom: -18px; width: 118px; height: 118px;
  border-left: 5px solid var(--brand); border-bottom: 5px solid var(--brand); }

/* ═══ Listy z haczykiem ═══ */
.checks { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 13px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; }
.checks .icon { width: 20px; height: 20px; color: var(--brand); margin-top: 3px; stroke-width: 2.4; }
.section-dark .checks .icon, .section-green .checks .icon { color: var(--brand-light); }

/* fakty */
.facts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line);
  grid-template-columns: 1fr; }
@media (min-width: 620px) { .facts { grid-template-columns: 1fr 1fr; } }
.fact { background: var(--paper); padding: 26px 24px; }
.fact .icon { color: var(--brand); margin-bottom: 14px; }
.fact strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 5px; }
.fact span { font-size: 14.5px; color: var(--muted); }

/* ═══ Pasek CTA ═══ */
.cta { background: var(--brand); color: #fff; }
.cta .container { padding-top: 62px; padding-bottom: 62px; display: grid; gap: 30px; align-items: center; }
@media (min-width: 940px) { .cta .container { grid-template-columns: 1.4fr auto; gap: 50px; } }
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,.86); margin: 0; max-width: 52ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta .btn-primary { background: #fff; color: var(--brand-800); border-color: #fff; }
.cta .btn-primary:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ═══ Blog ═══ */
.posts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line);
  grid-template-columns: 1fr; }
@media (min-width: 760px) { .posts { grid-template-columns: repeat(3, 1fr); } }
.post-card { display: flex; flex-direction: column; background: var(--paper); }
.post-card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.post-thumb-empty { display: flex; align-items: center; justify-content: center; aspect-ratio: 3 / 2;
  background: var(--ink); }
.post-thumb-empty svg { width: 58px; height: 58px; opacity: .85; }
.post-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.post-body h3 { font-size: 18.5px; margin-bottom: 10px; }
.post-body h3 a { color: var(--ink); }
.post-body h3 a:hover { color: var(--brand-600); text-decoration: none; }
.post-body p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.post-meta { margin-top: auto; font-size: 11.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand); }
.section-sand .posts { background: var(--sand-deep); border-color: var(--sand-deep); }

/* ═══ Naglowek podstrony ═══ */
.crumbs { background: var(--sand); border-bottom: 1px solid var(--line); font-size: 13px; padding: 13px 0; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.crumbs li + li::before { content: "→"; margin-right: 7px; color: var(--brand); }
.crumbs a { color: var(--muted); }
.crumbs [aria-current] { color: var(--ink); font-weight: 700; }

.phero { background: var(--ink-900); color: rgba(255,255,255,.74); padding: 68px 0 64px; }
.phero .kicker { display: flex; align-items: center; gap: 13px; margin-bottom: 18px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brand-light); }
.phero .kicker::before { content: ""; width: 34px; height: 2px; background: var(--brand); flex: none; }
.phero h1 { color: #fff; max-width: 19ch; margin-bottom: 18px; }
.phero p { max-width: 62ch; margin: 0; font-size: 17px; }

/* ═══ Uklad tresc + panel boczny ═══ */
.with-aside { display: grid; gap: 44px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 980px) { .with-aside { grid-template-columns: 1.6fr 1fr; gap: 64px; } }
.aside-card { border: 2px solid var(--ink); border-radius: var(--r); padding: 28px 26px; }
.aside-card h3 { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 20px; }
.aside-card .btn { width: 100%; }
@media (min-width: 980px) { .aside-card { position: sticky; top: calc(var(--header-h) + 24px); } }

.prose { max-width: 74ch; }
.prose h2 { margin-top: 1.7em; }
.prose h3 { margin-top: 1.4em; }
.prose li { margin-bottom: .45em; }
.prose a { text-decoration: underline; }
.prose img { margin: 1.6em 0; border-radius: var(--r); }

/* ═══ Siatka linkow lokalnych ═══ */
.locs { display: grid; gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr); list-style: none; padding: 0; margin: 0; }
@media (min-width: 700px) { .locs { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .locs { grid-template-columns: repeat(4, 1fr); } }
.locs a { display: flex; align-items: center; gap: 10px; padding: 16px 18px; background: var(--paper);
  font-size: 14.5px; font-weight: 600; color: var(--ink); height: 100%;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.locs a:hover { background: var(--brand); color: #fff; text-decoration: none; }
.locs .icon { width: 16px; height: 16px; color: var(--brand); }
.locs a:hover .icon { color: #fff; }
.section-sand .locs, .section-sand .locs a { border-color: var(--sand-deep); }

/* ═══ Kontakt ═══ */
.contact-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line);
  grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-item { background: var(--paper); padding: 26px 24px; display: flex; gap: 15px; }
.contact-item .icon { color: var(--brand); }
.contact-item strong { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-item a, .contact-item .val { font-size: 17px; font-weight: 700; color: var(--ink);
  line-height: 1.35; }
.contact-item a:hover { color: var(--brand-600); }
.map-embed { border: 0; width: 100%; min-height: 420px; display: block; }
.map-facade { display: flex; align-items: center; justify-content: center; min-height: 420px;
  padding: 40px 24px; background: var(--sand); border: 1px solid var(--line); }
.map-facade-in { max-width: 46ch; text-align: center; }
.map-facade-in .icon { width: 34px; height: 34px; color: var(--brand); margin: 0 auto 14px; }
.map-facade-in strong { display: block; font-size: 19px; color: var(--ink); margin-bottom: 10px; }
.map-facade-in p { font-size: 14.5px; color: var(--muted); margin-bottom: 22px; }
.map-facade-alt { display: block; margin-top: 16px; font-size: 14px; }

/* ═══ FAQ ═══ */
.faq { border-top: 2px solid var(--ink); max-width: 900px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 20px 4px; font-weight: 700; font-size: 17px; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--brand); line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq .faq-body { padding: 0 4px 22px; color: var(--muted); max-width: 70ch; }

/* ═══ Formularz kontaktowy ═══ */
.contact-form { max-width: 640px; margin: 48px auto 0; display: grid; gap: 18px; }
.form-row { display: grid; gap: 6px; }
.form-row label { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); }
.form-row input, .form-row textarea { font: inherit; font-size: 15.5px; padding: 13px 14px;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); color: var(--ink);
  width: 100%; }
.form-row input:focus-visible, .form-row textarea:focus-visible { border-color: var(--brand); }
.form-row textarea { resize: vertical; min-height: 130px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.form-consent input { margin-top: 4px; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success, .form-error { padding: 16px 18px; border-radius: var(--r); font-size: 14.5px; }
.form-success { background: #e6f6ee; color: var(--brand-800); border: 1px solid var(--brand-light); }
.form-error { background: #fbeaea; color: #7a2020; border: 1px solid #e2b3b3; }

/* ═══ Baner zgody na cookies (Google Analytics) ═══ */
.consent-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  background: var(--ink-900); color: rgba(255,255,255,.86); padding: 18px var(--gutter);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line-dark); }
.consent-banner p { margin: 0; font-size: 14px; max-width: 70ch; }
.consent-banner a { color: var(--brand-light); }
.consent-actions { display: flex; gap: 10px; flex: none; }
.consent-actions .btn { padding: 11px 20px; font-size: 13px; }
@media (max-width: 759px) { .consent-banner { bottom: 52px; } }

.link-btn { background: none; border: 0; padding: 0; font: inherit; color: inherit;
  text-decoration: underline; cursor: pointer; }

/* ═══ Stopka ═══ */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,.62); font-size: 14.5px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; padding: 66px 0 46px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.15fr; } }
.site-footer h3 { color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.62); }
.site-footer a:hover { color: var(--brand-light); text-decoration: none; }
.footer-brand p { margin: 18px 0 0; max-width: 36ch; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .icon { width: 18px; height: 18px; color: var(--brand); margin-top: 3px; }
.footer-contact a, .footer-contact span { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 20px 0 26px; font-size: 12.5px;
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.site-footer a.credit-link { color: #59c3ec; }
.site-footer a.credit-link:hover { color: #59c3ec; text-decoration: underline; }

/* pasek kontaktu na telefonie */
.call-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: grid;
  grid-template-columns: 1fr 1fr; }
.call-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 8px;
  background: var(--ink-900); color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; }
.call-bar a + a { background: var(--brand); }
@media (min-width: 760px) { .call-bar { display: none; } }
@media (max-width: 759px) { body { padding-bottom: 52px; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
