/* ==========================================================================
   KIK SHOW — system designu "Splash on White"
   Kanwa biała, kolor pochodzi ze zdjęć i logo. Fredoka (display) + Nunito (body).
   ========================================================================== */

/* Baloo 2 + Nunito — oba kroje mają pełny zestaw polskich znaków (ą ć ę ł ń ó ś ź ż).
   UWAGA: nie wracać do Fredoki — nie ma glifów ą/ć/ę/ń/ś/ź/ż i podstawia zastępczy krój. */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

/* ---------- TOKENY ---------- */
:root {
  /* kolory marki — wyprowadzone z logo (splash farby) */
  --red:        oklch(0.585 0.212 27);
  --red-dark:   oklch(0.505 0.196 27);
  --red-soft:   oklch(0.955 0.030 27);
  --cyan:       oklch(0.720 0.130 225);
  --cyan-soft:  oklch(0.960 0.028 225);
  --yellow:     oklch(0.855 0.160 85);
  --yellow-soft:oklch(0.965 0.045 85);
  --green:      oklch(0.760 0.170 140);
  --green-soft: oklch(0.960 0.040 140);
  --magenta:    oklch(0.620 0.220 350);
  --magenta-soft:oklch(0.960 0.035 350);
  --violet:     oklch(0.530 0.200 300);
  --violet-soft:oklch(0.958 0.030 300);

  /* neutralne */
  --ink:        oklch(0.215 0.018 265);
  --ink-2:      oklch(0.420 0.015 265);
  --ink-3:      oklch(0.560 0.012 265);
  --line:       oklch(0.905 0.008 265);
  --surface:    oklch(1 0 0);
  --surface-2:  oklch(0.975 0.004 265);
  --surface-3:  oklch(0.955 0.006 265);

  /* typografia — skala płynna, stosunek nagłówek:tekst ≈ 5× */
  /* fallbacki systemowe też mają komplet polskich znaków */
  --f-display: 'Baloo 2', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --f-body: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --t-hero:  clamp(2.25rem, 6.2vw, 4.6rem);
  --t-h2:    clamp(1.75rem, 3.9vw, 2.9rem);
  --t-h3:    clamp(1.2rem, 2vw, 1.5rem);
  --t-lead:  clamp(1.06rem, 1.6vw, 1.3rem);
  --t-body:  1.0625rem;
  --t-sm:    0.9375rem;
  --t-xs:    0.8125rem;

  /* przestrzeń — jednostka bazowa 4px */
  --s1: .25rem; --s2: .5rem;  --s3: .75rem; --s4: 1rem;
  --s5: 1.5rem; --s6: 2rem;   --s7: 3rem;   --s8: 4rem;
  --s9: 5.5rem; --s10: 7rem;

  --r-sm: 10px; --r: 18px; --r-lg: 26px; --r-pill: 999px;
  --shadow-sm: 0 1px 2px oklch(0.2 0.02 265 / .06), 0 2px 8px oklch(0.2 0.02 265 / .05);
  --shadow:    0 4px 12px oklch(0.2 0.02 265 / .07), 0 12px 28px oklch(0.2 0.02 265 / .07);
  --shadow-lg: 0 8px 24px oklch(0.2 0.02 265 / .10), 0 24px 56px oklch(0.2 0.02 265 / .10);

  --wrap: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 220ms;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.1; text-wrap: balance; }
p { text-wrap: pretty; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: var(--s3) var(--s5);
  border-radius: 0 0 var(--r-sm) 0; font-weight: 700;
}
.skip:focus { left: 0; }

/* ---------- UKŁAD ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
@media (max-width: 560px) { .wrap { width: min(100% - 1.75rem, var(--wrap)); } }
.section { padding-block: clamp(3.25rem, 7vw, var(--s10)); }
.section--tint { background: var(--surface-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--f-display); font-weight: 600;
  font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); margin-bottom: var(--s3);
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--red); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head h2 { font-size: var(--t-h2); margin-bottom: var(--s3); }
.section-head p { font-size: var(--t-lead); color: var(--ink-2); }

/* ---------- PRZYCISKI ---------- */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  min-height: 52px; padding: 0 var(--s5);
  background: var(--bg); color: var(--fg);
  font-family: var(--f-display); font-weight: 600; font-size: 1.0625rem;
  text-decoration: none; border: 2px solid transparent; border-radius: var(--r-pill);
  cursor: pointer; white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  box-shadow: 0 4px 14px oklch(0.585 0.212 27 / .28);
}
.btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 22px oklch(0.585 0.212 27 / .34); }
.btn:active { transform: translateY(0); box-shadow: 0 2px 8px oklch(0.585 0.212 27 / .3); }
.btn[aria-disabled="true"], .btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: var(--line); box-shadow: none;
}
.btn--ghost:hover { background: var(--surface-2); border-color: var(--ink-3); box-shadow: none; transform: translateY(-2px); }
.btn--lg { min-height: 60px; padding: 0 var(--s6); font-size: 1.15rem; }
.btn--block { width: 100%; }

