/* =========================================================================
   components.css — komponenty UI (plain CSS, bez Tailwinda)
   Konwencja: BEM (.block__element--modifier).
   Wszystkie promienie odwołują się do tokenów --radius-* (tokens.css).
   Spis sekcji:
     1.  Przyciski (.btn)                      9.  Bleed section / row / card
     2.  Tytuł sekcji (.section-title)        10.  Recenzje (review-card)
     3.  Pasek rekrutacji                     11.  Instagram (ig-post)
     4.  Header + nawigacja                   12.  Bento (Nasze wnętrza)
     5.  Hero                                 13.  Video promo + modal
     6.  Zaufanie (trust)                     14.  Lokalizacja + FAQ
     7.  Ścieżki (path)                       15.  Formularz kontaktowy
     8.  Approach (accordion ↔ tabs)          16.  Footer
                                              17.  Sticky contact widget
   ========================================================================= */


/* === 1. Przyciski =========================================================
   Jeden komponent .btn z modyfikatorami. UJEDNOLICONY rounding: pill. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  padding: 0.625rem 1.25rem;        /* py-2.5 px-5 */
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.btn--primary {
  background-color: var(--color-czerwony);
  color: #fff;
}
.btn--primary:hover {
  background-color: color-mix(in oklab, var(--color-czerwony) 70%, transparent);
}

.btn--outline-morski {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--color-morski);
  background: #fff;
  color: var(--color-morski);
  font-weight: 700;
  font-size: 0.9375rem;
}
.btn--outline-morski:hover {
  background: var(--color-morski);
  color: #fff;
}

.btn--outline-white {
  align-self: flex-start;          /* szerokość = treść (jak CTA na żłobku), nie full-width */
  margin-top: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 700;
}
.btn--outline-white:hover { background: #fff; color: var(--color-czerwony); }

.btn--block {
  display: flex;
  width: 100%;
  padding-block: 1rem;
  font-size: 1rem;
  font-weight: 700;
}


/* === 2. Tytuł sekcji ======================================================
   JEDNA klasa zamiast pięciu (bleed/path/video/contact/form). */
.section-title {
  margin: 0;
  font-size: 1.875rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-zielony);
}
@media (min-width: 1024px) {
  .section-title { font-size: 2.5rem; }
}


/* === 3. Pasek rekrutacji (gradient, ukryty < md) ========================= */
.recruitment-bar {
  display: none;
  width: 100%;
  background: var(--grad-banner);
  color: #fff;
  font-size: 1rem;
  padding-block: 0.25rem;
}
@media (min-width: 768px) {
  .recruitment-bar { display: block; }
}
.recruitment-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding-block: 0.5rem;
}
.recruitment-bar__title { font-weight: 700; }
.recruitment-bar__contact { text-align: right; }
.recruitment-bar__phone { font-weight: 700; }
.recruitment-bar__phone:hover { color: var(--color-czerwony); }
@media (min-width: 1024px) {
  .recruitment-bar__inner { grid-template-columns: repeat(3, 1fr); }
  .recruitment-bar__title   { grid-column-start: 2; text-align: center; }
  .recruitment-bar__contact { grid-column-start: 3; }
}


/* === 4. Header + nawigacja ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-zielony);
}
.site-header__inner {
  display: flex;
  align-items: center;
  height: 6rem;
}
.site-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-header__logo img { height: 4rem; width: auto; }

.site-header__nav { display: none; }
@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
  }
}

.site-header__cta { display: none; flex-shrink: 0; }
@media (min-width: 1024px) {
  .site-header__cta { display: inline-flex; }
}

.site-header__toggle {
  margin-left: auto;
  margin-right: -0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 0;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .site-header__toggle { display: none; }
}

.site-header__mobile {
  border-top: 1px solid var(--color-border);
  background: #fff;
  /* Panel mieści się pod paskiem headera (6rem) i przewija się wewnętrznie,
     żeby na niskich ekranach dało się dojść do wszystkich pozycji. */
  max-height: calc(100vh - 6rem);
  max-height: calc(100dvh - 6rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1024px) {
  .site-header__mobile { display: none; }
}
.site-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-block: 1rem;
  /* Zapas na dole: dolny widget kontaktu (fixed) nie zasłania ostatnich pozycji. */
  padding-bottom: 6rem;
  font-size: 1rem;
  font-weight: 500;
}
.site-header__mobile-nav .btn { margin-top: 0.5rem; }

/* Linki nawigacji (desktop + mobile) */
.nav-link {
  transition: color 150ms ease;
}
.nav-link:hover { color: var(--color-czerwony); }
.nav-link--mobile { padding-block: 0.5rem; }

/* Dropdown „Cennik" — desktop */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown__trigger {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer;
}
.nav-dropdown__chevron { width: 0.85em; height: 0.85em; transition: transform 150ms ease; }
.nav-dropdown__menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(0.25rem);
  min-width: 11rem; padding: 0.5rem;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px -18px rgba(15, 52, 58, 0.35);
  display: flex; flex-direction: column; gap: 0.125rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease; z-index: 60;
}
.nav-dropdown__menu::before { content: ""; position: absolute; top: -0.5rem; left: 0; right: 0; height: 0.5rem; }
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0.5rem);
}
.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown:focus-within .nav-dropdown__chevron { transform: rotate(180deg); }
.nav-dropdown__item {
  display: block; padding: 0.5rem 0.75rem; border-radius: var(--radius-xs); white-space: nowrap;
  transition: color 150ms ease;
}
.nav-dropdown__item:hover { color: var(--color-czerwony); }

/* Grupa „Cennik" — mobile (rozwijana) */
.nav-mobile-group__trigger {
  display: inline-flex; align-items: center; gap: 0.25rem; width: 100%;
  background: none; border: 0; font: inherit; color: inherit; cursor: pointer; text-align: left;
}
.nav-mobile-group__trigger[aria-expanded="true"] .nav-dropdown__chevron { transform: rotate(180deg); }
.nav-mobile-group__menu { display: flex; flex-direction: column; padding-left: 1rem; }


/* === Section (wspólny odstęp między sekcjami) ============================ */
.section { margin-top: 4rem; }
@media (min-width: 1024px) { .section { margin-top: 5rem; } }

/* === 5. Hero ============================================================== */
.hero { margin-top: 1.5rem; }
@media (min-width: 1024px) { .hero { margin-top: 2.5rem; } }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    gap: 1.25rem;
    align-items: stretch;
  }
}

