/* =============================================
   CHUDNIJ GŁOWĄ — main stylesheet
   Design tokens + base + sekcje 1–5 (Etap 1)
   ============================================= */

/* -------- DESIGN TOKENS (brand V3.1 — refined palette) -------- */
:root {
  /* JASNE TŁA — od najjaśniejszego do najciemniejszego */
  --cream: #FAF7F2;           /* główne jasne tło */
  --bone: #F1ECE2;            /* delikatne off-white — pomiędzy cream a sand */
  --pearl: #E8E1D5;           /* perłowe tło, oszczędnie */
  --sand: #D4C4B0;            /* mocniejszy ciepły akcent — używane tylko 1× */
  --warm-white: #FFFEFB;      /* dla kart na cream */

  /* CIEMNE TŁA — sophisticated, nie czarne */
  --aubergine: #2D2330;       /* główne ciemne tło — purpurowy brąz */
  --aubergine-deep: #1F1822;  /* głębsza wersja dla footer */

  /* TEKST */
  --ink: #2A1F1A;             /* tekst główny na cream/bone */
  --soft-ink: #5A4F45;        /* paragraph soft */

  /* AKCENTY */
  --terracotta: #C26A4A;
  --terracotta-deep: #8E4429;
  --olive: #5A6B4A;
  --gold: #C9A66B;
  --maintenance: #B5604A;

  /* Display: Playfair Display zamiast Bodoni Moda — Bodoni miał ekstremalnie cienkie
     kreski w polskich znakach (ł, ą, ę przy weight 400). Playfair ma grubsze szeryfy,
     polskie znaki czytelne, premium feel zachowany. */
  --font-display: "Playfair Display", "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --font-wordmark: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1100px;
  --section-py: 120px;
  --radius: 4px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------- RESET -------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  /* iOS Safari: blokuje horizontal swipe, tylko pionowy scroll */
  touch-action: pan-y;
}

body {
  overflow-x: hidden;
  overflow-x: clip;
  position: relative;
  width: 100%;
  max-width: 100vw;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

main, header, footer {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* =============================================
   CZYTELNOŚĆ POLSKICH ZNAKÓW
   Playfair Display nie ma weight 400 w naszym URL fonts
   (zaczyna się od 500). Wymuszamy minimum 500 dla:
   - wszystkich nagłówków (już są bold zwykle)
   - elementów italic (bo to typowo display font)
   - blockquote (cytaty)
   - .italic-accent (akcent terakota)
   Dzięki temu polskie znaki (ł, ą, ę, ń, ż) są zawsze czytelne.
   ============================================= */
h1, h2, h3, h4, h5, h6,
em, i, blockquote,
.italic-accent {
  font-weight: 500;
}
/* Dla bardzo dużych nagłówków minimum 600 */
h1, .hero h1 { font-weight: 600; }

section {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

picture, img, svg, video {
  max-width: 100%;
}

/* Defensywa: grid/flex children nie mogą rozpychać layoutu szerszą zawartością */
.authority-bar > *,
.cards-grid > *,
.research-grid > *,
.s-for-life__grid > *,
.s-karolina__grid > *,
.s-about__grid > *,
.s-for-whom__grid > *,
.transformation-list > *,
.urgency-bar > *,
.hero__inner > *,
.process-steps > *,
.site-footer__grid > *,
.pricing-grid > * {
  min-width: 0;
  max-width: 100%;
}

/* Bodoni Moda — wymuś sturdy optical-size dla nagłówków
   (Bodoni przy dużym opsz ma cienkie hairline'y; trzymamy opsz na 14 by zachować "lower-case grubsze"
   nawet w 50–72px headline'ach) */
h1, h2, h3, h4, .italic-accent, .pull-quote, .manifesto__sequence,
.transformation-footer, .process-step__num, .research-card__body,
.s-pricing__per-day, .for-whom-footer, .pricing-footnote,
.s-final-cta h2, .pricing-card__name, .pricing-card__price,
.thanks-page__inner h1 {
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* -------- TYPOGRAPHY HELPERS -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.015em;
}

/* Bodoni Moda — wymaga niższej weight i mniejszego trackingu by oddać Vogue feel */
h1 { font-size: 68px; font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: 50px; font-weight: 500; letter-spacing: -0.018em; }
h3 { font-size: 32px; font-weight: 500; letter-spacing: -0.012em; }

.italic-accent {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}

p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--soft-ink);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-block;
  margin-bottom: 24px;
}

.eyebrow--gold {
  color: var(--gold);
}

.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;
}

/* -------- LAYOUT -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-outline-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 12px 24px;
  font-size: 12px;
}
.btn-outline-light:hover {
  background: var(--ink);
  color: var(--cream);
}

/* =============================================
   EDITORIAL BANNER — pełnoszerokościowe zdjęcie
   ============================================= */
.s-editorial {
  background: var(--cream);
  padding: 80px 0;
}
.s-editorial__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.s-editorial__photo {
  aspect-ratio: 16 / 9;
}
.s-editorial__caption {
  text-align: center;
  margin-top: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--soft-ink);
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .s-editorial { padding: 60px 0; }
  .s-editorial__caption { font-size: 13px; }
}

/* =============================================
   SCROLL PROGRESS — hairline terracotta na górze
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--terracotta);
  z-index: 300;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* =============================================
   ANIMACJE — word reveal, ken burns, fade in, blur
   ============================================= */

/* Stagger word reveal — h1 hero */
.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: opacity, transform;
}
.word-reveal.is-visible .word {
  opacity: 1;
  transform: translateY(0);
}

/* Ken Burns — slow zoom dla photo hero */
.kb-photo img {
  animation: kenBurns 22s ease-in-out infinite alternate;
  transform-origin: 52% 45%;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1.0)  translate(0%, 0%); }
  100% { transform: scale(1.06) translate(-1.2%, -0.8%); }
}

