/* ==========================================================================
   Julia Paszkiewicz – fotografia wizerunkowa, biznesowa i eventowa
   Arkusz stylów. Wszystko, co zwykle chcesz zmienić, siedzi w :root poniżej.
   Kolejność sekcji odpowiada kolejności sekcji na stronie.

   ZAŁOŻENIE: żadne zdjęcie w portfolio nie jest przycinane. Galeria działa
   jak mur (masonry) i pokazuje kadry w oryginalnych proporcjach.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ZMIENNE MARKI
   -------------------------------------------------------------------------- */
:root {
  --bg:          #FBF8F4;  /* piaskowa biel – główne tło */
  --bg-2:        #F3EBE3;  /* cieplejsze tło sekcji naprzemiennych */
  --bg-3:        #EADCCF;  /* jeszcze cieplejsze, do detali */
  --ink:         #2B211C;  /* ciepły brąz zamiast czerni – główny tekst */
  --ink-deep:    #1E1613;  /* najciemniejszy – przyciemnienia zdjęć */
  --ink-soft:    #6B5B51;  /* tekst drugorzędny (kontrast AA na --bg) */
  --line:        #E0D2C6;  /* linie, obramowania */
  --white:       #FFFFFF;

  /* Akcent: stonowana, ciepła oliwka/szałwia. Spokojniejsza niż terakota,
     nie kłóci się ze zdjęciami i nie przygasza ich kolorów.
     Alternatywy, jeśli wolisz inny klimat (podmień obie wartości naraz):
       przygaszona śliwka:  --accent #7E6470 / --accent-dark #5C4551 / --accent-soft #E2D6DC
       ciepły grafit-brąz:  --accent #7C6A5C / --accent-dark #574940 / --accent-soft #E3DAD2 */
  --accent:      #7A8A6F;  /* akcent DEKORACYJNY: kreski, ikony, ramki */
  --accent-dark: #4F5D46;  /* akcent TEKSTOWY i przyciski (kontrast AA) */
  --accent-soft: #DFE4D8;  /* delikatne tła */
  --cream:       #FBF6F1;  /* tekst na ciemnym */

  --font-h: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-b: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --maxw: 1240px;
  --maxw-narrow: 720px;
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;

  --sec-y: 72px;
  --gap:   22px;
  --header-h: 66px;
}

@media (min-width: 900px) {
  :root { --sec-y: 118px; --gap: 30px; --header-h: 80px; }
}

/* --------------------------------------------------------------------------
   2. RESET I PODSTAWY
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: var(--accent-dark); text-underline-offset: 3px; }
a:hover { color: var(--ink); }

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

h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(31px, 4.6vw, 47px); }
h2 { font-size: clamp(26px, 3.2vw, 36px); }
h3 { font-size: clamp(19px, 1.9vw, 22px); }
h4 { font-size: 16px; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0 0 1em; padding-left: 1.1em; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--bg); padding: 10px 16px;
  border-radius: var(--r-sm); font-size: 15px; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 12px; color: var(--bg); }

/* --------------------------------------------------------------------------
   3. UKŁAD
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
@media (min-width: 700px) { .container { padding-inline: 34px; } }

.section { padding-block: var(--sec-y); scroll-margin-top: calc(var(--header-h) + 8px); }
.section--tint { background: var(--bg-2); }
.section--dark { background: var(--ink); color: #E7DACF; }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark .lead { color: #CFC0B4; }

/* Zabezpieczenie przed rozpychaniem siatki (zerowa specyficzność) */
:where(.trustbar ul, .paths, .why, .benefits, .stats, .timeline, .magnet, .inline-form,
       .about, .about__values, .plans, .workshop, .contact, .form__grid,
       .footer__grid, .footer ul, .bts) {
  grid-template-columns: minmax(0, 1fr);
}

/* Nagłówek sekcji */
.sec-head { max-width: var(--maxw-narrow); margin-bottom: 44px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p.lead { margin-top: 14px; }

/* Kicker: mała, rozstrzelona etykieta z kreską */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .7; }
.section--dark .eyebrow, .hero .eyebrow { color: var(--accent-soft); }

