/* Paleta marki — zgodnie z wytycznymi klientki */
@import url('a11y.css');
:root {
  --blue: #6FAFCF;
  --blue-dark: #5a9fbf;
  --beige: #6FAFCF;
  --sage: #6FAFCF;
  --ink: #1F1F1F;
  --ink-dim: rgba(31, 31, 31, 0.62);
  --bg-off: #FFFFFF;
  --bg: #FFFFFF;
  --blue-light: rgba(111, 175, 207, 0.14);
  --line: rgba(31, 31, 31, 0.09);
  --line-blue: rgba(111, 175, 207, 0.35);
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  max-width: 100%;
  overflow-x: clip;
}
h1, h2, h3, h4 { font-weight: 600; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
img, video { max-width: 100%; height: auto; }
.text-blue { color: var(--blue); }
.text-beige { color: var(--blue); }
.text-sage { color: var(--blue); }

/* Animacje odsłaniania przy scrollu — czyste wzbogacenie: bez klasy .has-js
   na <html> (JS się nie wykonał) treść zawsze zostaje w pełni widoczna */
.has-js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.has-js .reveal.reveal-left { transform: translate(-32px, 0); }
.has-js .reveal.reveal-right { transform: translate(32px, 0); }
.has-js .reveal.in-view { opacity: 1; transform: translate(0, 0); }

@media (prefers-reduced-motion: reduce) {
  .has-js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-bg-blob-1, .hero-bg-blob-2, .hero-rating-card { animation: none !important; }
}

/* Topbar */
.topbar {
  background: #fff;
  color: var(--ink-dim);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.topbar-icon { width: 14px; height: 14px; flex-shrink: 0; color: var(--blue); }
.topbar-item strong,
.topbar-left .topbar-item:first-child { color: var(--ink); }
.topbar-divider { opacity: 0.35; font-size: 12px; }
.topbar-show-sm-only { display: none; }
.topbar-hours { white-space: nowrap; }
.topbar-hours-compact { font-size: 11.5px; white-space: normal; max-width: 280px; line-height: 1.4; text-align: center; }

/* Topbar + menu — przyklejone u góry przy scrollu */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
}

/* Header — pływające, zaokrąglone */
.site-header {
  position: relative;
  z-index: 50;
  background: transparent;
  padding: 4px 0 8px;
  box-shadow: none;
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(24px, 3.5vw, 36px);
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(111, 175, 207, 0.22);
  box-shadow:
    0 4px 8px rgba(31, 31, 31, 0.03),
    0 18px 44px rgba(111, 175, 207, 0.14);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-chrome.is-stuck {
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.06);
}
.site-chrome.is-stuck .header-inner {
  box-shadow:
    0 6px 12px rgba(31, 31, 31, 0.04),
    0 22px 48px rgba(111, 175, 207, 0.2);
  border-color: rgba(111, 175, 207, 0.32);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}
.logo-mark { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  display: block;
  width: 40px;
  height: auto;
  object-fit: contain;
}
.logo-text-col { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.logo-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 28px);
}
.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a:hover,
.main-nav a.active,
.main-nav a[aria-current="page"] { color: var(--blue); }
.nav-caret { font-size: 11px; opacity: 0.7; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  margin-left: 12px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1F1F1F;
  border-radius: 2px;
}
.nav-toggle-icon {
  display: none;
  width: 26px;
  height: 26px;
  color: var(--ink);
}

.btn-nav-cta {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-nav-cta:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(111, 175, 207, 0.35); }

/* Hero — pełnokadrowe zdjęcie bez ramek/cieni + prosta, pewna typografia */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6FAFCF;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow-icon { width: 16px; height: 16px; }

/* Hero strona główna */
.page-home {
  --home-chrome: 112px;
}

.page-home .home-hero {
  min-height: calc(100svh - var(--home-chrome));
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: visible;
}

.page-home .site-header--hero {
  position: relative;
  z-index: 50;
  background: transparent;
  padding-top: 0;
}

.home-hero-main {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  background: #fff;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: calc(100svh - var(--home-chrome));
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
  align-self: center;
}

.home-hero-kicker {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}

.home-hero-copy h1 {
  font-size: clamp(2.35rem, 4.6vw, 3.7rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.home-hero-lead {
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  color: var(--ink-dim);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 30em;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.home-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  max-height: calc(100svh - var(--home-chrome) - 3rem);
  align-self: center;
}

.home-hero-photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100svh - var(--home-chrome) - 3rem);
  object-fit: contain;
  object-position: center;
}