/* Refined fade-in — replace simple opacity with blur+translate+scale */
.fade-in {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Stagger group — children animują z opóźnieniem */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.is-visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.is-visible > *:nth-child(8) { transition-delay: 560ms; }

/* =============================================
   PHOTO TREATMENT — masking + blend with bg
   Krawędzie zdjęć rozpływają się w kolor tła sekcji.
   ============================================= */

/* Wszystkie kontenery zdjęć — wspólny układ */
.hero__visual,
.s-karolina__visual,
.s-for-life__visual,
.s-editorial__photo,
.s-about__visual {
  position: relative;
  overflow: visible;             /* bloom MUSI wyciekać poza ramę zdjęcia */
  background: transparent;
  isolation: isolate;
}

/* Maska + initial fade-in dla wszystkich zdjęć w visuach.
   Wieloetapowa radial mask = miękka krawędź szeroko rozlana w tło. */
.hero__visual picture img,
.s-karolina__visual picture img,
.s-for-life__visual picture img,
.s-editorial__photo picture img,
.s-about__visual picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image:
    radial-gradient(ellipse 105% 105% at 50% 48%,
      #000 0%, #000 32%,
      rgba(0,0,0,0.92) 55%,
      rgba(0,0,0,0.55) 75%,
      rgba(0,0,0,0.18) 90%,
      transparent 100%);
  mask-image:
    radial-gradient(ellipse 105% 105% at 50% 48%,
      #000 0%, #000 32%,
      rgba(0,0,0,0.92) 55%,
      rgba(0,0,0,0.55) 75%,
      rgba(0,0,0,0.18) 90%,
      transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  /* CSS-only fade-in animation (nie zależy od JS).
     Image jest widoczne od początku jeśli animacja nie wystartuje. */
  animation: photoFadeIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
  will-change: transform, opacity, filter;
}

@keyframes photoFadeIn {
  from {
    opacity: 0;
    filter: blur(20px) saturate(1.1);
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: scale(1);
  }
}

/* Reduced motion: bez animacji wejścia, image pełna */
@media (prefers-reduced-motion: reduce) {
  .hero__visual picture img,
  .s-karolina__visual picture img,
  .s-for-life__visual picture img,
  .s-editorial__photo picture img,
  .s-about__visual picture img {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* =============================================
   BLOOM — duża rozmyta kopia zdjęcia za nim
   wycieka jego własne kolory poza ramę.
   Pseudo-element w containerze, z-index: -1
   ============================================= */
.hero__visual::before,
.s-karolina__visual::before,
.s-for-life__visual::before,
.s-editorial__photo::before,
.s-about__visual::before {
  content: "";
  position: absolute;
  inset: -8%;                          /* bloom rozlewa się 16% poza container */
  background-image: var(--bloom-src);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(60px) saturate(1.35);
  opacity: 0;                           /* clears po załadowaniu via JS */
  z-index: -1;
  pointer-events: none;
  -webkit-mask-image:
    radial-gradient(ellipse 90% 90% at center,
      #000 0%, #000 25%,
      rgba(0,0,0,0.75) 55%,
      rgba(0,0,0,0.35) 80%,
      transparent 100%);
  mask-image:
    radial-gradient(ellipse 90% 90% at center,
      #000 0%, #000 25%,
      rgba(0,0,0,0.75) 55%,
      rgba(0,0,0,0.35) 80%,
      transparent 100%);
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}
.hero__visual.is-bloom-ready::before,
.s-karolina__visual.is-bloom-ready::before,
.s-for-life__visual.is-bloom-ready::before,
.s-editorial__photo.is-bloom-ready::before,
.s-about__visual.is-bloom-ready::before {
  opacity: 0.65;
}

/* Subtelny grain overlay tylko nad zdjęciem */
.hero__visual::after,
.s-karolina__visual::after,
.s-for-life__visual::after,
.s-editorial__photo::after,
.s-about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.10;
  mix-blend-mode: multiply;
  -webkit-mask-image:
    radial-gradient(ellipse 100% 96% at center, #000 35%, transparent 95%);
  mask-image:
    radial-gradient(ellipse 100% 96% at center, #000 35%, transparent 95%);
  z-index: 2;
}

/* Ken Burns — slow drift dla zdjęć, uruchamia się po loaded */
.kb-photo picture img.is-loaded {
  animation: kenBurns 22s ease-in-out infinite alternate;
  animation-delay: 1.5s;
}

/* Parallax — JS ustawia --parallax-y, container translate'uje */
.parallax-photo {
  transform: translateY(var(--parallax-y, 0px));
  transition: transform 0.08s linear;
  will-change: transform;
}

/* =============================================
   MAGNETIC BUTTON
   ============================================= */
.magnetic {
  display: inline-block;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* =============================================
   CURSOR FOLLOWER — fixed pixel z mix-blend-mode
   ============================================= */
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  background: var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: difference;
  opacity: 0.9;
  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s,
    opacity 0.3s;
  display: none;
}
.cursor-follower.is-active { display: block; }
.cursor-follower.is-large {
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  background: var(--gold);
  opacity: 0.7;
}
.cursor-follower.is-text {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  opacity: 1;
}

/* Hide native cursor — uncomment if you want hardcore cursor takeover */
/* @media (hover: hover) and (pointer: fine) {
  body.has-cursor { cursor: none; }
  body.has-cursor a, body.has-cursor button { cursor: none; }
} */

/* =============================================
   3D TILT CARDS
   ============================================= */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.tilt-card .card__icon,
.tilt-card h3 {
  transform: translateZ(20px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =============================================
   ANIMATED CANVAS NOISE — JS canvas ustawiany jako overlay
   ============================================= */
.noise-overlay {
  position: fixed;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: multiply;
  opacity: 0.05;
  image-rendering: pixelated;
  display: none;
}
.noise-overlay.is-active { display: block; }

@media (prefers-reduced-motion: reduce) {
  .noise-overlay,
  .cursor-follower { display: none !important; }
  .kb-photo picture img.is-loaded { animation: none !important; }
}

/* =============================================
   STICKY URGENCY BAR (top of page)
   ============================================= */
.urgency-bar {
  background: var(--aubergine-deep);
  color: var(--cream);
  padding: 11px 16px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  line-height: 1.4;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}
.urgency-bar__label,
.urgency-bar__countdown,
.urgency-bar__cta {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.urgency-bar.is-fast-action {
  background: var(--terracotta);
}
.urgency-bar.is-hidden { display: none; }

.urgency-bar__label {
  font-weight: 500;
}
.urgency-bar__countdown {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.urgency-bar.is-fast-action .urgency-bar__countdown {
  color: var(--cream);
  font-weight: 500;
}
.urgency-bar__cta {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  color: var(--gold);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.urgency-bar.is-fast-action .urgency-bar__cta {
  color: var(--cream);
}
.urgency-bar__cta:hover {
  color: var(--cream);
}

/* push navbar down by urgency bar height */
body.has-urgency-bar .navbar {
  /* navbar pozycjonowane normalnie, urgency bar w document flow */
}

/* =============================================
   MANIFESTO STRIP (under hero)
   ============================================= */
.manifesto {
  background: var(--cream);
  padding: 56px 0 64px;
  text-align: center;
  border-top: 1px solid rgba(42, 31, 26, 0.08);
  border-bottom: 1px solid rgba(42, 31, 26, 0.08);
}
.manifesto__sequence {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.35;
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto;
  letter-spacing: -0.018em;
}
.manifesto__sequence em {
  font-style: italic;
  color: var(--terracotta);
}
.manifesto__sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--soft-ink);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 18px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .manifesto { padding: 28px 0 36px; }
  .manifesto__sequence { font-size: 20px; line-height: 1.45; }
  .manifesto__sub { font-size: 11px; }
  .urgency-bar { font-size: 13.5px; padding: 10px 14px; gap: 10px; }
  .urgency-bar__countdown { font-size: 15px; }
  .urgency-bar__cta { display: block; width: 100%; margin-top: 4px; }
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: relative;
  z-index: 100;
  background: var(--cream);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  padding: 24px 0;
}

.navbar.scrolled {
  background: var(--warm-white);
  box-shadow: 0 1px 0 rgba(31, 27, 22, 0.06), 0 4px 20px rgba(31, 27, 22, 0.04);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-wordmark);
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1;
}
.logo__wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
/* „Chudnij" i „głową" w jednym kolorze (ink), (z) inne (terracotta) */
.logo .italic-accent {
  font-family: var(--font-wordmark);
  font-style: normal;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.logo__zed {
  font-family: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--terracotta);
  position: relative;
  top: -1px;
  letter-spacing: 0;
}
/* Monogram orphaned po wymianie */
.logo__monogram { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover {
  color: var(--terracotta);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
}
.mobile-menu a.italic-accent {
  font-style: italic;
  color: var(--terracotta);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: calc(100vh - 90px);
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  background: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content h1 {
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 560px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--soft-ink);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__note {
  font-size: 16px;
  line-height: 1.55;
  color: var(--soft-ink);
  opacity: 0.92;
  max-width: 520px;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: transparent;
}

/* Stary caption – wyłączony, zostawiamy regułę dla bezpieczeństwa kompatybilności */
.hero__caption { display: none; }

/* Editorial mark — magazynowy podpis pod zdjęciem. Linia akcent + dwa wiersze.
   Poza maską radialną zdjęcia, więc nie ma „nachodzenia". */
.hero__visual-wrap {
  display: flex;
  flex-direction: column;
}
.hero__editorial-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-left: 6px;
  align-self: flex-start;
  max-width: 100%;
}
.hero__editorial-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--terracotta);
  flex-shrink: 0;
  opacity: 0.75;
}
.hero__editorial-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}
.hero__editorial-text em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}
.hero__editorial-text > span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-ink);
}

/* =============================================
   SOCIAL PROOF BAR
   ============================================= */
.social-proof {
  background: var(--bone);
  padding: 36px 0;
  border-top: 1px solid rgba(42, 31, 26, 0.06);
  border-bottom: 1px solid rgba(42, 31, 26, 0.06);
  position: relative;
}

/* Static authority bar — auto-fit grid responsywnie się zwija */
.authority-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}
.authority-bar__item {
  text-align: center;
  padding: 0 12px;
  position: relative;
  font-family: var(--font-sans);
  min-width: 0;
}
/* Pionowe dividery tylko gdy w jednym rzędzie (desktop ≥ 800px) */
@media (min-width: 800px) {
  .authority-bar__item + .authority-bar__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: rgba(42, 31, 26, 0.15);
  }
}
.authority-bar__num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}
.authority-bar__num em {
  font-style: italic;
  color: var(--terracotta);
}
.authority-bar__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-ink);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