.lead { font-size: clamp(17px, 1.5vw, 19px); color: var(--ink-soft); }

/* Cienka kreska pod tekstem – rysowana POD linią opadania liter, nie zasłania
   ogonków (ą, ę, j, g, y). Działa też, gdy fraza łamie się na dwie linie. */
.u-mark {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: 0 100%;
  padding-bottom: .12em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

/* --------------------------------------------------------------------------
   4. PRZYCISKI
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 13px 28px;
  border: 1.5px solid transparent; border-radius: 2px;
  background: var(--accent-dark); color: #fff;
  font-family: var(--font-b); font-size: 15.5px; font-weight: 600; line-height: 1.2;
  letter-spacing: .01em; text-decoration: none; cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover { background: #3D4936; color: #fff; transform: translateY(-1px); }
.btn:active { transform: none; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

.btn--onDark { background: transparent; color: var(--cream); border-color: rgba(251,246,241,.55); }
.btn--onDark:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: #fff; color: var(--ink); }

.btn--wide { width: 100%; }
.btn__arrow { transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-note { font-size: 14px; color: var(--ink-soft); margin-top: 16px; }

/* --------------------------------------------------------------------------
   5. NAGŁÓWEK / NAWIGACJA
   Nad ciemnym hero pasek jest przezroczysty, po przewinięciu robi się kremowy.
   -------------------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h); display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .3s, border-color .3s, backdrop-filter .3s;
}
.header.is-scrolled {
  background: rgba(251, 248, 244, .93);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; }

.logo {
  display: inline-flex; flex-direction: column; line-height: 1.08;
  font-family: var(--font-h); font-weight: 600; font-size: 18px;
  color: var(--cream); text-decoration: none; letter-spacing: -.01em;
  transition: color .3s;
}
.logo span {
  font-family: var(--font-b); font-size: 9.5px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; opacity: .75;
}
.header.is-scrolled .logo { color: var(--ink); }

.nav { display: none; }
.nav a {
  color: var(--cream); text-decoration: none; font-size: 14.5px; font-weight: 500;
  letter-spacing: .02em; padding: 8px 2px; position: relative; transition: color .3s;
}
.header.is-scrolled .nav a { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1.5px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header__cta { display: none; }
.header__cta.btn { min-height: 42px; padding: 9px 20px; font-size: 14.5px; }
.header:not(.is-scrolled) .header__cta.btn {
  background: transparent; color: var(--cream); border-color: rgba(251,246,241,.6);
}
.header:not(.is-scrolled) .header__cta.btn:hover { background: var(--cream); color: var(--ink); }

@media (min-width: 1020px) {
  .nav { display: flex; gap: 28px; align-items: center; }
  .header__cta { display: inline-flex; }
  .burger { display: none !important; }
}

/* Hamburger */
.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; padding: 0;
  border: 1px solid rgba(251,246,241,.45); border-radius: 2px;
  background: transparent; cursor: pointer; transition: border-color .3s;
}
.header.is-scrolled .burger { border-color: var(--line); background: rgba(255,255,255,.6); }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--cream); position: relative; transition: background-color .3s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px;
  background: var(--cream); transition: transform .25s ease, top .2s ease, background-color .3s;
}
.header.is-scrolled .burger span,
.header.is-scrolled .burger span::before,
.header.is-scrolled .burger span::after { background: var(--ink); }
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent !important; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--bg); padding: 26px 20px 40px;
  display: flex; flex-direction: column;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease; overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-h); font-size: 23px; color: var(--ink);
  text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 26px; }