.hero__intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid #DAEAE8;
  background: linear-gradient(135deg,
    #ffffff 0%,
    color-mix(in oklab, #1FA6A8 12%, #fff) 55%,
    color-mix(in oklab, #1FA6A8 22%, #fff) 100%);
  padding: 2rem 1.75rem;
}
@media (min-width: 1024px) {
  .hero__intro {
    grid-column: 1; grid-row: 1;
    border-radius: var(--radius-3xl);
    padding: 2.5rem 2.75rem;
    min-height: 22rem;
  }
}

.hero__decor {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: -1; pointer-events: none;
}

/* Czerwony wariant intro-card (hero podstrony Przedszkole) */
.hero__intro--red {
  background: var(--color-czerwony);
  border-color: var(--color-czerwony);
}
.hero__intro--red .hero__eyebrow,
.hero__intro--red .hero__title { color: #fff; }
.hero__intro--red .hero__lede { color: rgba(255, 255, 255, 0.95); }

/* Hero podstron (zlobek/przedszkole): 2 kolumny intro + foto, bez promo-boxa.
   Strona główna ma promo w grid-row 2 — tu zwijamy układ do jednego rzędu, by
   foto wyrównało wysokość z intro i nie powstała pusta kolumna. */
@media (min-width: 1024px) {
  .page--zlobek .hero__inner,
  .page--przedszkole .hero__inner,
  .page--praca .hero__inner,
  .page--o-nas .hero__inner { grid-template-rows: 1fr; }
  .page--zlobek .hero__photo,
  .page--przedszkole .hero__photo,
  .page--praca .hero__photo,
  .page--o-nas .hero__photo { grid-row: 1; }

  /* Praca: nierówne kolumny hero — tekst 3/5, zdjęcie 2/5 */
  .page--praca .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* === Hero podstrony Cennik: zdjęcie jako TŁO całej sekcji na 100% szerokości
   (background, nie element). Treść wyśrodkowana w .container — jak w innych
   sekcjach. Bez zaokrągleń, bez paddingów; na zdjęciu gradient przyciemnienia
   dla czytelności tekstu. */
/* Cennik: standardowy odstęp sekcyjny przed footerem (ostatnia sekcja). */
.page--cennik #opinie { margin-bottom: 4rem; }
@media (min-width: 1024px) { .page--cennik #opinie { margin-bottom: 5rem; } }

.hero-cennik {
  position: relative;
  padding-block: 4rem;        /* standardowy odstęp pionowy (rytm jak .section) */
  background-image:
    /* linear-gradient(90deg, rgba(15, 52, 58, 0.78) 0%, rgba(15, 52, 58, 0.45) 45%, rgba(15, 52, 58, 0.10) 100%), */
    url(../assets/img/cennik_hero.webp);
  background-size: cover;
  background-position: 80% 45%;
  background-repeat: no-repeat;
}

.hero-cennik__mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 35%, rgba(255, 255, 255, 0.1) 60%);   /* półprzezroczyste, rozjaśniające tło */
}

@media (min-width: 1024px) {
  .hero-cennik { padding-block: 5rem; }
  .hero-cennik__mask {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 37%, rgba(255, 255, 255, 0.0) 55%)
    /* półprzezroczyste, rozjaśniające tło */
  }
}




/* .hero-cennik__inner = .container (max-width + margin-inline:auto) wyrównuje
   treść do tej samej kolumny co reszta strony. Nad warstwą maski. */
.hero-cennik__inner {
  position: relative;
  z-index: 2;
}
.hero-cennik__content {
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 34rem;
}

/* Dwie karty pod treścią hero: 2/3 + 1/3 na desktopie, 1 pod drugą na mobile.
   Białe, zaokrąglone, bez ramki. */
.hero-cennik__cards {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .hero-cennik__cards {
    grid-template-columns: repeat(2, minmax(0, 29rem));  /* dwie równe kolumny */
    justify-content: center;                             /* grupa wyśrodkowana, nie na całą szerokość */
    gap: 2rem;
    align-items: stretch;
  }
}
.hero-cennik__card {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Tekst wyglądający jak button (ale to tekst), na całą szerokość karty,
   jasnopomarańczowe tło. Dosunięty do dołu karty. */
.hero-cennik__note {
  margin: auto 0 0;                                 /* dosuwa do dołu */
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-btn);                 /* standardowy rounding (jak przyciski) */
  background: color-mix(in oklab, var(--color-czerwony) 18%, #fff);
  color: var(--color-zielony);
  font-size: 0.9375rem;
  font-weight: 400;
  text-align: center;
}

/* Przycisk CTA na dole prawej karty (ciemnopomarańczowy = .btn--primary). */
.hero-cennik__cta { margin-top: auto; }

/* Tekst list w kartach hero: zielony (zamiast szarego). Nazwy (strong)
   pozostają pogrubione jak wcześniej. Gwiazdki bold. */
.hero-cennik__card .approach__bullets { color: var(--color-zielony); }
.hero-cennik__card .price-card__star { font-weight: 700; }

/* Desktop: większe paddingi i czcionka w kartach. */
@media (min-width: 1024px) {
  .hero-cennik__card { padding: 2.75rem; gap: 1.5rem; }
  .hero-cennik__card .approach__bullets { font-size: 1rem; }
  .hero-cennik__card .price-card__title { font-size: 1.625rem; }
  .hero-cennik__note { font-size: 1.0625rem; padding: 0.875rem 1.5rem; }
}

/* Tekst na ciemnym zdjęciu — biały (wzór z .hero__intro--red). */
.hero-cennik .hero__eyebrow,
.hero-cennik .hero__title { color: var(--color-zielony); }
.hero-cennik .hero__lede  { color: var(--color-zielony); font-weight: 600;}
/* .hero-cennik .hero__title { color: #fff } */
/* .hero-cennik .hero__lede  { color: #fff } */

/* === Hero podstrony Promocje: ta sama mechanika co .hero-cennik (zdjęcie jako
   TŁO całej sekcji 100% szerokości, treść w .container), ale OSOBNA klasa —
   tło będzie stylowane inaczej. Treść: tylko eyebrow + title. */
.hero-promo {
  position: relative;
  padding-block: 4rem;        /* standardowy odstęp pionowy (rytm jak .section) */
  background-image: url(../assets/img/promo_hero.webp);
  background-size: cover;
  background-position: 50% 60%;;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .hero-promo { padding-block: 5rem; }
}

/* Warstwa na całym tle — pod treścią, nad zdjęciem. Do ustawienia maski. */
@media (min-width: 1024px) {
.hero-promo__mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 35%, rgba(255, 255, 255, 0.1) 60%);   /* półprzezroczyste, rozjaśniające tło */
}
}
.hero-promo__inner {
  position: relative;
  z-index: 2;
}
.hero-promo__content {
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 34rem;
}
.hero-promo .hero__eyebrow,
.hero-promo .hero__title { color: var(--color-zielony); }

/* Jedna karta pod tytułem (styl jak karty cennika), wyrównana do lewej. */
.hero-promo__card {
  margin-top: 1.5rem;
  max-width: 36rem;
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero-promo__card .approach__bullets { color: var(--color-zielony); }
.hero-promo__card .price-card__star { font-weight: 700; }

/* CTA w karcie pod listą — pomarańczowy, wyśrodkowany (smooth scroll do #formularz). */
.hero-promo__cta {
  align-self: center;
  margin-top: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
}

/* Przypis pod CTA: gwiazdka pomarańczowa+bold (.price-card__star), link do ZUS
   pogrubiony i podkreślony. */
.hero-promo__finenote {
  margin-top: -0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-zielony);
  text-align: center;
}
.hero-promo__zus-link { font-weight: 700; text-decoration: underline; }

@media (min-width: 1024px) {
  .hero-promo__card { padding: 2.75rem; gap: 1.5rem; }
  .hero-promo__card .approach__bullets { font-size: 1rem; }
  .hero-promo__card .price-card__title { font-size: 1.625rem; }
}

/* === Hero podstrony Kontakt: ta sama mechanika co .hero-cennik / .hero-promo
   (zdjęcie jako TŁO całej sekcji 100% szerokości, treść w .container), osobna
   klasa — własny kadr tła. Treść: eyebrow + title + lede. */
.hero-kontakt {
  position: relative;
  padding-block: 4rem;        /* standardowy odstęp pionowy (rytm jak .section) */
  background-image: url(../assets/img/kontakt_hero.webp);
  background-size: cover;
  background-position: 50% 30%;   /* kadr do dopasowania wizualnie */
  background-repeat: no-repeat;
}
@media (min-width: 1024px) { .hero-kontakt { padding-block: 5rem; } }

.hero-kontakt__mask {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 25%, rgba(255,255,255,0.1) 44%);   /* półprzezroczyste, rozjaśniające tło */
}
@media (min-width: 1024px) {
  .hero-kontakt__mask {
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 25%, rgba(255,255,255,0.0) 35%);
  }
}

.hero-kontakt__inner { position: relative; z-index: 2; }
.hero-kontakt__content { display: flex; flex-direction: column; gap: 1.25rem; max-width: 34rem; }
.hero-kontakt .hero__eyebrow,
.hero-kontakt .hero__title { color: var(--color-zielony); }
@media (min-width: 1024px) { .hero-kontakt .hero__title { white-space: nowrap; } }
/* Łamanie tytułu po „Zapraszamy" tylko na mobile; na desktopie jedna linia */
@media (min-width: 1024px) { .hero-kontakt__br { display: none; } }

/* Dane kontaktowe pod tytułem: "Zadzwoń do nas" + button, "lub nas odwiedź" + adres. */
.hero-kontakt__details { display: flex; flex-direction: column; gap: 1.25rem; }
.hero-kontakt__block { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.hero-kontakt__label { margin: 0; font-weight: 700; color: var(--color-zielony); }
.hero-kontakt__address { margin: 0; font-style: normal; font-weight: 600; color: var(--color-zielony); }
.hero-kontakt__email { font-weight: 600; color: var(--color-zielony); text-decoration: underline; }
.hero-kontakt__email:hover { text-decoration: none; }

/* Nieduża prostokątna mapa (ta sama mechanika co .contact-faq__map z index). */
.hero-kontakt__map {
  position: relative;
  width: 100%; max-width: 26rem;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-zielony);
  overflow: hidden; background: var(--color-border-soft);
}
.hero-kontakt__map-canvas { width: 100%; height: 100%; min-height: 14rem; border: 0; display: block; }

/* Tylko telefony: chowamy mapę, a dane kontaktowe pakujemy w białą kartę
   wyrównaną do lewej. Tablety zostają jak desktop. */
@media (max-width: 767px) {
  .hero-kontakt__map { display: none; }
  .hero-kontakt__details {
    align-self: flex-start;
    width: fit-content;
    padding: var(--space-6);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
  }
}

/* === Hero podstrony FAQ: ta sama mechanika co .hero-kontakt (zdjęcie jako TŁO
   całej sekcji 100% szerokości, treść w .container nad maską). Treść: eyebrow +
   title + lede. */
.hero-faq {
  position: relative;
  padding-block: 4rem;
  background-image: url(../assets/img/faq_hero.webp);
  background-size: cover;
  background-position: 50% 30%;   /* kadr do dopasowania wizualnie */
  background-repeat: no-repeat;
}
@media (min-width: 1024px) { .hero-faq { padding-block: 5rem; } }

.hero-faq__mask {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(150deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.85) 35%, rgba(255,255,255,0.1) 80%);
}
@media (min-width: 1024px) {
  .hero-faq__mask {
    background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.85) 35%, rgba(255,255,255,0.0) 65%);
  }
}

.hero-faq__inner { position: relative; z-index: 2; }
.hero-faq__content { display: flex; flex-direction: column; gap: 1rem; max-width: 34rem; }
.hero-faq .hero__eyebrow,
.hero-faq .hero__title { color: var(--color-zielony); }
.hero-faq .hero__lede  { color: var(--color-zielony); font-weight: 600; }

/* FAQ: na desktop wyjątkowo o 50% większe paddingi hero (pionowy 5→7.5rem, poziomy 1.5→2.25rem). */
@media (min-width: 1024px) {
  .page--faq .hero-faq { padding-block: 7.5rem; }
  .page--faq .hero-faq__inner { padding-inline: 2.25rem; }
}

/* === Sposoby kontaktu (kontakt): 2 kafelki, wyśrodkowane, równej szerokości.
   Białe, zaokrąglone, standardowa zielona ramka 1px. Ikona + tytuł + tekst + CTA. */
#sposoby-kontaktu { padding-bottom: 4rem; }
@media (min-width: 1024px) { #sposoby-kontaktu { padding-bottom: 5rem; } }
.contact-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .contact-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
}
.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2.5rem 2rem;
  background: #fff;
  border: 1px solid var(--color-zielony);
  border-radius: var(--radius-2xl);
}
.contact-tile__icon { width: 5.2rem; height: 5.2rem; }
.contact-tile__title { margin: 0; color: var(--color-zielony); font-size: 1.8rem; font-weight: 700; }
.contact-tile__text { margin: 0; color: var(--color-text); text-align: left; }
.contact-tile__cta { margin-top: auto; }

/* === Formularz zapisu (Promocje): pomarańczowe tło na full-screen, w środku
   biały panel z formularzem (reużycie styli .form-card__panel / .form-*). */
.promo-form {
  background: #F8877B;
  padding-block: 4rem;
  scroll-margin-top: 7rem;   /* sticky header (6rem) nie zasłania początku formularza */
}
@media (min-width: 1024px) { .promo-form { padding-block: 5rem; } }
/* Formularz bezpośrednio na tle (#F8877B) — bez białej karty. */
.promo-form__panel {
  max-width: 40rem;
  margin-inline: auto;
}
/* Nagłówek formularza — biały, mniejszy niż domyślny .section-title (to zdanie). */
.promo-form__title {
  color: #fff;
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .promo-form__title { font-size: 1.625rem; } }