.btn .ico { width: 20px; height: 20px; flex: none; }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--ink); color: oklch(0.93 0.01 265);
  font-size: var(--t-xs); padding-block: var(--s2);
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5); align-items: center; justify-content: space-between; }
.topbar a { text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--yellow); }
.topbar .dot { color: var(--green); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: oklch(1 0 0 / .88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: var(--s5); min-height: 76px; }
.brand { display: flex; align-items: center; flex: none; text-decoration: none; }
.brand img { height: 46px; width: auto; }
@media (max-width: 480px) { .brand img { height: 38px; } }

.nav { margin-left: auto; display: flex; align-items: center; gap: var(--s2); }
.nav a {
  padding: var(--s2) var(--s3); border-radius: var(--r-sm);
  text-decoration: none; font-weight: 700; font-size: var(--t-sm); color: var(--ink-2);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav a:hover { color: var(--ink); background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--red); }
/* CTA w nawigacji musi zachować biały tekst — inaczej .nav a nadpisuje --fg przycisku */
.nav a.btn { color: #fff; background: var(--red); }
.nav a.btn:hover { color: #fff; background: var(--red-dark); }
.header-cta { margin-left: var(--s3); }

.burger {
  display: none; margin-left: auto;
  width: 48px; height: 48px; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: var(--dur); }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: var(--dur);
}
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 940px) {
  /* KRYTYCZNE: backdrop-filter tworzy blok zawierający dla position:fixed,
     przez co wysuwane menu byłoby uwięzione w nagłówku. Na mobile go wyłączamy. */
  .site-header { backdrop-filter: none; background: var(--surface); }

  .burger { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 340px); z-index: 3;
    background: var(--surface); flex-direction: column; align-items: stretch;
    padding: calc(76px + var(--s5)) var(--s5) var(--s5); gap: var(--s1);
    box-shadow: var(--shadow-lg); transform: translateX(100%);
    transition: transform 260ms var(--ease); overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateX(0); }
  .nav a { padding: var(--s3) var(--s4); font-size: 1.0625rem; }
  .header-cta { margin: var(--s4) 0 0; }
  .nav-scrim {
    position: fixed; inset: 0; z-index: 2; background: oklch(0.2 0.02 265 / .45);
    opacity: 0; pointer-events: none; transition: opacity var(--dur);
  }
  .nav-scrim[data-open="true"] { opacity: 1; pointer-events: auto; }
}

/* ---------- HERO ---------- */
.hero { position: relative; padding-block: clamp(2.5rem, 5vw, var(--s8)) clamp(2.5rem, 5vw, var(--s7)); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 88% 8%,  oklch(0.720 0.130 225 / .16), transparent 62%),
    radial-gradient(45% 45% at 4% 92%,  oklch(0.855 0.160 85 / .20), transparent 60%),
    radial-gradient(40% 40% at 62% 100%, oklch(0.620 0.220 350 / .10), transparent 60%);
}
.hero-grid { display: grid; gap: clamp(2rem, 4vw, var(--s7)); align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }

.hero h1 { font-size: var(--t-hero); letter-spacing: -.015em; margin-bottom: var(--s4); }
.hero h1 .hl { color: var(--red); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  /* wysokość dopasowana do metryk Baloo 2 — pasek ma leżeć POD tekstem, nie pod wierszem */
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .18em; height: .26em;
  background: oklch(0.855 0.160 85 / .5); border-radius: 3px; z-index: -1;
}
.hero-lead { font-size: var(--t-lead); color: var(--ink-2); max-width: 54ch; margin-bottom: var(--s5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-bottom: var(--s5); }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute; left: -14px; bottom: -18px;
  background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow);
  padding: var(--s3) var(--s4); display: flex; align-items: center; gap: var(--s3);
  max-width: 260px;
}
@media (max-width: 560px) { .hero-badge { left: 8px; bottom: -14px; max-width: 220px; } }
.hero-badge strong { font-family: var(--f-display); font-size: 1.4rem; color: var(--red); line-height: 1; }
.hero-badge span { font-size: var(--t-xs); color: var(--ink-2); line-height: 1.35; }