body.is-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   6. HERO – pełnoekranowe zdjęcie z tekstem na przyciemnieniu
   Zdjęcie zmieniasz w index.html (jeden <img> w .hero__bg).
   Jeśli kadr jest źle ustawiony, popraw `object-position` niżej.
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(600px, 94svh, 860px);
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 40px); padding-bottom: 52px;
  background: var(--ink-deep);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 28%;      /* ← przesuń kadr, jeśli trzeba (np. 50% 15%) */
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(30,22,18,.90) 0%, rgba(30,22,18,.62) 38%,
                            rgba(30,22,18,.22) 68%, rgba(30,22,18,.38) 100%);
}
.hero__inner { position: relative; z-index: 2; color: var(--cream); max-width: 660px; }
.hero h1 { color: var(--cream); margin-bottom: .42em; text-wrap: balance; }
.hero__lead { font-size: clamp(16.5px, 1.6vw, 19px); color: #DFD2C7; max-width: 48ch; }
.hero .btn-row { margin-top: 30px; }
.hero .cta-note { color: #C3B3A6; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-soft); margin-bottom: 20px;
}
.hero__badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: block; }

@media (min-width: 900px) {
  .hero { align-items: center; padding-bottom: 90px; }
  .hero__scrim {
    background:
      linear-gradient(100deg, rgba(30,22,18,.92) 0%, rgba(30,22,18,.74) 34%,
                              rgba(30,22,18,.30) 66%, rgba(30,22,18,.10) 100%);
  }
}

/* Delikatna strzałka „scrolluj” */
.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; z-index: 2; transform: translateX(-50%);
  color: rgba(251,246,241,.6); display: none;
}
@media (min-width: 900px) { .hero__scroll { display: block; } }

/* Pasek zaufania */
.trustbar { background: var(--ink); color: #CBBCB0; border-bottom: 1px solid rgba(255,255,255,.08); }
.trustbar ul { list-style: none; margin: 0; padding: 22px 0; display: grid; gap: 14px; }
.trustbar li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; }
.trustbar svg { flex: 0 0 auto; margin-top: 3px; color: var(--accent-soft); }
.trustbar strong { color: var(--cream); font-weight: 600; }
@media (min-width: 680px)  { .trustbar ul { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .trustbar ul { grid-template-columns: repeat(4, minmax(0,1fr)); padding-block: 26px; gap: 24px; } }

/* --------------------------------------------------------------------------
   7. DLA KOGO – trzy kolumny typograficzne, bez „kafelków”
   -------------------------------------------------------------------------- */
.paths { display: grid; gap: 0; }
@media (min-width: 980px) { .paths { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0; } }

.path { display: flex; flex-direction: column; padding: 34px 0; border-top: 1px solid var(--line); }
.path:first-child { border-top: 1px solid var(--ink); }
@media (min-width: 980px) {
  .path { padding: 0 34px; border-top: 0; border-left: 1px solid var(--line); }
  .path:first-child { border-left: 0; padding-left: 0; border-top: 0; }
  .path:last-child { padding-right: 0; }
}

/* Zdjęcie nad kolumną. Kadr kwadratowy, dociągnięty do góry (object-position),
   żeby przy pionowych zdjęciach nie ucinało głowy. Chcesz przesunąć kadr
   w jednej karcie? Dopisz w HTML: style="object-position: 50% 35%". */
.path__img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 18%;
  border-radius: var(--r); margin-bottom: 24px; background: var(--bg-3);
}

.path__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }
.path__num {
  font-family: var(--font-h); font-size: 40px; font-weight: 600; line-height: 1;
  color: var(--accent); opacity: .55;
}
.path h3 { margin: 0; }
.path__sub { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; }

.path__for {
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-dark); margin: 0 0 12px;
}
.path__list { list-style: none; padding: 0; margin: 0 0 22px; font-size: 15.5px; color: var(--ink-soft); }
.path__list li { position: relative; padding-left: 20px; margin-bottom: 9px; }
.path__list li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 9px; height: 1.5px; background: var(--accent);
}
/* margin-top:auto zrównuje bloki „Dostajesz” w dolnej linii wszystkich kolumn */
.path__get { margin-top: auto; font-size: 14.5px; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 16px; }
.path__get strong { color: var(--ink); }