/* Submit „Zapisz się" — biała ramka (wyróżnienie na koralowym tle). */
.promo-form .form-submit { border: 2px solid #fff; }

/* Tekst RODO w formularzu promocji. */
.promo-form .form-gdpr { color: #405D61; }

/* Nieco większy odstęp między opcjami Żłobek / Przedszkole. */
.promo-form .form-choice { gap: 0.875rem; }

/* Walidacja na koralowym tle: domyślny czerwony (#F66B5B) zlewa się z tłem
   #F8877B — dlatego błędy robimy białe, a obramowania ciemnoceglaste + biała poświata. */
.promo-form .form-field__error { color: #fff; font-weight: 600; }
.promo-form .form-field.is-invalid .form-field__input,
.promo-form .form-field.is-invalid .cv-dropzone,
.promo-form .form-choice.is-invalid .form-choice__input,
.promo-form .form-consent.is-invalid .form-consent__box {
  border-color: color-mix(in oklab, var(--color-czerwony) 45%, #000);
}
.promo-form .form-field.is-invalid .form-field__input {
  box-shadow: 0 0 0 3px color-mix(in oklab, #fff 55%, transparent);
}

/* Cennik — karty OPŁATY / ZNIŻKI: grid 2/3 + 1/3 (jak hero) */
.price-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .price-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: stretch;
  }
}
.price-card {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-2xl);
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.price-card__title {
  margin: 0;
  margin: 0;
  text-align: center;
  font-size: 1.575rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
  color: var(--color-zielony);
}
.price-card__list { margin-top: 0.45rem; }
.price-card__star { color: var(--color-czerwony); }
.price-note {
  margin: auto 0 0;            /* dosuwa pastylkę do dołu karty */
  align-self: flex-start;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-pill);
  background: color-mix(in oklab, var(--color-czerwony-jasny) 18%, #fff);
  font-size: 0.875rem;
  color: var(--color-szary);
}
.price-card__cta { margin-top: auto; }   /* przycisk na dole prawej karty */

.hero__intro-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 1rem; height: 100%;
}

.hero__eyebrow {
  margin: 0;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.02em;
  color: var(--color-zielony);
}
@media (min-width: 1024px) { .hero__eyebrow { font-size: 0.875rem; } }

.hero__title {
  margin: 0;
  font-size: 2rem; line-height: 1.1; font-weight: 700;
  color: var(--color-zielony);
}
@media (min-width: 1024px) { .hero__title { font-size: 2.75rem; } }

.hero__lede {
  margin: 0;
  font-size: 0.9375rem; line-height: 1.6;
  color: #000; max-width: 30rem;
}
@media (min-width: 1024px) { .hero__lede { font-size: 1rem; } }

.hero__photo {
  position: relative; overflow: hidden;
  border-radius: var(--radius-2xl);
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #cbd5e1 0%, #94a3b8 100%);
}
.hero__photo-img {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%; object-fit: cover;
}
@media (min-width: 1024px) {
  .hero__photo {
    grid-column: 2; grid-row: 1 / span 2;
    aspect-ratio: auto;
    border-radius: var(--radius-3xl);
    align-self: stretch;
  }
}

/* O nas — naprzemienne sekcje (karta z kółkami + zaokrąglone zdjęcie),
   wygląd analogiczny do hero. Kolejność kolumn wynika z kolejności w DOM. */
.about-row__inner {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 1024px) {
  .about-row__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.25rem; align-items: stretch;
  }
}

/* ostatnia sekcja podstrony — odstęp od footera (rytm jak .section) */
.bleed-section:last-child { margin-bottom: 4rem; }
@media (min-width: 1024px) { .bleed-section:last-child { margin-bottom: 5rem; } }

/* mobile: rytm tekst–zdjęcie naprzemiennie (bez dwóch zdjęć ani dwóch bloków
   tekstu z rzędu). Sekcja 2 ma w DOM zdjęcie przed tekstem (układ desktop),
   więc na mobile odwracamy kolejność. Desktop bez zmian. */
.about-row__inner > .about-photo:first-child { order: 1; }
@media (min-width: 1024px) { .about-row__inner > .about-photo:first-child { order: 0; } }

.about-text {
  display: flex; flex-direction: column; justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
}
@media (min-width: 1024px) { .about-text { padding: 0 1rem; } }

.about-photo {
  position: relative; overflow: hidden;
  border-radius: var(--radius-2xl);
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #cbd5e1 0%, #94a3b8 100%);
}
.about-photo__img {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%; object-fit: cover;
}
@media (min-width: 1024px) {
  .about-photo { aspect-ratio: auto; border-radius: var(--radius-3xl); align-self: stretch; }
}

.hero__promo {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--radius-2xl);
  background-color: var(--color-czerwony);
  padding: 1.75rem; color: #fff;
}
@media (min-width: 1024px) {
  .hero__promo {
    grid-column: 1; grid-row: 2;
    border-radius: var(--radius-3xl);
    padding: 2rem 2.5rem;
  }
}

.hero__promo-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.hero__promo-title {
  margin: 0; font-size: 1.75rem; line-height: 1.1; font-weight: 700; color: #fff;
}
@media (min-width: 1024px) { .hero__promo-title { font-size: 2.25rem; } }
.hero__promo-lede {
  margin: 0; font-size: 0.9375rem; line-height: 1.5; color: rgba(255, 255, 255, 0.92);
}
@media (min-width: 1024px) { .hero__promo-lede { font-size: 1rem; } }

/* CTA promo — bazuje na .btn .btn--outline-white, z dopasowaniem paddingu */
.hero__promo-cta {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.9375rem;
}
.hero__promo-cta:hover { background: #fff; color: var(--color-czerwony); }


/* === 6. Zaufanie (trust) ================================================== */
.trust-row {
  display: flex; flex-direction: column; gap: 0;
  list-style: none; padding: 0; margin: 0;
}
.trust-card {
  display: flex; flex-direction: column; justify-content: center; gap: 0.25rem;
  min-height: 5.5rem; padding: 1rem 1.25rem;
  background: #fff; border: 1px solid var(--color-border-soft);
  color: var(--color-zielony);
}
.trust-card:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.trust-card:last-child  { border-radius: 0 0 var(--radius-md) var(--radius-md); }
.trust-card__head { font-weight: 700; font-size: 1.125rem; line-height: 1.3; }
.trust-card__text { font-size: 0.9375rem; line-height: 1.4; color: var(--color-szary); }
@media (min-width: 1024px) {
  .trust-row {
    flex-direction: row; gap: 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-soft);
    overflow: hidden;
  }
  .trust-card {
    flex: 1 1 0; min-height: 6.25rem;
    border: none; border-radius: 0;
    border-right: 1px solid var(--color-border-soft);
  }
  .trust-card:last-child  { border-right: none; }
  .trust-card:first-child,
  .trust-card:last-child  { border-radius: 0; }
}


/* === 7. Ścieżki (path) ==================================================== */
.path-section__subtitle {
  margin-top: 0.8rem; font-size: 1.4rem; color: var(--color-szary);
}
.path-grid {
  margin-top: 1.5rem;
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
.path-card {
  background: #fff; border: 1px solid var(--color-border-soft);
  border-left: 5px solid;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.path-card--morski   { border-left-color: var(--color-morski); }
.path-card--czerwony { border-left-color: var(--color-czerwony); }
.path-card__title { font-size: 1.5rem; line-height: 1.1; font-weight: 700; color: var(--color-zielony); }
.path-card__text  { font-size: 0.9375rem; line-height: 1.6; color: var(--color-szary); }
.path-card__link {
  margin-top: 0.25rem; font-size: 0.875rem; font-weight: 700;
  color: var(--color-morski);
  transition: color 150ms ease;
}
.path-card__link:hover { color: var(--color-czerwony); }
@media (min-width: 1024px) {
  .path-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}


/* === 8. Approach (accordion ↔ tabs) ======================================= */
.snap { transition: none !important; }

.approach { --approach-accent: var(--color-morski); }

/* Switcher: mobilnie kolumna pill-i, desktopowo grid tabów (6 lub 5 kolumn) */
.approach__switcher {
  position: relative;
  margin-top: 1.5rem;            /* dawne mt-6 */
  display: flex;
  flex-direction: column;
  gap: 0.75rem;                  /* dawne gap-3 */
}
@media (min-width: 1024px) {
  .approach__switcher {
    gap: 0;                      /* lg:gap-0 */
    display: grid;
    column-gap: 0.5rem;          /* lg:gap-x-2 */
    row-gap: 1.75rem;            /* lg:gap-y-7 */
    overflow: hidden;            /* lg:overflow-hidden */
  }
  .approach__switcher--7 { grid-template-columns: repeat(7, 1fr); }
  .approach__switcher--6 { grid-template-columns: repeat(6, 1fr); }
  .approach__switcher--5 { grid-template-columns: repeat(5, 1fr); }
  .approach__switcher--4 { grid-template-columns: repeat(4, 1fr); }
  .approach__switcher--3 { grid-template-columns: repeat(3, 1fr); }
  .approach__switcher--2 { grid-template-columns: repeat(2, 1fr); }
  .approach__item { display: contents; }   /* dawne lg:contents */
}

.approach__pill {
  position: relative; z-index: 1;
  display: flex; width: 100%;
  align-items: center; justify-content: space-between;
  gap: 0.75rem;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--approach-accent);
  background: var(--approach-accent);
  color: #fff;
  padding: 0.875rem 1.25rem;
  text-align: center;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.approach__pill:hover { background: color-mix(in oklab, var(--approach-accent) 88%, #fff); }
.approach__pill[aria-expanded="true"] {
  background: #fff;
  border: 1px solid var(--approach-accent);
  color: var(--approach-accent);
}
@media (min-width: 1024px) {
  .approach__pill { justify-content: center; padding: 0.75rem 1rem; font-size: 0.75rem; }
  .approach__chevron { display: none; }     /* dawne lg:hidden */
}

.approach__chevron {
  width: 1rem; height: 1rem; flex-shrink: 0;
  transition: transform 200ms ease;
}
.approach__pill[aria-expanded="true"] .approach__chevron { transform: rotate(180deg); }

.approach__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease-out, transform 300ms ease-out, margin-top 300ms ease-out;
}
/* mobile: aktywny panel wciągnięty pod pill o pełny promień karty (--radius-lg),
   żeby schować zaokrąglone "rożki" górnej krawędzi karty na styku z pillem */
.approach__panel[data-active] { grid-template-rows: 1fr; margin-top: -1.25rem; }
@media (prefers-reduced-motion: reduce) {
  .approach__panel { transition: none; }
}
@media (min-width: 1024px) {
  .approach__panel {
    grid-column: 1 / -1; grid-row-start: 2; grid-template-rows: 1fr;
  }
  .approach__panel[data-active] { margin-top: 0; }   /* desktop: bez wciągania (slide poziomy) */
  .approach__panel[data-pos="active"] { transform: translateX(0); }
  .approach__panel[data-pos="left"]   { transform: translateX(-100%); }
  .approach__panel[data-pos="right"]  { transform: translateX(100%); }
}

.approach__panel-clip { overflow: hidden; }

.approach__card {
  display: flex; flex-direction: column; gap: 1.25rem;
  border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--color-border-soft);
  
}
@media (min-width: 1024px) {
  .approach__card { margin-top: 0; flex-direction: row; align-items: stretch; gap: 2rem; min-height: 400px;}
}
/* padding-top = bazowy 1.25rem + 1.25rem kompensacji wciągnięcia panelu pod pill,
   żeby tekst został wizualnie w tym samym miejscu (desktop nadpisuje to przez padding) */
.approach__copy { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.25rem; padding-top: 2.5rem;}
@media (min-width: 1024px) {
  .approach__copy { flex: 1 1 0; justify-content: center; padding-block: 1rem; padding: 1.75rem;}
}
.approach__eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--approach-accent);
}
.approach__heading { font-size: 1.5rem; line-height: 1.15; font-weight: 700; color: var(--color-zielony); }
@media (min-width: 1024px) { .approach__heading { font-size: 1.875rem; } }
.approach__text { font-size: 0.9375rem; line-height: 1.6; color: var(--color-szary); }
/* Lista wypunktowana w panelu approach (podstrony — karta „Relacje i emocje") */
.approach__bullets {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
  color: var(--color-szary);
  font-size: 0.875rem; line-height: 1.55;
}
.approach__bullets strong { font-weight: 700; color: var(--color-zielony); }
.approach__bullets::marker { color: var(--color-czerwony); }
.approach__media {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3; width: 100%;
  border-radius: var(--radius-md);
  background-color: var(--color-border-soft);
}
.approach__media img {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%; object-fit: cover;
}
@media (min-width: 1024px) {
  .approach__media { width: 50%; flex-shrink: 0; aspect-ratio: auto; align-self: stretch; min-height: 18rem; }
}


