:root {
  /* Tailwind neutral scale */
  --white: #ffffff;
  --ink-50:  #fafafa;
  --ink-100: #f5f5f5;
  --ink-200: #e5e5e5;
  --ink-300: #d4d4d4;
  --ink-400: #a3a3a3;
  --ink-500: #737373;
  --ink-600: #525252;
  --ink-700: #404040;
  --ink-800: #262626;
  --ink-900: #171717;
  --ink-950: #0a0a0a;

  /* Action - orange-500 / 600 / 400 */
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-glow: rgba(249,115,22,0.4);

  /* Success - lime-400 */
  --lime-400: #a3e635;
  --lime-500: #84cc16;

  /* Lines */
  --line-light: rgba(10,10,10,0.10);
  --line-dark:  rgba(255,255,255,0.10);

  --font: 'Sora', system-ui, sans-serif;
  --mono: 'Sora', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-950);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

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

.mono { font-family: var(--mono); font-feature-settings: "ss01" on, "ss02" on; }

/* ═══════════════ EFFECTS ═══════════════ */

.border-beam {
  position: relative;
  isolation: isolate;
}
.border-beam::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--beam-angle),
    transparent 0deg,
    transparent 270deg,
    var(--orange-500) 320deg,
    var(--white) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: beam 5s linear infinite;
  pointer-events: none;
}
@keyframes beam { to { --beam-angle: 360deg; } }

.grid-pattern-light {
  background-image:
    linear-gradient(var(--line-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 70%);
}

@media (prefers-reduced-motion: no-preference) {
  .blur-fade {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(16px);
    animation: blurFadeIn .9s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .blur-fade-1 { animation-delay: .1s; }
  .blur-fade-2 { animation-delay: .25s; }
  .blur-fade-3 { animation-delay: .4s; }
  .blur-fade-4 { animation-delay: .55s; }
  .blur-fade-5 { animation-delay: .7s; }
  @keyframes blurFadeIn {
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
  }

  /* Chart entry */
  .sparkline-path {
    stroke-dasharray: 2400;
    stroke-dashoffset: 2400;
    animation: drawLine 1.8s ease-out 0.2s forwards;
  }
  .sparkline-area {
    opacity: 0;
    animation: fadeIn .8s ease-out 1.6s forwards;
  }
  .sparkline-dot {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    animation: popIn .5s cubic-bezier(.5,1.7,.5,1) forwards;
  }
  @keyframes drawLine { to { stroke-dashoffset: 0; } }
  @keyframes fadeIn { to { opacity: 1; } }
  @keyframes popIn { to { opacity: 1; transform: scale(1); } }

  /* Floating dust in chart */
  .float-dust {
    animation: floatDust 18s ease-in-out infinite;
  }
  @keyframes floatDust {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(30px, -20px); opacity: 0.7; }
  }
}

/* ═══════════════ TOPBAR (bigger) ═══════════════ */
.topbar {
  background: var(--ink-950);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  text-align: center;
  flex-wrap: wrap;
}
.topbar__pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 0 rgba(249,115,22,0.6);
  animation: pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
.topbar__cta { font-weight: 600; color: var(--orange-500); border-bottom: 1px solid currentColor; }
.topbar__cta:hover { opacity: 0.75; }

/* ═══════════════ HEADER (smaller logo) ═══════════════ */
.site-header {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line-light);
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 2rem;
}
.brand { display: inline-flex; flex-shrink: 0; }
.brand__logo { height: 28px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav__link {
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding-block: 0.4rem;
  transition: color .2s;
  color: var(--ink-900);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__link:hover { color: var(--orange-500); }

.nav__cta {
  font-size: 13.5px;
  font-weight: 600;
  background: var(--orange-500);
  color: var(--white);
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background .2s, transform .2s, box-shadow .25s;
}
.nav__cta:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--orange-glow);
}
.nav__cta-arrow { transition: transform .25s; }
.nav__cta:hover .nav__cta-arrow { transform: translateX(3px); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero__bg-grid { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero__headline {
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--ink-950);
  max-width: 12ch;
}
.hero__headline-mark {
  position: relative;
  display: inline-block;
}
.hero__headline-mark::before {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 6%;
  height: 28%;
  background: var(--orange-500);
  z-index: -1;
  border-radius: 2px;
  transform: skewY(-1deg);
}

.hero__lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 44ch;
  margin-top: 1.75rem;
  font-weight: 400;
}