.also {
  margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--ink);
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px;
}
.also p { margin: 0; font-size: 15.5px; color: var(--ink-soft); flex: 1 1 340px; }
.also strong { color: var(--ink); }

/* --------------------------------------------------------------------------
   8. PORTFOLIO – poziome raile (jeden rail = jedna kategoria).
   Zdjęcia mają stałą WYSOKOŚĆ i swobodną szerokość, więc nic nie jest
   przycinane: pionowy kadr zostaje pionowy, poziomy poziomy.
   Rail przewija się w bok (palcem, kółkiem myszy z Shiftem, klawiszami).
   -------------------------------------------------------------------------- */
.rail-block { margin-bottom: 46px; }
.rail-block:last-of-type { margin-bottom: 0; }

.rail__head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.rail__head h3 { margin: 0; font-size: clamp(19px, 2vw, 23px); }
.rail__head p  { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

.rail {
  display: flex; gap: 12px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  /* wyjście poza kontener, żeby ostatni kadr „wychodził” za krawędź ekranu
     i było widać, że rail się przewija */
  margin-inline: -20px; padding: 2px 20px 14px;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
@media (min-width: 700px) { .rail { gap: 16px; margin-inline: -32px; padding-inline: 32px; } }
.rail::-webkit-scrollbar { height: 4px; }
.rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.rail::-webkit-scrollbar-track { background: transparent; }

.rail .shot {
  flex: 0 0 auto; width: auto;
  height: clamp(250px, 46vw, 430px);
  scroll-snap-align: start;
}
/* `auto 3/4` = użyj prawdziwych proporcji zdjęcia, a zanim się wczyta,
   trzymaj miejsce w proporcji pionowej (bez przeskoku układu). */
.rail .shot img { height: 100%; width: auto; max-width: none; aspect-ratio: auto 3 / 4; }

.shot {
  display: block; width: 100%; margin: 0; padding: 0; border: 0;
  background: var(--bg-3); border-radius: var(--r); overflow: hidden;
  cursor: zoom-in; position: relative;
}
.shot img { width: 100%; height: auto; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.shot:hover img { transform: scale(1.035); }
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,22,18,.55), rgba(30,22,18,0) 45%);
  opacity: 0; transition: opacity .3s ease;
}
.shot:hover::after, .shot:focus-visible::after { opacity: 1; }
.shot__cap {
  position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2;
  color: #fff; font-size: 12.5px; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; text-align: left;
  opacity: 0; transform: translateY(6px); transition: all .3s ease;
}
.shot:hover .shot__cap, .shot:focus-visible .shot__cap { opacity: 1; transform: none; }
.shot[hidden] { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(22, 16, 13, .95);
  display: none; align-items: center; justify-content: center; padding: 16px;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: min(1200px, 94vw); max-height: 84vh; width: auto; height: auto; object-fit: contain; }