/* === 9. Bleed section / row / card (poziome scrollowanie) ================= */
.bleed-section__inner {
  max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-pad);
}
.bleed-section__inner--split { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 1024px) {
  .bleed-section__inner--split {
    flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 3rem;
  }
}
.bleed-section__intro {
  margin: 0; color: var(--color-zielony);
  font-size: 0.9375rem; line-height: 1.6; font-weight: 500;
}
@media (min-width: 1024px) {
  .bleed-section__intro { max-width: 32rem; margin-top: 0.5rem; font-size: 1rem; }
}
/* CTA „Zajrzyj do nas" pod postami z Instagrama — tylko mobile, na całą szerokość */
.ig-cta-wrap { display: none; }
@media (max-width: 767px) {
  .ig-cta-wrap { display: flex; margin-top: 1.5rem; }
  .ig-cta-wrap .btn { width: 100%; }
}

.bleed-row {
  margin-top: 1.5rem;
  margin-left: max(var(--container-pad), calc((100% - var(--container-max)) / 2 + var(--container-pad)));
  margin-right: var(--container-pad);
  overflow-x: auto;
  padding-block: 0.5rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.bleed-row__list {
  display: flex; gap: 1rem; width: max-content;
  list-style: none; margin: 0; padding: 0;
}
.bleed-card {
  flex: 0 0 auto;
  width: 16rem; height: 12rem;
  border-radius: var(--radius-lg);
  background-color: #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  color: #64748b; font-weight: 600;
  scroll-snap-align: start;
}

/* Nawigacja przewijania (hover) — pasek scrolla ukryty tylko dla rzędów z [data-scroll-nav] */
.bleed-row[data-scroll-nav] { scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: none; }
.bleed-row[data-scroll-nav]::-webkit-scrollbar { display: none; }

.bleed-scroller { position: relative; }

.bleed-scroller__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 3rem; height: 3rem; border: 0; border-radius: var(--radius-pill);
  background: var(--color-czerwony); color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 32px -10px rgba(246, 107, 91, 0.55);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
}
.bleed-scroller__btn[data-visible] { opacity: 1; visibility: visible; pointer-events: auto; }
.bleed-scroller__btn:hover { transform: translateY(-50%) scale(1.06); }
.bleed-scroller__btn svg { width: 1.5rem; height: 1.5rem; }
.bleed-scroller__btn--prev { left: max(var(--container-pad), calc((100% - var(--container-max)) / 2 + var(--container-pad))); }
.bleed-scroller__btn--next { right: 0.75rem; }
.bleed-scroller__btn--prev svg { transform: rotate(180deg); }

/* Brak hovera (dotyk) — chowamy przyciski, zostaje natywne przesuwanie palcem */
@media (hover: none) { .bleed-scroller__btn { display: none; } }


/* === 10. Recenzje (review-card) =========================================== */
.bleed-card--review {
  width: 18rem; height: auto; min-height: 16rem;
  background: #F4F4F4; border: 1px solid var(--color-border-soft);
  color: var(--color-zielony);
  align-items: stretch; justify-content: flex-start;
  padding: 1.25rem 1.25rem 1rem;
}
@media (min-width: 768px) {
  .bleed-card--review { width: 19rem; min-height: 17rem; }
}
.review-card__body { display: flex; flex-direction: column; gap: 0.625rem; width: 100%; height: 100%; }
.review-card__head { display: flex; align-items: center; gap: 0.625rem; }
.review-card__avatar {
  width: 2rem; height: 2rem;
  border-radius: var(--radius-pill);
  background: var(--color-morski); color: #fff;
  font-weight: 700; font-size: 0.8125rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: -0.01em;
}
.review-card__who { display: flex; flex-direction: column; line-height: 1.15; flex: 1; min-width: 0; }
.review-card__name { font-weight: 700; font-size: 0.875rem; color: var(--color-zielony); }
.review-card__date { font-size: 0.75rem; color: var(--color-szary); margin-top: 2px; }
.review-card__google { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.review-card__stars { display: inline-flex; gap: 2px; color: #fbbf24; font-size: 0.875rem; line-height: 1; }
.review-card__text {
  margin: 0; font-size: 0.8125rem; line-height: 1.5; font-weight: 400; color: var(--color-zielony);
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.review-card__more {
  margin-top: auto; align-self: flex-start;
  font-size: 0.8125rem; font-weight: 600; color: var(--color-zielony);
  transition: color 150ms ease;
}
.review-card__more:hover { color: var(--color-czerwony); }


/* === 11. Instagram (ig-post) ============================================== */
.bleed-card--ig {
  width: 16rem; height: auto; min-height: 18rem;
  background: #fff; border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  color: var(--color-zielony);
  align-items: stretch; justify-content: flex-start;
  padding: 0;
  box-shadow: 0 12px 28px -22px rgba(15, 52, 58, 0.25);
  overflow: hidden;
}
@media (min-width: 768px) { .bleed-card--ig { width: 17rem; } }
.ig-post { display: flex; flex-direction: column; width: 100%; height: 100%; }
.ig-post__head {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 0.75rem; border-bottom: 1px solid #f1f5f9;
}
.ig-post__avatar {
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-pill);
  background: #fff; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ig-post__avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ig-post__avatar { text-decoration: none; }
.ig-post__handle {
  flex: 1; min-width: 0; font-weight: 700; font-size: 0.8125rem; color: var(--color-zielony);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-decoration: none;
}
.ig-post__handle:hover { color: var(--color-czerwony); }
.ig-post__more-link {
  display: inline-flex; flex-shrink: 0; margin-left: auto; color: var(--color-szary);
  text-decoration: none; transition: color 150ms ease;
}
.ig-post__more-link:hover { color: var(--color-czerwony); }
.ig-post__more { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: inherit; }
.ig-post__media {
  position: relative;                 /* punkt odniesienia dla ikony typu */
  width: 100%; aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); /* fallback do czasu załadowania */
  background-size: cover; background-position: center;
  overflow: hidden;
}
.ig-post__media a { display: block; width: 100%; height: 100%; }
.ig-post__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* maska 70% + zoom dotyczą tylko zdjęcia (w <a>), nie ikony typu */
.ig-post__media a img {
  filter: brightness(0.7);            /* maska 70% — przyciemnienie */
  transform: scale(1);
  transition: filter 300ms ease, transform 450ms ease;
}
.ig-post__media:hover a img,
.ig-post__media:focus-within a img {
  filter: brightness(1);              /* rozjaśnienie na hover */
  transform: scale(1.06);             /* delikatny zoom */
}

/* ikona typu (foto/video) w prawym górnym rogu — zawsze widoczna, nad maską */
.ig-post__type {
  position: absolute; top: 0.5rem; right: 0.5rem; z-index: 2;
  width: 1.2rem; height: 1.2rem; pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
.ig-post__type img { width: 100%; height: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  .ig-post__media a img { transition: filter 200ms ease; }
  .ig-post__media:hover a img,
  .ig-post__media:focus-within a img { transform: none; }
}
.ig-post__actions {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 0.75rem; color: var(--color-zielony);
}
.ig-post__actions svg {
  width: 1.25rem; height: 1.25rem; flex-shrink: 0; cursor: pointer;
  transition: color 150ms ease;
}
.ig-post__actions svg:hover { color: var(--color-czerwony); }
.ig-post__actions .ig-post__bookmark { margin-left: auto; }
.ig-post__action { display: inline-flex; color: inherit; text-decoration: none; }
.ig-post__caption {
  margin: 0; padding: 0.125rem 0.75rem 1.5rem;
  font-size: 0.75rem; line-height: 1.4; color: var(--color-zielony);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}


/* === 12. Bento (Nasze wnętrza) — równa siatka 2 rzędy ===================== */
/* brak wewnętrznego pionowego scrolla (overflow-x:auto wymusza overflow-y:auto) */
.bleed-row--bento { overflow-y: hidden; }

.bleed-row__list--bento {
  display: flex;
  gap: 0.75rem;
  height: 24rem;
}
.bento-unit {
  flex: none;
  display: grid;
  /* kolumna = 1,6 × wysokość rzędu (= (24rem − 0,75rem gap)/2) → ratio małego kafelka 4:2,5 */
  grid-template-columns: repeat(4, 18.6rem);
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "a b b e"
    "a c d d";
  gap: 0.75rem;
  width: max-content; /* szerokość wynika z kolumn + gapów */
}
@media (min-width: 768px) {
  .bleed-row__list--bento { gap: 1rem; height: 36rem; }
  .bento-unit {
    gap: 1rem;
    /* kolumna = 1,6 × (36rem − 1rem gap)/2 = 28rem */
    grid-template-columns: repeat(4, 28rem);
  }
}

.bento-cell { overflow: hidden; border-radius: var(--radius-md); min-height: 0; }
.bento-cell--a { grid-area: a; }
.bento-cell--b { grid-area: b; }
.bento-cell--c { grid-area: c; }
.bento-cell--d { grid-area: d; }
.bento-cell--e { grid-area: e; }
.bento-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* === 13. Video promo + modal ============================================== */
.video-promo {
  position: relative; isolation: isolate; overflow: hidden;
  padding-block: 2rem;
}
@media (min-width: 1024px) { .video-promo { padding-block: 3rem; } }
.video-promo__inner { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 1024px) {
  .video-promo__inner { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 3rem; }
}
.video-promo__copy { display: flex; flex-direction: column; gap: 1rem; }
.video-promo__eyebrow {
  margin: 0; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.04em; color: var(--color-czerwony);
}
.video-promo__lede {
  margin: 0; font-size: 0.9375rem; line-height: 1.55; color: var(--color-szary); max-width: 32rem;
}
@media (min-width: 1024px) { .video-promo__lede { font-size: 1rem; } }
/* CTA — bazuje na .btn .btn--primary */
.video-promo__cta {
  align-self: flex-start; margin-top: 0.5rem; padding: 0.75rem 1.75rem; font-size: 0.9375rem;
}
.video-promo__media {
  position: relative; display: block; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden; cursor: pointer; border: 0; padding: 0; background: transparent;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.video-promo__media:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -20px rgba(15, 52, 58, 0.35); }
.video-promo__media:focus-visible {
  outline: none; box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-czerwony) 35%, transparent);
}
.video-promo__poster {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(15, 52, 58, 0.15), rgba(15, 52, 58, 0.15)),
              url('../assets/img/video.webp') center / cover no-repeat;
}
.video-promo__badge {
  position: absolute; top: 0.875rem; right: 0.875rem;
  width: 3rem; height: 3rem;
  border-radius: var(--radius-pill);
  background: #fff; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(15, 52, 58, 0.35);
}
.video-promo__badge img { width: 2rem; height: 2rem; object-fit: contain; }
@media (min-width: 1024px) {
  .video-promo__badge { top: 1.25rem; right: 1.25rem; width: 3.5rem; height: 3.5rem; }
  .video-promo__badge img { width: 2.25rem; height: 2.25rem; }
}
.video-promo__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 4rem; height: 4rem;
  border-radius: var(--radius-pill);
  background: var(--color-czerwony); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 32px -10px rgba(246, 107, 91, 0.55);
  transition: transform 200ms ease, background-color 200ms ease;
}
.video-promo__media:hover .video-promo__play { transform: translate(-50%, -50%) scale(1.06); }
.video-promo__play svg { width: 1.5rem; height: 1.5rem; }
@media (min-width: 1024px) {
  .video-promo__play { width: 5rem; height: 5rem; }
  .video-promo__play svg { width: 1.875rem; height: 1.875rem; }
}