@media (max-width: 960px) {
  .page-home .home-hero { min-height: auto; overflow: visible; }
  .home-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    gap: 0;
    padding: 0 0 3rem;
  }
  .home-hero-visual {
    order: 1;
    flex: 0 0 auto;
    height: auto;
    max-height: none;
    align-self: stretch;
    margin-bottom: 2rem;
  }
  .home-hero-copy {
    order: 2;
    flex: 0 0 auto;
    max-width: none;
    padding: 0;
    text-align: center;
    align-items: center;
    position: static;
    z-index: auto;
  }
  .home-hero-kicker {
    align-self: center;
    margin: 0 0 1rem;
    font-size: clamp(10px, 2.8vw, 12px);
    letter-spacing: 0.1em;
    line-height: 1.55;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }
  .home-hero-photo,
  .page-home .home-hero-photo {
    max-height: min(52svh, 460px);
    object-fit: contain;
    object-position: center top;
  }
  .home-hero-copy h1 { margin-bottom: 14px; }
  .home-hero-lead { margin-inline: auto; margin-bottom: 20px; }
  .home-hero-actions { justify-content: center; }
}

@media (max-width: 480px) {
  .home-hero-copy h1 { font-size: 1.9rem; }
  .home-hero-actions { gap: 12px; }
  .btn-hero-primary, .btn-hero-outline { padding: 12px 22px; font-size: 13px; }
}

/* Features row */
.features-row {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.feature-col {
  text-align: center;
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(47, 110, 140, 0.07);
  border-color: var(--line-blue);
}
.feature-col-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-col-icon svg { width: 28px; height: 28px; }
.feature-col:nth-child(2) .feature-col-icon,
.feature-col:nth-child(3) .feature-col-icon {
  background: var(--blue-light);
  color: var(--blue);
}
.feature-col h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-col p {
  font-size: 0.875rem;
  color: var(--ink-dim);
  line-height: 1.65;
  max-width: 28ch;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .features-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* Services teaser (strona główna — skrót, pełna oferta na /uslugi.php) */
.services-teaser {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(4.5rem, 8vw, 6.5rem);
  background: #fff;
}
.services-head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.25rem);
  text-align: center;
}
.eyebrow-center { justify-content: center; }
.services-head h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 16px;
}
.services-lead {
  max-width: 42ch;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
}

.services-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}
.service-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(47, 110, 140, 0.09);
  border-color: var(--blue);
}
.service-chip:nth-child(7) {
  grid-column: 2;
}
.service-chip-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-chip-icon svg { width: 20px; height: 20px; }
.services-teaser-cta { text-align: center; }

@media (max-width: 900px) {
  .services-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px;
  }
  .service-chip:nth-child(7) { grid-column: auto; }
}
@media (max-width: 560px) {
  .services-chip-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* Services grid (pełne karty — używane na /uslugi.php) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(31,31,31,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(31,31,31,0.1);
}
.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-light);
  color: #6FAFCF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.service-card p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.65; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Page banner (podstrony, np. /uslugi.php) */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 72px 0 60px;
  background: var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-banner-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 760px;
  overflow-wrap: break-word;
  margin: 14px auto 18px;
}