/* Tablet/Mobile: vertical stack, single column, czyste centrowanie */
@media (max-width: 700px) {
  .social-proof {
    padding: 24px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  /* Wyłączamy fade-out gradients po bokach — niepotrzebne na mobile,
     a mogą maskować centrowaną zawartość */
  .social-proof::before,
  .social-proof::after { display: none !important; }
  .authority-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .authority-bar__item {
    width: 100%;
    max-width: 100%;
    text-align: center !important;
    padding: 14px 0;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .authority-bar__item::before { display: none !important; }
  .authority-bar__item + .authority-bar__item {
    border-top: 1px solid rgba(42, 31, 26, 0.08);
  }
  .authority-bar__num {
    display: block !important;
    width: 100%;
    text-align: center !important;
    font-size: 22px !important;
    line-height: 1.2;
    margin: 0 0 4px 0 !important;
    overflow-wrap: break-word;
  }
  .authority-bar__label {
    display: block !important;
    width: 100%;
    text-align: center !important;
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
    line-height: 1.4;
    margin: 0 !important;
    overflow-wrap: break-word;
  }
}

/* DEPRECATED — marquee przestała być używana, ale style zostają na wszelki wypadek.
   width: max-content WYŁĄCZONE bo tworzyło horizontal overflow. */
.marquee {
  display: flex;
  width: 100%;
  animation: marquee-scroll 50s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--soft-ink);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.social-proof:hover .marquee {
  animation-play-state: paused;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  flex-shrink: 0;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
}
.marquee__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
}
.marquee__sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 50%;
  opacity: 0.6;
  flex-shrink: 0;
}

/* Fade-out edges to bg color */
.social-proof::before,
.social-proof::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.social-proof::before {
  left: 0;
  background: linear-gradient(90deg, var(--bone), transparent);
}
.social-proof::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bone), transparent);
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION: NIE KOLEJNA DIETA
   ============================================= */
.s-not-another-diet {
  background: var(--cream);
  text-align: center;
}
.s-not-another-diet .container {
  max-width: 720px;
}
.s-not-another-diet h2 {
  font-size: 44px;
  margin-bottom: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.s-not-another-diet p {
  margin-bottom: 20px;
  text-align: left;
}
.s-not-another-diet p:last-child {
  margin-bottom: 0;
}

/* =============================================
   SECTION: NA LATA
   ============================================= */
.s-for-life {
  background: var(--bone);
}
.s-for-life__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 130px;
  align-items: center;
}
.s-for-life__visual {
  position: relative;
  aspect-ratio: 16 / 9;          /* pełny kadr oryginału, bez przycinania stóp */
  background: transparent;
}
.s-for-life h2 {
  font-size: 44px;
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.s-for-life p {
  margin-bottom: 18px;
}

/* =============================================
   SECTION 6: CO DOSTAJESZ — 6 KART
   ============================================= */
.s-what-you-get {
  background: var(--cream);
}
.s-what-you-get__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.s-what-you-get__header h2 {
  font-size: 44px;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.s-what-you-get__header p {
  font-size: 17px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--warm-white);
  padding: 36px;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31, 27, 22, 0.06);
  border-color: rgba(184, 92, 61, 0.3);
}

.card__icon {
  width: 32px;
  height: 32px;
  color: var(--terracotta);
  margin-bottom: 24px;
  display: block;
}
.card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.25;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--ink);
}

.card p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--soft-ink);
}

/* =============================================
   SECTION 7: TRANSFORMACJA — DARK
   ============================================= */
.s-transformation {
  background: var(--aubergine);
  color: var(--cream);
  padding-top: 100px;
  padding-bottom: 100px;
}
.s-transformation .container {
  max-width: 900px;
  text-align: center;
}
.s-transformation h2 {
  font-size: 50px;
  color: var(--cream);
  font-weight: 600;     /* sturdier na ciemnym */
  line-height: 1.1;
  margin-bottom: 56px;
  letter-spacing: -0.015em;
}
.s-transformation h2 .italic-accent { font-weight: 600; }
.s-transformation h2 .italic-accent {
  font-style: italic;
  color: var(--terracotta);
}

.transformation-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 56px;
  text-align: left;
  list-style: none;
  margin-bottom: 48px;
}
.transformation-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.9;
}
.transformation-list .arrow {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;     /* sturdier na ciemnym tle */
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.3;
}

.transformation-footer {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: var(--gold);
  opacity: 0.92;
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
}

/* =============================================
   O KAROLINIE — KZK-STYLE INTRO
   ============================================= */
.s-about { background: var(--cream); }
.s-about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: center;
}
.s-about__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: transparent;
}
.s-about__text h2 {
  font-size: 46px;
  line-height: 1.12;
  margin-bottom: 28px;
  letter-spacing: -0.022em;
}
.s-about__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.s-about__text p { margin-bottom: 18px; }
.s-about__text p:last-child { margin-bottom: 0; }

.s-about__signature {
  margin-top: 28px !important;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 31, 26, 0.1);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.5;
  color: var(--soft-ink);
}
.s-about__signature em {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 900px) {
  .s-about__grid { grid-template-columns: 1fr; gap: 36px; }
  .s-about__text h2 { font-size: 28px; }
  .s-about__lede { font-size: 19px; }
  .s-about__signature { font-size: 16px; }
}

/* =============================================
   SECTION 8: KAROLINA
   ============================================= */
.s-karolina {
  background: var(--cream);
}
.s-karolina__grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 80px;
  align-items: center;
}
.s-karolina__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: transparent;
}
.s-karolina h2 {
  font-size: 46px;
  line-height: 1.12;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.s-karolina p {
  margin-bottom: 18px;
}

.pull-quote {
  border-left: 3px solid var(--terracotta);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--terracotta);
}

.s-karolina__cta {
  margin-top: 32px;
}

/* =============================================
   SECTION 9: DLA KOGO / NIE DLA KOGO
   ============================================= */
.s-for-whom {
  background: var(--sand);  /* mocniejszy akcent — używamy raz, dlatego się wyróżnia */
}
.s-for-whom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 56px;
}
.s-for-whom h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 28px;
}
.s-for-whom h3.is-yes { color: var(--terracotta); }
.s-for-whom h3.is-no  { color: var(--olive); }

.fit-list {
  list-style: none;
}
.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid rgba(42, 31, 26, 0.08);
  letter-spacing: -0.005em;
}
.fit-list li:last-child { border-bottom: none; }
.fit-list .mark {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  width: 18px;
  display: inline-block;
}
.fit-list .mark.is-yes { color: var(--terracotta); }
.fit-list .mark.is-no  { color: var(--olive); }

@media (max-width: 700px) {
  .fit-list li { font-size: 17px; gap: 12px; padding: 10px 0; }
  .fit-list .mark { font-size: 18px; width: 14px; }
}

.for-whom-footer {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--soft-ink);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* =============================================
   SECTION 10: BADANIA — 4 KARTY
   ============================================= */
.s-research {
  background: var(--cream);
}
.research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.research-card {
  background: var(--warm-white);
  padding: 32px;
  border-left: 3px solid var(--terracotta);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.research-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 27, 22, 0.05);
}
.research-card__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.research-card__body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 500;
}
.research-card__source {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--soft-ink);
  letter-spacing: 0.05em;
}
.research-footer {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--terracotta);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   PRICING SECTION
   ============================================= */
.s-pricing {
  background: var(--cream);
  border-top: 1px solid rgba(42, 31, 26, 0.08);
}
.s-pricing__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.s-pricing__header h2 {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.s-pricing__header p {
  font-size: 16px;
  color: var(--soft-ink);
}
.s-pricing__per-day {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta);
  margin-top: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--warm-white);
  padding: 44px 40px;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(31, 27, 22, 0.06);
}

.pricing-card--vip {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.pricing-card__tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.pricing-card--vip .pricing-card__tag { color: var(--gold); }

.pricing-card__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 24px;
  color: inherit;
  line-height: 1.2;
}

.pricing-card__price {
  font-family: var(--font-wordmark);
  font-size: 52px;
  font-weight: 700;
  font-feature-settings: "lnum" 1, "tnum" 1;
  line-height: 1;
  margin-bottom: 8px;
  color: inherit;
  letter-spacing: -0.005em;
}
.pricing-card__price-meta {
  font-family: var(--font-sans);
  font-size: 15.5px;
  color: var(--soft-ink);
  margin-bottom: 28px;
  line-height: 1.55;
}
.pricing-card--vip .pricing-card__price-meta {
  color: var(--cream);
  opacity: 0.7;
}

