/* ==========================================================================
   WIOLA GRELA — coaching i marketing w zgodzie ze sobą
   Design system: „miękki Bauhaus" — geometria logo (serce-W, koło, łuk, pastylka)
   Paleta i typografia wg brandbooka (wiolabrand.pdf, Poppins jako font digital)
   ========================================================================== */

:root {
  --cream: #f9f5ef;
  --sand: #e2ddd5;
  --greige: #bab3a8;
  --ink: #111111;
  --blue: #1680c1;
  --orange: #d6561e;
  --yellow: #f4b822;
  --white: #ffffff;
  /* warianty tekstowe akcentów — kontrast >=4.5:1 na kremie i bieli (WCAG AA);
     --blue/--orange zostają dla teł i dekoracji */
  --blue-text: #116da5;
  --orange-text: #b84817;

  --radius-card: 28px;
  --radius-arch: 300px 300px 28px 28px;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --shadow-soft: 0 12px 32px -20px rgba(17, 17, 17, .18);
  --shadow-lift: 0 22px 48px -26px rgba(17, 17, 17, .28);
  --line: 1px solid rgba(17, 17, 17, .06);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: 96px; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
strong { font-weight: 600; }

::selection { background: var(--yellow); color: var(--ink); }

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

.skip-link {
  position: fixed;
  top: 14px; left: 14px;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 22px;
  border-radius: 999px;
  transform: translateY(calc(-100% - 20px));
  transition: transform .3s var(--ease-out);
}
.skip-link:focus { transform: none; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Hairline — delikatna krawędź białych kart (definicja przy lżejszych cieniach) */
.offer-card, .testimonial, .client-card, .credo li, .topic, .track, .step,
.price-card:not(.featured), .post-card, .person, .stage, .quote-banner,
.fit-card.yes, .method, .post-nav-card, .author-box, .contact-phone {
  border: var(--line);
}

/* ---------- Typografia ---------- */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.display {
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
}

h2.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  max-width: 20ch;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300;
  max-width: 54ch;
}

/* Eyebrow — mały nagłówek sekcji z sygnetem-kropkami */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow .dots { display: inline-flex; gap: 4px; }
.eyebrow .dots i { width: 9px; height: 9px; border-radius: 50%; }
.eyebrow .dots i:nth-child(1) { background: var(--blue); }
.eyebrow .dots i:nth-child(2) { background: var(--orange); border-radius: 4px; }
.eyebrow .dots i:nth-child(3) { background: var(--yellow); border-radius: 50% 50% 3px 3px; }

/* Kolorowe podkreślenie w nagłówkach */
.hl {
  position: relative;
  white-space: nowrap;
}
.hl > .hl-swash {
  position: absolute;
  left: -2%;
  bottom: .08em;
  width: 104%;
  height: .3em;
  z-index: -1;
  border-radius: 999px;
  transform: skewY(-1deg);
}
.icon-svg { width: 1.2em; height: 1.2em; fill: currentColor; }
.hl-blue > .hl-swash { background: color-mix(in srgb, var(--blue) 32%, transparent); }
.hl-yellow > .hl-swash { background: color-mix(in srgb, var(--yellow) 55%, transparent); }
.hl-orange > .hl-swash { background: color-mix(in srgb, var(--orange) 30%, transparent); }

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.btn .arrow { transition: transform .35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }

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

.btn-blue { background: var(--blue); border-color: var(--blue); }
.btn-blue:hover { background: var(--ink); border-color: var(--ink); }

.btn-on-dark { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.btn-on-dark:hover { background: var(--yellow); border-color: var(--yellow); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 600;
  border-bottom: 2px solid currentColor;
  transition: color .25s, gap .3s var(--ease-out);
}
.text-link:hover { color: var(--blue-text); gap: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding-block: 18px;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(17,17,17,.07);
  padding-block: 10px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 52px;
}
.brand img { height: 100%; width: auto; }
.brand .logo-full,
.brand .logo-mark {
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.brand .logo-mark {
  position: absolute;
  left: 0;
  top: 50%;
  height: 36px;
  transform: translateY(-50%) scale(.8);
  opacity: 0;
}
.site-header.scrolled .logo-full {
  opacity: 0;
  transform: translateX(-6px) scale(.9);
  transform-origin: left center;
}
.site-header.scrolled .logo-mark {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > li { position: relative; }
.main-nav a {
  display: inline-block;
  padding: 8px 14px;
  font-size: .92rem;
  font-weight: 500;
  border-radius: 999px;
  transition: background .25s;
}
.main-nav a:hover { background: var(--sand); }
.main-nav .active > a { background: var(--ink); color: var(--cream); }

/* dropdown Warsztaty */
.has-sub > a .caret {
  display: inline-block;
  margin-left: 6px;
  font-size: .7em;
  transition: transform .25s;
}
.has-sub:hover > a .caret { transform: rotate(180deg); }
.sub-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s var(--ease-out), visibility .25s;
}
.has-sub:hover .sub-nav,
.has-sub:focus-within .sub-nav {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sub-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 500;
}
.sub-nav a:hover { background: var(--cream); }
.sub-nav a span {
  display: block;
  font-size: .78rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: 12px 26px; font-size: .88rem; }

/* burger */
.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
  z-index: 130;
}
.nav-toggle span {
  position: absolute;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--cream);
  transition: transform .35s var(--ease-out), opacity .25s, top .35s;
}
.nav-toggle span:nth-child(1) { top: 18px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(130px, 16vh, 180px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 { margin-bottom: 24px; }
.hero-copy .lead { margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  font-size: .95rem;
}
.hero-phone .ring {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.hero-phone a { font-weight: 600; font-size: 1.05rem; }
.hero-phone a:hover { color: var(--blue-text); }
.hero-phone small { display: block; font-size: .8rem; color: color-mix(in srgb, var(--ink) 70%, transparent); }

/* foto w łuku — kształt „a" z logo */
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 4 / 4.7;
  box-shadow: var(--shadow-lift);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
  transform: scale(1.06);
}

/* ---------- Strona główna 2026 ---------- */
.hero-home { min-height: min(900px, 100svh); display: grid; align-items: center; }
.hero-home .display { font-size: clamp(2.6rem, 5.2vw, 4.15rem); max-width: 13ch; }
.hero-location {
  margin-top: 28px;
  color: color-mix(in srgb, var(--ink) 66%, transparent);
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-location span { margin-inline: 8px; color: var(--orange); }
.photo-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.45;
}
.photo-caption span { color: color-mix(in srgb, var(--ink) 62%, transparent); font-weight: 400; }
.section-kicker {
  margin-bottom: 16px;
  color: var(--blue-text);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pathways { border-top: 1px solid rgba(17,17,17,.1); }
.pathways-head { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; align-items: end; }
.pathways-head .section-kicker { grid-column: 1 / -1; }
.pathways-head .lead { justify-self: end; }
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: clamp(42px, 6vw, 72px); }
.path-card {
  position: relative;
  min-height: 500px;
  padding: clamp(32px, 4vw, 56px);
  border-top: 5px solid var(--blue);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  background: color-mix(in srgb, var(--blue) 8%, var(--white));
  display: flex;
  flex-direction: column;
}
.path-card.path-marketing {
  border-color: var(--orange);
  background: color-mix(in srgb, var(--orange) 7%, var(--white));
}
.path-number {
  position: absolute;
  top: clamp(26px, 3vw, 42px);
  right: clamp(30px, 4vw, 52px);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  opacity: .45;
}
.path-label { margin-bottom: 54px; font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.path-card h3 { max-width: 18ch; margin-bottom: 22px; font-size: clamp(1.65rem, 2.7vw, 2.25rem); }
.path-card > p:not(.path-label) { max-width: 54ch; }
.path-meta {
  margin-top: auto;
  padding-top: 34px;
  font-size: .8rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--ink) 64%, transparent);
}
.path-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(17,17,17,.16);
  font-weight: 600;
}
.path-link span { font-size: 1.25rem; transition: transform .3s var(--ease-out); }
.path-link:hover span { transform: translateX(5px); }

.approach { background: var(--white); }
.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}
.approach-photo { position: relative; }
.approach-photo > img { width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover; border-radius: 26px; }
.approach-photo-note {
  position: absolute;
  right: -28px;
  bottom: 34px;
  max-width: 220px;
  padding: 16px 20px;
  border-radius: 18px;
  background: var(--yellow);
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.45;
}
.approach-copy .section-title { margin-bottom: 20px; }
.approach-list { margin-top: 38px; border-top: 1px solid var(--sand); }
.approach-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid var(--sand);
}
.approach-list li > span { color: var(--orange-text); font-size: .76rem; font-weight: 600; letter-spacing: .1em; }
.approach-list strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }
.approach-list p { font-size: .92rem; color: color-mix(in srgb, var(--ink) 72%, transparent); }