/* Service detail (pełne opisy usług na /uslugi.php) */
.service-detail-section { padding: 80px 0; background: #ffffff; }
.service-detail-list-col {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-detail {
  display: flex;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
}
.service-detail-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 16px;
  background: var(--blue-light);
  color: #6FAFCF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail-icon svg { width: 26px; height: 26px; }
.service-detail-body h2 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 12px; line-height: 1.3; }
.service-detail-body p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.75; margin-bottom: 12px; }
.service-detail-body p:last-child { margin-bottom: 0; }
.service-detail-for { color: var(--ink) !important; }
.service-detail-for strong { color: #6FAFCF; }

@media (max-width: 620px) {
  .service-detail { flex-direction: column; padding: 24px; }
}

/* Przygotowanie do wizyty */
.prep-section { padding: 20px 0 90px; background: #ffffff; }
.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.prep-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px;
}
.prep-col h3 { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 20px; }
.prep-col .feature-list.prep-checklist { display: flex; flex-direction: column; gap: 16px; margin-bottom: 0; }
.prep-col .prep-checklist .feature-item { font-size: 14px; font-weight: 500; color: var(--ink); align-items: flex-start; }
.prep-checklist .feature-check { margin-top: 1px; }

.prep-steps { display: flex; flex-direction: column; gap: 20px; }
.prep-step { display: flex; align-items: flex-start; gap: 14px; font-size: 14px; color: var(--ink); }
.prep-step-num {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .prep-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .prep-section { padding: 8px 0 56px; }
  .prep-col { padding: 28px 24px; }
}

/* CTA band */
.cta-band { background: var(--blue); padding: 56px 0; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-band-inner h2 { font-size: 24px; font-weight: 600; color: #ffffff; margin-bottom: 8px; }
.cta-band-inner p { font-size: 14px; color: rgba(255,255,255,0.7); max-width: 480px; }
.cta-band-btn { white-space: nowrap; padding: 15px 30px; }
.cta-band .btn-call {
  background: #fff;
  color: var(--blue);
}
.cta-band .btn-call:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
}

@media (max-width: 700px) {
  .cta-band-inner { flex-direction: column; text-align: center; }
}

/* Intro (zdjęcie + tekst + statystyki w jednej, spójnej sekcji) */
.intro-section { padding: 70px 0 90px; background: #ffffff; }
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.intro-text-col .about-lead:last-of-type { margin-bottom: 32px; }
.stats-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-mini {
  text-align: center;
  padding: 22px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
}
.stat-mini-num { display: block; font-size: 28px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.stat-mini-label { font-size: 12px; color: var(--ink-dim); font-weight: 600; line-height: 1.3; }

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-photo-col { max-width: 380px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .stats-mini-grid { grid-template-columns: 1fr; }
}

/* Jak Pracuję / bio sections (/o-mnie.php) — wyśrodkowane karty tekstowe */
.how-i-work { padding: 64px 0; background: #fff; }
.how-i-work-col { max-width: 720px; margin: 0 auto; }
.prose-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 48px;
  box-shadow: 0 8px 24px rgba(31,31,31,0.05);
}
.how-i-work h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--ink);
  margin: 14px 0 18px;
  line-height: 1.3;
}
.how-i-work p { font-size: 15px; color: var(--ink-dim); line-height: 1.8; margin-bottom: 18px; }
.how-i-work p:last-child { margin-bottom: 0; }
.pull-quote {
  border-left: 4px solid #6FAFCF;
  margin: 28px 0;
  padding: 4px 0 4px 24px;
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  font-style: normal;
}

.areas-section { padding: 64px 0; background: #ffffff; }
.areas-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 48px;
}
.areas-note { font-size: 13.5px; color: var(--ink-dim); margin-top: 24px; margin-bottom: 0; }
.areas-note a { font-weight: 700; }

/* Karta dwukolumnowa: relacja + współpraca */
.split-card-section { padding: 64px 0; background: #fff; }
.split-card {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(31,31,31,0.05);
  overflow: hidden;
}
.split-card-item { padding: 40px 40px; }
.split-card-item + .split-card-item { border-left: 1px solid var(--line); }
.split-card-item h3 { font-size: 15px; font-weight: 800; color: #6FAFCF; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.03em; }
.split-card-item p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.75; margin-bottom: 0; }

@media (max-width: 720px) {
  .split-card { grid-template-columns: 1fr; }
  .split-card-item + .split-card-item { border-left: none; border-top: 1px solid var(--line); }
}

.personal-section { padding: 64px 0; background: #ffffff; }
.personal-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--blue-light);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 44px;
}
.personal-card-avatar {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 10px 24px rgba(31,31,31,0.14);
}
.personal-card-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.personal-card-body { flex: 1; }
.personal-card-quote {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #6FAFCF;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 4px;
  font-family: Georgia, serif;
}
.personal-card p { font-size: 16px; color: var(--ink); line-height: 1.8; font-weight: 500; margin: 0; }

@media (max-width: 560px) {
  .personal-card { flex-direction: column; text-align: center; padding: 32px 28px; }
}

.plain-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.plain-chip {
  display: inline-block;
  background: var(--blue-light);
  color: #6FAFCF;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
}

@media (max-width: 620px) {
  .personal-card { padding: 32px 24px; }
}

/* About section */
.about-section { padding: 90px 0; background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(47, 110, 140, 0.15);
}
.about-photo-blob {
  position: absolute;
  top: 8%;
  right: -6%;
  bottom: -6%;
  left: 8%;
  background: var(--blue-light);
  border-radius: 32px;
  z-index: 0;
}
.about-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-text-col h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 16px;
  max-width: 480px;
}
.about-lead { font-size: 15px; color: var(--ink-dim); max-width: 460px; margin-bottom: 28px; line-height: 1.7; }
.about-areas-label { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.about-personal { margin-top: 28px; }

.feature-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 30px;
}
.feature-list-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.feature-check {
  width: 20px;
  height: 20px;
  color: #6FAFCF;
  flex-shrink: 0;
}
.feature-check svg { width: 100%; height: 100%; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-hero-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(111, 175, 207, 0.35); }
.btn-hero-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-hero-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 380px; margin: 0 auto; }
  .about-text-col h2, .about-lead { max-width: none; }
  .feature-list-grid { grid-template-columns: 1fr; }
}