.pricing-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--sand);
  padding-top: 24px;
  flex: 1;
}
.pricing-card--vip .pricing-features {
  border-top-color: rgba(250, 247, 242, 0.15);
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  padding: 10px 0;
  color: var(--ink);
}
.pricing-card--vip .pricing-features li {
  color: var(--cream);
  opacity: 0.92;
}
.pricing-features .dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 9px;
}
.pricing-card--vip .pricing-features .dot { background: var(--gold); }

.pricing-card__limit {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 2px;
  transition: all 0.2s var(--ease);
  text-align: center;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.pricing-card__cta:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
}
.pricing-card--vip .pricing-card__cta {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.pricing-card--vip .pricing-card__cta:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.pricing-footnote {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--soft-ink);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.pricing-card__perday {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terracotta);
  font-size: 19px;
  letter-spacing: 0.005em;
}
.pricing-card--vip .pricing-card__perday { color: var(--gold); }

/* =============================================
   PRICING HERO — strona cennika
   ============================================= */
.s-pricing-hero {
  background: var(--cream);
  padding: 96px 0 56px;
  text-align: center;
}
.s-pricing-hero h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.025em;
  max-width: 880px;
  margin: 18px auto 24px;
}
.s-pricing-hero__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--soft-ink);
  max-width: 720px;
  margin: 0 auto 56px;
}

.price-anchors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid rgba(42, 31, 26, 0.12);
  border-bottom: 1px solid rgba(42, 31, 26, 0.12);
}
.price-anchor {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(42, 31, 26, 0.08);
}
.price-anchor:last-child { border-right: none; }
.price-anchor em {
  font-family: var(--font-wordmark);
  font-style: normal;
  font-weight: 700;
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-size: 40px;
  line-height: 1;
  color: var(--terracotta);
  letter-spacing: -0.005em;
}
.price-anchor span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-ink);
}

/* =============================================
   VALUE STACK — co składa się na cenę
   ============================================= */
.s-value-stack {
  background: var(--bone);
  border-top: 1px solid rgba(42, 31, 26, 0.06);
  border-bottom: 1px solid rgba(42, 31, 26, 0.06);
}
.value-stack__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.value-stack__header h2 {
  font-size: 40px;
  line-height: 1.2;
}
.value-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 56px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.value-stack__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(42, 31, 26, 0.1);
}
.value-stack__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
  padding-top: 4px;
}
.value-stack__item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.value-stack__item p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--soft-ink);
}

/* =============================================
   GUARANTEE
   ============================================= */
.s-guarantee {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 96px 0;
}
.s-guarantee h2 {
  color: var(--cream);
  font-size: 44px;
  line-height: 1.15;
  max-width: 880px;
  margin: 16px auto 28px;
  letter-spacing: -0.02em;
}
.s-guarantee p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.92;
  max-width: 720px;
  margin: 0 auto 18px;
}
.s-guarantee__small {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-size: 14px !important;
  opacity: 0.65 !important;
  max-width: 620px !important;
  letter-spacing: 0.005em;
}

/* =============================================
   SEKCJA SELEKCJA — „nie każda zostaje"
   ============================================= */
.s-selection {
  background: var(--bone);
  text-align: center;
  border-top: 1px solid rgba(42, 31, 26, 0.06);
  border-bottom: 1px solid rgba(42, 31, 26, 0.06);
}
.s-selection .container { max-width: 760px; }

.s-selection h2 {
  font-size: 46px;
  line-height: 1.12;
  margin-bottom: 36px;
  letter-spacing: -0.022em;
}

.s-selection__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: var(--terracotta);
  margin-bottom: 32px;
  letter-spacing: -0.012em;
}

.s-selection p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: var(--soft-ink);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.s-selection p:last-child { margin-bottom: 0; }

.s-selection__divider {
  width: 40px;
  height: 1px;
  background: var(--terracotta);
  margin: 32px auto 32px;
  opacity: 0.4;
}

@media (max-width: 700px) {
  .s-selection h2 { font-size: 30px; }
  .s-selection__lede { font-size: 19px; }
  .s-selection p { font-size: 15px; }
}

/* =============================================
   SECTION 11: PROCES APLIKACJI — DARK
   ============================================= */
.s-process {
  background: var(--aubergine);
  color: var(--cream);
  padding-top: 100px;
  padding-bottom: 100px;
}
.s-process .container {
  max-width: 900px;
  text-align: center;
}
.s-process h2 {
  font-size: 52px;
  color: var(--cream);
  font-weight: 600;     /* sturdier na ciemnym */
  line-height: 1.1;
  margin-bottom: 64px;
  letter-spacing: -0.015em;
}
.s-process h2 .italic-accent { font-weight: 600; }
.s-process h2 .italic-accent {
  color: var(--terracotta);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
  text-align: left;
}
.process-step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 72px;
  font-weight: 600;     /* sturdier na ciemnym tle */
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  letter-spacing: -0.02em;
}
.process-step__text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.9;
}
.process-step__text strong {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 22px;
  font-weight: 600;     /* sturdier na ciemnym tle */
  color: var(--cream);
  opacity: 1;
  margin-bottom: 10px;
  line-height: 1.3;
}

.s-process__cta {
  margin-top: 24px;
}
.s-process__cta .btn {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
  padding: 22px 50px;
  font-size: 14px;
}
.s-process__cta .btn:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
}

.s-process__note {
  font-size: 15px;
  color: var(--cream);
  opacity: 0.78;
  margin-top: 20px;
  line-height: 1.55;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   SECTION 12: FAQ
   ============================================= */
.s-faq {
  background: var(--cream);
}
.s-faq .container {
  max-width: 820px;
}
.s-faq__header {
  text-align: center;
  margin-bottom: 48px;
}
.s-faq__header h2 {
  font-size: 44px;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.faq-item {
  border-top: 1px solid var(--sand);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--sand);
}
.faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  text-align: left;
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--terracotta); }
.faq-q__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
  font-weight: 300;
  margin-top: 2px;
}
.faq-item.is-open .faq-q__icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a__inner {
  padding: 0 0 26px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--soft-ink);
  max-width: 720px;
}

/* =============================================
   SECTION 13: FINAL CTA
   ============================================= */
.s-final-cta {
  background: var(--bone);
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
  border-top: 1px solid rgba(42, 31, 26, 0.06);
}
.s-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.s-final-cta h2 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
  letter-spacing: -0.022em;
}
.s-final-cta h2 .italic-accent { color: var(--terracotta); }
.s-final-cta p {
  font-size: 18px;
  margin-bottom: 36px;
  color: var(--soft-ink);
}
.s-final-cta .btn {
  padding: 20px 44px;
  font-size: 14px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--aubergine-deep);
  color: var(--cream);
  padding-top: 60px;
  padding-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 13px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.site-footer .logo {
  color: var(--cream);
  margin-bottom: 16px;
}
/* W stopce „Chudnij" i „głową" w tym samym kolorze (cream).
   „(z)" w terakocie. */
.site-footer .logo .italic-accent {
  color: var(--cream);
}
.site-footer .logo .logo__zed {
  color: var(--terracotta);
}
.site-footer__about {
  color: var(--cream);
  opacity: 0.7;
  line-height: 1.6;
  max-width: 320px;
}
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}
.footer-links a:hover {
  opacity: 1;
  color: var(--terracotta);
}
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(250, 247, 242, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  opacity: 0.7;
  transition: all 0.2s var(--ease);
}
.footer-socials a:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  opacity: 1;
}
.footer-socials svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__bar {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--cream);
  opacity: 0.6;
  font-size: 12px;
}
.site-footer__bar .designed {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* =============================================
   FORM — MULTI-STEP PROGRESS HEADER
   ============================================= */
.form-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-ink);
}
.form-steps__bar {
  flex: 1;
  height: 1px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.form-steps__bar::after {
  content: "";
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--terracotta);
  transition: inset 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.form-steps[data-step="1"] .form-steps__bar::after { inset: 0 66.66% 0 0; }
.form-steps[data-step="2"] .form-steps__bar::after { inset: 0 33.33% 0 0; }
.form-steps[data-step="3"] .form-steps__bar::after { inset: 0 0 0 0; }

.form-steps__current {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  color: var(--terracotta);
  text-transform: none;
  letter-spacing: 0;
  margin-right: 4px;
}

/* Step panels */
.form-step {
  display: none;
  animation: stepFadeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.form-step.is-active { display: block; }

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-step__intro {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.012em;
}

.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  align-items: stretch;
}
.form-nav__back,
.form-nav__next,
.form-submit {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: 2px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.form-nav__next,
.form-submit {
  flex: 2;
  background: var(--ink);
  color: var(--cream);
}
.form-nav__back:hover {
  background: var(--ink);
  color: var(--cream);
}
.form-nav__next:hover:not(:disabled),
.form-submit:hover:not(:disabled) {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .form-nav { flex-direction: column-reverse; }
  .form-nav__back,
  .form-nav__next,
  .form-submit { padding: 16px 20px; font-size: 12px; }
  .form-step__intro { font-size: 18px; }
  .form-steps { font-size: 10px; gap: 8px; }
  .form-steps__current { font-size: 16px; }
}

/* =============================================
   APPLICATION FORM PAGE
   ============================================= */
.form-page {
  background: var(--cream);
  min-height: 100vh;
  padding: 60px 0 100px;
}
.form-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-ink);
  margin-bottom: 60px;
  transition: color 0.2s var(--ease);
}
.form-page__back:hover { color: var(--terracotta); }
.form-page__back .arrow { font-size: 16px; }

