/* =====================================================================
   SUPERKIDS — Terapeutyczny Punkt Przedszkolny
   Redesign "Akademia Superbohaterów"
   Design system / global styles
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand colours (z nowego logo SUPERKIDS: magenta + żółć + pomarańcz) */
  /* --red == kolor wiodący marki = MAGENTA z logo (nazwa tokenu zachowana) */
  --red:        #d83c6c;   /* magenta — wiodący akcent / CTA */
  --red-600:    #c22f5d;
  --red-700:    #a82550;
  /* --navy == drugorzędny akcent = POMARAŃCZ z logo (czytelny w tekście) */
  --navy:       #e0761f;   /* pomarańcz — drugorzędny akcent / tekst */
  --navy-700:   #3d1a2e;   /* śliwka — średni ciemny */
  --navy-900:   #2b1020;   /* głęboka śliwka — tło stopki / ciemne sekcje */
  --blue:       #f0903c;   /* pomarańcz jasny */
  --sky:        #ffb15a;   /* pomarańcz pastelowy */
  --sky-soft:   #ffe7d3;
  --yellow:     #fcc018;   /* żółć z logo */
  --yellow-400: #ffd23e;
  --mint:       #2fb67e;   /* zieleń "wzrostu" — pojedynczy świeży akcent */
  --mint-soft:  #d8f6e8;

  /* Neutrals (ocieplone) */
  --cream:      #fff7f0;
  --cream-2:    #fdeede;
  --paper:      #ffffff;
  --ink:        #2a1620;   /* ciepły grafit */
  --muted:      #7d5f6b;   /* ciepły szaro-śliwkowy — przyciemniony do WCAG AA (≥4.5:1 także na tle gradientu #fdeede) */
  --line:       #f2e7ec;

  /* Effects */
  --r-sm: 14px;
  --r:    22px;
  --r-lg: 34px;
  --r-xl: 46px;
  --pill: 999px;

  --shadow-sm: 0 6px 18px rgba(64, 18, 40, .07);
  --shadow:    0 18px 44px rgba(64, 18, 40, .12);
  --shadow-lg: 0 34px 70px rgba(64, 18, 40, .20);
  --shadow-red: 0 18px 40px rgba(216, 60, 108, .35);
  --shadow-navy:0 18px 40px rgba(43, 16, 32, .30);

  --ring: rgba(216, 60, 108, .35);

  --grad-hero: radial-gradient(120% 120% at 80% 0%, #fff2f6 0%, #fff0e3 46%, #fdeede 100%);
  --grad-red:  linear-gradient(135deg, #ef5d8a 0%, #d83c6c 55%, #b82a55 100%);
  --grad-navy: linear-gradient(135deg, #4a1c38 0%, #2b1020 100%);
  --grad-sun:  linear-gradient(135deg, #ffd35a 0%, #fcc018 60%, #f5a623 100%);
  /* pomocniczy gradient marki: magenta → pomarańcz → żółć (jak w logo "KIDS") */
  --grad-brand: linear-gradient(120deg, #d83c6c 0%, #f0903c 55%, #fcc018 100%);

  --maxw: 1200px;
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out:    cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Metryczne fallbacki — font zastępczy = ta sama szerokość co webfont (zero skoku/CLS) */
@font-face{ font-family:"Baloo 2 Fallback"; src:local("Arial"); size-adjust:95%; }
@font-face{ font-family:"Jakarta Fallback"; src:local("Arial"); size-adjust:102.5%; }

body {
  font-family: "Plus Jakarta Sans", "Jakarta Fallback", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, .display {
  font-family: "Baloo 2", "Baloo 2 Fallback", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--navy-900);
}

::selection { background: var(--yellow); color: var(--navy-900); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container--wide { max-width: 1340px; }
.section { position: relative; padding: 96px 0; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }
.relative { position: relative; }

/* Section eyebrow + title */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 600;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: #ce3566;   /* magenta przyciemniona do AA na białym */
  background: #fff; border: 1.5px solid #ffe0e6;
  padding: 8px 16px; border-radius: var(--pill);
  box-shadow: var(--shadow-sm);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(216,60,108,.18); }
.eyebrow.is-navy { color: #b85e10; border-color: #ffe2cf; }   /* pomarańcz przyciemniony do AA */
.eyebrow.is-navy::before { background: var(--navy); box-shadow: 0 0 0 4px rgba(224,118,31,.16); }

.title {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  margin: 18px 0 0;
}
.title .hl { position: relative; color: var(--red); white-space: nowrap; }
.title .hl-navy { color: var(--navy); }
.lead {
  color: var(--muted); font-size: 1.12rem; max-width: 62ch; margin-top: 18px;
}
.center .lead { margin-inline: auto; }

/* Squiggle underline accent */
.squiggle { position: relative; display: inline-block; }
.squiggle::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.12em; height: .34em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'%3E%3Cpath d='M2 8c14-8 28 4 42-1s26-8 40-2 30 5 34 3' fill='none' stroke='%23ffc400' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 600; font-size: 1.02rem;
  color: var(--fg); background: var(--bg);
  padding: 15px 28px; border-radius: var(--pill);
  box-shadow: var(--shadow-red);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), background .3s;
  will-change: transform; position: relative; isolation: isolate;
}
.btn svg { width: 20px; height: 20px; transition: transform .35s var(--ease-spring); }
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0) scale(.99); }
.btn--navy  { --bg: var(--navy); box-shadow: var(--shadow-navy); }
.btn--yellow{ --bg: var(--yellow); --fg: var(--navy-900); box-shadow: 0 18px 40px rgba(255,196,0,.4); }
.btn--ghost {
  --fg: var(--navy); background: #fff; box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--navy); }
.btn--lg { padding: 18px 36px; font-size: 1.12rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

.linklike {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 600; color: var(--red);
}
.linklike svg { width: 18px; height: 18px; transition: transform .3s var(--ease-spring); }
.linklike:hover svg { transform: translateX(5px); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900); color: #f0d6e0;
  font-size: .9rem; font-weight: 500;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 18px; min-height: 44px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .25s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: var(--yellow); }
.topbar .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar .chip { color: var(--navy-900); background: var(--yellow); padding: 3px 12px; border-radius: var(--pill); font-weight: 700; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  transition: padding .35s var(--ease-out), background .35s;
  padding: 16px 0;
}
.header__inner {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  border-radius: var(--pill);
  padding: 10px 12px 10px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  transition: border-radius .35s var(--ease-out), box-shadow .35s;
}
.header.scrolled { padding: 8px 0; }
.header.scrolled .header__inner { box-shadow: var(--shadow-lg); }

.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 56px; width: auto; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 700; font-size: 1.28rem; color: var(--navy); letter-spacing: .01em; }
.brand__name b { color: var(--red); }
.brand__sub { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 500; font-size: 1.02rem;
  color: var(--navy-900); padding: 10px 16px; border-radius: var(--pill);
  position: relative; transition: color .25s, background .25s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav__link:hover, .nav__link.active { color: var(--red); background: #fff3f5; }
.nav__link svg { width: 14px; height: 14px; opacity: .65; transition: transform .3s; }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
  background: #fff; border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: 12px; width: 320px; opacity: 0; visibility: hidden;
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
  border: 1px solid var(--line); z-index: 70;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-drop:hover .nav__link svg { transform: rotate(180deg); }
.drop::before { content: ""; position: absolute; top: -8px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 16px; height: 16px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.drop a {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--r-sm);
  font-weight: 500; font-size: .96rem; transition: background .2s, transform .2s;
}
.drop a:hover { background: var(--cream); transform: translateX(3px); }
.drop a i { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--cream-2); color: var(--red); flex: none; }
.drop a i svg { width: 18px; height: 18px; }

.nav__cta { margin-left: 8px; }

/* Burger */
.burger { display: none; width: 50px; height: 50px; border-radius: 14px; background: var(--navy); align-items: center; justify-content: center; flex-direction: column; gap: 5px; box-shadow: var(--shadow-navy); }
.burger span { width: 22px; height: 2.5px; background: #fff; border-radius: 3px; transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
}
.drawer__scrim { position: absolute; inset: 0; background: rgba(28,12,22,.5); opacity: 0; transition: opacity .35s; backdrop-filter: blur(2px); }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: var(--paper); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .4s var(--ease-out);
  padding: 26px 24px; overflow-y: auto;
}
.drawer.open { pointer-events: auto; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.drawer__close { width: 44px; height: 44px; border-radius: 12px; background: var(--cream); display: grid; place-items: center; color: var(--navy); }
.drawer__close svg { width: 22px; height: 22px; }
.drawer nav a { display: block; padding: 14px 16px; border-radius: var(--r-sm); font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 500; font-size: 1.1rem; color: var(--navy-900); transition: background .2s; }
.drawer nav a:hover { background: var(--cream); }
.drawer__group-label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding: 18px 16px 6px; }
.drawer__sub a { font-size: .98rem; padding: 10px 16px 10px 30px; color: var(--muted); font-family: "Plus Jakarta Sans"; }
.drawer .btn { margin-top: 22px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; padding: 60px 0 120px; background: var(--grad-hero); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; position: relative; z-index: 2; }

.hero__eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.5rem); font-weight: 700; }
.hero h1 .pop { color: var(--red); position: relative; display: inline-block; }
.hero h1 .pop::after {
  content: ""; position: absolute; inset: -6% -8%; z-index: -1;
  background: radial-gradient(circle, rgba(255,196,0,.45), transparent 70%);
}
.hero h1 .sun { color: var(--navy); }
.hero__sub { font-size: 1.2rem; color: var(--muted); margin-top: 22px; max-width: 52ch; }
.hero__cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero__trust { display: flex; align-items: center; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.hero__ages { display: flex; }
.hero__ages span {
  width: 48px; height: 48px; border-radius: 50%; margin-left: -12px; border: 3px solid #fff;
  display: grid; place-items: center; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 700; color: #fff; font-size: .95rem;
  box-shadow: var(--shadow-sm);
}
.hero__ages span:first-child { margin-left: 0; }
.hero__trust-txt b { font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; color: var(--navy-900); }
.hero__trust-txt small { display: block; color: var(--muted); font-size: .9rem; }
.stars { color: var(--yellow); letter-spacing: 2px; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__blob {
  position: relative; aspect-ratio: 1/1; border-radius: 42% 58% 56% 44% / 50% 44% 56% 50%;
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 8px solid #fff;
  animation: blobMorph 14s ease-in-out infinite;
}
.hero__blob img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
@keyframes blobMorph {
  0%,100% { border-radius: 42% 58% 56% 44% / 50% 44% 56% 50%; }
  33%     { border-radius: 56% 44% 42% 58% / 44% 56% 44% 56%; }
  66%     { border-radius: 48% 52% 60% 40% / 56% 48% 52% 44%; }
}

/* floating cards on hero */
.float-card {
  position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: var(--r); box-shadow: var(--shadow); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; z-index: 3;
  border: 1px solid rgba(255,255,255,.8);
}
.float-card i { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex: none; color: #fff; }
.float-card i svg { width: 24px; height: 24px; }
.float-card b { font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; display: block; font-size: 1.05rem; color: var(--navy-900); line-height: 1.1; }
.float-card small { color: var(--muted); font-size: .82rem; }
.float-card--tl { top: 6%; left: -7%; animation: floatY 5s ease-in-out infinite; }
.float-card--br { bottom: 9%; right: -6%; animation: floatY 6s ease-in-out infinite .8s; }
.float-card--ml { bottom: 30%; left: -10%; animation: floatY 5.5s ease-in-out infinite .4s; }
@keyframes floatY { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }

/* Decorative floating shapes */
.shape { position: absolute; z-index: 1; pointer-events: none; opacity: .9; }
.shape--star { animation: spinSlow 16s linear infinite; }
.shape--float { animation: floatY 7s ease-in-out infinite; }
.shape--float2 { animation: floatY 9s ease-in-out infinite 1s; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.blob-bg { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; z-index: 0; pointer-events: none; }

/* Halftone comic dots */
.dots {
  position: absolute; z-index: 0; pointer-events: none;
  background-image: radial-gradient(currentColor 2px, transparent 2px);
  background-size: 16px 16px; opacity: .18;
}

/* =====================================================================
   Wave / curve dividers
   ===================================================================== */
.wave { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 1; }
.wave svg { width: 100%; height: auto; display: block; }
.wave--top { top: -1px; }
.wave--bottom { bottom: -1px; }

/* =====================================================================
   Marquee (trust strip / partners)
   ===================================================================== */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 70px; width: max-content; animation: marquee 32s linear infinite; align-items: center; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.tape { background: var(--navy); color: #fff; padding: 24px 0; margin: 8px 0; position: relative; z-index: 2; transform: rotate(-1.4deg) scale(1.06); overflow: hidden; }
.tape .marquee { padding: 4px 0; }
.tape .marquee__track { gap: 46px; animation-duration: 30s; }
.tape__item { display: inline-flex; align-items: center; gap: 12px; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 600; font-size: 1.15rem; line-height: 1.3; white-space: nowrap; }
.tape__item svg { width: 22px; height: 22px; color: var(--yellow); flex: none; }

/* =====================================================================
   Cards / features
   ===================================================================== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  margin-bottom: 20px; color: #fff; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-spring);
}
.card:hover .card__icon { transform: rotate(-8deg) scale(1.08); }
.card__icon svg { width: 32px; height: 32px; }
.card h3, .card h4 { font-size: 1.32rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 1rem; }
.card__num { position: absolute; top: 18px; right: 22px; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 700; font-size: 3.4rem; color: var(--cream-2); z-index: 0; line-height: 1; }
.card > * { position: relative; }

/* colour variants for icons */
.ic-red   { background: var(--grad-red); }
.ic-navy  { background: var(--grad-navy); }
.ic-sun   { background: var(--grad-sun); color: var(--navy-900) !important; }
.ic-mint  { background: linear-gradient(135deg, #46d39b, #1da86a); }
.ic-sky   { background: linear-gradient(135deg, #ffb15a, #f0903c); }   /* pomarańcz */
.ic-violet{ background: linear-gradient(135deg, #d05e95, #9b2f6a); }   /* jagoda/śliwka */

/* Bento – "na co może liczyć" */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.bento .card { margin: 0; }
.bento .b-tall { grid-row: span 2; }
.bento .col-2 { grid-column: span 2; }
.bento .col-3 { grid-column: span 3; }
.bento .col-4 { grid-column: span 4; }
.bento .col-6 { grid-column: span 6; }
.bento .b-feature { background: var(--grad-navy); color: #fff; }
.bento .b-feature h3 { color: #fff; }
.bento .b-feature p { color: rgba(255,255,255,.82); }
.bento .b-feature .card__num { color: rgba(255,255,255,.12); }
.bento .b-sun { background: var(--grad-sun); }
.bento .b-sun h3, .bento .b-sun p { color: var(--navy-900); }

/* check list */
.ticks { display: grid; gap: 14px; margin-top: 6px; }
.ticks li { display: flex; align-items: flex-start; gap: 13px; font-weight: 500; }
.ticks li svg { width: 26px; height: 26px; flex: none; color: var(--mint); margin-top: 1px; }
.ticks.on-dark li { color: rgba(255,255,255,.92); }

/* =====================================================================
   Split feature (about)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--rev .split__media { order: 2; }
.media-frame { position: relative; }
.media-frame img { border-radius: var(--r-lg); box-shadow: var(--shadow); width: 100%; }
.media-frame .badge-float {
  position: absolute; background: #fff; border-radius: var(--r); box-shadow: var(--shadow);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.media-frame .badge-float i { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #fff; flex: none; }
.media-frame .badge-float b { font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-size: 1.5rem; color: var(--navy-900); display: block; line-height: 1; }
.media-frame .badge-float small { color: var(--muted); font-size: .85rem; }

/* =====================================================================
   Stats
   ===================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 18px; }
.stat__num { font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; background: var(--grad-red); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat--navy .stat__num { background: var(--grad-navy); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat--sun .stat__num { background: linear-gradient(120deg, #e0761f, #b8860b); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }   /* ciepły amber zamiast żółci #fcc018 (1.65:1 — nieczytelna na bieli); oba końce ≥3:1 dla dużego tekstu */
.stat__label { margin-top: 8px; font-weight: 600; color: var(--ink); }
.stat__sub { color: var(--muted); font-size: .9rem; }

/* =====================================================================
   Therapy cards ("supermoce")
   ===================================================================== */
.power-card {
  background: #fff; border-radius: var(--r-lg); padding: 28px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.power-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: var(--grad-red); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease-out); }
.power-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.power-card:hover::before { transform: scaleX(1); }
.power-card__top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.power-card__ic { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; color: #fff; flex: none; transition: transform .4s var(--ease-spring); }
.power-card:hover .power-card__ic { transform: rotate(-8deg) scale(1.06); }
.power-card__ic svg { width: 30px; height: 30px; }
.power-card__tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); font-weight: 700; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; }
.power-card h3 { font-size: 1.22rem; line-height: 1.18; }
.power-card p { color: var(--muted); font-size: .97rem; margin-top: 6px; }

/* =====================================================================
   Gallery
   ===================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery a { position: relative; overflow: hidden; border-radius: var(--r); box-shadow: var(--shadow-sm); display: block; }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(43,16,32,.6)); opacity: 0; transition: opacity .4s; }
.gallery a:hover img { transform: scale(1.08); }
.gallery a:hover::after { opacity: 1; }
.gallery a::before { content: "+"; position: absolute; z-index: 2; right: 14px; bottom: 10px; color: #fff; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-size: 1.8rem; opacity: 0; transform: translateY(6px); transition: .4s; }
.gallery a:hover::before { opacity: 1; transform: translateY(0); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(28,12,22,.94); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .3s; padding: 30px; backdrop-filter: blur(6px); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--r); box-shadow: var(--shadow-lg); transform: scale(.94); transition: transform .35s var(--ease-spring); }
.lightbox.open img { transform: scale(1); }
.lightbox__close { position: absolute; top: 24px; right: 28px; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; display: grid; place-items: center; }
.lightbox__close svg { width: 26px; height: 26px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; display: grid; place-items: center; }
.lightbox__nav:hover { background: var(--red); }
.lb-prev { left: 22px; } .lb-next { right: 22px; }
.lightbox__nav svg { width: 26px; height: 26px; }

/* =====================================================================
   Quote / testimonial
   ===================================================================== */
.quote-band { background: var(--grad-navy); color: #fff; position: relative; overflow: hidden; }
.quote-band .container { position: relative; z-index: 2; }
.quote-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(8px);
  border-radius: var(--r-lg); padding: 34px; position: relative;
}
.quote-card__mark { font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-size: 5rem; line-height: .5; color: var(--yellow); height: 38px; display: block; }
.quote-card p { font-size: 1.12rem; color: rgba(255,255,255,.94); }
.quote-card__who { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.quote-card__who span { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-sun); display: grid; place-items: center; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 700; color: var(--navy-900); }
.quote-card__who b { font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; display: block; }
.quote-card__who small { color: rgba(255,255,255,.6); }

/* =====================================================================
   Photo bands — oryginalne zdjęcia jako tło sekcji (parallax)
   ===================================================================== */
.photoband { background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; position: relative; }

/* Sekcja "Nasza wiara" — dziecko-superbohater */
.belief {
  background-image:
    linear-gradient(95deg, rgba(43,16,32,.97) 0%, rgba(43,16,32,.86) 46%, rgba(43,16,32,.5) 72%, rgba(43,16,32,.18) 100%),
    url('../img/hero-superbohater.webp');
  background-size: cover; background-position: right center; background-repeat: no-repeat; background-attachment: fixed;
}
/* Pas "przygoda" — dzieci na zajęciach */
.joyband {
  background-image:
    linear-gradient(120deg, rgba(43,16,32,.74) 0%, rgba(216,60,108,.6) 100%),
    url('../img/radosc.webp');
  background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed;
}
@media (max-width: 900px) {
  .photoband, .joyband { background-attachment: scroll; }
  .belief {
    background-image: linear-gradient(rgba(43,16,32,.92), rgba(43,16,32,.82)), url('../img/hero-superbohater.webp');
    background-position: center; background-attachment: scroll;
  }
}

/* =====================================================================
   Partners
   ===================================================================== */
.partner { display: flex; align-items: center; justify-content: center; }
.partner img { max-height: 64px; width: auto; filter: grayscale(1); opacity: .55; transition: filter .4s, opacity .4s, transform .4s; }
.partner:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.06); }

/* =====================================================================
   Locations
   ===================================================================== */
.loc-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .4s var(--ease-out), box-shadow .4s; }
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.loc-card__map { height: 220px; position: relative; background:
  linear-gradient(135deg, #fff1e8, #ffe6d6);
  background-image:
    linear-gradient(135deg, #fff1e8, #ffe6d6),
    repeating-linear-gradient(0deg, rgba(216,60,108,.06) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(216,60,108,.06) 0 1px, transparent 1px 38px); }
.loc-card__map iframe { width: 100%; height: 100%; border: 0; filter: saturate(1.05); position: relative; z-index: 1; }
.loc-card__map .pin { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 600; padding: 6px 14px; border-radius: var(--pill); box-shadow: var(--shadow-red); display: inline-flex; align-items: center; gap: 6px; z-index: 2; }
.loc-card__map .pin svg { width: 16px; height: 16px; }
.loc-card__body { padding: 26px; }
.loc-card__body h3 { font-size: 1.4rem; }
.loc-row { display: flex; align-items: flex-start; gap: 12px; margin-top: 14px; color: var(--muted); }
.loc-row svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 3px; }
.loc-row b { color: var(--ink); font-weight: 600; }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta-band { position: relative; }
.cta-box {
  background: var(--grad-red); border-radius: var(--r-xl); padding: 64px; color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg); text-align: center;
}
.cta-box h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.cta-box p { color: rgba(255,255,255,.9); max-width: 56ch; margin: 16px auto 0; font-size: 1.12rem; }
.cta-box .btn--ghost { background: #fff; color: var(--red); border: none; }
.cta-box .hero__cta { justify-content: center; }
.cta-box .dots { color: #fff; }

/* =====================================================================
   Forms
   ===================================================================== */
.form { background: #fff; border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 500; margin-bottom: 7px; color: var(--navy-900); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 18px; border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--cream); font: inherit; color: var(--ink); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(216,60,108,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.form__note { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.form-ok { display: none; background: var(--mint-soft); color: #0f7a4d; border-radius: var(--r-sm); padding: 14px 18px; font-weight: 600; margin-bottom: 16px; }
.form-ok.show { display: block; animation: bounceIn .5s var(--ease-spring); }

/* =====================================================================
   Footer
   ===================================================================== */
.footer { background: var(--navy-900); color: #e3c2d0; position: relative; padding-top: 90px; }
.footer a { color: #e3c2d0; transition: color .25s; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer__brand img { height: 54px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__brand p { color: #c79db0; max-width: 34ch; }
.footer h3 { color: #fff; font-size: 1.1rem; margin-bottom: 18px; }
.footer ul li { margin-bottom: 2px; }
.footer__grid ul li a { display: block; padding: 9px 0; line-height: 1.3; }   /* cel dotykowy ≈40px (WCAG 2.5.5) zamiast ~28px */
.footer__contact a { display: inline-flex; align-items: center; min-height: 44px; padding: 6px 2px; margin: -6px 0; }   /* zadzwoń/napisz — powiększony obszar dotyku bez zmiany layoutu wiersza */
.footer__soc { display: flex; gap: 12px; margin-top: 20px; }
.footer__soc a { width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .3s, transform .3s; }
.footer__soc a:hover { background: var(--red); transform: translateY(-3px); }
.footer__soc svg { width: 20px; height: 20px; color: #fff; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; }
.footer__contact svg { width: 19px; height: 19px; color: var(--yellow); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .9rem; color: #b890a2; }
.footer__bottom a { font-size: .9rem; }

/* =====================================================================
   Page hero (subpages)
   ===================================================================== */
.page-hero { background: var(--grad-hero); padding: 60px 0 90px; position: relative; overflow: hidden; text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; color: var(--muted); font-weight: 500; font-size: .92rem; margin-top: 16px; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb svg { width: 15px; height: 15px; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; transition: transform .4s var(--ease-out), box-shadow .4s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__n { counter-increment: step; width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 700; font-size: 1.5rem; color: #fff; margin-bottom: 16px; }
.step__n::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 56px; right: -16px; width: 24px; height: 2px; background: repeating-linear-gradient(90deg, var(--red) 0 6px, transparent 6px 11px); z-index: 2; }

/* prose */
.prose { max-width: 760px; }
.prose p { margin-bottom: 18px; color: var(--ink); }
.prose h2, .prose h3 { margin: 30px 0 12px; font-size: 1.45rem; }

/* info band */
.info-band { background: var(--grad-navy); color: #fff; border-radius: var(--r-xl); padding: 50px; position: relative; overflow: hidden; }
.info-band h2 { color: #fff; }
.info-band p { color: rgba(255,255,255,.85); }

/* chip list */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.chips span { background: #fff; border: 1.5px solid var(--line); border-radius: var(--pill); padding: 9px 18px; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 500; color: var(--navy-900); display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm); transition: transform .3s, border-color .3s; }
.chips span:hover { transform: translateY(-3px); border-color: var(--red); }
.chips span svg { width: 18px; height: 18px; color: var(--red); }
.chips.on-dark span { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.chips.on-dark span svg { color: var(--yellow); }

@media (max-width: 940px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after, .step:not(:last-child)::after { display: none; }
}
@media (max-width: 680px) { .steps { grid-template-columns: 1fr; } .info-band { padding: 32px 24px; } }

/* Accordion (FAQ) */
.acc { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s; }
.acc:hover { box-shadow: var(--shadow-sm); }
.acc__q { width: 100%; text-align: left; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 500; font-size: 1.12rem; color: var(--navy-900); }
.acc__q i { width: 34px; height: 34px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; flex: none; transition: transform .35s, background .3s; color: var(--red); }
.acc__q i svg { width: 18px; height: 18px; }
.acc.open .acc__q i { transform: rotate(45deg); background: var(--red); color: #fff; }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.acc__a-inner { padding: 0 26px 24px; color: var(--muted); }

/* =====================================================================
   Reveal on scroll
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
.reveal[data-d="6"] { transition-delay: .48s; }

@keyframes bounceIn { 0%{ transform: scale(.8); opacity: 0; } 60%{ transform: scale(1.04); } 100%{ transform: scale(1); opacity: 1; } }
@keyframes pulse { 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.08); } }

/* scroll cue */
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: .8rem; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; letter-spacing: .1em; text-transform: uppercase; z-index: 3; }
.scroll-cue .mouse { width: 26px; height: 42px; border: 2px solid var(--navy); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--red); border-radius: 3px; animation: scrollDot 1.5s ease-in-out infinite; }
@keyframes scrollDot { 0%{ opacity: 0; transform: translate(-50%, 0); } 40%{ opacity: 1; } 80%,100%{ opacity: 0; transform: translate(-50%, 12px); } }

/* Back to top */
.totop { position: fixed; right: 24px; bottom: 24px; width: 54px; height: 54px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-red); z-index: 80; opacity: 0; transform: translateY(20px) scale(.8); transition: .4s var(--ease-spring); }
.totop.show { opacity: 1; transform: none; }
.totop:hover { transform: translateY(-3px); }
.totop svg { width: 24px; height: 24px; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 460px; margin-inline: auto; }
  .float-card--tl { left: 0; } .float-card--br { right: 0; } .float-card--ml { left: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 940px) {
  .nav, .nav__cta { display: none; }
  .burger { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .col-2, .bento .col-3, .bento .col-4, .bento .col-6 { grid-column: span 1; }
  .bento .b-tall { grid-row: auto; }
  .bento .b-big { grid-column: span 2; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .container { padding-inline: 18px; }
  .hero { padding: 36px 0 90px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .bento { grid-template-columns: 1fr; }
  .bento .b-big { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .topbar .container { justify-content: center; }
  .topbar .topbar-left { display: none; }
  .float-card--ml { display: none; }
  .header__inner { padding: 8px 8px 8px 16px; }
  .brand__sub { display: none; }
}

/* =====================================================================
   Nawigacja: hamburger już na TABLECIE (≤1024px) — menu nigdy w 2 linie
   ===================================================================== */
@media (max-width: 1024px) {
  .nav, .nav__cta { display: none !important; }
  .burger { display: flex !important; }
}

/* =====================================================================
   NOWE KOMPONENTY (rebrand / brief)
   ===================================================================== */
/* Wybór ścieżki: Przedszkole / Szkoła */
.choose { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.choose-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow); isolation: isolate;
  transition: transform .45s var(--ease-out), box-shadow .45s;
}
.choose-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.choose-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s var(--ease-out); }
.choose-card:hover img { transform: scale(1.06); }
.choose-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(43,16,32,.05) 30%, rgba(43,16,32,.55) 70%, rgba(43,16,32,.9)); }
.choose-card__body { padding: 34px; color: #fff; width: 100%; }
.choose-card__body .eyebrow { color: var(--navy-900); margin-bottom: 14px; }
.choose-card h3 { color: #fff; font-size: 1.9rem; margin-bottom: 8px; }
.choose-card p { color: rgba(255,255,255,.9); max-width: 42ch; }
.choose-card .clink { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 600; color: #fff; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); padding: 11px 20px; border-radius: var(--pill); backdrop-filter: blur(4px); transition: background .3s, transform .3s; }
.choose-card:hover .clink { background: var(--red); border-color: var(--red); transform: translateX(3px); }
.choose-card .clink svg { width: 18px; height: 18px; }

/* Plakietka "wkrótce / w przygotowaniu" */
.soon { display: inline-flex; align-items: center; gap: 7px; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--navy-900); background: var(--yellow); padding: 5px 12px; border-radius: var(--pill); }
.nav__link .soon { font-size: .58rem; padding: 2px 7px; margin-left: 2px; }

/* Karty opinii */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease-out), box-shadow .4s; display: flex; flex-direction: column; }
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tcard__stars { color: var(--yellow); letter-spacing: 2px; font-size: 1.05rem; }
.tcard p { color: var(--ink); font-size: 1.02rem; margin: 14px 0 18px; flex: 1; }
.tcard__who { display: flex; align-items: center; gap: 13px; }
.tcard__who span { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 700; color: #fff; flex: none; }
.tcard__who b { font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; display: block; color: var(--navy-900); }
.tcard__who small { color: var(--muted); }

/* Fakty i mity */
.myths { display: grid; gap: 16px; margin-top: 40px; }
.myth { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: #fff; }
.myth > div { padding: 22px 24px; }
.myth__m { background: #fff5f8; border-right: 1px solid var(--line); }
.myth__f { background: #fff; }
.myth__tag { display: inline-flex; align-items: center; gap: 7px; font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 700; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.myth__m .myth__tag { color: var(--red); }
.myth__f .myth__tag { color: var(--mint); }
.myth p { color: var(--ink); }

/* Lista godzin / rozkład dnia */
.timeline { display: grid; gap: 0; margin-top: 36px; max-width: 820px; }
.tl-row { display: grid; grid-template-columns: 130px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px dashed var(--line); align-items: start; }
.tl-row:last-child { border-bottom: none; }
.tl-time { font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; font-weight: 700; color: var(--red); font-size: 1.05rem; }
.tl-body b { font-family: "Baloo 2", "Baloo 2 Fallback", sans-serif; color: var(--navy-900); display: block; }
.tl-body small { color: var(--muted); }

@media (max-width: 860px) {
  .choose { grid-template-columns: 1fr; }
  .tcards { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .myth { grid-template-columns: 1fr; }
  .myth__m { border-right: none; border-bottom: 1px solid var(--line); }
  .tl-row { grid-template-columns: 1fr; gap: 4px; }
}


/* =====================================================================
   PERFEKCJA: a11y (skip-link, focus-visible), CLS, mobile polish
   ===================================================================== */
.skip-link { position: absolute; left: 8px; top: -56px; z-index: 200; background: var(--navy-900); color: #fff; padding: 10px 16px; border-radius: 10px; font-family: "Baloo 2","Baloo 2 Fallback",sans-serif; font-weight: 600; box-shadow: var(--shadow); transition: top .2s var(--ease-out); }
.skip-link:focus { top: 8px; outline: 3px solid var(--yellow); outline-offset: 2px; }

/* Widoczny focus klawiaturą (pola formularza mają własny pierścień box-shadow) */
:where(a, button, .btn, .nav__link, .drop a, .burger, .totop, .acc__q, .linklike, .clink, [data-lightbox]):focus-visible {
  outline: 3px solid var(--navy-900); outline-offset: 3px; border-radius: 8px;
}
.topbar a:focus-visible, .footer a:focus-visible, .belief a:focus-visible, .joyband a:focus-visible,
.cta-box a:focus-visible, .cta-box .btn:focus-visible, .quote-band a:focus-visible { outline-color: #fff; }

/* CLS: rezerwacja proporcji obrazów treściowych w ramce */
.media-frame img { aspect-ratio: 4 / 3; height: auto; object-fit: cover; }

/* Mobile: brak rozpychania przez długie tokeny + plakietki w obrębie ramki */
.grid > *, .bento > *, .split > *, .myth > *, .tl-row > *, .footer__grid > *, .choose > *, .tcards > * { min-width: 0; }
.footer__contact span, .loc-row span, .tcard p { overflow-wrap: anywhere; }
@media (max-width: 680px) {
  .title .hl, .title .hl-navy { white-space: normal; }
  .title { overflow-wrap: anywhere; }
  .media-frame .badge-float { left: auto !important; right: 8px !important; top: auto !important; bottom: 8px !important; transform: scale(.9); }
}