/* paski zaufania */
.trust { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s3); }
.chip {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: var(--s2) var(--s4); font-size: var(--t-sm); font-weight: 700; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.chip .ico { width: 18px; height: 18px; color: var(--green); flex: none; }

/* ---------- KARTY ATRAKCJI ---------- */
.cards { display: grid; gap: clamp(1.1rem, 2vw, var(--s5)); grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }

/* wariant: zawsze dwa kafelki obok siebie na mobile (sekcje tekstowe) */
.cards--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s3); }
.cards--2col .card-body { padding: var(--s4); gap: var(--s2); }
.cards--2col .card-body h3 { font-size: 1.02rem; line-height: 1.2; }
.cards--2col .card-body p { font-size: 0.875rem; }
@media (min-width: 700px) {
  .cards--2col { gap: clamp(1.1rem, 2vw, var(--s5)); grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cards--2col .card-body { padding: var(--s5); gap: var(--s3); }
  .cards--2col .card-body h3 { font-size: var(--t-h3); }
  .cards--2col .card-body p { font-size: var(--t-sm); }
}

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover, .card:focus-within { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-3); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-tag {
  position: absolute; top: var(--s3); left: var(--s3);
  background: var(--surface); color: var(--ink); border-radius: var(--r-pill);
  padding: 5px var(--s3); font-size: var(--t-xs); font-weight: 800;
  box-shadow: var(--shadow-sm);
}
/* uczciwy placeholder — brak zdjęcia danej atrakcji w materiałach */
.card-media--empty {
  display: grid; place-items: center; gap: var(--s2);
  background:
    repeating-linear-gradient(135deg, var(--surface-2) 0 14px, var(--surface-3) 14px 28px);
  color: var(--ink-3); text-align: center; padding: var(--s5);
}
.card-media--empty .ph-ico { width: 38px; height: 38px; opacity: .5; }
.card-media--empty span { font-size: var(--t-xs); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

.card-body { padding: var(--s5) var(--s5) var(--s5); display: flex; flex-direction: column; flex: 1; gap: var(--s3); }
.card-body h3 { font-size: var(--t-h3); }
.card-body p { color: var(--ink-2); font-size: var(--t-sm); flex: 1; }
.card-list { list-style: none; padding: 0; display: grid; gap: 6px; font-size: var(--t-sm); color: var(--ink-2); }
.card-list li { display: flex; gap: var(--s2); align-items: flex-start; }
.card-list li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: .55em; border-radius: 50%; background: var(--cyan); }
.card-cta {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-family: var(--f-display); font-weight: 600; color: var(--red); text-decoration: none;
  min-height: 44px;
}
.card-cta::after { content: "→"; transition: transform var(--dur) var(--ease); }
.card-cta:hover::after { transform: translateX(4px); }
.card-cta::before { content: ""; position: absolute; inset: 0; }

/* wariant akcentów */
.card:nth-child(6n+1) .card-list li::before { background: var(--red); }
.card:nth-child(6n+2) .card-list li::before { background: var(--cyan); }
.card:nth-child(6n+3) .card-list li::before { background: var(--yellow); }
.card:nth-child(6n+4) .card-list li::before { background: var(--green); }
.card:nth-child(6n+5) .card-list li::before { background: var(--magenta); }
.card:nth-child(6n+6) .card-list li::before { background: var(--violet); }

/* ---------- KROKI ---------- */
.steps { display: grid; gap: var(--s5); grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); counter-reset: step; }
.step { position: relative; padding: var(--s6) var(--s5) var(--s5); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -22px; left: var(--s5);
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--red); color: #fff; border-radius: 50%;
  font-family: var(--f-display); font-weight: 700; font-size: 1.35rem;
  box-shadow: 0 4px 12px oklch(0.585 0.212 27 / .3);
}
.step h3 { font-size: 1.2rem; margin-bottom: var(--s2); }
.step p { color: var(--ink-2); font-size: var(--t-sm); }

/* ---------- OKAZJE ---------- */
.pills { display: flex; flex-wrap: wrap; gap: var(--s3); }
.pill {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: var(--s3) var(--s5); font-weight: 700; font-size: var(--t-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pill:hover { transform: translateY(-3px); border-color: var(--cyan); }

/* ---------- GALERIA ---------- */
.gallery { columns: 4 220px; column-gap: var(--s3); }
.gallery figure { break-inside: avoid; margin-bottom: var(--s3); }
.gallery button {
  display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in;
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gallery button:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow); }
.gallery img { width: 100%; border-radius: var(--r); }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  place-items: center; background: oklch(0.15 0.02 265 / .93); padding: var(--s5);
}
.lightbox[open], .lightbox[data-open="true"] { display: grid; }
.lightbox img { max-width: min(94vw, 1200px); max-height: 86vh; border-radius: var(--r); object-fit: contain; }
.lightbox-close, .lightbox-nav {
  position: absolute; width: 52px; height: 52px; display: grid; place-items: center;
  background: oklch(1 0 0 / .12); color: #fff; border: 0; border-radius: 50%;
  cursor: pointer; font-size: 1.5rem; transition: background var(--dur);
}
.lightbox-close:hover, .lightbox-nav:hover { background: oklch(1 0 0 / .26); }
.lightbox-close { top: var(--s5); right: var(--s5); }
.lightbox-nav[data-dir="prev"] { left: var(--s4); top: 50%; transform: translateY(-50%); }
.lightbox-nav[data-dir="next"] { right: var(--s4); top: 50%; transform: translateY(-50%); }
.lightbox-count { position: absolute; bottom: var(--s5); left: 50%; transform: translateX(-50%); color: oklch(1 0 0 / .8); font-size: var(--t-sm); font-weight: 700; }