.lightbox__cap {
  position: absolute; left: 0; right: 0; bottom: 20px; text-align: center;
  color: #D9CCC2; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; padding-inline: 60px;
}
.lightbox__btn {
  position: absolute; width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.07);
  color: #fff; cursor: pointer; display: grid; place-items: center; transition: background-color .2s;
}
.lightbox__btn:hover { background: rgba(255,255,255,.2); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev  { left: 14px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 14px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lightbox__cap { padding-inline: 16px; bottom: 12px; } }

/* --------------------------------------------------------------------------
   9. PAS ZE ZDJĘCIEM I CYTATEM (przerywnik)
   -------------------------------------------------------------------------- */
.band { position: relative; overflow: hidden; background: var(--ink-deep); }
.band__bg { position: absolute; inset: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.band__scrim { position: absolute; inset: 0; background: rgba(30,22,18,.62); }
.band__inner {
  position: relative; z-index: 2; padding-block: clamp(72px, 12vw, 132px);
  max-width: 780px;
}
.band blockquote {
  margin: 0; font-family: var(--font-h); font-weight: 500;
  font-size: clamp(21px, 2.9vw, 33px); line-height: 1.34; color: var(--cream);
  text-wrap: balance;
}
.band figcaption { margin-top: 18px; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-soft); }

/* --------------------------------------------------------------------------
   10. DLACZEGO TO DZIAŁA
   -------------------------------------------------------------------------- */
.why { display: grid; gap: 46px; }
@media (min-width: 980px) { .why { grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: start; } }

.benefits { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.benefit { display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); }
.benefit:first-child { border-top: 0; padding-top: 0; }
.benefit__icon { flex: 0 0 auto; width: 38px; height: 38px; color: var(--accent-soft); display: grid; place-items: center; border: 1px solid rgba(232,207,194,.35); }
.benefit h3 { font-size: 17.5px; margin-bottom: 5px; }
.benefit p { font-size: 15px; color: #C4B5A9; margin: 0; }

.stats { display: grid; gap: 0; }
.stat { padding: 26px 0; border-top: 1px solid rgba(255,255,255,.14); }
.stat:first-child { border-top: 0; padding-top: 0; }
.stat__num {
  font-family: var(--font-h); font-size: clamp(42px, 6vw, 62px); font-weight: 600;
  color: var(--accent-soft); line-height: 1; display: block; margin-bottom: 12px;
}
.stat p { font-size: 15px; color: #C4B5A9; margin: 0 0 10px; }
.stat cite { display: block; font-style: normal; font-size: 12px; color: #9E8E82; }
.stat cite a { color: inherit; }

/* --------------------------------------------------------------------------
   11. PROCES – oś czasu zamiast kafelków
   -------------------------------------------------------------------------- */
.timeline { position: relative; display: grid; gap: 32px; }
@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 34px; }
  .timeline::before {
    content: ""; position: absolute; left: 27px; right: 27px; top: 27px;
    height: 1px; background: var(--line); z-index: 0;
  }
}
.tl { position: relative; z-index: 1; }
.tl__num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--accent); color: var(--accent-dark);
  display: grid; place-items: center; margin-bottom: 20px;
  font-family: var(--font-h); font-size: 18px; font-weight: 600;
}
.section--tint .tl__num { background: var(--bg-2); }
.tl h3 { font-size: 19px; margin-bottom: 8px; }
.tl p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

