/* =========================================================
   Odkrywcy Świata — nowa szata (2026)
   Kierunek: nowoczesny, jasny, „szlak odkrywcy”.
   Typografia: Bricolage Grotesque (nagłówki) + Hanken Grotesk (treść)
   Paleta: atrament + indygo + koral + akcenty (nie z logo)
   ========================================================= */

:root {
  /* — kolory — */
  --paper:        #FBFAF6;
  --paper-2:      #F3F2EC;
  --surface:      #FFFFFF;
  --ink:          #1F2430;
  --ink-2:        #565F70;
  --line:         #E7E5DC;

  --brand:        #4C5BD4;   /* indygo — kolor wiodący */
  --brand-strong: #333FA0;
  --brand-soft:   #ECEEFB;
  --brand-tint:   #F4F5FD;

  --coral:        #FB6A55;   /* ciepły akcent / CTA */
  --coral-strong: #E24B37;
  --coral-soft:   #FFE7E1;

  --sky:          #3BA9D6;   /* trzeci akcent */
  --sky-soft:     #E2F1F8;

  --sun:          #FFC24B;   /* mikro-akcent (punkty szlaku) */

  /* — typografia — */
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* — kształt / cień — */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --shadow-sm: 0 2px 10px rgba(31,36,48,.05);
  --shadow-md: 0 14px 34px -18px rgba(31,36,48,.28);
  --shadow-lg: 0 30px 60px -28px rgba(51,63,160,.35);

  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* =========================================================
   RESET / BAZA
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--brand-strong); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.015em;
}
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

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

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 10px; z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 14px; text-decoration: none; }

/* =========================================================
   UKŁAD / SEKCJE
   ========================================================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* Kotwice z menu: przyklejony nagłówek (ok. 75px) nie może zasłaniać początku sekcji */