.hero__cta-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: all .25s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  position: relative;
}
.btn--primary { background: var(--ink-950); color: var(--white); }
.btn--primary:hover {
  background: var(--orange-500);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px var(--orange-glow);
}
.btn--orange { background: var(--orange-500); color: var(--white); }
.btn--orange:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px var(--orange-glow);
}
.btn--ghost {
  background: var(--white);
  color: var(--ink-950);
  border-color: var(--ink-950);
}
.btn--ghost:hover { background: var(--ink-950); color: var(--white); }
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost-light:hover {
  background: var(--white);
  color: var(--ink-950);
  border-color: var(--white);
}
.btn__arrow { transition: transform .25s; display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* Hero portrait */
.hero__visual { position: relative; }
.hero__portrait {
  aspect-ratio: 4/5;
  background: var(--ink-100);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 500;
  box-shadow: 0 24px 60px -20px rgba(10,10,10,0.20);
}
.hero__portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(249,115,22,0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(10,10,10,0.06) 0%, transparent 55%);
}
.hero__portrait::after { content: '[ portret Michała ]'; position: relative; z-index: 1; }

.hero__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-950);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 12px -2px rgba(10,10,10,0.2);
  z-index: 2;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--lime-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lime-400);
  animation: pulse2 2s ease-out infinite;
}
@keyframes pulse2 {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero__stat-card {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--ink-950);
  color: var(--white);
  padding: 1.1rem 1.35rem;
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 16px 40px -12px rgba(10,10,10,0.5);
  transform: rotate(2deg);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 200px;
}
.hero__stat-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-400);
  text-transform: uppercase;
}
.hero__stat-num {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--orange-500);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-block: 0.2rem;
}
.hero__stat-context {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-300);
  font-weight: 400;
}

/* ═══════════════ FINANCIAL REPORTS ═══════════════ */
.reports {
  background: var(--ink-950);
  color: var(--white);
  padding-block: clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.reports::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, black, transparent 70%);
  z-index: 0;
}
.reports::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  aspect-ratio: 2/1;
  background: radial-gradient(ellipse, var(--orange-glow), transparent 65%);
  filter: blur(80px);
  z-index: 0;
  opacity: 0.45;
}
.reports__inner { position: relative; z-index: 1; }

.reports__head {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}
.section-kicker {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-kicker::before { content: ''; width: 24px; height: 2px; background: var(--orange-500); }
.reports__title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  max-width: 16ch;
}
.reports__title-accent { color: var(--orange-500); }
.reports__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-300);
  max-width: 38ch;
  text-align: right;
  margin-left: auto;
}

/* CHART - wider, less boxed */
.chart-wrap {
  background: transparent;
  border: 0;
  padding: 0.5rem 0 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: visible;
}
.chart-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.chart-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.chart-title-sub {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-400);
  margin-top: 4px;
}
.chart-legend {
  display: flex;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-300);
}
.chart-legend-dot {
  width: 8px; height: 8px;
  background: var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange-500);
  display: inline-block;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.chart {
  width: 100%;
  height: clamp(280px, 32vw, 380px);
  display: block;
}
.chart text {
  font-family: var(--mono);
  font-size: 11px;
  fill: var(--ink-400);
  font-weight: 400;
  opacity: 1;
}

/* BREAKDOWN przychodów - stacked bar + 3 cards */
.breakdown {
  margin-block: 2rem 1.5rem;
}
.breakdown__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breakdown__title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--white);
}
.breakdown__title-sub {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-400);
  margin-top: 4px;
}
.breakdown__total {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-300);
}
.breakdown__total strong {
  color: var(--orange-500);
  font-weight: 600;
  font-size: 15px;
  margin-left: 0.4rem;
}

/* Stacked horizontal bar */
.breakdown__bar {
  display: flex;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  margin-bottom: 1rem;
}
.breakdown__bar-seg {
  display: block;
  height: 100%;
  transition: filter .25s;
  position: relative;
}
.breakdown__bar-seg:not(:last-child) { margin-right: 2px; }
.breakdown__bar-seg:hover { filter: brightness(1.15); }
.breakdown__bar-caao    { background: var(--orange-500); }
.breakdown__bar-gw      { background: var(--orange-400); opacity: 0.55; }
.breakdown__bar-other   { background: var(--lime-400); }