.about-home { padding-top: clamp(70px, 9vw, 120px); }
.about-signature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 30px 0 18px;
  padding-block: 18px;
  border-block: 1px solid var(--sand);
}
.about-signature span { font-size: 1.7rem; font-weight: 700; letter-spacing: -.03em; }
.about-signature p { font-size: .86rem; line-height: 1.4; color: color-mix(in srgb, var(--ink) 68%, transparent); }

.workshop-section { padding-top: clamp(20px, 4vw, 48px); }
.workshop-compact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: clamp(34px, 5vw, 62px);
}
.workshop-compact .workshop-inner { max-width: 660px; }
.workshop-compact h2 { margin-bottom: 12px; }
.workshop-compact .note { margin-top: 12px; font-size: .9rem; }
.workshop-compact .btn { position: relative; z-index: 2; flex-shrink: 0; }
.workshop-label { margin-bottom: 12px; font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.section.about-home { padding-top: clamp(70px, 9vw, 120px); }
.section.workshop-section { padding-top: clamp(20px, 4vw, 48px); }

@media (max-width: 800px) {
  .pathways-head { grid-template-columns: 1fr; }
  .pathways-head .section-kicker { grid-column: auto; }
  .pathways-head .lead { justify-self: start; margin-top: 18px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 0; }
  .workshop-compact { align-items: flex-start; flex-direction: column; gap: 28px; }
}

/* ---------- Liczniki — minimalny pasek typograficzny ---------- */
.stats { padding-block: clamp(30px, 5vw, 60px); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(17, 17, 17, .12);
}
.stat {
  padding: clamp(28px, 3.5vw, 44px) 20px;
  text-align: center;
}
.stat + .stat { border-left: 1px solid rgba(17, 17, 17, .12); }
.stat::before {
  content: "";
  display: block;
  width: 12px; height: 12px;
  margin: 0 auto 16px;
}
.stat:nth-child(1)::before { background: var(--blue); border-radius: 50%; }
.stat:nth-child(2)::before { background: var(--orange); border-radius: 4px; }
.stat:nth-child(3)::before { background: var(--yellow); border-radius: 999px 999px 3px 3px; }
.stat .num {
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat p { margin-top: 8px; font-size: .95rem; color: color-mix(in srgb, var(--ink) 72%, transparent); }

/* ---------- Sekcje ---------- */
.section { padding-block: clamp(60px, 9vw, 120px); }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .lead { margin-top: 20px; }

/* Warianty sekcji i utility (zamiast stylów inline) */
.section-tight { padding-top: 0; }
.section-flat { padding-bottom: 0; }
.section-slim { padding-top: clamp(36px, 5vw, 56px); }
.section-title.wide, .lead.wide { max-width: none; }
.mt-40 { margin-top: 40px; }
.mb-18 { margin-bottom: 18px; }
.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
/* dots na kolorowym tle (baner warsztatów itp.) */
.eyebrow .dots-contrast i:nth-child(1) { background: var(--ink); }
.eyebrow .dots-contrast i:nth-child(2) { background: var(--white); }
.eyebrow .dots-contrast i:nth-child(3) { background: var(--blue); }

/* — Zrób miejsce na to, co prawdziwe — */
.truth { position: relative; }
.truth-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.truth-photo {
  position: relative;
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow-lift);
}
.truth-photo img { width: 100%; height: 100%; object-fit: cover; }
.truth-visual { position: relative; }
.truth-copy p { max-width: 58ch; }
.truth-copy p + p { margin-top: 18px; }
.truth-copy .section-title { margin-bottom: 24px; }

/* — Banner: Podróż Bohatera — */
.workshop {
  position: relative;
  background: var(--yellow);
  border-radius: clamp(28px, 4vw, 48px);
  overflow: hidden;
  padding: clamp(40px, 6vw, 88px);
}
.workshop::before {
  content: "";
  position: absolute;
  top: -34%; right: -6%;
  width: clamp(240px, 30vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--white) 26%, transparent);
}
.workshop::after {
  content: "";
  position: absolute;
  bottom: 0; right: clamp(40px, 12vw, 160px);
  width: clamp(120px, 16vw, 220px);
  aspect-ratio: 1 / .62;
  border-radius: 999px 999px 0 0;
  background: color-mix(in srgb, var(--ink) 6%, transparent);
}
.workshop-inner { position: relative; z-index: 2; max-width: 720px; }
.workshop .eyebrow { margin-bottom: 16px; }
.workshop h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 18px; }
.workshop p { max-width: 52ch; }
.workshop p + p { margin-top: 14px; }
.workshop-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.workshop .note { font-weight: 500; }

/* — Oferta — */
/* 2+1: wyróżniona karta coachingu po lewej, dwie mniejsze po prawej */
.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.offer-card .icon {
  width: 92px; height: 92px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  transition: transform .45s var(--ease-out);
}
.offer-card:hover .icon { transform: rotate(-6deg) scale(1.06); }
.offer-card .icon img { width: 84%; mix-blend-mode: multiply; }
.offer-card:nth-child(1) .icon { background: color-mix(in srgb, var(--blue) 16%, var(--white)); }
.offer-card:nth-child(2) .icon { background: color-mix(in srgb, var(--orange) 15%, var(--white)); }
.offer-card:nth-child(3) .icon { background: color-mix(in srgb, var(--yellow) 25%, var(--white)); }
.offer-card h3 { font-size: 1.45rem; margin-bottom: 14px; }
.offer-card p { font-size: .95rem; flex-grow: 1; }
.offer-card .card-link {
  margin-top: 26px;
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
}
.offer-card .card-link .arrow { transition: transform .3s var(--ease-out); }
.offer-card:hover .card-link .arrow { transform: translateX(6px); }
.offer-card:nth-child(1) .card-link { color: var(--blue-text); }
.offer-card:nth-child(2) .card-link { color: var(--orange-text); }
.offer-card:nth-child(3) .card-link { color: color-mix(in srgb, var(--yellow) 50%, var(--ink)); }

.offer-card.featured {
  grid-row: span 2;
  background: color-mix(in srgb, var(--blue) 10%, var(--white));
  padding: clamp(32px, 3.6vw, 56px);
  justify-content: center;
}
.offer-card.featured .icon { background: var(--white); }
.offer-card.featured h3 { font-size: 1.65rem; }
.offer-card.featured p { flex-grow: 0; }