/* Zza kulis – mały, celowo drugoplanowy pas. Trzy kadry w jednakowych proporcjach. */
.bts { margin-top: 54px; }
.bts__row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
@media (min-width: 760px) { .bts__row { gap: 16px; } }
.bts__row .shot { margin-bottom: 0; aspect-ratio: 4 / 5; }
.bts__row .shot img { height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   12. LEAD MAGNET
   -------------------------------------------------------------------------- */
.magnet { display: grid; gap: 0; background: var(--ink); color: #E7DACF; overflow: hidden; }
.magnet__media { min-height: 240px; }
.magnet__media img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.magnet__body { padding: 34px 26px 38px; }
.magnet h2 { color: var(--cream); font-size: clamp(23px, 2.5vw, 30px); }
.magnet p { color: #C9BAAE; font-size: 15.5px; }
.magnet ul { list-style: none; padding: 0; margin: 0 0 26px; }
.magnet li { position: relative; padding-left: 22px; margin-bottom: 8px; font-size: 15.5px; color: #DACDC3; }
.magnet li::before { content: ""; position: absolute; left: 0; top: .78em; width: 10px; height: 1.5px; background: var(--accent-soft); }
@media (min-width: 880px) {
  .magnet { grid-template-columns: .8fr 1.2fr; }
  .magnet__media { height: 100%; }
  .magnet__body { padding: 52px 54px; }
}

.inline-form { display: grid; gap: 12px; }
@media (min-width: 560px) { .inline-form { grid-template-columns: 1fr auto; align-items: start; } }
.inline-form input[type="email"] {
  width: 100%; min-height: 50px; padding: 12px 16px;
  border-radius: 2px; border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.07); color: #fff; font-family: var(--font-b); font-size: 16px;
}
.inline-form input::placeholder { color: #A99A8E; }
.inline-form .consent { grid-column: 1 / -1; font-size: 12.5px; color: #A99A8E; margin: 0; }
.inline-form .consent a { color: var(--accent-soft); }

/* --------------------------------------------------------------------------
   13. O JULII
   -------------------------------------------------------------------------- */
.about { display: grid; gap: 38px; align-items: start; }
@media (min-width: 900px) { .about { grid-template-columns: .82fr 1.18fr; gap: 64px; } }
.about__media img { width: 100%; height: auto; border-radius: var(--r-lg); }
.about__cap { margin-top: 14px; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.about blockquote {
  margin: 26px 0 0; padding: 0 0 0 22px; border-left: 2px solid var(--accent);
  font-family: var(--font-h); font-size: clamp(19px, 2vw, 23px); line-height: 1.42; color: var(--ink);
}
.about__values { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
@media (min-width: 620px) { .about__values { grid-template-columns: 1fr 1fr; } }
.about__values li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.about__values svg { flex: 0 0 auto; margin-top: 4px; color: var(--accent-dark); }

/* --------------------------------------------------------------------------
   14. PAKIETY – kolumny rozdzielone cienką linią
   -------------------------------------------------------------------------- */
.plans { display: grid; gap: 0; }
@media (min-width: 1080px) { .plans { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.plan { display: flex; flex-direction: column; padding: 32px 0; border-top: 1px solid var(--line); }
.plan:first-child { border-top: 1px solid var(--ink); }
@media (min-width: 1080px) {
  .plan { position: relative; padding: 4px 28px 8px; border-top: 0; border-left: 1px solid var(--line); }
  .plan:first-child { border-left: 0; padding-left: 0; }
  .plan:last-child { padding-right: 0; }
  /* Pasek na etykietę „najczęściej wybierany”, żeby wszystkie kolumny startowały równo */
  .plan::before { content: ""; display: block; height: 30px; }
  .plan__tag { position: absolute; top: 4px; margin: 0; }
}
.plan--featured { position: relative; }
.plan__tag {
  display: inline-block; align-self: flex-start; margin-bottom: 12px;
  background: var(--accent-dark); color: #fff; font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; padding: 5px 11px;
}
.plan h3 { margin-bottom: 6px; }
.plan__for { font-size: 13.5px; color: var(--accent-dark); font-weight: 600; margin-bottom: 20px; min-height: 2.6em; }
.plan__price { font-family: var(--font-h); font-size: 26px; font-weight: 600; color: var(--ink); line-height: 1.15; margin-bottom: 0; }
.plan__price small { display: block; font-family: var(--font-b); font-size: 12.5px; font-weight: 500; color: var(--ink-soft); margin-top: 6px; letter-spacing: .01em; }
.plan__list { list-style: none; padding: 0; margin: 22px 0 26px; font-size: 15px; color: var(--ink-soft); }
.plan__list li { position: relative; padding-left: 20px; margin-bottom: 10px; }
.plan__list li::before { content: ""; position: absolute; left: 0; top: .7em; width: 9px; height: 1.5px; background: var(--accent); }
.plan .btn { margin-top: auto; align-self: flex-start; }

.price-note {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--ink);
  font-size: 15px; color: var(--ink-soft); display: flex; gap: 16px; align-items: flex-start;
}
.price-note svg { flex: 0 0 auto; margin-top: 3px; color: var(--accent-dark); }
.price-note strong { color: var(--ink); }

/* --------------------------------------------------------------------------
   15. WARSZTATY (dodatek)
   -------------------------------------------------------------------------- */
.workshop { display: grid; gap: 0; align-items: stretch; border-top: 1px solid var(--line); }
.workshop__media { position: relative; aspect-ratio: 16 / 9; background: var(--bg-3); overflow: hidden; }
.workshop__media video, .workshop__media img { width: 100%; height: 100%; object-fit: cover; }
.workshop__body { padding: 30px 0 0; }
.workshop__body h3 { font-size: clamp(21px, 2.3vw, 26px); }
.workshop__body p { font-size: 15.5px; color: var(--ink-soft); }
@media (min-width: 880px) {
  .workshop { grid-template-columns: 1.1fr .9fr; gap: 46px; padding-top: 46px; }
  .workshop__media { aspect-ratio: 16/10; height: 100%; }
  .workshop__body { padding: 0; align-self: center; }
}

.logos { margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px 40px; }
.logos p { width: 100%; text-align: center; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 8px; }
.logos img { height: 32px; width: auto; opacity: .8; }

/* --------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 880px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--ink); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 46px 24px 0; position: relative;
  font-family: var(--font-h); font-size: clamp(17px, 1.7vw, 20px); font-weight: 600; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px;
  border-right: 1.5px solid var(--accent-dark); border-bottom: 1.5px solid var(--accent-dark);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq__a { padding: 0 40px 26px 0; color: var(--ink-soft); font-size: 16px; }

/* --------------------------------------------------------------------------
   18. KONTAKT
   -------------------------------------------------------------------------- */
.contact { display: grid; gap: 42px; }
@media (min-width: 940px) { .contact { grid-template-columns: .92fr 1.08fr; gap: 64px; } }

.contact__promise { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 0; }
.contact__promise li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: #CFC0B4; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact__promise li:first-child { border-top: 0; padding-top: 0; }
.contact__promise svg { flex: 0 0 auto; margin-top: 4px; color: var(--accent-soft); }
.contact__direct { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); font-size: 15.5px; }
.contact__direct a { color: #F0E2D8; overflow-wrap: anywhere; }
.contact__direct p { margin-bottom: 6px; }

.form { background: var(--bg); color: var(--ink); padding: 28px 22px 30px; }
@media (min-width: 620px) { .form { padding: 38px 38px 40px; } }
.form__grid { display: grid; gap: 18px; }
@media (min-width: 620px) { .form__grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: .04em; text-transform: uppercase; }
.field .hint { font-size: 12px; color: var(--ink-soft); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  border: 0; border-bottom: 1.5px solid var(--line); border-radius: 0;
  background: transparent; color: var(--ink);
  font-family: var(--font-b); font-size: 16px; transition: border-color .2s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--accent); outline: none; }
.field--check { flex-direction: row; gap: 11px; align-items: flex-start; }
.field--check input { width: 20px; min-height: 20px; height: 20px; margin-top: 3px; flex: 0 0 auto; accent-color: var(--accent-dark); border-bottom: 0; }
.field--check label { font-weight: 400; font-size: 13px; color: var(--ink-soft); line-height: 1.5; text-transform: none; letter-spacing: 0; }
.form .btn { margin-top: 8px; }

.form__msg { margin-top: 18px; padding: 14px 16px; font-size: 15px; display: none; }
.form__msg.is-visible { display: block; }
.form__msg--ok   { background: #E7F0E7; color: #2C4A2E; border-left: 3px solid #5C8A5E; }
.form__msg--warn { background: var(--accent-soft); color: #3A452F; border-left: 3px solid var(--accent-dark); }
.form__msg a { color: inherit; font-weight: 600; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* --------------------------------------------------------------------------
   19. STOPKA + PASEK CTA NA MOBILE
   -------------------------------------------------------------------------- */
.footer { background: var(--ink-deep); color: #B9A99D; padding: 52px 0 100px; font-size: 14.5px; }
@media (min-width: 1020px) { .footer { padding-bottom: 52px; } }
.footer__grid { display: grid; gap: 30px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; } }
.footer a { color: #DCCEC3; text-decoration: none; overflow-wrap: anywhere; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer h4 { color: #E9DED5; font-family: var(--font-b); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer .logo { color: #F3EAE2; }
.footer__bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: 12.5px; color: #8E7E73;
}

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251,248,244,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  display: flex; gap: 10px; align-items: center;
  transform: translateY(110%); transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { flex: 1; }
@media (min-width: 1020px) { .sticky-cta { display: none; } }

/* --------------------------------------------------------------------------
   20. MIKROANIMACJE WEJŚCIA
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