/* Why choose us section */
.why-section { padding: 20px 0 90px; background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.why-actions { margin-top: 36px; }
.focus-list { margin-top: 8px; }
.focus-item {
  padding: 16px 0 16px 20px;
  border-left: 3px solid rgba(111, 175, 207, 0.55);
}
.focus-item h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.focus-item p { font-size: 13.5px; color: var(--ink-dim); }

.why-photo-col { position: relative; }
.why-photo-frame {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  box-shadow: 0 20px 40px rgba(31,31,31,0.14);
}
.why-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.consult-card {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: 280px;
  background: var(--bg);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(31,31,31,0.18);
  padding: 24px;
}
.consult-card h3 { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.consult-card p { font-size: 13px; color: var(--ink-dim); margin-bottom: 16px; line-height: 1.6; }
.hours-list { margin-bottom: 18px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  flex-wrap: wrap;
}
.hours-list li span:first-child { min-width: 0; }
.hours-list li span:last-child { text-align: right; white-space: nowrap; }
.hours-list li:last-child { border-bottom: none; }
.hours-list .closed { color: #E0554F; font-weight: 700; }
.btn-call {
  display: block;
  text-align: center;
  background: var(--blue);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-call:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .why-photo-col { max-width: 380px; margin: 0 auto; }
  .consult-card { position: static; width: auto; margin-top: 20px; }
}

/* Stats bar */
.stats-bar { background: var(--blue-light); padding: 40px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { display: flex; align-items: center; gap: 12px; }
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg);
  color: #6FAFCF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-text { display: flex; flex-direction: column; font-size: 12.5px; color: var(--ink); font-weight: 500; }
.stat-text strong { font-size: 20px; font-weight: 800; color: var(--ink); }

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

/* Reviews (opinie z Google) */
.reviews-section { padding: 90px 0; background: var(--bg); }
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--ink-dim);
  font-weight: 600;
}
.reviews-summary .rating-stars { font-size: 15px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(47, 110, 140, 0.08); border-color: var(--blue); }
.review-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-name { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.review-meta { display: block; font-size: 11.5px; color: var(--ink-dim); margin-top: 1px; }
.review-stars { display: block; font-size: 13px; margin-bottom: 10px; }
.review-card p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.65; }

.reviews-cta { text-align: center; margin-top: 40px; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Kontakt (mapa + dane) */
.contact-section { padding: 20px 0 90px; background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: stretch;
}
.contact-info-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--blue-light);
  color: #6FAFCF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 19px; height: 19px; }
.contact-info-list strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.contact-info-list span { font-size: 13.5px; color: var(--ink-dim); line-height: 1.5; }

.contact-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(31,31,31,0.14);
  min-height: 360px;
}
.contact-map iframe { display: block; width: 100%; height: 100%; min-height: 360px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 320px; }
}

/* Footer */
.site-footer { background: #fff; padding: 64px 0 0; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-text.footer-logo-text { color: var(--ink); }
.footer-tagline { font-size: 13.5px; color: var(--ink-dim); line-height: 1.7; margin: 18px 0 22px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--blue); color: #fff; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--ink-dim); }
.footer-col a:hover { color: var(--blue); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-dim); line-height: 1.5; }
.footer-contact-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--blue); }
.footer-contact-list a { font-size: 13.5px; }

.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 12.5px; color: var(--ink-dim); }
.footer-legal { font-size: 12px; color: rgba(31, 31, 31, 0.45); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Mobile nav - tablet i telefon */
@media (max-width: 1024px) {
  .topbar { display: none; }
  .topbar-item.topbar-hide-sm { display: none; }
  .topbar-divider { display: none; }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    border-radius: 22px;
    padding: 12px 18px;
    gap: 12px;
    overflow: visible;
  }
  .site-header {
    overflow: visible;
    z-index: 100;
    padding: 6px 0 12px;
  }
  .logo {
    flex: initial;
    min-width: 0;
  }
  .nav-toggle {
    display: flex !important;
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    background: transparent;
    border-radius: 0;
  }
  .nav-toggle span { display: none; }
  .nav-toggle-icon { display: block; }
  .main-nav {
    display: none !important;
    grid-column: 1 / -1;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 110;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 22px 20px;
    border-radius: 22px;
    border: 1px solid rgba(111, 175, 207, 0.22);
    box-shadow: 0 18px 44px rgba(111, 175, 207, 0.14);
  }
  .main-nav.open { display: flex !important; }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  .logo-text { font-size: 17px; }
}