/* 3 mini cards */
.breakdown__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.breakdown-card {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}
.breakdown-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.breakdown-card__name {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-300);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.breakdown-card__dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}
.breakdown-card__dot--caao  { background: var(--orange-500); }
.breakdown-card__dot--gw    { background: var(--orange-400); opacity: 0.7; }
.breakdown-card__dot--other { background: var(--lime-400); }
.breakdown-card__pct {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-400);
}
.breakdown-card__amount {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-block: 0.4rem 0.2rem;
}
.breakdown-card__amount-unit {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--ink-400);
  margin-left: 0.2em;
}
.breakdown-card__trend {
  font-family: var(--mono);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.breakdown-card__trend--up   { color: var(--lime-400); }
.breakdown-card__trend--down { color: var(--ink-400); }
.breakdown-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-400);
  margin-top: 0.5rem;
}

/* GRID OF CARDS */
.reports__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.report {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  color: inherit;
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              border-color .25s, background .25s;
  position: relative;
  overflow: hidden;
}
.report::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(249,115,22,0.10), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.report:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.4);
  background: rgba(249,115,22,0.04);
}
.report:hover::before { opacity: 1; }
.report > * { position: relative; z-index: 1; }
.report__month {
  font-family: var(--mono);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink-100);
  margin-bottom: 0.5rem;
}
.report__amount {
  font-size: clamp(1.85rem, 2.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
  color: var(--orange-500);
}
.report__amount-unit {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--ink-400);
  margin-left: 0.2em;
}
.report__label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.report__note {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-200);
  margin-bottom: auto;
  flex-grow: 1;
}
.report__more {
  margin-top: 1.25rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-500);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap .25s;
}
.report:hover .report__more { gap: 0.65rem; }

.reports__cta-row {
  margin-top: clamp(2rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}
.reports__cta-text {
  font-size: 15px;
  color: var(--ink-300);
  max-width: 52ch;
}
.reports__cta-text strong { color: var(--white); font-weight: 600; }

/* ═══════════════ DESTINATIONS ═══════════════ */
.destinations {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: var(--white);
}
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 700px; }
.section-head__title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.section-head__title-accent { color: var(--orange-500); }

.dest-grid {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  gap: 1rem;
}
.dest {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  border-radius: 12px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
  overflow: hidden;
  min-height: 380px;
  text-decoration: none;
  isolation: isolate;
}
.dest:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(10,10,10,0.30);
}
.dest__priority {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}

.dest--ultra {
  background: var(--ink-950);
  color: var(--white);
}
.dest--ultra::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--orange-glow), transparent 60%);
  filter: blur(50px);
  z-index: 0;
  opacity: 0.7;
}
.dest--ultra > *:not(.dest__priority) { position: relative; z-index: 1; }
.dest--ultra .dest__priority {
  color: var(--orange-500);
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
}

.dest--strefa {
  background: var(--ink-100);
  color: var(--ink-950);
  border: 1px solid var(--ink-200);
}
.dest--strefa .dest__priority {
  color: var(--ink-700);
  background: var(--ink-200);
}

.dest--webinar {
  background: var(--orange-500);
  color: var(--white);
}
.dest--webinar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.20), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(10,10,10,0.18), transparent 50%);
  z-index: 0;
}
.dest--webinar > *:not(.dest__priority) { position: relative; z-index: 1; }
.dest--webinar .dest__priority {
  color: var(--ink-950);
  background: rgba(255,255,255,0.95);
}

.dest__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.dest--ultra .dest__num { color: var(--orange-500); }
.dest--strefa .dest__num { color: var(--ink-600); }
.dest--webinar .dest__num { color: var(--white); opacity: 0.85; }

.dest__title {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}
.dest--ultra .dest__title-accent { color: var(--orange-500); }
.dest--strefa .dest__title-accent { color: var(--orange-500); }
.dest--webinar .dest__title-accent { color: var(--ink-950); }

.dest__desc {
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: auto;
  max-width: 32ch;
}
.dest--ultra .dest__desc { color: var(--ink-200); }
.dest--strefa .dest__desc { color: var(--ink-700); }
.dest--webinar .dest__desc { color: rgba(255,255,255,0.85); }

/* Pseudo-button inside each dest card (whole card stays clickable as <a>) */
.dest__btn {
  margin-top: 1.75rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  transition: all .25s cubic-bezier(.2,.7,.2,1);
}
.dest__btn-arrow { transition: transform .25s; }
.dest:hover .dest__btn-arrow { transform: translateX(3px); }

.dest--ultra .dest__btn {
  background: var(--orange-500);
  color: var(--white);
}
.dest:hover.dest--ultra .dest__btn {
  background: var(--orange-600);
  box-shadow: 0 12px 28px -10px var(--orange-glow);
}