.form-page__container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.form-page__intro {
  margin-bottom: 60px;
}
.form-page__intro h1 {
  font-size: 48px;
  line-height: 1.15;
  margin: 16px 0 24px;
}
.form-page__intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--soft-ink);
}

/* fields */
.app-form { display: block; }
.field {
  margin-bottom: 36px;
}
.field__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
}
.field__label .req {
  color: var(--terracotta);
  margin-left: 4px;
  font-weight: 400;
}
.field__hint {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--soft-ink);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.field__error {
  display: none;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--terracotta-deep);
  margin-top: 6px;
  font-weight: 500;
}
.field.is-invalid .field__error { display: block; }
.field__counter {
  display: block;
  text-align: right;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--soft-ink);
  opacity: 0.7;
  margin-top: 4px;
  letter-spacing: 0;
}

.input,
.select,
.textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  background: var(--warm-white);
  padding: 14px 18px;
  border: 1px solid var(--sand);
  border-radius: 2px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 92, 61, 0.08);
}
.field.is-invalid .input,
.field.is-invalid .select,
.field.is-invalid .textarea {
  border-color: var(--terracotta-deep);
}
.textarea {
  resize: vertical;
  min-height: 120px;
}
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%232A1F1A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

/* radio + checkbox */
.options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.options--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  position: relative;
}
.option:hover { border-color: var(--gold); }
.option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.option__visual {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--sand);
  border-radius: 50%;
  margin-top: 2px;
  background: var(--cream);
  transition: all 0.2s var(--ease);
  position: relative;
}
.option--checkbox .option__visual {
  border-radius: 2px;
}
.option input:checked ~ .option__visual {
  border-color: var(--terracotta);
  background: var(--terracotta);
  box-shadow: inset 0 0 0 3px var(--cream);
}
.option--checkbox input:checked ~ .option__visual {
  background: var(--terracotta);
  box-shadow: none;
}
.option--checkbox input:checked ~ .option__visual::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--cream);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.option:has(input:checked) {
  border-color: var(--terracotta);
  background: rgba(184, 92, 61, 0.04);
}

.option__text { flex: 1; }
.option__text a {
  color: var(--terracotta);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.conditional-field {
  display: none;
  margin-top: 12px;
  padding-left: 18px;
  border-left: 2px solid var(--terracotta);
}
.conditional-field.is-visible { display: block; }

/* legal checkboxes */
.legal-fields {
  margin: 16px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-fields .option {
  font-size: 13px;
  padding: 12px 16px;
  line-height: 1.5;
  background: transparent;
  border-color: rgba(31, 27, 22, 0.08);
}

/* submit + post info */
.form-submit {
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 20px 32px;
  border-radius: 2px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  cursor: pointer;
  border: none;
}
.form-submit:hover:not(:disabled) {
  background: var(--terracotta-deep);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-submit.is-sending::after {
  content: " ...";
}
.form-page__post-info {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--soft-ink);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

.form-page__error-banner {
  display: none;
  background: rgba(142, 68, 41, 0.08);
  border: 1px solid var(--terracotta);
  color: var(--terracotta-deep);
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 14px;
  margin-bottom: 20px;
}
.form-page__error-banner.is-visible { display: block; }

/* honeypot */
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* THANK-YOU PAGE */
.thanks-page {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}
.thanks-page__inner {
  max-width: 640px;
}
.thanks-page__inner h1 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 28px;
}
.thanks-page__inner p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--soft-ink);
  margin-bottom: 18px;
}
.thanks-page__back {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 4px;
  transition: color 0.2s var(--ease);
}
.thanks-page__back:hover { color: var(--terracotta-deep); }

/* SIMPLE LEGAL/CONTACT PAGES */
.doc-page {
  background: var(--cream);
  min-height: 100vh;
  padding: 100px 24px;
}
.doc-page__container {
  max-width: 720px;
  margin: 0 auto;
}
.doc-page h1 {
  font-size: 48px;
  margin-bottom: 32px;
  line-height: 1.15;
}
.doc-page h2 {
  font-size: 28px;
  margin: 40px 0 16px;
}
.doc-page p { margin-bottom: 16px; line-height: 1.7; }
.doc-page__placeholder {
  background: var(--sand);
  border-left: 3px solid var(--terracotta);
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--soft-ink);
}

/* Form mobile */
@media (max-width: 600px) {
  .form-page__intro h1 { font-size: 32px; }
  .form-page { padding: 40px 0 60px; }
  .field { margin-bottom: 28px; }
  .input, .select, .textarea { font-size: 15px; padding: 12px 14px; }
  .option { font-size: 14px; padding: 12px 14px; }
  .form-submit { padding: 18px 24px; font-size: 13px; }
  .thanks-page__inner h1 { font-size: 36px; }
  .doc-page h1 { font-size: 32px; }
  .doc-page { padding: 60px 24px; }
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 380px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 10px 40px rgba(31, 27, 22, 0.12);
  z-index: 90;
  font-size: 13px;
  color: var(--soft-ink);
  line-height: 1.6;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner__actions button {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 2px;
  transition: all 0.2s var(--ease);
}
.cookie-banner__btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.cookie-banner__btn--primary:hover { background: var(--terracotta-deep); }
.cookie-banner__btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--sand);
}
.cookie-banner__btn--ghost:hover {
  border-color: var(--ink);
}