/* Modal YouTube */
.video-modal {
  position: fixed; inset: 0; margin: auto;
  border: 0; padding: 0; background: transparent;
  width: min(96vw, 1100px); max-width: 100%; max-height: 96dvh;
  color: #fff; overflow: visible;
}
.video-modal::backdrop { background: rgba(15, 52, 58, 0.78); backdrop-filter: blur(6px); }
.video-modal[open] { display: block; }
.video-modal__close {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-pill);
  border: 0; background: rgba(15, 52, 58, 0.65); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background-color 150ms ease;
}
.video-modal__close:hover, .video-modal__close:focus-visible { background: var(--color-czerwony); outline: none; }
.video-modal__close svg { width: 1.25rem; height: 1.25rem; }
.video-modal__frame {
  width: 100%; aspect-ratio: 16 / 9; max-height: 96dvh;
  border-radius: var(--radius-md);
  overflow: hidden; background: #000;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.55);
}
.video-modal__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* === Modal z formularzem (popup) — natywny <dialog>, mechanika jak .video-modal,
   ale biały panel z formularzem (reużycie styli .form-*). */
.form-modal {
  position: fixed; inset: 0; margin: auto;
  border: 0; padding: 0; background: transparent;
  width: min(94vw, 32rem); max-width: 100%; max-height: 92dvh;
  overflow: visible;
}
.form-modal::backdrop { background: rgba(15, 52, 58, 0.78); backdrop-filter: blur(6px); }
.form-modal[open] { display: block; }
.form-modal__panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  max-height: 92dvh; overflow-y: auto;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.55);
}
@media (min-width: 1024px) { .form-modal__panel { padding: 2.25rem; } }
.form-modal__close {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--radius-pill);
  border: 0; background: rgba(15, 52, 58, 0.08); color: var(--color-zielony);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background-color 150ms ease, color 150ms ease;
}
.form-modal__close:hover, .form-modal__close:focus-visible {
  background: var(--color-czerwony); color: #fff; outline: none;
}
.form-modal__close svg { width: 1.25rem; height: 1.25rem; }
.form-modal__title { margin: 0 2.5rem 1.25rem 0; color: var(--color-zielony); font-size: 1.5rem; }

/* Mobile — minimalne zmniejszenie formularza w lightboxie, żeby mieścił się
   w oknie: nagłówek, paddingi panelu, wysokość/czcionka pól. */
@media (max-width: 767px) {
  .form-modal__panel { padding: 1.25rem; }
  .form-modal__title { font-size: 1.25rem; margin-bottom: 0.875rem; }
  .form-modal .form-fields { gap: 0.625rem; }
  .form-modal .form-field__input { padding: 0.625rem 1rem; font-size: 0.875rem; }
  .form-modal .form-field__input--textarea { min-height: 6rem; }
}


/* === 14. Lokalizacja + FAQ ================================================ */
.contact-faq { position: relative; isolation: isolate; padding-block: 2rem; }
@media (min-width: 1024px) { .contact-faq { padding-block: 3rem; } }
.contact-faq__inner { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) {
  .contact-faq__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.75rem; align-items: stretch; }
}
.contact-faq__card {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 1024px) { .contact-faq__card { padding: 2.25rem 2.5rem; gap: 1.25rem; } }
.contact-faq__lede { margin: 0; font-size: 0.9375rem; line-height: 1.55; color: #000; max-width: 32rem; }
@media (min-width: 1024px) { .contact-faq__lede { font-size: 1rem; } }
.contact-faq__map {
  position: relative; margin-top: auto; width: 100%; aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden; background: var(--color-border-soft);
}
.contact-faq__map-canvas { width: 100%; height: 100%; min-height: 18rem; border: 0; display: block; }
@media (min-width: 1024px) {
  .contact-faq__card--faq { min-height: 38rem; }
  .contact-faq__map { margin-top: 0; aspect-ratio: auto; flex: 1 1 auto; min-height: 18rem; }
}

/* Placeholder mapy Google — wzorzec „klik, aby pokazać". Tło = self-hostowany zrzut
   mapy (ustawiany inline `background-image: url(...)` per strona — url() bezpośrednio
   w stylu inline, NIE w zmiennej CSS, bo wtedy ścieżka liczy się względem HTML, nie CSS).
   Scrim (gradient dla czytelności) jest w ::before. Żadnych żądań do Google, dopóki
   użytkownik nie kliknie (lub nie wyrazi zgody marketing).
   Wypełnia wrapper mapy (.contact-faq__map / .hero-kontakt__map: position:relative). */
.map-consent {
  position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  gap: 0.4rem; padding: 1rem 1rem 1.25rem; border: 0; cursor: pointer; font: inherit; color: #fff;
  background-color: var(--color-border-soft);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transition: filter 0.2s ease;
}
.map-consent::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(20, 40, 30, 0.28), rgba(20, 40, 30, 0.45));
}
.map-consent:hover, .map-consent:focus-visible { filter: brightness(1.06); }
[data-map-embed].is-loaded .map-consent { display: none; }
.map-consent__pill {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.92); color: var(--color-zielony);
  font-weight: 700; font-size: 0.9375rem; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}
.map-consent__pin { width: 1.1rem; height: 1.1rem; flex: none; }
.map-consent__note { position: relative; z-index: 1; font-size: 0.75rem; font-weight: 600; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55); }

.faq-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  border: 1.5px solid color-mix(in oklab, var(--color-morski) 35%, #fff);
  border-radius: var(--radius-pill);
  background: #fff;
  transition: border-color 250ms ease, border-radius 300ms ease;
  overflow: hidden;
}