.dest--strefa .dest__btn {
  background: var(--ink-950);
  color: var(--white);
}
.dest:hover.dest--strefa .dest__btn {
  background: var(--orange-500);
}

.dest--webinar .dest__btn {
  background: var(--white);
  color: var(--ink-950);
}
.dest:hover.dest--webinar .dest__btn {
  background: var(--ink-950);
  color: var(--white);
}

/* ═══════════════ CASE STUDIES ULTRA ═══════════════ */
.cases {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: var(--ink-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cases::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 100% at 50% 100%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 100%, black, transparent 70%);
  z-index: 0;
}
.cases__inner { position: relative; z-index: 1; }

.cases__head {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.cases__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
  max-width: 16ch;
}
.cases__title-accent { color: var(--orange-500); }
.cases__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-300);
  max-width: 42ch;
}
.cases__sub strong { color: var(--white); font-weight: 600; }

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.case {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  transition: transform .35s, border-color .25s, background .25s;
  position: relative;
  overflow: hidden;
}
.case:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.35);
  background: rgba(249,115,22,0.03);
}
.case--featured {
  grid-column: span 2;
  background: rgba(255,255,255,0.025);
  border-color: rgba(255,255,255,0.15);
}

.case__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.case__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink-700) 0%, var(--ink-800) 100%);
  border: 2px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.case__avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 30%, rgba(249,115,22,0.4), transparent 60%);
}
.case__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.case__role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-400);
  font-weight: 400;
  margin-top: 2px;
}

.case__transformation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.case__t-col { display: flex; flex-direction: column; gap: 0.25rem; }
.case__t-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.case__t-value {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink-300);
  line-height: 1.2;
}
.case__t-value--after {
  color: var(--white);
  font-weight: 700;
}
.case__t-value--after strong {
  color: var(--orange-500);
  font-weight: 700;
}
.case__t-arrow {
  font-size: 1.25rem;
  color: var(--ink-500);
  font-weight: 300;
  line-height: 1;
}

.case__quote {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-300);
  margin-bottom: auto;
  position: relative;
  padding-left: 1.1rem;
  border-left: 1px solid var(--ink-700);
}
.case__footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-500);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.case__footer-link {
  color: var(--orange-500);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.cases__cta-row {
  margin-top: clamp(2.5rem, 4vw, 3rem);
  text-align: center;
}
.cases__cta-text {
  font-size: 15px;
  color: var(--ink-300);
  margin-bottom: 1rem;
}

/* ═══════════════ POSTS ═══════════════ */
.posts {
  padding-block: clamp(4rem, 6vw, 5.5rem);
  background: var(--ink-50);
}
.posts__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  gap: 2rem;
  flex-wrap: wrap;
}
.posts__list { display: grid; grid-template-columns: 1fr; gap: 0; }
.post-row {
  display: grid;
  grid-template-columns: 95px 1fr auto;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line-light);
  align-items: center;
  transition: background .25s, padding .3s;
  border-radius: 6px;
  position: relative;
}
.post-row::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 2px;
  background: var(--orange-500);
  transition: width .3s ease;
  transform: translateY(-50%);
}
.post-row:hover {
  background: var(--white);
  padding-inline: 1rem;
  margin-inline: -1rem;
}
.post-row:hover::before { width: 4px; }
.post-row:first-child { border-top: 1px solid var(--line-light); }
.post-row__date {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-500);
  white-space: nowrap;
}
.post-row__body { display: flex; flex-direction: column; gap: 0.4rem; }
.post-row__cat {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.post-row__title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  transition: color .25s;
}
.post-row:hover .post-row__title { color: var(--orange-500); }
.post-row__readtime {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-500);
  white-space: nowrap;
}

/* ═══════════════ ABOUT (DARK) ═══════════════ */
.about {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: var(--ink-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(249,115,22,0.08), transparent 50%);
  z-index: 0;
}
.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--ink-800) 0%, var(--ink-900) 100%);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-500);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5);
}
.about__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(249,115,22,0.18) 0%, transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.05) 0%, transparent 55%);
}
.about__visual::after { content: '[ portret Michała ]'; position: relative; z-index: 1; }
.about__visual-stamp {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-950);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px -2px rgba(0,0,0,0.3);
  z-index: 2;
}

.about__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.about__title-accent { color: var(--orange-500); }