main [id] { scroll-margin-top: 92px; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--paper2 { background: var(--paper-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-strong);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--coral);
}
.section-head { max-width: 640px; margin-bottom: clamp(30px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-head .lead { font-size: 1.12rem; color: var(--ink-2); margin-top: .3em; }

.h-lead { color: var(--ink-2); }

/* =========================================================
   PRZYCISKI
   ========================================================= */
.btn {
  --bg: var(--brand); --fg: #fff; --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  border: 2px solid var(--bd);
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center; line-height: 1.1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; }
.btn-primary { --bg: var(--coral); box-shadow: 0 12px 24px -12px rgba(226,75,55,.7); }
.btn-primary:hover { --bg: var(--coral-strong); }
.btn-secondary { --bg: transparent; --fg: var(--brand-strong); --bd: var(--brand); }
.btn-secondary:hover { --bg: var(--brand-soft); }
.btn-ink { --bg: var(--ink); --fg: #fff; }
.btn-ink:hover { --bg: #000; }

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

/* =========================================================
   IKONY / MEDALIONY
   ========================================================= */
.ico { width: 24px; height: 24px; flex: none; stroke: currentColor; fill: none;
       stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.medallion {
  width: 54px; height: 54px; border-radius: 16px; flex: none;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-strong);
}
.medallion .ico { width: 27px; height: 27px; }
.medallion.coral { background: var(--coral-soft); color: var(--coral-strong); }
.medallion.sky   { background: var(--sky-soft);   color: #1f7fa8; }

/* =========================================================
   NAGŁÓWEK / NAWIGACJA
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,246,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1320px; margin-inline: auto; padding: 12px var(--gutter);
  display: flex; align-items: center; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 800; flex: none; }
.brand:hover { text-decoration: none; }
.brand img { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; }
.brand span { font-family: var(--font-display); font-size: 1.16rem; letter-spacing: -.02em; white-space: nowrap; }

.main-nav { margin-inline: auto; display: flex; gap: 2px; flex-wrap: nowrap; }
.main-nav a {
  color: var(--ink-2); font-weight: 600; font-size: .95rem; white-space: nowrap;
  padding: 8px 10px; border-radius: 10px; transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--brand-strong); background: var(--brand-tint); text-decoration: none; }

.header-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header-cta .btn { white-space: nowrap; }
.phone-link { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-weight: 700; white-space: nowrap; }
.phone-link:hover { color: var(--brand-strong); text-decoration: none; }
@media (max-width: 1320px) { .phone-link { display: none; } }
.phone-link .ico { width: 18px; height: 18px; color: var(--coral-strong); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: var(--surface); border-radius: 12px; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
.nav-toggle .ico { width: 24px; height: 24px; }

@media (max-width: 1160px) {
  .main-nav {
    position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    flex-direction: column; gap: 2px;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 20px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; font-size: 1.05rem; }
  .header-cta .phone-link { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { padding: 11px 18px; }
}
@media (max-width: 560px) {
  .brand span { display: none; }
  .header-cta .btn { padding: 10px 16px; font-size: .95rem; }
}
/* =========================================================
   HERO
   ========================================================= */
/* Zdjęcie główne na całą szerokość ekranu, treść na zdjęciu */
.hero {
  position: relative;
  display: grid; align-items: center;
  min-height: min(78vh, 720px);
  padding-block: clamp(56px, 9vw, 120px);
  color: #fff;
  background: var(--ink);   /* zanim wczyta się zdjęcie */
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after { /* przyciemnienie pod tekst */
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20,24,34,.80) 0%, rgba(20,24,34,.58) 44%, rgba(20,24,34,.22) 100%),
    linear-gradient(180deg, rgba(20,24,34,.30) 0%, transparent 38%);
}
.hero .container { position: relative; z-index: 1; }
.hero-copy { max-width: 46rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(8px);
  padding: 8px 18px; border-radius: 999px;   /* padding ≥ promień, żeby łuk nie ścinał kropki */
  font-weight: 600; font-size: .9rem; color: #fff;
  margin-bottom: 22px;
}
.hero-badge b { color: #fff; font-weight: 700; }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); flex: none; }
.hero h1 {
  color: #fff; font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 800; letter-spacing: -.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.hero h1 .u { color: var(--sun); }
.hero-lead { font-size: 1.2rem; color: rgba(255,255,255,.92); max-width: 34ch; margin-bottom: 30px; }
.hero .btn-row { margin-bottom: 30px; }
.hero .btn-secondary { --bg: rgba(255,255,255,.94); --fg: var(--brand-strong); --bd: transparent; }
.hero .btn-secondary:hover { --bg: #fff; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; padding-top: 14px; border-top: 1px dashed rgba(255,255,255,.38); }
.hero-trust li { list-style: none; display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; font-size: .95rem; }
.hero-trust .ico { width: 19px; height: 19px; color: var(--sun); }
.hero-trust ul { display: contents; }
ul.hero-trust { margin: 0; padding-left: 0; }

@media (max-width: 860px) {
  .hero { min-height: min(70vh, 620px); }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(20,24,34,.45) 0%, rgba(20,24,34,.72) 100%);
  }
  .hero-lead { max-width: none; }
}

/* =========================================================
   PASEK FAKTÓW
   ========================================================= */
.facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.fact {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 22px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 14px;
}
.fact b { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.15; display: block; }
.fact span { color: var(--ink-2); font-size: .9rem; }
@media (max-width: 780px) { .facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .facts { grid-template-columns: 1fr; } }

/* =========================================================
   WARTOŚCI
   ========================================================= */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .medallion { margin-bottom: 18px; }
.value-card h3 { font-size: 1.28rem; }
.value-card p { color: var(--ink-2); font-size: .98rem; margin-bottom: 0; }
@media (max-width: 820px) { .values { grid-template-columns: 1fr; } }

/* =========================================================
   PASMO / SOCIAL (bez zależności od zdjęcia)
   ========================================================= */
.band {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff; border-radius: var(--r-xl); padding: clamp(36px, 5vw, 60px);
  text-align: center; position: relative; overflow: hidden;
}
.band::after {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.14), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(251,106,85,.35), transparent 30%);
}
.band > * { position: relative; z-index: 1; }
.band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.band p { color: rgba(255,255,255,.9); max-width: 44ch; margin-inline: auto; }
.social-row { display: flex; gap: 14px; justify-content: center; margin-top: 24px; }
.social-row a {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.16); color: #fff; transition: background .2s, transform .15s;
}
.social-row a:hover { background: #fff; color: var(--brand-strong); transform: translateY(-2px); text-decoration: none; }
.social-row .ico { width: 24px; height: 24px; }
.social-row.dark a { background: var(--brand-soft); color: var(--brand-strong); }
.social-row.dark a:hover { background: var(--brand); color: #fff; }
.social-row.start { justify-content: flex-start; }

/* =========================================================
   O NAS
   ========================================================= */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.split h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.split p { color: var(--ink-2); }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--r-lg); object-fit: cover; aspect-ratio: 5/4; box-shadow: var(--shadow-md); }
.split-media::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  background: var(--sky-soft); border-radius: var(--r-lg);
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split-media::before { inset: 14px -14px -14px 14px; } }

.info-cards { display: grid; gap: 20px; margin-top: 36px; }
.info-card {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--brand); border-radius: var(--r-md);
  padding: 26px 30px; box-shadow: var(--shadow-sm);
}
.info-card.accent { border-left-color: var(--coral); background: linear-gradient(180deg, var(--coral-soft) 0%, var(--surface) 42%); }
.info-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; }
.info-card h3 .ico { width: 22px; height: 22px; color: var(--brand-strong); }
.info-card.accent h3 .ico { color: var(--coral-strong); }
.info-card p { color: var(--ink-2); }