/* — Dla przedsiębiorczych (ciemna sekcja) — */
.business {
  background: var(--ink);
  color: var(--cream);
  border-radius: clamp(28px, 4vw, 48px);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.business::after {
  content: "";
  position: absolute;
  top: -140px; right: -140px;
  width: clamp(280px, 32vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--cream) 18%, transparent);
  pointer-events: none;
}
.business::before {
  content: "";
  position: absolute;
  bottom: 0; left: clamp(24px, 6vw, 80px);
  width: 88px;
  aspect-ratio: 1 / .6;
  border-radius: 999px 999px 0 0;
  background: color-mix(in srgb, var(--yellow) 24%, transparent);
  pointer-events: none;
}
.business .eyebrow .dots i:nth-child(1) { background: var(--blue); }
.business-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.business-head .lead { color: color-mix(in srgb, var(--cream) 78%, transparent); margin-top: 18px; }
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.business-card {
  background: color-mix(in srgb, var(--cream) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--cream) 14%, transparent);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 42px);
  transition: background .4s, transform .45s var(--ease-out);
}
.business-card:hover {
  background: color-mix(in srgb, var(--cream) 12%, transparent);
  transform: translateY(-6px);
}
.business-card .chip {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.business-card:nth-child(1) .chip { background: var(--blue-text); color: var(--white); }
.business-card:nth-child(2) .chip { background: var(--yellow); color: var(--ink); }
.business-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.business-card p { color: color-mix(in srgb, var(--cream) 80%, transparent); font-size: .97rem; }
.business-tagline {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
}
.business em { font-style: normal; color: var(--yellow); }

/* — O mnie — */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow-lift);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 25%; }
.about-photo-wrap .badge {
  position: absolute;
  bottom: 6%;
  right: -4%;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.35;
}
.about-photo-wrap .badge img { width: 34px; }
.about-copy .section-title { margin-bottom: 22px; }
.about-copy p { max-width: 58ch; }
.about-copy p + p { margin-top: 16px; }

.credo { margin-block: 28px; display: grid; gap: 14px; }
.credo li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 18px;
  padding: 16px 20px;
  font-size: .95rem;
  box-shadow: 0 10px 30px -18px rgba(17,17,17,.18);
}
.credo li::before {
  content: "";
  flex-shrink: 0;
  width: 14px; height: 14px;
  margin-top: 7px;
  border-radius: 50%;
}
.credo li > strong { flex: 0 0 50%; }
.credo li:nth-child(1)::before { background: var(--blue); }
.credo li:nth-child(2)::before { background: var(--orange); border-radius: 5px; }
.credo li:nth-child(3)::before { background: var(--yellow); border-radius: 999px 999px 4px 4px; }

/* — Zaufali mi — */
.clients { padding-block: clamp(40px, 6vw, 72px); }
.clients h2 {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 32px);
}
.client-card {
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 20px;
  padding: 22px 40px;
  min-width: 180px;
  min-height: 92px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.client-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.client-card img { height: 40px; width: auto; }
.client-card .client-text {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: .04em;
}

/* — Referencje — */
.testimonials { position: relative; }
.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 30px;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial {
  flex: 0 0 min(480px, 86%);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.testimonial .quote-mark {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: .6;
  margin-bottom: 20px;
}
.testimonial:nth-child(3n+1) .quote-mark { color: var(--blue); }
.testimonial:nth-child(3n+2) .quote-mark { color: var(--orange); }
.testimonial:nth-child(3n+3) .quote-mark { color: var(--yellow); }
.testimonial p { font-size: .95rem; line-height: 1.75; flex-grow: 1; }
.testimonial footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.testimonial footer::before {
  content: "";
  width: 26px; height: 3px;
  border-radius: 999px;
  background: var(--ink);
}
.testimonial:nth-child(3n+1) footer::before { background: var(--blue); }
.testimonial:nth-child(3n+2) footer::before { background: var(--orange); }
.testimonial:nth-child(3n+3) footer::before { background: var(--yellow); }
.testimonial footer strong { font-weight: 600; }
.testimonial footer span { font-size: .78rem; color: color-mix(in srgb, var(--ink) 62%, transparent); }
.testimonial-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 6px;
}
.testimonial-nav button {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: background .3s, color .3s, transform .3s;
}
.testimonial-nav button:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

/* — Kontakt — */
.contact { position: relative; }
.contact-card {
  background: var(--sand);
  border-radius: clamp(28px, 4vw, 48px);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  left: -110px; bottom: -140px;
  width: clamp(260px, 26vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--white) 55%, transparent);
}
.contact-info { position: relative; z-index: 2; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-info p + p { margin-top: 14px; }
.contact-info .muted { font-size: .92rem; color: color-mix(in srgb, var(--ink) 75%, transparent); }
.contact-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  background: var(--white);
  border-radius: 22px;
  padding: 18px 24px;
  width: fit-content;
  box-shadow: var(--shadow-soft);
}
.contact-phone .ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.contact-phone strong { display: block; font-size: 1.25rem; letter-spacing: .02em; }
.contact-phone a { display: inline-flex; align-items: center; min-height: 44px; }
.contact-phone small { color: color-mix(in srgb, var(--ink) 72%, transparent); }

/* formularz */
.contact-form { position: relative; z-index: 2; display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  font: inherit;
  font-size: .95rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 16px 20px;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 15%, transparent);
}
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--ink) 64%, var(--white)); }
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .78rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--ink) 82%, transparent);
}
.consent input {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--blue);
  flex-shrink: 0;
}
.consent a { text-decoration: underline; text-underline-offset: 2px; }
.contact-form .btn { justify-self: start; margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  margin-top: clamp(36px, 5vw, 64px);
  padding: clamp(32px, 3.5vw, 44px) 0 18px;
  position: relative;
  overflow: hidden;
}
.footer-shapes {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  display: flex;
}
.footer-shapes i { flex: 1; }
.footer-shapes i:nth-child(1) { background: var(--blue); }
.footer-shapes i:nth-child(2) { background: var(--orange); }
.footer-shapes i:nth-child(3) { background: var(--yellow); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) auto minmax(250px, .85fr);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  margin-bottom: 26px;
}
.footer-brand { display: flex; align-items: center; gap: 20px; min-width: 0; }
.footer-brand img { height: 42px; width: auto; margin: 0; flex-shrink: 0; }
.footer-brand p {
  font-size: .82rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--cream) 62%, transparent);
  max-width: 29ch;
}
.site-footer h4 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px clamp(14px, 1.7vw, 24px);
  font-size: .84rem;
}
.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: color-mix(in srgb, var(--cream) 74%, transparent);
  transition: color .25s;
}
.footer-nav a:hover { color: var(--yellow); }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px clamp(14px, 1.7vw, 24px);
  font-size: .84rem;
  color: color-mix(in srgb, var(--cream) 74%, transparent);
}
.footer-contact a { display: inline-flex; align-items: center; min-height: 40px; }
.footer-contact a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--cream) 14%, transparent);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px 20px;
  flex-wrap: wrap;
  font-size: .74rem;
  color: color-mix(in srgb, var(--cream) 48%, transparent);
}
.footer-bottom a:hover { color: var(--yellow); }
.footer-bottom a { display: inline-flex; align-items: center; min-height: 36px; }

/* ==========================================================================
   KOMPONENTY PODSTRON
   ========================================================================== */

/* --- Hero podstrony --- */
.page-hero {
  padding-top: clamp(130px, 16vh, 180px);
  padding-bottom: clamp(52px, 7vw, 92px);
  border-bottom: 1px solid rgba(17,17,17,.1);
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2.55rem, 5.4vw, 4.25rem); margin-bottom: 24px; max-width: 14ch; }
.page-hero .lead { margin-bottom: 28px; }
.page-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.breadcrumb {
  font-size: .8rem;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  margin-bottom: 26px;
}
.breadcrumb a:hover { color: var(--blue-text); }
.breadcrumb span { margin-inline: 6px; }