/* =============================================
   FADE-IN ON SCROLL
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 900px) {
  :root {
    --section-py: 72px;
  }
  /* Bloom z pełną mocą na mobile — taki sam look jak desktop.
     overflow:hidden na containerach zapobiega wyciekaniu poza viewport. */
  /* Mask na zdjęciach ZOSTAJE — daje miękkie przejścia kolorów wokół
     zdjęć (CSS-only, bez problemów na iOS). Wyłączamy tylko stany animacji,
     żeby iOS Safari nie zostawił zdjęcia w opacity:0 / scale po @keyframes. */
  .hero__visual picture img,
  .s-karolina__visual picture img,
  .s-for-life__visual picture img,
  .s-editorial__photo picture img,
  .s-about__visual picture img {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
  .kb-photo picture img,
  .kb-photo picture img.is-loaded {
    animation: none !important;
    transform: none !important;
  }
  /* Parallax tez wyłączony — translateY z JS-a może shiftować zdjęcie poza container */
  .parallax-photo {
    transform: none !important;
  }
  /* Grain overlay też off — wszystko proste */
  .hero__visual::after,
  .s-karolina__visual::after,
  .s-for-life__visual::after,
  .s-editorial__photo::after,
  .s-about__visual::after {
    display: none !important;
  }

  /* Visual containers: wymuszamy 100% szerokości i odpowiedni layout
     żeby <picture><img> miały na czym oprzeć aspect-ratio */
  .hero__visual,
  .hero__visual-wrap,
  .s-karolina__visual,
  .s-for-life__visual,
  .s-editorial__photo,
  .s-about__visual {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero__visual picture,
  .s-karolina__visual picture,
  .s-for-life__visual picture,
  .s-editorial__photo picture,
  .s-about__visual picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* Fade-in: na mobile zdjęcia muszą być widoczne od razu — nie polegamy na IO,
     bo jeśli nie odpali, zostają na opacity:0 i mamy puste sekcje. */
  .fade-in,
  .stagger > * {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  body { font-size: 15px; }
  p { font-size: 15px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .navbar { padding: 18px 0; }

  .hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 56px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__content h1 {
    font-size: 36px;
  }
  .hero__sub { font-size: 16px; margin-bottom: 24px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  /* Editorial mark mniej widoczny i bez paddingu na mobile */
  .hero__editorial-mark { margin-top: 18px; gap: 10px; padding-left: 0; }
  .hero__editorial-line { width: 24px; }
  .hero__editorial-text em { font-size: 15px; }
  .hero__editorial-text > span { font-size: 10px; letter-spacing: 0.15em; }

  .social-proof__inner { font-size: 14px; }

  .s-not-another-diet h2,
  .s-for-life h2 { font-size: 28px; }

  .s-for-life__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Etap 2 — mobile */
  .s-what-you-get__header h2 { font-size: 28px; }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card { padding: 28px; }

  .s-transformation { padding-top: 72px; padding-bottom: 72px; }
  .s-transformation h2 { font-size: 30px; margin-bottom: 40px; }
  .transformation-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .transformation-list li { font-size: 15px; }
  .transformation-footer { font-size: 16px; }

  .s-karolina__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .s-karolina h2 { font-size: 28px; }
  .pull-quote { font-size: 20px; padding-left: 20px; }

  .s-for-whom__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .s-for-whom h3 { font-size: 22px; }

  /* Pricing — mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-card { padding: 32px 26px; }
  .pricing-card__name { font-size: 26px; }
  .pricing-card__price { font-size: 38px; }
  .s-pricing__header h2 { font-size: 28px; }

  /* Pricing hero — mobile */
  .s-pricing-hero { padding: 56px 0 36px; }
  .s-pricing-hero h1 { font-size: 32px; }
  .s-pricing-hero__lede { font-size: 16px; margin-bottom: 36px; }

  .price-anchors {
    grid-template-columns: repeat(2, 1fr);
    border-bottom: none;
  }
  .price-anchor {
    padding: 18px 8px;
    border-right: 1px solid rgba(42, 31, 26, 0.08);
    border-bottom: 1px solid rgba(42, 31, 26, 0.08);
  }
  .price-anchor:nth-child(2n) { border-right: none; }
  .price-anchor em { font-size: 28px; }
  .price-anchor span { font-size: 9.5px; letter-spacing: 0.14em; }

  /* Value stack — mobile */
  .value-stack { grid-template-columns: 1fr; gap: 0; }
  .value-stack__header h2 { font-size: 26px; line-height: 1.2; }
  .value-stack__num { font-size: 26px; }
  .value-stack__item h3 { font-size: 17px; }

  /* Gwarancja — mobile */
  .s-guarantee { padding: 64px 0; }
  .s-guarantee h2 { font-size: 28px; line-height: 1.2; }
  .s-guarantee p { font-size: 17px; }

  /* Etap 3 — mobile */
  .research-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .research-card { padding: 24px; }
  .research-card__body { font-size: 18px; }

  .s-process { padding-top: 72px; padding-bottom: 72px; }
  .s-process h2 { font-size: 30px; margin-bottom: 40px; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .process-step__num { font-size: 56px; }
  .process-step__text strong { font-size: 18px; }
  .s-process__cta .btn { padding: 18px 32px; }

  .s-faq__header h2 { font-size: 28px; }
  .faq-q { font-size: 18px; padding: 22px 0; }
  .faq-a__inner { font-size: 15px; padding-bottom: 22px; }

  .s-final-cta { padding-top: 72px; padding-bottom: 72px; }
  .s-final-cta h2 { font-size: 30px; }
  .s-final-cta p { font-size: 16px; }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .logo { font-size: 21px; }
  .logo .italic-accent { font-size: 21px; }
  .logo__zed { font-size: 17px; top: -1px; }
}

/* =============================================
   POWER 15 — codzienny protokół poranny
   ============================================= */
.s-power15 {
  background: var(--bone);
  border-top: 1px solid rgba(42, 31, 26, 0.06);
  border-bottom: 1px solid rgba(42, 31, 26, 0.06);
}
.s-power15__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.s-power15__header h2 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.s-power15__header p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--soft-ink);
  line-height: 1.55;
}

.power15-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(42, 31, 26, 0.1);
  border-left: 1px solid rgba(42, 31, 26, 0.1);
  background: var(--warm-white);
}
.power15-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 22px 26px;
  border-right: 1px solid rgba(42, 31, 26, 0.1);
  border-bottom: 1px solid rgba(42, 31, 26, 0.1);
  background: var(--warm-white);
  transition: background 0.3s var(--ease);
  position: relative;
}
.power15-step:hover { background: var(--bone); }

.power15-step__time {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.power15-step h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.power15-step p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--soft-ink);
  margin: 0;
  flex: 1;
}
.power15-step__source {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--soft-ink);
  opacity: 0.7;
  font-style: italic;
  border-top: 1px solid rgba(42, 31, 26, 0.08);
  padding-top: 10px;
  margin-top: 4px;
}
/* Bonus tile (7th item) — full row, gold accent */
.power15-step:nth-child(7) {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--ink);
  color: var(--cream);
}
.power15-step:nth-child(7):hover { background: var(--ink); }
.power15-step:nth-child(7) .power15-step__time { color: var(--gold); flex-shrink: 0; }
.power15-step:nth-child(7) h3 { color: var(--cream); flex: 0 1 280px; }
.power15-step:nth-child(7) p { color: var(--cream); opacity: 0.86; flex: 1 1 280px; }
.power15-step:nth-child(7) .power15-step__source {
  color: var(--cream);
  opacity: 0.5;
  border-top: none;
  padding-top: 0;
  flex-shrink: 0;
}

.power15-footer {
  text-align: center;
  margin-top: 48px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--soft-ink);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   TIMELINE — plan 12 tygodni
   ============================================= */
.s-timeline {
  background: var(--cream);
}
.s-timeline__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.s-timeline__header h2 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.s-timeline__header p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--soft-ink);
  line-height: 1.55;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}

.timeline-phase {
  background: var(--warm-white);
  border: 1px solid rgba(42, 31, 26, 0.1);
  padding: 36px 36px 24px;
  border-radius: var(--radius);
  position: relative;
}
.timeline-phase--two {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.timeline-phase__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(42, 31, 26, 0.12);
  width: 100%;
}
.timeline-phase--two .timeline-phase__tag {
  color: var(--gold);
  border-bottom-color: rgba(250, 247, 242, 0.18);
}

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  counter-reset: tlist;
}
.timeline-phase--two .timeline-list {
  grid-template-columns: 1fr;
}
.timeline-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid rgba(42, 31, 26, 0.08);
}
.timeline-phase--two .timeline-list li {
  border-top-color: rgba(250, 247, 242, 0.12);
}
.timeline-list li strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--terracotta);
  letter-spacing: 0.005em;
}
.timeline-phase--two .timeline-list li strong { color: var(--gold); }
.timeline-list li span {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--soft-ink);
}
.timeline-phase--two .timeline-list li span {
  color: var(--cream);
  opacity: 0.85;
}

.timeline-footer {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--soft-ink);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* =============================================
   PRICING TEASER — link do osobnej strony cennika
   ============================================= */
.s-pricing-teaser {
  background: var(--bone);
  text-align: center;
  border-top: 1px solid rgba(42, 31, 26, 0.06);
  border-bottom: 1px solid rgba(42, 31, 26, 0.06);
}
.s-pricing-teaser .container { max-width: 880px; }
.s-pricing-teaser h2 {
  font-size: 44px;
  line-height: 1.15;
  margin: 14px 0 18px;
  letter-spacing: -0.02em;
}
.s-pricing-teaser__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--soft-ink);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto 40px;
}

.s-pricing-teaser__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 36px;
}
.teaser-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease);
}
.teaser-card:hover { transform: translateY(-2px); }
.teaser-card--vip {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.teaser-card__tag {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.teaser-card--vip .teaser-card__tag { color: var(--gold); }
.teaser-card__price {
  font-family: var(--font-wordmark);
  font-weight: 700;
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-size: 38px;
  line-height: 1;
  color: inherit;
  letter-spacing: -0.005em;
}
.teaser-card__meta {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--soft-ink);
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.teaser-card--vip .teaser-card__meta {
  color: var(--cream);
  opacity: 0.7;
}

.s-pricing-teaser__note {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--soft-ink);
  opacity: 0.85;
}

/* =============================================
   MITY VS PRAWDY
   ============================================= */
.s-myths {
  background: var(--cream);
  border-top: 1px solid rgba(42, 31, 26, 0.06);
}
.s-myths__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.s-myths__header h2 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.s-myths__header p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--soft-ink);
  line-height: 1.55;
}