.about__greet {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--white);
  margin: 0.5rem 0 1rem;
  text-transform: uppercase;
}
.about__greet-dot { color: var(--orange-500); }
.about__lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink-300);
  margin-bottom: 1.75rem;
  font-weight: 500;
  max-width: 50ch;
}
.about__paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about__paragraphs p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-200);
  max-width: 60ch;
}
.about__paragraphs strong { color: var(--white); font-weight: 700; }
.about__paragraphs .accent { color: var(--orange-500); font-weight: 600; }

.about__milestones {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.5rem 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-dark);
}
.about__milestone {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.about__milestone-year {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--orange-500);
}
.about__milestone-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.about__cta { margin-top: 2rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ═══════════════ FOOTER (DARK) ═══════════════ */
.footer {
  background: var(--ink-950);
  color: var(--white);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
  border-top: 1px solid var(--line-dark);
}
.footer__top {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer__brand-row { display: flex; margin-bottom: 1rem; }
.footer__brand-logo {
  height: 30px;
  width: auto;
  display: block;
  /* Zachowuje pomarańczową strzałkę, czarne "Geekwork" → białe.
     invert(1) zamienia kolory; hue-rotate(180deg) cofa hue na akcent kolorowy. */
  filter: invert(1) hue-rotate(180deg);
}
.footer__tag {
  font-size: 14px;
  color: var(--ink-300);
  max-width: 32ch;
  line-height: 1.6;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 1rem;
}
.footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-200);
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer__col-links a:hover { color: var(--orange-500); padding-left: 4px; }
.footer__bottom {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-500);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ═══════════════ LIFESTYLE ═══════════════ */
.lifestyle {
  background: var(--ink-50);
  padding-block: clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.lifestyle__head {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}
.lifestyle__title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink-950);
  max-width: 14ch;
}
.lifestyle__title-accent { color: var(--orange-500); }
/* Tytuł przeniesiony do prawej kolumny - tuż nad lead, spójny blok. */
.lifestyle__title--inline {
  max-width: 16ch;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}
.lifestyle__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-600);
  max-width: 38ch;
  text-align: right;
  margin-left: auto;
}
.lifestyle__sub-quote {
  display: block;
  font-style: normal;
  color: var(--ink-950);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 17px;
  letter-spacing: -0.005em;
}

/* Lifestyle intro: 2-col copy + photo */
.lifestyle__intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}
/* Zdjęcie po lewej, tekst po prawej (źródłowo copy jest pierwsze - reset na mobile niżej). */
.lifestyle__intro-visual { order: -1; }
.lifestyle__intro-copy {
  max-width: 52ch;
}
.lifestyle__intro-lead {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-800);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 1.25rem;
}
.lifestyle__intro-tag {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 0.75rem;
}
.lifestyle__intro-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-700);
}
.lifestyle__intro-bullets li {
  position: relative;
  padding-left: 1.4rem;
}
.lifestyle__intro-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange-500);
  font-weight: 700;
}
.lifestyle__intro-bullets strong {
  color: var(--ink-950);
  font-weight: 700;
}
.lifestyle__intro-visual {
  aspect-ratio: 4/5;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(249,115,22,0.18) 0%, rgba(163,230,53,0.08) 60%, var(--ink-100) 100%);
  border: 1px solid var(--line-light);
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.lifestyle__intro-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 80%);
}
.lifestyle__intro-visual-stamp {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  background: rgba(255,255,255,0.7);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* Map caption pod mapą */
.world-map-caption {
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-600);
  max-width: 56ch;
  margin: 1rem auto 1.5rem;
  font-style: italic;
}

/* World map */
.world-map-wrap {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.world-map-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 80%);
  opacity: 0.5;
  pointer-events: none;
}
.world-map {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.world-map .land {
  fill: var(--ink-200);
  stroke: var(--white);
  stroke-width: 0.5;
  stroke-opacity: 1;
  transition: fill .25s;
}
/* Grenlandia ukryta */
.world-map #GL { display: none; }

/* Kraje odwiedzone -> solid orange (scratch-map style) */
.world-map #BR,
.world-map #DE,
.world-map #IT,
.world-map #GR,
.world-map #PT,
.world-map #TR,
.world-map #TN,
.world-map #CN,
.world-map #PH,
.world-map #TH,
.world-map #GB,
.world-map #SE,
.world-map #FI,
.world-map #IE,
.world-map #FR,
.world-map #LT,
.world-map #CZ,
.world-map #NO,
.world-map #EG,
.world-map #MY {
  fill: var(--orange-500);
}
/* Kraje zaplanowane -> outline + jasny fill */
.world-map #US {
  fill: rgba(249,115,22,0.12);
  stroke: var(--orange-500);
  stroke-width: 1.2;
}
/* Dom -> lime + ciemny obrys */
.world-map #PL {
  fill: var(--lime-400);
  stroke: var(--ink-950);
  stroke-width: 0.8;
}
.world-map .land:hover { fill: var(--ink-300); }
.world-map #BR:hover,
.world-map #DE:hover,
.world-map #IT:hover,
.world-map #GR:hover,
.world-map #PT:hover,
.world-map #TR:hover,
.world-map #TN:hover,
.world-map #CN:hover,
.world-map #PH:hover,
.world-map #TH:hover,
.world-map #GB:hover,
.world-map #SE:hover,
.world-map #FI:hover,
.world-map #IE:hover { fill: var(--orange-600); }
.world-map #US:hover { fill: rgba(249,115,22,0.25); }
.world-map #PL:hover { fill: var(--lime-500); }