/* hero podstrony z fotografią */
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.page-hero-grid .photo-arch { max-width: 440px; justify-self: end; }
.page-context {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 30px;
  padding-block: 16px;
  border-block: 1px solid var(--sand);
  color: color-mix(in srgb, var(--ink) 68%, transparent);
  font-size: .82rem;
  font-weight: 500;
}
.page-context span { display: inline-flex; align-items: center; gap: 8px; }
.page-context span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.page-context span:nth-child(2)::before { background: var(--orange); border-radius: 3px; }
.page-context span:nth-child(3)::before { background: var(--yellow); border-radius: 999px 999px 2px 2px; }

/* --- Zdjęcie w łuku (uniwersalne) --- */
.photo-arch {
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: var(--shadow-lift);
  width: 100%;
}
.photo-arch img { width: 100%; height: 100%; object-fit: cover; }

/* --- Grid 2 kolumny (treść + zdjęcie) --- */
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.grid-2 > .col-copy .section-title { margin-bottom: 22px; }
.grid-2 > .col-copy p + p { margin-top: 16px; }

/* --- Definicja: jest / nie jest --- */
.isnt-is { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.def-card {
  border-radius: var(--radius-card);
  padding: clamp(24px, 2.6vw, 36px);
  font-size: .95rem;
}
.def-card.negative { background: var(--sand); }
.def-card.positive { background: var(--ink); color: var(--cream); }
.def-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.def-card.positive h4 { color: var(--yellow); }

/* --- Lista tematów (z czym przychodzą klienci) --- */
.topics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.topic {
  background: transparent;
  border: 0;
  border-top: 4px solid var(--blue);
  border-radius: 0;
  padding: clamp(24px, 2.6vw, 32px) 0 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
/* marker w kształtach logo (koło / pastylka / łuk) zamiast paska bocznego */
.topic::before { display: none; }
.topic:nth-child(3n+2) { border-top-color: var(--orange); }
.topic:nth-child(3n+3) { border-top-color: var(--yellow); }
.topic h3 { font-size: 1.1rem; margin-bottom: 8px; }
.topic p { font-size: .92rem; }

/* --- Dwie ścieżki (life/business) --- */
.tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.track {
  background: transparent;
  border: 0;
  border-top: 4px solid var(--blue);
  border-radius: 0;
  padding: clamp(28px, 3vw, 36px) 0 0;
  box-shadow: none;
}
.track:nth-child(2) { border-top-color: var(--orange); }
.track .chip {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: var(--sand);
}
.track:nth-child(1) .chip { background: color-mix(in srgb, var(--blue) 16%, var(--white)); color: var(--blue-text); }
.track:nth-child(2) .chip { background: color-mix(in srgb, var(--orange) 14%, var(--white)); color: var(--orange-text); }
.track h3 { font-size: 1.35rem; margin-bottom: 12px; }
.track p { font-size: .95rem; }

/* --- Checklisty: dla Ciebie / nie dla Ciebie --- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit-card {
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 42px);
}
.fit-card.yes { background: var(--white); box-shadow: var(--shadow-soft); }
.fit-card.no { background: var(--sand); }
.fit-card h3 { font-size: 1.25rem; margin-bottom: 20px; }
.fit-card ul { display: grid; gap: 14px; }
.fit-card li { display: flex; gap: 12px; font-size: .95rem; align-items: flex-start; }
.fit-card li .mark {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .7rem;
  font-weight: 700;
  margin-top: 2px;
}
.fit-card.yes li .mark { background: color-mix(in srgb, var(--blue) 15%, var(--white)); color: var(--blue-text); }
.fit-card.no li .mark { background: color-mix(in srgb, var(--orange) 16%, var(--white)); color: var(--orange-text); }
.fit-note {
  margin-top: 20px;
  font-weight: 500;
  font-size: .95rem;
}

/* --- Kroki procesu (sesja / współpraca) --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: transparent;
  border: 0;
  border-top: 4px solid var(--blue);
  border-radius: 0;
  padding: clamp(26px, 3vw, 34px) 0 0;
  box-shadow: none;
  position: relative;
}
.step:nth-child(2) { border-top-color: var(--orange); }
.step:nth-child(3) { border-top-color: var(--yellow); }
.step .step-num {
  width: auto; height: auto;
  border-radius: 0;
  display: block;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  margin-bottom: 32px;
}
.step:nth-child(1) .step-num { background: transparent; color: var(--blue-text); }
.step:nth-child(2) .step-num { background: transparent; color: var(--orange-text); }
.step:nth-child(3) .step-num { background: transparent; color: color-mix(in srgb, var(--yellow) 55%, var(--ink)); }
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { font-size: .92rem; }
.step .step-q {
  margin-top: 18px;
  font-weight: 600;
  font-size: .92rem;
  font-style: italic;
}
.step:nth-child(1) .step-q { color: var(--blue-text); }
.step:nth-child(2) .step-q { color: var(--orange-text); }
.step:nth-child(3) .step-q { color: color-mix(in srgb, var(--yellow) 50%, var(--ink)); }

/* --- Cennik --- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 42px);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-8px);
}
.price-card .plan-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--ink) 68%, transparent);
}
.price-card.featured .plan-label { color: var(--yellow); }
.price-card .price {
  font-size: clamp(2.2rem, 3.2vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-card .per { font-size: .95rem; font-weight: 400; margin-bottom: 18px; margin-top: 6px; color: color-mix(in srgb, currentColor 65%, transparent); }
.price-card p.desc { font-size: .92rem; flex-grow: 1; }
.price-card .btn { margin-top: 24px; justify-content: center; }
.pricing-note { text-align: center; margin-top: 28px; font-size: .95rem; }

/* --- Wyróżniony cytat --- */
.quote-banner {
  background: transparent;
  border: 0;
  border-block: 1px solid var(--sand);
  border-radius: 0;
  padding: clamp(32px, 4vw, 52px) 0;
  box-shadow: none;
  max-width: 880px;
  margin-inline: auto;
  text-align: left;
}
.quote-banner .quote-mark { font-size: 3rem; font-weight: 700; line-height: .7; color: var(--yellow); }
.quote-banner p { font-size: clamp(1rem, 1.5vw, 1.15rem); margin-top: 14px; }
.quote-banner footer { margin-top: 20px; font-weight: 600; }
.quote-banner footer::before { content: "— "; }

/* --- Etapy Podróży Bohatera --- */
.stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stage {
  background: transparent;
  border: 0;
  border-top: 4px solid var(--blue);
  border-radius: 0;
  padding: clamp(24px, 2.4vw, 30px) 0 0;
  box-shadow: none;
  text-align: left;
}
.stage:nth-child(2) { border-top-color: var(--orange); }
.stage:nth-child(3) { border-top-color: var(--yellow); }
.stage:nth-child(4) { border-top-color: var(--ink); }
.stage .stage-ico {
  width: auto; height: auto;
  margin: 0 0 28px;
  border-radius: 0;
  display: block;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
}
.stage:nth-child(1) .stage-ico { background: transparent; color: var(--blue-text); }
.stage:nth-child(2) .stage-ico { background: transparent; color: var(--orange-text); }
.stage:nth-child(3) .stage-ico { background: transparent; color: color-mix(in srgb, var(--yellow) 55%, var(--ink)); }
.stage:nth-child(4) .stage-ico { background: transparent; color: var(--ink); }
.stage h3 { font-size: 1.1rem; margin-bottom: 8px; }
.stage p { font-size: .88rem; }

/* --- Prowadzące / osoby --- */
.people { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.person {
  background: transparent;
  border: 0;
  border-top: 4px solid var(--orange);
  border-radius: 0;
  padding: clamp(28px, 3vw, 36px) 0 0;
  box-shadow: none;
}
.person:nth-child(2) { border-top-color: var(--blue); }
.person .role {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.person:nth-child(1) .role { color: var(--orange-text); }
.person:nth-child(2) .role { color: var(--blue-text); }
.person h3 { font-size: 1.3rem; margin-bottom: 12px; }
.person p { font-size: .93rem; }

/* --- Podróż Bohatera: skrócona ścieżka oferty --- */
.workshop-outcome { max-width: none; }
.workshop-outcome .eyebrow { margin: 0 0 10px; }
.workshop-outcome p:last-child { max-width: 68ch; font-size: clamp(1.15rem, 1.8vw, 1.42rem); line-height: 1.5; }
.workshop-audience { padding-block: clamp(64px, 6vw, 78px); }
.workshop-process,
.workshop-details,
.workshop-speakers,
.workshop-contact { padding-block: clamp(56px, 4.5vw, 68px); }
.workshop-process { background: var(--white); border-block: var(--line); }
.workshop-disclaimer {
  max-width: 76ch;
  margin-top: clamp(34px, 5vw, 52px);
  padding-top: 18px;
  border-top: var(--line);
  font-size: .88rem;
  color: color-mix(in srgb, var(--ink) 68%, transparent);
}
.workshop-details { background: var(--sand); }
.workshop-details .grid-2 { align-items: start; }
.workshop-facts { border-top: 1px solid color-mix(in srgb, var(--ink) 22%, transparent); }
.workshop-facts > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
}
.workshop-facts > div > span { font-size: .76rem; font-weight: 700; color: var(--orange-text); letter-spacing: .08em; }
.workshop-facts p { margin: 0; font-size: .92rem; }
.workshop-facts strong { display: block; margin-bottom: 3px; }
.workshop-facts .text-link { margin-top: 22px; }
.workshop-speakers { background: var(--cream); }
.workshop-contact { background: var(--white); border-top: var(--line); }
.workshop-contact .contact-card {
  border-radius: 2px;
  box-shadow: none;
  border-block: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}
.workshop-contact .contact-card::before { display: none; }

/* --- Wspólny rytm uproszczonych podstron --- */
.flow-page > .flow-section { padding-block: clamp(64px, 5vw, 80px); }
.flow-section--white { background: var(--white); border-block: var(--line); }
.flow-section--sand { background: var(--sand); }
.flow-contact { background: var(--white); border-top: var(--line); }
.flow-contact .contact-card {
  border-radius: 2px;
  box-shadow: none;
  border-block: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}
.flow-contact .contact-card::before { display: none; }
.partner-note {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: 24px;
  border-top: var(--line);
}
.partner-note img { width: auto; height: 30px; flex-shrink: 0; }
.partner-note p { margin: 0; max-width: 62ch; font-size: .92rem; }
.host-section .cta-banner {
  background: transparent !important;
  padding: 0;
  border-radius: 0;
}
.contact-page .contact-card,
.blog-page .cta-banner,
article .cta-banner { border-radius: 2px; box-shadow: none; }
.contact-page .contact-card::before { display: none; }

/* --- Baner CTA (żółty, uniwersalny) --- */
.cta-banner {
  background: var(--yellow);
  border-radius: clamp(28px, 4vw, 48px);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.cta-banner p { max-width: 60ch; margin-inline: auto; }
.cta-banner .btn { margin-top: 26px; }

/* --- Blog: karty wpisów --- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(34px, 4vw, 56px) 28px; }
.post-card {
  background: transparent;
  border-top: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s var(--ease-out);
}
.post-card:hover { border-color: var(--blue); }
.post-card .thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--sand);
  display: block;
  border-radius: 2px;
}
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.post-card .thumb.thumb-contain img {
  object-fit: contain;
  padding: 18px;
  mix-blend-mode: multiply;
}
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: 20px 0 0; display: flex; flex-direction: column; flex-grow: 1; }
.post-card .meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.post-card .cat {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
}
.cat-coaching { background: transparent; color: var(--blue-text); }
.cat-marketing { background: transparent; color: var(--orange-text); }
.post-card .date { font-size: .78rem; color: color-mix(in srgb, var(--ink) 68%, transparent); }
.post-card h3 { font-size: clamp(1.15rem, 1.7vw, 1.35rem); line-height: 1.25; margin-bottom: 12px; }
.post-card h3 a:hover { color: var(--blue-text); }
.post-card p {
  font-size: .9rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card .card-link {
  margin-top: 18px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--blue-text);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.post-card--featured { grid-column: span 2; }
.post-card--featured .thumb { aspect-ratio: 16/7.5; }
.post-card--featured h3 { font-size: clamp(1.55rem, 2.4vw, 2rem); max-width: 24ch; }
.post-card--featured p { max-width: 62ch; }
.blog-hero h1 { max-width: 22ch; }
.blog-hero .lead { max-width: 64ch; }

/* --- Artykuł bloga --- */
.article-hero { max-width: 900px; margin-inline: auto; text-align: left; }
.article-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 26px; max-width: 20ch; }
.article-hero .meta { display: flex; gap: 12px; justify-content: flex-start; align-items: center; flex-wrap: wrap; }
.article-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .9rem;
  color: color-mix(in srgb, var(--ink) 75%, transparent);
}
.article-meta .ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 30% 20%;
  box-shadow: var(--shadow-soft);
}
.article-meta strong { color: var(--ink); font-weight: 600; }
.article-meta i { font-style: normal; opacity: .5; }
.article-cover {
  max-width: 900px;
  margin: clamp(32px, 5vw, 56px) auto 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: none;
}
.article-cover img { width: 100%; max-height: 440px; object-fit: cover; display: block; }
.article-cover.cover-contain {
  background: var(--sand);
  box-shadow: none;
  border: 1px solid color-mix(in srgb, var(--ink) 6%, transparent);
}
.article-cover.cover-contain img {
  object-fit: contain;
  max-height: 340px;
  padding: clamp(24px, 4vw, 48px);
  mix-blend-mode: multiply;
}
.prose {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.02rem;
}
.prose > p:first-of-type {
  font-size: clamp(1.1rem, 1.6vw, 1.22rem);
  font-weight: 300;
  line-height: 1.65;
}
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 44px 0 16px; }
.prose h2::before {
  content: "";
  display: block;
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow);
  margin-bottom: 14px;
}
.prose h3 { font-size: 1.2rem; margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  background: var(--white);
  border-radius: 18px;
  padding: 22px 26px;
  margin: 26px 0;
  font-weight: 500;
}
.prose blockquote::before {
  content: "";
  display: block;
  width: 34px;
  height: 19px;
  border-radius: 999px 999px 0 0;
  background: var(--yellow);
  margin-bottom: 12px;
}
.prose .callout {
  background: var(--white);
  border-radius: 18px;
  padding: 22px 26px;
  margin: 26px 0;
  box-shadow: var(--shadow-soft);
  font-weight: 500;
}
/* box autorki pod artykułem */
.author-box {
  max-width: 720px;
  margin: clamp(40px, 6vw, 64px) auto 0;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  gap: 24px;
  align-items: center;
}
.author-box img {
  width: 96px; height: 96px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: 30% 20%;
}
.author-box .a-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-text);
}
.author-box h3 { font-size: 1.25rem; margin: 4px 0 8px; }
.author-box p { font-size: .92rem; margin-bottom: 10px; }
.author-box a.more {
  font-weight: 600;
  font-size: .92rem;
  color: var(--blue-text);
}
.author-box a.more:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .author-box { flex-direction: column; text-align: center; }
}