.faq-item[open] { border-radius: var(--radius-lg); border-color: var(--color-morski); }
/* index: stały promień w obu stanach — bez morfowania przy rozwijaniu */
[data-faq-accordion] .faq-item,
[data-faq-accordion] .faq-item[open] { border-radius: var(--radius-lg); }
.faq-item__summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem; font-weight: 700; color: var(--color-zielony);
  user-select: none;
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__summary::marker { content: ''; }
.faq-item__summary::before {
  content: '›'; display: inline-block; font-size: 1.125rem; line-height: 1;
  color: var(--color-morski); transition: transform 200ms ease;
}
.faq-item[open] .faq-item__summary::before { transform: rotate(90deg); }
.faq-item__summary:hover { color: var(--color-czerwony); }
.faq-item__summary:focus-visible {
  outline: 2px solid var(--color-morski); outline-offset: 2px; border-radius: var(--radius-pill);
}
.faq-item__answer { padding: 0 1.25rem 1rem; color: #000; font-size: 0.9375rem; line-height: 1.55; }
.faq-item__answer p { margin: 0; }

/* FAQ — podstrona faq.html: kategorie (linki tekstowe) + lista */
.faq-page { padding-bottom: 4rem; }
@media (min-width: 1024px) { .faq-page { padding-bottom: 6rem; } }

/* Desktop: dwie kolumny — treść (2/3) po lewej, prawa kolumna (1/3) do uzupełnienia.
   Treść wyrównana do lewej (znosimy wyśrodkowanie i max-width wewnętrznych bloków). */
@media (min-width: 1024px) {
  .faq-page__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
  .faq-page__main .faq-filter,
  .faq-page__main .faq-page__list,
  .faq-page__main .faq-page__cta {
    max-width: none;
    margin-inline: 0;
  }
  /* Karta trzyma się pod sticky headerem (6rem) + zapas, w obrębie sekcji. */
  .faq-page__aside { margin-top: 0; position: sticky; top: 7rem; }
}

/* Karta: na mobile ląduje pod treścią (odstęp od góry); na desktopie sticky obok — patrz grid. */
.faq-page__aside { margin-top: 3rem; }

/* Prawa kolumna — karta-link „zapisz dziecko" (czarna ramka, std. zaokrąglenie). */
.faq-signup {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; text-align: center;
  padding: 2rem;
  border: 2px solid #000;
  border-radius: var(--radius-lg);
  color: #000; text-decoration: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.faq-signup:hover { border-color: var(--color-czerwony); box-shadow: var(--shadow-card); }
.faq-signup__title { margin: 0; font-size: 1.375rem; font-weight: 700; line-height: 1.35; }
.faq-signup__accent { color: var(--color-czerwony); }
.faq-signup__icon { position: relative; display: block; width: 8rem; height: 8rem; }
.faq-signup__icon-img { position: absolute; inset: 0; width: 100%; height: 100%; transition: opacity 150ms ease; }
.faq-signup__icon-img--hover { opacity: 0; }
.faq-signup:hover .faq-signup__icon-img--base { opacity: 0; }
.faq-signup:hover .faq-signup__icon-img--hover { opacity: 1; }
.faq-signup__cta { margin-top: 0.5rem; } /* część linku-karty — bez własnego href */
.faq-signup:hover .faq-signup__cta {
  background-color: color-mix(in oklab, var(--color-czerwony) 70%, transparent);
}

.faq-page__list { max-width: 52rem; margin-inline: auto; margin-top: 1.5rem; }
.faq-page__list .faq-item__summary { padding-block: 1.125rem; }
.faq-page__list .faq-item__answer { padding-bottom: 1.25rem; }

/* Oferty pracy (praca.html) — lista rozwijana jak FAQ, z bogatą treścią */
.job-offers { padding-bottom: 4rem; }
@media (min-width: 1024px) { .job-offers { padding-bottom: 6rem; } }
.job-offers__list { max-width: 52rem; margin-inline: 0; margin-top: 1.5rem; }
.job-offers__list .faq-item__summary { padding-block: 1.125rem; font-size: 1.0625rem; }
.job-offers .faq-item__answer { padding-bottom: 1.5rem; }
.job-offers .faq-item__answer > * + * { margin-top: 0.6rem; }
.job-offers .faq-item__answer h3 {
  margin: 0; font-size: 1rem; font-weight: 700; color: var(--color-zielony);
}
/* większy odstęp przed każdą pogrubioną częścią (nagłówek przylega do swojej listy) */
.job-offers .faq-item__answer > * + h3 { margin-top: 1.75rem; }
.job-offers .faq-item__answer ul {
  margin: 0; padding-left: 1.25rem;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.job-offers .faq-item__answer > .job-offers__cta { margin-top: 2.5rem; }
/* Poniżej lg (układ jednokolumnowy) — lista ofert na pełną szerokość kontenera,
   ale ze standardowym paddingiem bocznym .container (bez dotykania krawędzi). */
@media (max-width: 1023.98px) {
  .job-offers__list {
    max-width: none;
  }
}
.faq-filter {
  max-width: 52rem; margin-inline: auto;
  display: flex; flex-wrap: wrap; justify-content: flex-start;
  gap: 0.75rem 1.5rem;
}
.faq-filter__btn {
  border: 0; padding: 0; background: none;
  font-family: inherit; font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--color-zielony);
  cursor: pointer; transition: color 150ms ease;
}
.faq-filter__btn:hover { color: var(--color-czerwony); }
.faq-filter__btn[aria-selected="true"] { color: var(--color-czerwony); }
.faq-filter__btn:focus-visible { outline: 2px solid var(--color-czerwony); outline-offset: 2px; }
.faq-page__cta {
  max-width: 52rem; margin-inline: auto; margin-top: 2rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem;
}
.faq-page__cta-text { margin: 0; font-weight: 700; color: var(--color-zielony); }
@media (min-width: 640px) {
  .faq-page__cta { flex-direction: row; align-items: center; text-align: left; gap: 1.5rem; }
}

/* Treść prawna (polityka prywatności, regulamin) — prosta kolumna tekstu */
.legal { padding-bottom: 4rem; }
@media (min-width: 1024px) { .legal { padding-bottom: 6rem; } }
.legal__inner { max-width: 48rem; color: var(--color-text); line-height: 1.65; }
.legal__title { margin: 0 0 1.5rem; font-size: 1.75rem; font-weight: 700; color: var(--color-zielony); }
.legal__intro { margin: 0 0 2rem; color: var(--color-muted); }
.legal__heading {
  margin: 2rem 0 0.5rem; font-size: 1.25rem; font-weight: 700; color: var(--color-zielony);
}
.legal__inner p { margin: 0 0 1rem; }
.legal__list { margin: 0 0 1rem; padding-left: 1.25rem; }
.legal__list li { margin: 0 0 0.375rem; }
.legal__inner a { color: var(--color-morski); font-weight: 600; }
.legal__inner a:hover { color: var(--color-czerwony); }
.legal__subheading { margin: 1.75rem 0 0.5rem; font-size: 1.0625rem; font-weight: 700; color: var(--color-zielony); }
/* Tabela cookies — przewijalna na wąskich ekranach. */
.legal__table-wrap { margin: 0 0 1rem; overflow-x: auto; }
.legal__table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 34rem; }
.legal__table th, .legal__table td { padding: 0.5rem 0.75rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--color-border-soft); }
.legal__table th { font-weight: 700; color: var(--color-zielony); background: var(--color-border-soft); }
.legal__table code { font-size: 0.8125rem; background: var(--color-border-soft); padding: 0.05rem 0.3rem; border-radius: 4px; }
.contact-faq__more {
  align-self: flex-end; margin-top: auto;
  font-size: 0.875rem; font-weight: 700; color: var(--color-zielony);
  transition: color 150ms ease;
}
.contact-faq__more:hover { color: var(--color-czerwony); }