.world-map .dest-line {
  stroke: var(--ink-300);
  stroke-width: 1;
  stroke-dasharray: 2 5;
  fill: none;
  opacity: 0.6;
}
.world-map .dest-pulse {
  fill: var(--orange-500);
  opacity: 0.25;
  transform-origin: center;
  transform-box: fill-box;
  animation: destPulse 2.4s ease-out infinite;
}
.world-map .dest-pulse-2 { animation-delay: 0.6s; }
.world-map .dest-pulse-3 { animation-delay: 1.2s; }
.world-map .dest-pulse-4 { animation-delay: 1.8s; }
@keyframes destPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(3); opacity: 0; }
}
.world-map .dest-dot {
  fill: var(--orange-500);
}
.world-map .dest-dot--home {
  fill: var(--lime-400);
  stroke: var(--ink-950);
  stroke-width: 1.5;
}
.world-map .dest-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  fill: var(--ink-950);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.world-map .dest-label-date {
  fill: var(--ink-500);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.world-map-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
}
.world-map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.world-map-legend__swatch {
  width: 14px; height: 10px;
  border-radius: 2px;
  display: inline-block;
}
.world-map-legend__swatch--home { background: var(--lime-400); border: 1px solid var(--ink-950); }
.world-map-legend__swatch--done { background: var(--orange-500); }
.world-map-legend__swatch--planned { background: rgba(249,115,22,0.12); border: 1.2px solid var(--orange-500); }

/* Lifestyle stat cards */
.lifestyle__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.lifestyle-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 1.6rem 1.75rem 1.85rem;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .25s;
  display: flex;
  flex-direction: column;
}
.lifestyle-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249,115,22,0.3);
}
.lifestyle-card__kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 1.25rem;
}
.lifestyle-card__num {
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--orange-500);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.15em;
}
.lifestyle-card__num-unit {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0.02em;
  text-transform: lowercase;
}
.lifestyle-card__label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-950);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.lifestyle-card__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-600);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 960px) {
  .hero__inner,
  .reports__head,
  .cases__head,
  .about__inner,
  .lifestyle__head,
  .lifestyle__intro,
  .footer__top { grid-template-columns: 1fr; }
  .reports__sub,
  .lifestyle__sub { text-align: left; margin-left: 0; }
  .lifestyle__cards { grid-template-columns: 1fr; }
  .lifestyle__intro-visual { min-height: 260px; max-width: 480px; order: 0; }
  .nav { display: none; }
  .reports__grid { grid-template-columns: repeat(2, 1fr); }
  .breakdown__cards { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .case--featured { grid-column: span 1; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero__visual { max-width: 380px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .reports__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .reports__cta-row { flex-direction: column; align-items: flex-start; }
  .about__milestones { grid-template-columns: 1fr 1fr; }
  .case__transformation { grid-template-columns: 1fr; }
  .case__t-arrow { transform: rotate(90deg); justify-self: center; }
}

/* ===== REALNE ZDJĘCIA (podmieniają placeholdery) ===== */
.hero__portrait {
  background-image: url('foto/1.jpg');
  background-size: cover;
  background-position: center top;
}
.hero__portrait::before,
.hero__portrait::after { content: none; background: none; display: none; }

.lifestyle__intro-visual {
  background-image: url('foto/2.jpg');
  background-size: cover;
  background-position: center;
}
.lifestyle__intro-visual::before { content: none; background: none; display: none; }

.about__visual {
  background-image: url('foto/3.jpg');
  background-size: cover;
  background-position: center;
}
.about__visual::before,
.about__visual::after { content: none; background: none; display: none; }