/* nawigacja poprzedni / następny */
.post-nav {
  max-width: 720px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.post-nav-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
  display: block;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.post-nav-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.post-nav-card small {
  display: block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 68%, transparent);
  margin-bottom: 8px;
}
.post-nav-card span {
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-nav-card.next { text-align: right; }
.post-nav-card.placeholder { visibility: hidden; }
@media (max-width: 560px) {
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-card.next { text-align: left; }
}

.article-footer {
  max-width: 720px;
  margin: 32px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--sand);
  padding-top: 28px;
}

/* --- Strona kontakt --- */
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.contact-methods { display: grid; gap: 16px; margin-top: 32px; }
.contact-methods--row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(28px, 4vw, 48px);
}
.contact-methods--row .method { align-items: flex-start; }
@media (max-width: 1024px) {
  .contact-methods--row { grid-template-columns: 1fr; }
}
.method {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border-radius: 22px;
  padding: 20px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease-out);
}
.method:hover { transform: translateY(-3px); }
.method .ring {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
}
.method:nth-child(1) .ring { background: color-mix(in srgb, var(--blue) 15%, var(--white)); color: var(--blue-text); }
.method:nth-child(2) .ring { background: color-mix(in srgb, var(--orange) 15%, var(--white)); color: var(--orange-text); }
.method:nth-child(3) .ring { background: color-mix(in srgb, var(--yellow) 26%, var(--white)); color: color-mix(in srgb, var(--yellow) 50%, var(--ink)); }
.method small { display: block; font-size: .78rem; color: color-mix(in srgb, var(--ink) 70%, transparent); }
.method strong { font-size: 1.05rem; }
.method a:hover { color: var(--blue-text); }