/* === 15. Formularz kontaktowy ============================================= */
.form-card {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-morski);   /* stroke jak wokół inputów formularza */
  background: #f8877b;
}
@media (min-width: 1024px) { .form-card { border: 0; border-radius: var(--radius-3xl); padding: 0.75rem; } }
.form-card__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 1024px) {
  .form-card__grid {
    grid-template-columns: 1fr 1fr; gap: 2.5rem;
    background: #f8877b;
    border-radius: var(--radius-2xl);
    padding: 3rem; align-items: start;
  }
}
.form-card__intro { display: none; }
@media (min-width: 1024px) {
  .form-card__intro { display: flex; flex-direction: column; color: var(--color-zielony); padding-right: 1rem; }
}
.form-card__lede { margin-top: 1rem; font-size: 1rem; line-height: 1.6; color: var(--color-zielony); max-width: 28rem; }
.form-card__title--mobile { display: block; margin-bottom: 1.25rem; }
@media (min-width: 1024px) { .form-card__title--mobile { display: none; } }
.form-card__panel { background: #fff; border-radius: var(--radius-xl); padding: 1.5rem; }
@media (min-width: 1024px) { .form-card__panel { padding: 2rem; box-shadow: 0 20px 40px -24px rgba(15, 52, 58, 0.25); } }

.form-steps { margin-top: 2rem; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.form-steps__item { display: flex; align-items: flex-start; gap: 1rem; }
.form-steps__num {
  flex-shrink: 0; width: 2.25rem; height: 2.25rem;
  border-radius: var(--radius-pill);
  border: none; background: #fff; color: var(--color-zielony);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem;
}
.form-steps__body { color: var(--color-zielony); }
.form-steps__head { font-weight: 700; font-size: 1rem; line-height: 1.3; color: var(--color-zielony); }
.form-steps__text { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.5; color: var(--color-zielony); }

.form-fields { display: flex; flex-direction: column; gap: 0.875rem; }
/* CTA w tym samym kolorze co tło karty formularza */
.form-submit { background-color: #f8877b; }
.form-submit:hover { background-color: color-mix(in oklab, #f8877b 80%, #000); }
.form-field { display: block; }
.form-field__input option { color: var(--color-zielony); }
/* <select> godzin: ukryta natywna strzałka + własny chevron z większym paddingiem,
   żeby nie nachodził na zaokrąglenie pola (pill). */
select.form-field__input,
input[type="date"].form-field__input { cursor: pointer; }
select.form-field__input {
  appearance: none; -webkit-appearance: none;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310343A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.1rem;
}
/* <input type="date">: ukrywamy natywny wskaźnik (na mobile to brzydka strzałka
   dosunięta do krawędzi) i wstawiamy własną ikonę kalendarza po prawej. Całe pole
   jest klikalne (showPicker w main.js + przezroczysty nakładkowy indicator). */
input[type="date"].form-field__input {
  position: relative;
  -webkit-appearance: none; appearance: none;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310343A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 1.15rem;
}
input[type="date"].form-field__input::-webkit-calendar-picker-indicator {
  position: absolute; inset: 0; margin: 0; width: auto; height: auto;
  opacity: 0; cursor: pointer;
}
input[type="date"].form-field__input::-webkit-date-and-time-value { text-align: left; }
/* Puste pole daty: chowamy natywny tekst (format), pokazujemy nakładkę „Wybierz datę". */
input[type="date"].form-field__input.is-empty { color: transparent; }
.form-field { position: relative; }
.date-placeholder {
  position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%);
  color: var(--color-szary); font-size: 0.95rem; pointer-events: none;
}
.date-placeholder[hidden] { display: none; }
.form-field__input {
  width: 100%;
  border: 1.5px solid var(--color-morski);
  border-radius: var(--radius-pill);
  padding: 0.875rem 1.25rem; font-size: 0.95rem; color: var(--color-zielony); background: #fff;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.form-field__input::placeholder { color: var(--color-szary); }
.form-field__input:focus {
  outline: none; border-color: var(--color-czerwony);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-czerwony) 25%, transparent);
}
.form-field__input--textarea {
  border-radius: var(--radius-lg);
  min-height: 8rem; resize: vertical; font-family: inherit; line-height: 1.5;
}
.form-choice { border: 0; padding: 0.25rem 0.25rem 0.5rem; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.form-choice__option { display: inline-flex; align-items: center; gap: 0.625rem; cursor: pointer; color: var(--color-zielony); font-size: 0.95rem; }
.form-choice__input {
  appearance: none; width: 1.125rem; height: 1.125rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-morski); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 150ms ease; flex-shrink: 0;
}
.form-choice__input:checked {
  border-color: var(--color-zielony);
  background: radial-gradient(circle, var(--color-zielony) 0 38%, #fff 42% 100%);
}
.form-choice__input:focus-visible {
  outline: none; box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-czerwony) 30%, transparent);
}
.form-choice__label { line-height: 1; }
.form-gdpr { font-size: 0.75rem; line-height: 1.45; color: var(--color-szary); margin-top: 0.25rem; }
.form-gdpr__link { color: var(--color-zielony); text-decoration: underline; text-underline-offset: 2px; }
.form-gdpr__link:hover { color: var(--color-czerwony); }
.form-submit { margin-top: 0.5rem; }

/* Dropzone CV (praca.html) — pole „upuść swoje CV" */
.cv-dropzone {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.75rem 1.25rem;
  border: 2px dashed var(--color-morski);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--color-zielony);
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease;
}
.cv-dropzone:hover,
.cv-dropzone.is-dragover { border-color: var(--color-czerwony); background: #FFF6F4; }
.cv-dropzone.is-filled { border-style: solid; border-color: var(--color-morski); }
.cv-dropzone__input {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: pointer;
}
.cv-dropzone__icon { width: 2.25rem; height: 2.25rem; color: var(--color-morski); }
.cv-dropzone__text { font-size: 0.95rem; }
.cv-dropzone__link { color: var(--color-czerwony); text-decoration: underline; text-underline-offset: 2px; }
.cv-dropzone__hint { font-size: 0.75rem; color: var(--color-szary); }
.cv-dropzone__input:focus-visible + .cv-dropzone__icon {
  outline: none;
}
.cv-dropzone:focus-within {
  border-color: var(--color-czerwony);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-czerwony) 25%, transparent);
}

/* Checkbox zgody RODO (praca.html) */
.form-consent {
  display: flex; align-items: flex-start; gap: 0.625rem;
  cursor: pointer; margin-top: 0.25rem;
}
.form-consent--center { align-items: center; }
.form-consent--center .form-consent__box { margin-top: 0; }
.form-consent__input { position: absolute; opacity: 0; width: 0; height: 0; }
.form-consent__box {
  flex-shrink: 0;
  width: 1.25rem; height: 1.25rem; margin-top: 0.1rem;
  border: 1.5px solid var(--color-morski); border-radius: var(--radius-xs);
  background: #fff; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 150ms ease, border-color 150ms ease;
}
.form-consent__box svg { width: 0.8rem; height: 0.8rem; opacity: 0; transition: opacity 150ms ease; }
.form-consent__input:checked + .form-consent__box {
  background: var(--color-zielony); border-color: var(--color-zielony);
}
.form-consent__input:checked + .form-consent__box svg { opacity: 1; }
.form-consent__input:focus-visible + .form-consent__box {
  outline: none; box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-czerwony) 30%, transparent);
}
.form-consent__text { font-size: 0.75rem; line-height: 1.45; color: #405D61; }


/* === 15b. Walidacja formularzy — błędy, status, ładowanie ================= */
/* Klasy wstrzykiwane przez js/forms.js (.is-invalid, .form-field__error,
   .form-status, .form-submit.is-loading). */

/* Pole tekstowe / dropzone z błędem */
.form-field.is-invalid .form-field__input,
.form-field.is-invalid .cv-dropzone { border-color: var(--color-czerwony); }
.form-field.is-invalid .form-field__input {
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-czerwony) 18%, transparent);
}

/* Radio / checkbox zgody z błędem */
.form-choice.is-invalid .form-choice__input,
.form-consent.is-invalid .form-consent__box { border-color: var(--color-czerwony); }

/* Komunikat błędu pod polem */
.form-field__error {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-czerwony);
}