/* ---------- OBSZAR ---------- */
.area-grid { display: grid; gap: clamp(2rem, 4vw, var(--s7)); align-items: start; }
@media (min-width: 860px) { .area-grid { grid-template-columns: 1fr 1.15fr; } }
.area-list { display: flex; flex-wrap: wrap; gap: var(--s2); list-style: none; padding: 0; }
.area-list li {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 7px var(--s4); font-size: var(--t-sm); font-weight: 600; color: var(--ink-2);
}
.area-list li.is-home { background: var(--red); border-color: var(--red); color: #fff; font-weight: 800; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--s3); max-width: 860px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq details[open] { border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  padding: var(--s4) var(--s5); cursor: pointer; list-style: none;
  font-family: var(--f-display); font-weight: 600; font-size: 1.06rem; min-height: 60px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; width: 30px; height: 30px; display: grid; place-items: center;
  background: var(--surface-3); border-radius: 50%; font-size: 1.3rem; line-height: 1;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.faq details[open] summary::after { content: "−"; background: var(--cyan); color: #fff; }
.faq summary:hover { background: var(--surface-2); }
.faq .faq-body { padding: 0 var(--s5) var(--s5); color: var(--ink-2); }

/* ---------- KONTAKT / CTA ---------- */
.cta-band {
  background: var(--ink); color: #fff; border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, var(--s8)); position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 60% at 92% 12%, oklch(0.720 0.130 225 / .30), transparent 60%),
    radial-gradient(45% 55% at 6% 96%, oklch(0.855 0.160 85 / .22), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: var(--t-h2); margin-bottom: var(--s3); }
.cta-band p { color: oklch(0.88 0.01 265); font-size: var(--t-lead); max-width: 56ch; margin-bottom: var(--s5); }

.phone-big {
  display: inline-flex; align-items: center; gap: var(--s3);
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.8rem, 4.4vw, 2.9rem); color: #fff; text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.phone-big:hover { color: var(--yellow); }
.phone-big .ico { width: clamp(30px, 4vw, 44px); height: clamp(30px, 4vw, 44px); flex: none; }

.contact-grid { display: grid; gap: var(--s5); grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.contact-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s5); display: flex; flex-direction: column; gap: var(--s2);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .ico-box { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--red-soft); color: var(--red); margin-bottom: var(--s2); }
.contact-card h3 { font-size: 1.1rem; }
.contact-card a { font-weight: 800; text-decoration: none; color: var(--red); word-break: break-word; }
.contact-card a:hover { text-decoration: underline; }
.contact-card span { font-size: var(--t-sm); color: var(--ink-3); }

/* ---------- PASEK MOBILNY ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: var(--s2); padding: var(--s3);
  background: oklch(1 0 0 / .95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding-bottom: calc(var(--s3) + env(safe-area-inset-bottom, 0px));
}
.callbar .btn { flex: 1; min-height: 56px; font-size: 1.06rem; }
@media (max-width: 820px) { .callbar { display: flex; } body { padding-bottom: 88px; } }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); padding-block: var(--s7) var(--s5); margin-top: var(--s8); }
.footer-grid { display: grid; gap: var(--s6); grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); margin-bottom: var(--s6); }
.footer-grid img { height: 44px; width: auto; margin-bottom: var(--s3); }
.footer-grid h3 { font-family: var(--f-display); font-size: 1rem; margin-bottom: var(--s3); }
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: var(--s2); }
.footer-grid a { text-decoration: none; color: var(--ink-2); font-size: var(--t-sm); }
.footer-grid a:hover { color: var(--red); text-decoration: underline; }
.footer-grid p { font-size: var(--t-sm); color: var(--ink-2); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: var(--s4);
  display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: space-between;
  font-size: var(--t-xs); color: var(--ink-2);
}
.footer-bottom a { color: var(--ink-2); }

/* ---------- ANIMACJA WEJŚCIA ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 620ms var(--ease), transform 620ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- POMOCNICZE ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.prose { max-width: 68ch; }
.prose h2 { font-size: var(--t-h2); margin-block: var(--s6) var(--s3); }
.prose h3 { font-size: var(--t-h3); margin-block: var(--s5) var(--s2); }
.prose p, .prose ul { margin-bottom: var(--s4); color: var(--ink-2); }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: var(--s2); }