/* --- Polityka prywatności / tekst prawny --- */
.legal { max-width: 780px; margin-inline: auto; }
.legal p, .legal li { font-size: .96rem; margin-bottom: 12px; }
.legal ul { margin: 0 0 18px; }
.legal ul li { position: relative; padding-left: 24px; }
.legal ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: .55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.legal ul li:nth-child(3n+2)::before { background: var(--orange); border-radius: 3px; }
.legal ul li:nth-child(3n)::before { background: var(--yellow); border-radius: 50% 50% 2px 2px; }

/* nagłówek sekcji z numerem w kole */
.legal h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.25rem, 2.1vw, 1.5rem);
  margin: clamp(42px, 6vw, 58px) 0 16px;
  scroll-margin-top: 110px;
}
.legal h2 .num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 2px;
  font-size: .85rem;
  background: var(--ink);
  color: var(--cream);
}
.legal h2 .num.n-blue { background: var(--blue); color: var(--white); }
.legal h2 .num.n-orange { background: var(--orange); color: var(--white); }
.legal h2 .num.n-yellow { background: var(--yellow); color: var(--ink); }

/* karta „najważniejsze w skrócie" */
.legal-summary {
  background: transparent;
  border-block: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  padding: clamp(24px, 3.5vw, 34px) 0;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.legal-summary .eyebrow { margin-bottom: 16px; }
.legal-summary ul { margin-bottom: 0; }
.legal-summary li:last-child { margin-bottom: 0; }

/* spis treści — pastylki */
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.legal-toc a {
  font-size: .82rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  transition: background .25s var(--ease-out), color .25s var(--ease-out);
}
.legal-toc a:hover { color: var(--blue-text); border-color: var(--blue); }

/* karta administratora danych */
.legal-admin {
  background: var(--sand);
  border-radius: var(--radius-card);
  padding: clamp(22px, 3vw, 32px);
  margin: 20px 0 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}
.legal-admin span {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
  margin-bottom: 2px;
}
.legal-admin strong { font-weight: 500; font-size: .95rem; }
.legal-admin a:hover { color: var(--blue); }

/* karty celów przetwarzania */
.legal-purpose {
  background: transparent;
  border-top: var(--line);
  border-radius: 0;
  padding: 20px 0;
  margin-bottom: 12px;
}
.legal-purpose h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.legal-purpose .letter {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: .78rem;
  background: color-mix(in srgb, var(--blue) 14%, var(--white));
  color: var(--blue);
}
.legal-purpose .letter.l-orange { background: color-mix(in srgb, var(--orange) 13%, var(--white)); color: var(--orange); }
.legal-purpose .letter.l-yellow { background: color-mix(in srgb, var(--yellow) 26%, var(--white)); color: color-mix(in srgb, var(--yellow) 55%, var(--ink)); }
.legal-purpose .letter.l-ink { background: color-mix(in srgb, var(--ink) 9%, var(--white)); color: var(--ink); }
.legal-purpose p { font-size: .92rem; margin-bottom: 0; }
.legal-purpose .basis {
  font-size: .84rem;
  margin-top: 6px;
  color: color-mix(in srgb, var(--ink) 60%, transparent);
}

/* karty rodzajów cookies */
.cookie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.cookie-card {
  background: transparent;
  border-top: 3px solid var(--ink);
  border-radius: 0;
  padding: 18px 0;
}
.cookie-card .chip {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.cookie-card:nth-child(1) .chip { background: var(--blue); color: var(--white); }
.cookie-card:nth-child(2) .chip { background: var(--orange); color: var(--white); }
.cookie-card:nth-child(3) .chip { background: var(--yellow); color: var(--ink); }
.cookie-card p { font-size: .88rem; margin: 0; }
.cookie-card small {
  display: block;
  margin-top: 10px;
  font-size: .76rem;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

/* przerywnik części „Polityka cookies" */
.legal-divider {
  text-align: center;
  border-top: var(--line);
  margin-top: clamp(56px, 8vw, 80px);
  padding-top: clamp(40px, 6vw, 56px);
}
.legal-divider .eyebrow { margin-bottom: 12px; }
.legal-divider h2 {
  justify-content: center;
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
}

/* wyróżniona wstawka kontaktowa */
.legal .callout {
  background: color-mix(in srgb, var(--blue) 9%, var(--white));
  border-radius: 18px;
  padding: 18px 24px;
  font-weight: 500;
  margin: 20px 0;
}
.legal .callout a { color: var(--blue); font-weight: 600; }
.legal .callout a:hover { text-decoration: underline; }

.legal-date {
  display: inline-block;
  font-size: .8rem;
  font-weight: 500;
  background: var(--sand);
  border-radius: 999px;
  padding: 7px 18px;
  margin-top: 16px;
}

@media (max-width: 700px) {
  .cookie-grid { grid-template-columns: 1fr; }
  .legal-admin { grid-template-columns: 1fr; }
}

/* --- Mapa dojazdu (opcjonalna ramka) --- */
.map-frame {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: none;
  border: var(--line);
  aspect-ratio: 16/8;
  background: var(--sand);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --- Status wysyłki formularza --- */
.form-status {
  display: none;
  background: color-mix(in srgb, var(--blue) 12%, var(--white));
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 20px;
  font-size: .92rem;
  font-weight: 500;
}
.form-status.show { display: block; }

/* --- Responsywność podstron --- */
@media (max-width: 1024px) {
  .page-hero-grid, .grid-2, .contact-hero-grid { grid-template-columns: 1fr; }
  .page-hero-grid .photo-arch { justify-self: start; max-width: 420px; }
  .topics, .steps, .pricing, .post-grid { grid-template-columns: 1fr 1fr; }
  .stages { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .post-card--featured { grid-column: span 2; }
}
@media (max-width: 680px) {
  .topics, .steps, .pricing, .post-grid, .stages,
  .isnt-is, .tracks, .fit-grid, .people { grid-template-columns: 1fr; }
  .post-card--featured { grid-column: auto; }
  .post-card--featured .thumb { aspect-ratio: 16/9; }
}

/* ---------- Scroll reveal ----------
   Ukrywanie tylko pod html.js (klasa dodawana inline w <head>) —
   bez JS treść jest w pełni widoczna. */
html.js .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.reveal.d1, .reveal.d2, .reveal.d3 { transition-delay: 0s; }

/* Pastylka-podkreślenie rysuje się przy wejściu sekcji w viewport */
html.js .hl > .hl-swash {
  transform: scaleX(0) skewY(-1deg);
  transform-origin: 0 70%;
  transition: transform .7s var(--ease-out) .5s;
}
html.js .reveal.in .hl-swash,
html.js .in .hl-swash { transform: scaleX(1) skewY(-1deg); }

/* ---------- Mobile ---------- */
@media (max-width: 1024px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }

  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  body.nav-open .brand { opacity: 0; }
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: var(--ink);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--gutter);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
  }
  body.nav-open .mobile-nav { opacity: 1; visibility: visible; }
  .mobile-nav a {
    display: block;
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    font-weight: 600;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .25s;
  }
  body.nav-open .mobile-nav a { opacity: 1; transform: none; }
  .mobile-nav a:hover { color: var(--yellow); }
  .mobile-nav .mobile-nav-brand {
    position: absolute;
    top: 18px;
    left: var(--gutter);
    width: 70px;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 0;
  }
  .mobile-nav-brand img { width: 64px; height: auto; }
  .mobile-nav-brand:focus-visible { outline: 2px solid var(--yellow); outline-offset: 5px; }
  .mobile-nav .sub { font-size: 1.1rem; font-weight: 400; padding-left: 20px; color: color-mix(in srgb, var(--cream) 70%, transparent); }
  .mobile-nav .mn-phone { margin-top: 30px; font-size: 1.1rem; font-weight: 500; color: var(--yellow); }

  .hero-grid, .truth-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-home { min-height: auto; }
  .hero-visual { max-width: 480px; margin-inline: auto; }
  .truth-visual { order: -1; max-width: 440px; margin-inline: auto; }
  .about-photo-wrap { max-width: 420px; margin-inline: auto; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card.featured { grid-row: auto; }
  .business-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-photo { max-width: 520px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-nav { justify-content: flex-start; }
  .footer-contact { justify-content: flex-end; }
}
@media (min-width: 1025px) {
  .mobile-nav { display: none; }
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid rgba(17, 17, 17, .12); }
  .site-footer { margin-top: 36px; padding-top: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 22px; }
  .footer-brand { grid-column: auto; gap: 16px; }
  .footer-brand img { height: 38px; }
  .footer-brand p { font-size: .78rem; max-width: 27ch; }
  .footer-grid > nav { order: 3; }
  .footer-grid > div:last-child { order: 2; }
  .footer-nav, .footer-contact { justify-content: flex-start; }
  .footer-nav { gap: 2px 22px; }
  .footer-contact { gap: 2px 18px; }
  .footer-bottom { align-items: flex-start; font-size: .7rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .hero-photo { aspect-ratio: 4/4.4; }
  .hero-home { padding-bottom: 46px; }
  .hero-home .display { max-width: 12ch; font-size: clamp(2.25rem, 11vw, 3rem); }
  .hero-home .hero-copy .lead { margin-bottom: 24px; }
  .hero-home .hero-actions { align-items: center; }
  .hero-home .btn { padding-inline: 24px; }
  .hero-location { margin-top: 22px; }
  .photo-caption { display: block; margin-top: 10px; }
  .photo-caption span { display: none; }
  .hero-home .hero-photo { aspect-ratio: 4/3.25; }
  .section { padding-block: 64px; }
  .pathways-head { grid-template-columns: 1fr; }
  .pathways-head .section-kicker { grid-column: auto; }
  .pathways-head .lead { justify-self: start; margin-top: 18px; }
  .path-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .path-card { min-height: 0; padding: 28px 26px 30px; }
  .path-label { margin-bottom: 38px; }
  .path-card h3 { font-size: 1.65rem; }
  .path-meta { margin-top: 34px; }
  .approach-grid { gap: 42px; }
  .approach-photo { display: none; }
  .approach-list { margin-top: 28px; }
  .about-home { padding-top: 64px; }
  .about-home .about-copy { order: -1; }
  .workshop-compact { align-items: flex-start; flex-direction: column; gap: 26px; }
  .workshop-hero .photo-arch { display: none; }
  .partner-note { align-items: flex-start; flex-direction: column; gap: 16px; }

  /* Mobilny rytm: krócej, ale bez ściskania treści wymagających skupienia */
  .section,
  .flow-page > .flow-section { padding-block: 52px; }
  .section-head { margin-bottom: 30px; }
  .section-head .lead { margin-top: 14px; }
  .section-kicker { margin-bottom: 12px; }

  .page-hero { padding-top: 108px; padding-bottom: 44px; }
  .page-hero-grid { gap: 28px; }
  .page-hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 2.8rem);
    line-height: 1.04;
    margin-bottom: 18px;
  }
  .page-hero .lead { margin-bottom: 20px; }
  .breadcrumb { margin-bottom: 18px; }
  .page-hero .eyebrow { margin-bottom: 14px; }
  .page-context { margin: 20px 0; padding-block: 12px; gap: 8px 18px; }
  .page-hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .page-hero .hero-actions > :only-child { grid-column: 1 / -1; }
  .page-hero .hero-actions .btn { justify-content: center; padding-inline: 14px; text-align: center; }
  .page-hero-grid .photo-arch {
    max-width: none;
    aspect-ratio: 16 / 10;
    border-radius: 120px 120px 2px 2px;
  }
  .page-hero-grid .photo-arch img { object-position: center 30%; }

  .flow-page .grid-2 { gap: 30px; }
  .flow-page .grid-2 .photo-arch {
    max-width: none !important;
    aspect-ratio: 16 / 10;
    border-radius: 90px 90px 2px 2px;
  }
  .flow-page .grid-2 .photo-arch img { object-position: center 28%; }

  .path-grid { margin-top: 30px; gap: 16px; }
  .path-card { padding: 24px 22px 22px; }
  .path-label { margin-bottom: 22px; }
  .path-card h3 { margin-bottom: 14px; font-size: 1.5rem; }
  .path-meta { padding-top: 22px; }
  .path-link { min-height: 46px; margin-top: 12px; padding-top: 12px; }
  .approach-list li { grid-template-columns: 34px 1fr; gap: 12px; padding-block: 16px; }
  .about-home .about-photo { aspect-ratio: 16 / 9; border-radius: 90px 90px 2px 2px; }
  .about-home .about-photo-wrap .badge { display: none; }
  .about-signature { margin: 22px 0 14px; padding-block: 14px; }
  .workshop-compact { padding: 28px 24px; gap: 20px; }
  .clients { padding-block: 34px; }
  .clients h2 { margin-bottom: 24px; }
  .client-card { min-width: 0; min-height: 72px; padding: 16px 18px; }
  .client-card img { height: 32px; max-width: 100%; }
  .testimonials .testimonial-track { gap: 14px; padding-bottom: 20px; }
  .testimonial { flex-basis: 88%; padding: 22px; }
  .testimonial .quote-mark { margin-bottom: 12px; }
  .testimonial p { line-height: 1.62; }
  .testimonial footer { margin-top: 16px; }
  .testimonial-nav button { width: 46px; height: 46px; }

  .topics, .tracks, .steps, .pricing, .stages, .people { gap: 16px; }
  .topic { padding-top: 18px; }
  .track { padding-top: 20px; }
  .track .chip { margin-bottom: 12px; }
  .step {
    --step-color: var(--blue);
    --step-ink: var(--blue-text);
    --step-soft: color-mix(in srgb, var(--blue) 10%, var(--white));
    --step-num-text: var(--white);
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 12px;
    padding: 18px 18px 18px 16px;
    border: 1px solid color-mix(in srgb, var(--ink) 11%, transparent);
    border-left: 4px solid var(--step-color);
    border-radius: 16px;
    background: color-mix(in srgb, var(--step-color) 3%, var(--white));
  }
  .step:nth-child(2) {
    --step-color: var(--orange);
    --step-ink: var(--orange-text);
    --step-soft: color-mix(in srgb, var(--orange) 10%, var(--white));
  }
  .step:nth-child(3) {
    --step-color: var(--yellow);
    --step-ink: color-mix(in srgb, var(--yellow) 50%, var(--ink));
    --step-soft: color-mix(in srgb, var(--yellow) 18%, var(--white));
    --step-num-text: var(--ink);
  }
  .step .step-num {
    grid-column: 1;
    grid-row: 1;
    width: 36px;
    height: 36px;
    margin: 0;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--step-color);
    color: var(--step-num-text);
    font-size: .72rem;
    letter-spacing: .08em;
  }
  .step:nth-child(1) .step-num,
  .step:nth-child(2) .step-num,
  .step:nth-child(3) .step-num {
    background: var(--step-color);
    color: var(--step-num-text);
  }
  .step h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: 1.1rem;
  }
  .step > p:not(.step-q) {
    grid-column: 1 / -1;
    margin: 0;
    font-size: .9rem;
    line-height: 1.58;
  }
  .step .step-q {
    grid-column: 1 / -1;
    margin: 0;
    padding: 11px 13px;
    border-radius: 11px;
    background: var(--step-soft);
    color: var(--ink);
    font-size: .86rem;
    font-style: normal;
    line-height: 1.45;
  }
  .step .step-q::before {
    content: "Pytanie do refleksji";
    display: block;
    margin-bottom: 3px;
    color: var(--step-ink);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
  }
  .quote-banner { padding-block: 24px; }
  .quote-banner .quote-mark { font-size: 2.5rem; }
  .quote-banner footer { margin-top: 14px; }
  .partner-note { margin-top: 30px; padding-top: 18px; }

  .pricing { gap: 14px; }
  .price-card { padding: 22px; border-radius: 18px; }
  .price-card .plan-label { margin-bottom: 10px; }
  .price-card .price { font-size: 2.05rem; }
  .price-card .per { margin: 4px 0 12px; }
  .price-card p.desc { font-size: .88rem; }
  .price-card .btn { margin-top: 18px; }
  .pricing-note { margin-top: 20px; text-align: left; font-size: .88rem; }

  .workshop-audience { padding-block: 52px; }
  .workshop-process,
  .workshop-details,
  .workshop-speakers,
  .workshop-contact { padding-block: 48px; }
  .workshop-facts > div { grid-template-columns: 34px 1fr; gap: 10px; padding: 14px 0; }

  .contact-card { padding: 26px 22px; gap: 28px; }
  .contact-info .section-title { margin-bottom: 14px; }
  .contact-info p + p { margin-top: 10px; }
  .contact-phone { margin-top: 20px; padding: 13px 16px; border-radius: 16px; }
  .contact-phone .ring { width: 44px; height: 44px; }
  .contact-phone strong { font-size: 1.1rem; }
  .contact-form { gap: 13px; }
  .field input, .field textarea { padding: 13px 16px; border-radius: 14px; }
  .field textarea { min-height: 112px; }
  .consent { gap: 10px; font-size: .74rem; }
  .contact-form .btn { width: 100%; justify-content: center; }
  .contact-methods--row { margin-top: 24px; gap: 10px; }
  .method { gap: 14px; padding: 14px 16px; border-radius: 16px; }
  .method .ring { width: 42px; height: 42px; }

  .blog-page .post-grid { gap: 28px 14px; }
  .blog-page .post-card .body { padding-top: 14px; }
  .blog-page .post-card h3 { margin-bottom: 8px; }
  .blog-page .post-card .card-link { margin-top: 12px; }
  .blog-page .post-card:not(.post-card--featured) p { display: none; }
  .blog-page .post-card:not(.post-card--featured) h3 { font-size: 1rem; }
  .blog-page .post-card:not(.post-card--featured) .meta { gap: 6px; margin-bottom: 8px; }
  .blog-page .post-card:not(.post-card--featured) .date { font-size: .7rem; }
  .blog-page .post-card:not(.post-card--featured) .thumb { aspect-ratio: 4 / 3; }

  article .section { padding-block: 48px; }
  .article-hero h1 { font-size: clamp(2rem, 9.5vw, 2.5rem); margin-bottom: 20px; }
  .article-cover { margin-top: 26px; }
  .article-cover img { max-height: 320px; }
  .prose h2 { margin-top: 36px; }
  .prose blockquote, .prose .callout { padding: 18px 20px; margin-block: 22px; }
  .author-box { margin-top: 34px; padding: 20px; gap: 16px; }
  .author-box img { width: 72px; height: 72px; }
  .author-box p { font-size: .86rem; }
  .post-nav { gap: 10px; }
  .post-nav-card { padding: 16px; border-radius: 14px; }
  .post-nav-card span { font-size: .86rem; }
  article .cta-banner { padding: 30px 22px; }

  .legal h2 { margin-top: 34px; }
  .legal-summary { padding-block: 20px; }
  .legal-purpose { padding-block: 16px; }
  .legal-divider { margin-top: 42px; padding-top: 32px; }
  .cookie-card { padding-block: 14px; }
}