.funding-list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 12px; }
.funding-list li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 18px; font-family: var(--font-display); font-weight: 600;
}
.funding-list li span { font-family: var(--font-body); font-weight: 600; color: var(--coral-strong); margin-left: auto; }

/* =========================================================
   OFERTA
   ========================================================= */
.offer-intro { max-width: 720px; color: var(--ink-2); margin-bottom: 40px; font-size: 1.06rem; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.offer-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-2); }
.offer-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.offer-card:hover .thumb img { transform: scale(1.05); }
.offer-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.offer-body .medallion { width: 46px; height: 46px; border-radius: 13px; }
.offer-body .medallion .ico { width: 24px; height: 24px; }
.offer-body h3 { font-size: 1.14rem; margin: 4px 0 0; }
.offer-body p { color: var(--ink-2); font-size: .95rem; margin: 0; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-closing {
  text-align: center; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--brand-strong);
  max-width: 22ch; margin: 48px auto 0; letter-spacing: -.02em;
}

/* =========================================================
   GALERIA
   ========================================================= */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.gallery-item {
  padding: 0; border: 0; margin: 0; font: inherit; cursor: zoom-in;
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--r-md); background: var(--line);
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.06); }
@media (prefers-reduced-motion: reduce) { .gallery-item img { transition: none; } }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery { grid-template-columns: 1fr; } }

.gallery-note {
  display: flex; align-items: flex-start; gap: 10px;
  max-width: 68ch; margin: 26px auto 0;
  color: var(--ink-2); font-size: .95rem; text-align: left;
}
.gallery-note .ico { color: var(--brand); margin-top: 2px; }

/* — powiększenie (lightbox) — */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center; gap: clamp(4px, 2vw, 24px);
  padding: clamp(12px, 3vw, 40px);
  background: rgba(15, 18, 26, .96);
}
.lightbox[hidden] { display: none; }
.lightbox-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; min-width: 0; }
.lightbox-figure img {
  max-width: min(1100px, 100%); max-height: 78vh; width: auto; height: auto;
  border-radius: var(--r-md); box-shadow: 0 30px 70px -30px rgba(0,0,0,.8);
}
.lightbox-figure figcaption { color: rgba(255,255,255,.88); font-size: .95rem; text-align: center; max-width: 60ch; }
.lightbox-btn {
  flex: none; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff;
  transition: background .15s ease;
}
.lightbox-btn:hover { background: rgba(255,255,255,.28); }
.lightbox-btn .ico { width: 26px; height: 26px; }
.lightbox-close { position: absolute; top: clamp(12px, 3vw, 28px); right: clamp(12px, 3vw, 28px); }
body.lightbox-open { overflow: hidden; }
@media (max-width: 620px) {
  .lightbox { gap: 4px; padding-inline: 6px; }
  .lightbox-btn { width: 44px; height: 44px; }
  .lightbox-figure img { max-height: 66vh; }
}