/* Status wysyłki nad przyciskiem */
.form-status {
  margin: 0.25rem 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.45;
}
.form-status--ok {
  color: var(--color-zielony);
  background: color-mix(in oklab, var(--color-morski) 12%, #fff);
  border: 1px solid color-mix(in oklab, var(--color-morski) 45%, transparent);
}
.form-status--error {
  color: color-mix(in oklab, var(--color-czerwony) 70%, #000);
  background: color-mix(in oklab, var(--color-czerwony) 10%, #fff);
  border: 1px solid color-mix(in oklab, var(--color-czerwony) 45%, transparent);
}

/* Przycisk w trakcie wysyłki — spinner przed tekstem „Wysyłanie…" */
.form-submit.is-loading {
  pointer-events: none;
  opacity: 0.85;
}
.form-submit.is-loading::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  vertical-align: -0.15em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: var(--radius-pill);
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* === 16. Footer =========================================================== */
.site-footer { background: var(--grad-footer); color: #fff; }
.site-footer__inner { padding-block: 3rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 4rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: repeat(12, 1fr); gap: 2rem; }
  .site-footer__col--3 { grid-column: span 3; }
  .site-footer__col--2 { grid-column: span 2; }
}
@media (max-width: 1023px) {
  .site-footer__grid > :nth-child(3),
  .site-footer__grid > :nth-child(4) { display: none; }
  .site-footer__inner { padding-bottom: 9rem; }  /* zapas na sticky widget kontaktu — zielone tło sięga pod widget */
}
.site-footer__logo { display: inline-flex; }
.site-footer__logo img { height: 3.5rem; width: auto; }
@media (min-width: 1024px) { .site-footer__logo img { height: 4rem; } }  /* desktop = rozmiar loga w headerze */
.site-footer__label { font-size: 0.875rem; }
.site-footer__phone {
  margin-top: 0.25rem; display: inline-block; font-weight: 700;
  color: var(--color-czerwony); transition: opacity 150ms ease;
}
.site-footer__phone:hover { opacity: 0.8; }
.site-footer__heading { font-weight: 700; font-size: 0.875rem; letter-spacing: 0.025em; }
.site-footer__list {
  margin-top: 1rem; list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem;
}
.site-footer__list a { transition: color 150ms ease; }
.site-footer__list a:hover { color: var(--color-czerwony); }
@media (min-width: 1024px) { .site-footer__list--offset { margin-top: 2.25rem; } }
.site-footer__sep { margin-top: 2.5rem; margin-bottom: 1.5rem; border: 0; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.site-footer__copy { font-size: 0.875rem; color: rgba(255, 255, 255, 0.8); }
/* Link „Ustawienia cookies" — otwiera modal preferencji CMP (data-cc). */
.site-footer__cookies {
  background: none; border: 0; padding: 0; margin-left: 0.5rem; cursor: pointer;
  font: inherit; color: inherit; text-decoration: underline; text-underline-offset: 2px;
}
.site-footer__cookies:hover { color: var(--color-czerwony); }
/* Notka prawna reCAPTCHA — wymagana, gdy ukrywamy badge Google (patrz .grecaptcha-badge). */
.site-footer__recaptcha { margin-top: 0.5rem; font-size: 0.75rem; color: rgba(255, 255, 255, 0.65); }
.site-footer__recaptcha a { text-decoration: underline; text-underline-offset: 2px; }
.site-footer__recaptcha a:hover { color: var(--color-czerwony); }

/* Ukryty badge reCAPTCHA v3 — zgodnie z licencją zastąpiony notką w stopce. */
.grecaptcha-badge { visibility: hidden; }


/* === 17. Sticky contact widget ============================================ */
.contact-widget {
  position: fixed; z-index: 60;
  left: 0.75rem; right: 0.75rem; bottom: 0.75rem;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .contact-widget { left: auto; right: 1rem; bottom: auto; top: 50%; transform: translateY(-50%); }
}
.contact-widget__shell {
  position: relative; pointer-events: auto;
  background: #2A4B50; border: 1.5px solid var(--color-zielony);
  border-radius: var(--radius-xl);
  padding: 0.5rem;
  box-shadow: 0 18px 40px -20px rgba(15, 52, 58, 0.35);
}
@media (min-width: 1024px) { .contact-widget__shell { background: #fff; padding: 0.46875rem; } }
.contact-widget__bar { display: flex; flex-direction: row; gap: 0.5rem; }
@media (min-width: 1024px) { .contact-widget__bar { flex-direction: column; gap: 0.46875rem; } }
.contact-widget__btn {
  flex: 1 1 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.375rem;
  border: 1.5px solid var(--color-zielony);
  border-radius: var(--radius-md);
  background: #fff; color: var(--color-zielony);
  padding-block: 0.625rem; padding-inline: 0.5rem;
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}
@media (min-width: 1024px) {
  .contact-widget__btn {
    flex: 0 0 auto; width: 3.375rem; height: 3.375rem; padding: 0.375rem;
    border-radius: var(--radius-sm); gap: 0;
  }
}
.contact-widget__btn:hover { border-color: var(--color-czerwony); color: var(--color-czerwony); }
.contact-widget__btn:focus-visible {
  outline: none; border-color: var(--color-czerwony);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-czerwony) 30%, transparent);
}
.contact-widget__btn[aria-expanded="true"] { border-color: var(--color-czerwony); color: var(--color-czerwony); }
@media (max-width: 1023.98px) {
  .contact-widget__btn--social   { order: 1; }
  .contact-widget__btn--phone    { order: 2; }
  .contact-widget__btn--calendar { order: 3; }
}
.contact-widget__icon { width: 1.5rem; height: 1.5rem; flex-shrink: 0; color: #11343B; transition: color 150ms ease; }
.contact-widget__btn:hover .contact-widget__icon,
.contact-widget__btn[aria-expanded="true"] .contact-widget__icon { color: var(--color-czerwony); }
@media (min-width: 1024px) { .contact-widget__icon { width: 1.40625rem; height: 1.40625rem; } }
.contact-widget__btn--social .contact-widget__icon { width: 1.875rem; height: 1.875rem; }
@media (min-width: 1024px) { .contact-widget__btn--social .contact-widget__icon { width: 1.75rem; height: 1.75rem; } }
.contact-widget__icon--social {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.25rem;
  width: auto; height: 1.5rem;
}
.contact-widget__icon--social svg { width: 1.125rem; height: 1.125rem; }
@media (min-width: 1024px) {
  .contact-widget__icon--social { height: 1.40625rem; }
  .contact-widget__icon--social svg { width: 0.9375rem; height: 0.9375rem; }
}
.contact-widget__label { font-size: 0.625rem; line-height: 1; }
@media (min-width: 1024px) {
  .contact-widget__btn { position: relative; }
  .contact-widget__label {
    position: absolute;
    right: calc(100% + 0.875rem);
    top: 50%;
    transform: translateY(-50%) translateX(0.5rem);
    width: auto; height: auto; margin: 0; padding: 0.6875rem 1.0625rem;
    overflow: visible; clip: auto; border: 0;
    background: #fff;
    color: #11343B;
    border-radius: var(--radius-md);
    font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1;
    text-transform: uppercase; white-space: nowrap;
    box-shadow: 0 10px 24px -10px rgba(15, 52, 58, 0.45);
    opacity: 0; pointer-events: none; z-index: 1;
    transition: opacity 150ms ease, transform 150ms ease;
  }
  .contact-widget__btn:hover .contact-widget__label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
.contact-widget__panels { position: absolute; inset: 0; pointer-events: none; }
.contact-widget__panel {
  pointer-events: auto; position: absolute; background: #fff;
  border-radius: var(--radius-xl);
  padding: 1.5rem; width: min(20rem, calc(100vw - 2rem));
  box-shadow: var(--shadow-pop);
  text-align: center; color: var(--color-zielony);
  left: 50%; bottom: calc(100% + 0.75rem); transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .contact-widget__panel {
    left: auto; bottom: auto; right: calc(100% + 0.75rem); top: 50%; transform: translateY(-50%);
  }
}
.contact-widget__panel[hidden] { display: none; }
.contact-widget__close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-zielony); cursor: pointer;
  border-radius: var(--radius-pill);
  transition: color 150ms ease, background-color 150ms ease;
}
.contact-widget__close svg { width: 1.125rem; height: 1.125rem; }
.contact-widget__close:hover { color: var(--color-czerwony); background: rgba(246, 107, 91, 0.08); }
.contact-widget__eyebrow { margin: 0; padding-top: 0.125rem; font-size: 0.875rem; font-weight: 600; }
.contact-widget__title { margin-top: 0.5rem; font-size: 1.375rem; line-height: 1.2; font-weight: 700; }
.contact-widget__text { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.55; color: var(--color-muted); }
.contact-widget__cta {
  display: block; margin-top: 1.25rem; padding: 0.875rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--color-czerwony); color: #fff; font-weight: 700; text-align: center;
  box-shadow: 0 14px 24px -10px rgba(246, 107, 91, 0.65);
  transition: background-color 150ms ease, transform 150ms ease;
}
.contact-widget__cta:hover { background: color-mix(in oklab, var(--color-czerwony) 82%, black); }
.contact-widget__secondary { display: flex; gap: 0.625rem; justify-content: center; margin-top: 0.75rem; }
.contact-widget__secondary--stacked { flex-direction: column; margin-top: 1.25rem; }
.contact-widget__chip {
  flex: 1; padding: 0.625rem 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-czerwony); color: var(--color-czerwony);
  font-weight: 700; text-align: center; font-size: 0.875rem;
  transition: background-color 150ms ease, color 150ms ease;
}
.contact-widget__chip:hover { background: var(--color-czerwony); color: #fff; }


/* === 18. Breadcrumb (podstrony) =========================================== */
.breadcrumb {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}
.breadcrumb__inner {
  display: flex; align-items: center; gap: 0.5rem;
  padding-block: 0.875rem;
  font-size: 0.875rem; color: var(--color-zielony);
}
.breadcrumb__link {
  color: var(--color-zielony); font-weight: 600;
  text-decoration: none; transition: color 150ms ease;
}
.breadcrumb__link:hover { color: var(--color-czerwony); }
.breadcrumb__sep {
  display: inline-flex; flex-shrink: 0;
  width: 0.875rem; height: 0.875rem;
  color: var(--color-czerwony);
}
.breadcrumb__current { color: var(--color-zielony); font-weight: 600; }


/* === 19. Plan dnia (ciemnozielony pasek z slotami, reużywa .bleed-row) ==== */
/* Panel wylewa się w prawo jak .bleed-section: lewa krawędź wyrównana do treści
   strony, prawa sięga krawędzi viewportu. Domyślnie (poniżej progu) marginesy
   symetryczne — panel wyśrodkowany jak w .container, w pełni zaokrąglony i NIE
   dochodzi do krawędzi okna. Reużywamy techniki offsetu z .bleed-row. */
.day-plan {
  margin-left: max(var(--container-pad), calc((100% - var(--container-max)) / 2 + var(--container-pad)));
  margin-right: max(var(--container-pad), calc((100% - var(--container-max)) / 2 + var(--container-pad)));
  background: var(--color-zielony);
  border-radius: var(--radius-xl);          /* dawne 24px */
  padding: 1.5rem 1rem;
  color: #fff;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .day-plan {
    padding: 1.75rem 2rem;
    border-radius: var(--radius-2xl);        /* dawne 28px */
  }
}
/* Powyżej szerokości kontenera (--container-max + 2×--container-pad) po bokach
   pojawia się wolna przestrzeń — panel wylewa się w prawo do krawędzi viewportu,
   prawe rogi płaskie (panel dochodzi do krawędzi okna). */
@media (min-width: 1468px) {
  .day-plan {
    margin-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.day-plan__title {
  margin: 0 0 1rem 0.5rem;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 1024px) {
  .day-plan__title { font-size: 1.5rem; margin-bottom: 1.25rem; }
}

/* override .bleed-row, żeby siedział wewnątrz ciemnego kontenera */
.day-plan .bleed-row {
  margin: 0;
  padding: 0.25rem 0.5rem 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;           /* Firefox — bez paska scrolla */
  -ms-overflow-style: none;
}
.day-plan .bleed-row::-webkit-scrollbar { display: none; }  /* WebKit/Blink */
.day-plan .bleed-row__list { gap: 0.75rem; }
@media (min-width: 1024px) { .day-plan .bleed-row__list { gap: 1rem; } }

/* Strzałki przewijania (data-scroll-nav) symetrycznie przy krawędziach panelu —
   domyślne pozycjonowanie liczy się względem pełnego bleedu, tu panel jest węższy */
.day-plan .bleed-scroller__btn--prev { left: 0.75rem; }

/* Karta slotu: biały, zaokrąglony prostokąt na ciemnym panelu */
.bleed-card--plan {
  width: 13rem;          /* stała szerokość — wszystkie sloty równe */
  height: auto;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  color: var(--color-zielony);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-right: none;
  position: relative;
}
@media (min-width: 1024px) {
  .bleed-card--plan { width: 15rem; padding: 1.25rem 1.5rem; }
}

.day-plan__hour {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-morski-ciemny);
  letter-spacing: 0.01em;
}
@media (min-width: 1024px) { .day-plan__hour { font-size: 1.125rem; } }

.day-plan__label {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--color-zielony);
  font-weight: 500;
}

/* === Dokumenty do pobrania (dokumenty.html) =============================== */
.docs { padding-bottom: 4rem; }
@media (min-width: 1024px) { .docs { padding-bottom: 6rem; } }
.docs__lede {
  margin: 0.5rem 0 0; color: var(--color-szary); font-size: 0.95rem;
}
.docs__grid {
  list-style: none; padding: 0; margin: 1.75rem 0 0;
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 768px) { .docs__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.doc-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.125rem 1.25rem;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}
.doc-card:hover {
  border-color: var(--color-morski);
  box-shadow: 0 14px 30px -18px rgba(15, 52, 58, 0.3);
  transform: translateY(-2px);
}
.doc-card:focus-visible {
  outline: none; border-color: var(--color-morski);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-morski) 30%, transparent);
}
.doc-card__icon {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: color-mix(in oklab, var(--color-morski) 12%, #fff);
  color: var(--color-morski);
}
.doc-card__icon svg { width: 1.5rem; height: 1.5rem; }
.doc-card__body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; flex: 1; }
.doc-card__title { font-weight: 700; color: var(--color-zielony); }
.doc-card__meta { font-size: 0.8125rem; color: var(--color-szary); }
.doc-card__action {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--color-czerwony); color: #fff;
  transition: background-color 150ms ease;
}
.doc-card__action svg { width: 1.25rem; height: 1.25rem; }
.doc-card:hover .doc-card__action {
  background: color-mix(in oklab, var(--color-czerwony) 75%, #000);
}