/* Pełne menu także na niskich ekranach, bez ucinania pierwszej i ostatniej pozycji. */
@media (max-width: 1024px) and (max-height: 650px) {
  .mobile-nav {
    justify-content: flex-start;
    padding-top: 86px;
    padding-bottom: 16px;
    overflow-y: auto;
  }
  .mobile-nav a { padding-block: 6px; }
  .mobile-nav .sub { padding-left: 16px; font-size: 1rem; }
  .mobile-nav .mn-phone { margin-top: 12px; }
}

/* Dwie kolumny tylko tam, gdzie treści pozostają czytelne na typowym telefonie. */
@media (min-width: 360px) and (max-width: 640px) {
  .coaching-page .isnt-is,
  .coaching-page .topics,
  .marketing-page .topics,
  .blog-page .post-grid,
  .cookie-grid,
  .clients-row,
  .post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .coaching-page .isnt-is { gap: 10px; }
  .coaching-page .def-card { padding: 18px 16px; border-radius: 16px; font-size: .86rem; }
  .coaching-page .def-card h4 { font-size: .95rem; }
  .coaching-page .topics > :last-child,
  .marketing-page .topics > :last-child,
  .blog-page .post-card--featured,
  .cookie-grid > :last-child { grid-column: 1 / -1; }
  .clients-row { gap: 10px; }
  .post-nav-card.next { text-align: right; }
  .author-box { flex-direction: row; text-align: left; align-items: flex-start; }
}

@media (max-width: 359px) {
  .page-hero .hero-actions { grid-template-columns: 1fr; }
}

/* ---------- Dostępność / ruch ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 100svh;
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: clamp(28px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.error-brand { position: absolute; top: 28px; }
.error-brand img { width: 150px; }
.error-shape {
  color: color-mix(in srgb, var(--blue) 14%, var(--cream));
  font-size: clamp(7rem, 22vw, 13rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .8;
  user-select: none;
}
.error-page h1 { max-width: 15ch; margin: 20px 0; font-size: clamp(2rem, 5vw, 3.6rem); }
.error-page > p:not(.section-kicker) { max-width: 58ch; }
.error-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 26px; margin-top: 34px; }