/* =========================================================
   DLA RODZICÓW
   ========================================================= */
.subsection { margin-top: clamp(44px, 6vw, 72px); }
.subsection > h2 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); }
.subsection > h3 { font-size: 1.2rem; margin-top: 1.4em; display: flex; align-items: center; gap: 10px; }
.subsection > h3 .ico { width: 22px; height: 22px; color: var(--brand-strong); }
.subsection > p { color: var(--ink-2); max-width: 74ch; }

.two-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.option-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.option-card h3 { display: flex; gap: 10px; align-items: flex-start; font-size: 1.12rem; }
.option-card .medallion { width: 40px; height: 40px; border-radius: 11px; }
.option-card .medallion .ico { width: 21px; height: 21px; }
.option-card p { color: var(--ink-2); font-size: .96rem; margin: 0; }
@media (max-width: 780px) { .two-cards { grid-template-columns: 1fr; } }

.quote {
  border-left: 3px solid var(--coral); background: var(--coral-soft);
  border-radius: 0 14px 14px 0; padding: 18px 24px; margin: 22px 0 0;
  font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; color: var(--ink);
}

.checklist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 22px 0; }
.checklist-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.checklist-card h3 { display: flex; align-items: center; gap: 9px; font-size: 1.04rem; margin-bottom: 12px; }
.checklist-card h3 .ico { width: 20px; height: 20px; color: var(--brand-strong); }
.checklist-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.checklist-card li { position: relative; padding-left: 26px; color: var(--ink-2); font-size: .93rem; }
.checklist-card li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 2px var(--brand);
}
@media (max-width: 860px) { .checklist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .checklist-grid { grid-template-columns: 1fr; } }

.note-box {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--sun); color: #4a3208; border-radius: var(--r-md);
  padding: 18px 22px; font-weight: 500; margin-top: 6px;
}
.note-box .ico { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.note-box strong { color: #3a2705; }

/* Plan dnia — oś czasu (szlak) */
.timeline { margin: 26px 0 0; position: relative; padding-left: 6px; }
.timeline ol { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline ol::before {
  content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px; background: repeating-linear-gradient(var(--brand) 0 6px, transparent 6px 12px);
}
.timeline li { position: relative; padding: 0 0 20px 44px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 4px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--brand);
}
.timeline .t-time {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  color: var(--brand-strong); background: var(--brand-soft);
  padding: 2px 12px; border-radius: 999px; font-size: .9rem; margin-bottom: 5px;
}
.timeline .t-act { color: var(--ink); font-weight: 500; }

/* Komunikacja — cechy */
.feature-list { list-style: none; padding: 0; margin: 22px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.feature-list .medallion { width: 40px; height: 40px; border-radius: 11px; }
.feature-list .medallion .ico { width: 21px; height: 21px; }
.feature-list b { font-family: var(--font-display); display: block; }
.feature-list span { color: var(--ink-2); font-size: .92rem; }
@media (max-width: 720px) { .feature-list { grid-template-columns: 1fr; } }

/* Wyżywienie — chipsy */
.meal-chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; padding: 0; list-style: none; }
.meal-chips li {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 20px; font-weight: 600; color: var(--ink);
}
.meal-chips li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }

/* Dokumenty */
.docs-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.doc-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--paper-2); border: 1px dashed var(--line);
  color: var(--ink-2); border-radius: 999px; padding: 11px 20px; font-weight: 600; font-size: .93rem;
}
.doc-pill .ico { width: 18px; height: 18px; }