.myths-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(42, 31, 26, 0.12);
}
.myth {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0 32px;
  border-bottom: 1px solid rgba(42, 31, 26, 0.12);
  transition: background 0.4s var(--ease);
}
.myth:hover { background: rgba(42, 31, 26, 0.015); }

.myth__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--terracotta);
  letter-spacing: -0.02em;
  padding-top: 4px;
}
.myth__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}

.myth__line {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  letter-spacing: -0.005em;
}
.myth__line--false {
  color: var(--soft-ink);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(194, 106, 74, 0.6);
  font-weight: 400;
}
.myth__line--false .myth__tag { text-decoration: none; }
.myth__line--true {
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
}
.myth__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 3px 10px 2px;
  border-radius: 2px;
  margin-right: 14px;
  vertical-align: middle;
  text-decoration: none;
  transform: translateY(-2px);
}
.myth__tag--true {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.myth__source {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-ink);
  opacity: 0.7;
  margin-top: 4px;
}

.s-myths__footer {
  text-align: center;
  margin: 56px auto 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--soft-ink);
  max-width: 720px;
}

/* =============================================
   PERSONAL LETTER OD KAROLINY
   ============================================= */
.s-letter {
  background: var(--bone);
  border-top: 1px solid rgba(42, 31, 26, 0.06);
  border-bottom: 1px solid rgba(42, 31, 26, 0.06);
  padding-top: 96px;
  padding-bottom: 96px;
}
.s-letter .container { max-width: 820px; }

.letter {
  background: var(--warm-white);
  padding: 72px 80px 64px;
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(31, 27, 22, 0.04), 0 18px 60px rgba(31, 27, 22, 0.06);
  position: relative;
}
.letter .eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 28px;
  color: var(--terracotta);
}

/* List Karoliny — wszystko jednolite: kursywa Cormorant Garamond,
   jedna wielkość, weight 500 dla czytelności polskich znaków. */
.letter__greeting,
.letter p,
.letter__close {
  font-family: "Cormorant Garamond", "Playfair Display", "Georgia", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: 0.005em;
}
.letter__greeting {
  margin-bottom: 22px;
}
.letter p em {
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta-deep);
  font-family: inherit;
  font-size: inherit;
}
.letter__close {
  margin-top: 28px !important;
  border-top: 1px solid rgba(42, 31, 26, 0.1);
  padding-top: 24px !important;
  color: var(--ink) !important;
}

/* .letter__emphasis - wcześniejszy duży akcent, teraz wyrównany do reszty */
.letter__emphasis {
  font-family: inherit !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: inherit !important;
  color: var(--terracotta-deep) !important;
  margin: 0 !important;
  letter-spacing: 0.005em !important;
  line-height: inherit !important;
}

.letter__signature {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 31, 26, 0.08);
}
.letter__signature-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.letter__signature-meta {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-ink);
  opacity: 0.8;
}

/* =============================================
   STICKY BOTTOM CTA BAR
   ============================================= */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  background: var(--aubergine-deep);
  color: var(--cream);
  padding: 12px 16px;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -8px 30px rgba(31, 27, 22, 0.16);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 0 16px;
}
.sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.3;
  flex: 1 1 auto;
  min-width: 0;
}
.sticky-cta__text strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: var(--gold);
  letter-spacing: 0.005em;
}
.sticky-cta__text span {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream);
  opacity: 0.86;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 2px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.sticky-cta__btn:hover {
  background: var(--cream);
  color: var(--ink);
}

/* =============================================
   MOBILE — Power 15 / Timeline / Pricing teaser
   ============================================= */
@media (max-width: 900px) {
  .s-power15__header h2,
  .s-timeline__header h2,
  .s-pricing-teaser h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .s-power15__header p,
  .s-timeline__header p,
  .s-pricing-teaser__lede {
    font-size: 16px;
  }

  .power15-list {
    grid-template-columns: 1fr;
    border-left: none;
    border-top: none;
  }
  .power15-step { padding: 22px 20px; border-right: none; }
  .power15-step:nth-child(7) {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .timeline-list { grid-template-columns: 1fr; }
  .timeline-phase { padding: 28px 24px 20px; }

  .s-pricing-teaser__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .teaser-card { padding: 22px 18px; }
  .teaser-card__price { font-size: 30px; }

  /* Mity vs prawdy — mobile */
  .s-myths__header h2 { font-size: 28px; line-height: 1.2; }
  .s-myths__header p { font-size: 16px; }
  .myth {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0 24px;
  }
  .myth__num { font-size: 36px; padding-top: 0; }
  .myth__line { font-size: 17px; line-height: 1.45; }
  .myth__tag {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 6px;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    padding: 2px 8px 1px;
  }
  .myth__source { font-size: 10.5px; letter-spacing: 0.14em; }
  .s-myths__footer { font-size: 16px; margin-top: 40px; }

  /* Personal letter — mobile */
  .s-letter { padding-top: 56px; padding-bottom: 56px; }
  .letter { padding: 40px 26px 36px; }
  .letter__greeting,
  .letter p,
  .letter__close {
    font-size: 18px;
    line-height: 1.65;
  }
  .letter__close { font-size: 18px !important; }
  .letter__emphasis { font-size: inherit !important; }
  .letter__signature-mark { width: 180px; height: 60px; }

  /* Sticky CTA — mobile: kompaktowy, body padding-bottom by nie zasłaniać kontentu */
  body.has-sticky-cta { padding-bottom: 78px; }
  .sticky-cta { padding: 10px 14px; }
  .sticky-cta__inner { gap: 12px; padding: 0 6px; }
  .sticky-cta__text strong { font-size: 15px; }
  .sticky-cta__text span { font-size: 12.5px; line-height: 1.4; }
  .sticky-cta__btn {
    padding: 11px 18px;
    font-size: 11.5px;
    letter-spacing: 0.12em;
  }
}

/* =============================================
   JAK PRACUJEMY — 4 kroki + format programu
   ============================================= */
.s-method {
  background: var(--cream);
}
.s-method__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}
.s-method__header h2 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.s-method__header p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--soft-ink);
  line-height: 1.55;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0 auto 64px;
  padding: 0;
  max-width: 1080px;
  border-top: 1px solid rgba(42, 31, 26, 0.12);
  border-left: 1px solid rgba(42, 31, 26, 0.12);
}
.method-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 36px 30px;
  background: var(--warm-white);
  border-right: 1px solid rgba(42, 31, 26, 0.12);
  border-bottom: 1px solid rgba(42, 31, 26, 0.12);
  transition: background 0.3s var(--ease);
}
.method-step:hover { background: var(--bone); }

.method-step__num {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.method-step h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.method-step p {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--soft-ink);
  margin: 0;
}

.method-truth {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 56px 48px;
  border-radius: var(--radius);
  max-width: 1080px;
  margin: 0 auto 64px;
}
.method-truth h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.method-truth ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 56px;
}
.method-truth li {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.92;
}
.method-truth li strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}

.method-format {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 48px;
  max-width: 1080px;
  margin: 0 auto;
}
.method-format__item {
  border-top: 1px solid rgba(42, 31, 26, 0.12);
  padding-top: 18px;
}
.method-format__item--wide {
  grid-column: 1 / -1;
}
.method-format__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.method-format__item p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.method-format__item p em {
  font-style: italic;
  color: var(--terracotta-deep);
  font-weight: 500;
}

/* =============================================
   PRICING TEASER — finałowe CTA pod kartami
   ============================================= */
.pricing-card__vip-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin: 0 0 22px;
  line-height: 1.5;
  opacity: 0.95;
}

.s-pricing-teaser__final {
  text-align: center;
  max-width: 760px;
  margin: 56px auto 0;
}
.s-pricing-teaser__final-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.s-pricing-teaser__final-meta {
  font-family: var(--font-sans);
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--soft-ink);
  margin: 0 0 24px;
}
.s-pricing-teaser__final-start {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bone);
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(42, 31, 26, 0.12);
}
.s-pricing-teaser__final-start strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--terracotta-deep);
  text-transform: none;
}