@media (max-width: 560px) {
  .topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .topbar-right { display: none; }
  .topbar-show-sm-only { display: inline-flex; }
  .topbar-left { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .topbar-item { font-size: 12px; }
  .logo-sub { display: none; }
  .logo-text { font-size: 16px; }
  .header-inner { padding: 14px 18px; }
  .site-header { padding: 6px 0 14px; }
}

/* Ujednolicone, ciaśniejsze odstępy sekcji na telefonach —
   desktopowe 90-100px paddingi robią na wąskim ekranie wrażenie
   rozjechanej, "urwanej" strony, gdy sekcje stoją jedna pod drugą */
@media (max-width: 640px) {
  .features-row { padding: 3rem 0; }
  .services-teaser { padding: 3.5rem 0 4rem; }
  .about-section { padding: 56px 0; }
  .why-section { padding: 8px 0 56px; }
  .stats-bar { padding: 28px 0; }
  .reviews-section { padding: 56px 0; }
  .contact-section { padding: 8px 0 56px; }
  .page-banner { padding: 48px 0 40px; }
  .service-detail-section { padding: 48px 0; }
  .cta-band { padding: 40px 0; }
  .intro-section { padding: 40px 0 48px; }
  .how-i-work { padding: 40px 0; }
  .areas-section { padding: 40px 0; }
  .split-card-section { padding: 40px 0; }
  .personal-section { padding: 40px 0; }
  .site-footer { padding: 40px 0 0; }

  .services-head { margin-bottom: 28px; }
  .prose-card, .areas-card { padding: 28px 24px; }
  .split-card-item { padding: 28px 24px; }
  .service-detail { padding: 24px; }
}

@media (max-width: 420px) {
  .page-banner-title { font-size: 26px; }
}

/* Tablet + mobile - dodatkowe poprawki responsywności */
@media (max-width: 860px) {
  .topbar-hours { font-size: 11.5px; white-space: normal; max-width: 280px; line-height: 1.4; }
  .contact-info-card { padding: 28px 24px; }
  .form-card { padding: 24px 20px; }
}

@media (max-width: 640px) {
  .consult-card { padding: 20px 18px; }
  .hours-list li { font-size: 12px; }
  .btn-hero-primary,
  .btn-hero-outline { width: 100%; justify-content: center; text-align: center; }
  .hero-actions,
  .home-hero-actions,
  .why-actions { flex-direction: column; width: 100%; }
  .hero-actions a,
  .home-hero-actions a,
  .why-actions a { width: 100%; }
  .contact-info-list li { flex-wrap: wrap; }
  .contact-info-list span { word-break: break-word; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-legal { line-height: 1.6; }
}

@media (max-width: 480px) {
  .page-home .home-hero-copy h1 { font-size: 1.75rem; line-height: 1.15; }
  .reviews-slider { margin: 0 32px; }
}

@media (max-width: 380px) {
  .float-dock {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 8px;
  }
  .float-a11y-panel {
    right: 0;
    left: auto;
    min-width: min(280px, calc(100vw - 32px));
  }
  .cookie-banner { bottom: 110px; }
}

/* Karuzela opinii */
.reviews-slider-wrap {
  position: relative;
  margin-top: 8px;
}
.reviews-slider {
  overflow: hidden;
  margin: 0 48px;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.reviews-track .review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}
.reviews-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}
.reviews-nav:hover { background: var(--blue-light); border-color: var(--blue); }
.reviews-nav:disabled { opacity: 0.35; cursor: default; }
.reviews-prev { left: 0; }
.reviews-next { right: 0; }
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.reviews-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.reviews-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}
.reviews-dot.is-active::before { background: var(--blue); transform: scale(1.15); }
.reviews-dot:hover::before { background: var(--blue); opacity: 0.7; }

@media (max-width: 900px) {
  .reviews-track .review-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 620px) {
  .reviews-slider { margin: 0 36px; }
  .reviews-track .review-card { flex: 0 0 100%; }
  .reviews-nav { width: 36px; height: 36px; min-width: 36px; }
}