/* Dokument do pobrania — pigułka jest linkiem do pliku PDF */
a.doc-pill {
  border-style: solid; border-color: var(--brand-soft);
  background: var(--surface); color: var(--brand-strong); text-decoration: none;
  box-shadow: var(--shadow-sm); transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
a.doc-pill:hover, a.doc-pill:focus-visible {
  border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-1px);
}
a.doc-pill::after { content: "PDF"; font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  background: var(--brand-soft); color: var(--brand-strong); padding: 2px 9px; border-radius: 999px; }

/* Dokument jeszcze nieopublikowany */
.doc-pill--wkrotce::after { content: "wkrótce"; font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  background: var(--surface); color: var(--brand-strong); padding: 2px 9px; border-radius: 999px; text-transform: uppercase; }

/* =========================================================
   CENNIK
   ========================================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.price-card.featured { border: 2px solid var(--brand); box-shadow: var(--shadow-md); position: relative; }
.price-card.featured::before {
  content: "Najczęściej wybierane"; position: absolute; top: -13px; left: 32px;
  background: var(--brand); color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .04em; padding: 5px 14px; border-radius: 999px; text-transform: uppercase;
}
.price-card h3 { font-size: 1.2rem; color: var(--ink-2); font-family: var(--font-body); font-weight: 700; }
.price-card .amount { font-family: var(--font-display); font-weight: 800; font-size: 2.7rem; color: var(--ink); letter-spacing: -.03em; margin: 4px 0 14px; }
.price-card .amount small { font-size: 1rem; font-weight: 600; color: var(--ink-2); }
.price-card p { color: var(--ink-2); font-size: .95rem; margin: 0; }
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } .price-card.featured::before { left: 24px; } }

.payments-list, .meal-list, .contact-features { padding-left: 0; }
.payments-list { list-style: none; margin: 16px 0 0; display: grid; gap: 10px; }
.payments-list li { position: relative; padding-left: 30px; color: var(--ink-2); }
.payments-list li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 18px;
  border-radius: 50%; background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333FA0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* =========================================================
   REKRUTACJA — szlak / kroki
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; counter-reset: step; }
.step-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px 26px; box-shadow: var(--shadow-sm);
}
.step-card::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--brand-strong); background: var(--brand-soft);
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  margin-bottom: 16px;
}
.step-card:nth-child(3n+2)::before { color: var(--coral-strong); background: var(--coral-soft); }
.step-card:nth-child(3n+3)::before { color: #1f7fa8; background: var(--sky-soft); }
.step-card h3 { font-size: 1.14rem; }
.step-card p { color: var(--ink-2); font-size: .95rem; margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.form-cta {
  margin-top: 34px; text-align: center;
  background: var(--brand-tint); border: 1px solid var(--brand-soft);
  border-radius: var(--r-xl); padding: clamp(30px, 5vw, 52px);
}
.form-cta h3 { font-size: 1.5rem; }
.form-cta p { color: var(--ink-2); max-width: 56ch; margin-inline: auto; margin-bottom: 24px; }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 26px; align-items: start; }
.contact-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.contact-details { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 14px; }
.contact-details li { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.contact-details .medallion { width: 42px; height: 42px; border-radius: 12px; }
.contact-details .medallion .ico { width: 21px; height: 21px; }
.contact-details a { color: var(--ink); }
.contact-details a:hover { color: var(--brand-strong); }
.contact-details small { display: block; color: var(--ink-2); font-weight: 500; font-size: .82rem; }
.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 380px; height: 100%; }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* =========================================================
   STOPKA
   ========================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-block: clamp(48px, 6vw, 72px) 0; }
.site-footer::before { content: ""; display: block; height: 4px; background: linear-gradient(90deg, var(--brand), var(--coral), var(--sun)); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-top: 44px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 46px; height: 46px; border-radius: 12px; }
.footer-brand span { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: #fff; }
.site-footer h3 { color: #fff; font-size: 1.02rem; letter-spacing: .01em; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.site-footer .social-row { justify-content: flex-start; margin-top: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding: 22px 0; font-size: .88rem; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

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