/* =============================================
   HISTORIA TOMKA — opinia dark
   ============================================= */
.s-tomek {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.tomek-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.tomek-photo {
  margin: 0;
  position: relative;
}
.tomek-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  filter: saturate(0.95) contrast(1.04);
}
.tomek-photo__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
  padding-left: 4px;
}
.tomek-photo__caption em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.tomek-photo__caption span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.tomek-text h2 {
  color: var(--cream);
  font-size: 44px;
  line-height: 1.1;
  margin: 14px 0 20px;
  letter-spacing: -0.022em;
}
.tomek-text h2 .italic-accent { color: var(--gold); }

.tomek-hook {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.95;
  margin: 0 0 28px;
  letter-spacing: -0.005em;
}
.tomek-hook em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

/* Fallback zdjęcia: jeśli wczytany jest fallback (Karoliny), dodajmy delikatne przyciemnienie */
.tomek-photo img.is-fallback {
  filter: saturate(0.85) brightness(0.92);
  opacity: 0.95;
}

.tomek-quote {
  margin: 0 0 24px;
  padding: 0;
  border-left: 1px solid rgba(201, 166, 107, 0.4);
  padding-left: 24px;
}
.tomek-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.92;
  margin: 0 0 16px;
}
.tomek-quote p:last-child { margin-bottom: 0; }
.tomek-quote__close em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

/* Rozwijana pełna historia — natywne <details> */
.tomek-more {
  margin-top: 8px;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  padding-top: 24px;
}
.tomek-more summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 0;
  user-select: none;
  transition: color 0.2s var(--ease);
}
.tomek-more summary::-webkit-details-marker { display: none; }
.tomek-more summary:hover { color: var(--cream); }
/* Direct-child selectory żeby zagnieżdżony <details> nie dziedziczył stanu open
   od rodzica. Bez `>` „Zwiń pełną wersję" pokazywało się gdy zewnętrzny details
   był otwarty, mimo że wewnętrzny (pełna historia) jeszcze zamknięty. */
.tomek-more > summary > .tomek-more__close { display: none; }
.tomek-more[open] > summary > .tomek-more__open { display: none; }
.tomek-more[open] > summary > .tomek-more__close { display: inline; }
.tomek-more__icon {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s var(--ease);
}
.tomek-more[open] > summary > .tomek-more__icon {
  transform: rotate(45deg);
}

.tomek-more__content {
  padding: 24px 0 8px;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
}
.tomek-more__content p {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.86;
  margin: 0 0 16px;
}

/* Zagnieżdżony details — pełna wersja w środku skróconej */
.tomek-more.tomek-more--full {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 166, 107, 0.18);
}
.tomek-more.tomek-more--full > summary {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cream);
  opacity: 0.7;
  padding: 10px 0;
}
.tomek-more.tomek-more--full > summary:hover {
  opacity: 1;
  color: var(--gold);
}
.tomek-more.tomek-more--full > .tomek-more__content {
  padding-top: 18px;
  border-top: 1px solid rgba(250, 247, 242, 0.05);
}
.tomek-more.tomek-more--full > .tomek-more__content p {
  font-size: 14.5px;
  opacity: 0.78;
  line-height: 1.7;
}
.tomek-more__content p strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--gold);
  display: block;
  margin: 12px 0;
  letter-spacing: 0.005em;
}
.tomek-more__content p em {
  color: var(--cream);
  opacity: 1;
  font-style: italic;
}

@media (max-width: 900px) {
  .tomek-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tomek-text h2 { font-size: 28px; line-height: 1.2; }
  .tomek-quote { padding-left: 16px; }
  .tomek-quote p { font-size: 17px; line-height: 1.55; }
  .tomek-photo__caption em { font-size: 18px; }
  .tomek-more__content p { font-size: 14.5px; line-height: 1.7; }
  .tomek-more summary { font-size: 11px; letter-spacing: 0.18em; }
}

/* =============================================
   MASZ PYTANIA - sekcja Calendly
   ============================================= */
.s-talk {
  background: var(--bone);
  text-align: center;
  border-top: 1px solid rgba(42, 31, 26, 0.06);
  border-bottom: 1px solid rgba(42, 31, 26, 0.06);
}
.s-talk .container { max-width: 720px; }
.s-talk h2 {
  font-size: 40px;
  line-height: 1.15;
  margin: 14px 0 24px;
  letter-spacing: -0.02em;
}
.s-talk__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: var(--soft-ink);
  margin: 0 auto 36px;
  max-width: 620px;
}
.s-talk__note {
  margin-top: 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--soft-ink);
  opacity: 0.85;
}
.s-talk__note a {
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  transition: color 0.2s var(--ease);
}
.s-talk__note a:hover {
  color: var(--terracotta-deep);
  border-bottom-color: var(--terracotta-deep);
}
@media (max-width: 900px) {
  .s-talk h2 { font-size: 28px; line-height: 1.2; }
  .s-talk__lede { font-size: 17px; line-height: 1.55; margin-bottom: 28px; }
  .s-talk__note { font-size: 14px; }
}

/* =============================================
   KROTKIE OPINIE - 5 kart pod final CTA
   ============================================= */
.s-quotes {
  background: var(--bone);
  border-top: 1px solid rgba(42, 31, 26, 0.06);
  border-bottom: 1px solid rgba(42, 31, 26, 0.06);
}
.s-quotes__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.s-quotes__header h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
}

/* Flexbox z centrowaniem: w pierwszym rzędzie 3 karty, w drugim 2 wyśrodkowane */
.quotes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.quote-card {
  margin: 0;
  background: var(--warm-white);
  border: 1px solid rgba(42, 31, 26, 0.08);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  /* 3 w rzędzie z gap 20px: (100% - 40px) / 3 */
  flex: 0 1 calc((100% - 40px) / 3);
  min-width: 280px;
}
.quote-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.05);
}
.quote-card blockquote {
  margin: 0;
  padding: 0;
  flex: 1;
}
.quote-card blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.quote-card blockquote p::before {
  content: "„";
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0;
  color: var(--terracotta);
  margin-right: 4px;
  vertical-align: -8px;
}
.quote-card blockquote p::after {
  content: "”";
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0;
  color: var(--terracotta);
  margin-left: 4px;
  vertical-align: -8px;
}
.quote-card figcaption {
  border-top: 1px solid rgba(42, 31, 26, 0.08);
  padding-top: 12px;
}
.quote-card__name {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.quote-card blockquote p strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--terracotta-deep);
  text-transform: none;
  letter-spacing: 0.005em;
}
.s-quotes__footer {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft-ink);
  opacity: 0.7;
}

@media (max-width: 900px) {
  .s-quotes__header h2 { font-size: 26px; line-height: 1.2; }
  .quotes-grid { gap: 14px; }
  .quote-card {
    flex: 0 1 100%;
    padding: 22px 20px;
  }
  .quote-card blockquote p { font-size: 16.5px; line-height: 1.55; }
}

@media (max-width: 900px) {
  .s-method__header h2 { font-size: 28px; line-height: 1.2; }
  .s-method__header p { font-size: 16px; }
  .method-steps {
    grid-template-columns: 1fr;
    border-left: none;
    border-top: none;
  }
  .method-step {
    padding: 24px 22px;
    border-right: none;
  }
  .method-step h3 { font-size: 21px; }
  .method-truth {
    padding: 36px 26px 32px;
  }
  .method-truth h3 { font-size: 22px; line-height: 1.25; }
  .method-truth ul {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .method-truth li { font-size: 14.5px; }
  .method-truth li strong { font-size: 17px; }
  .method-format {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .method-format__item p { font-size: 17px; }
  .s-pricing-teaser__final-lead { font-size: 18px; }
  .s-pricing-teaser__final-meta { font-size: 17px; line-height: 1.65; }
  .hero__note { font-size: 15px; line-height: 1.55; }
  .pricing-card__perday { font-size: 17.5px; }
  .pricing-card__price-meta { font-size: 15px; line-height: 1.55; }
  .s-process__note { font-size: 14.5px; line-height: 1.55; }
  .s-pricing-teaser__final-start {
    font-size: 11px;
    padding: 10px 16px;
    letter-spacing: 0.14em;
  }
}
