/* ==========================================================================
   dr Sławomir Kryszkowski — doradztwo strategiczne i restrukturyzacyjne
   main.css
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy: #14263D;
  --navy-dark: #0f1d30;
  --navy-deep: #0b1524;
  --cream: #F7F5F0;
  --white: #FFFFFF;
  --gold: #B4884D;
  --gold-light: #C9A063;
  --gold-dark: #8f6a37;
  --ink: #14263D;
  --ink-soft: #3a4654;
  --ink-muted: #4a5666;
  --ink-faint: #5a6675;
  --gray: #7c8694;
  --line: #ece7dc;
  --line-dark: #ded7c9;
  --line-warm: #e3ddcf;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --container: 1200px;
  --pad-x: 40px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dark); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; }

img { max-width: 100%; height: auto; }

input, textarea, button { font-family: inherit; }

section { scroll-margin-top: 84px; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--navy); padding: 12px 20px;
  font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Animations ---------- */
@keyframes skDrift {
  0%   { transform: translate(0, 0) scale(1.05); }
  50%  { transform: translate(-3%, 2%) scale(1.14); }
  100% { transform: translate(0, 0) scale(1.05); }
}
@keyframes skSheen {
  0%, 100% { opacity: .35; }
  50%      { opacity: .7; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16, .7, .3, 1), transform .8s cubic-bezier(.16, .7, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg-drift, .hero__bg-sheen { animation: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 16px; font-weight: 600;
  padding: 16px 32px;
  border-radius: 6px;
  border: none; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
  text-align: center;
}
.btn--gold {
  color: var(--navy); background: var(--gold);
  box-shadow: 0 10px 30px -12px rgba(180, 136, 77, .7);
}
.btn--gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); }
.btn--ghost {
  color: var(--cream); background: transparent;
  border: 1px solid rgba(247, 245, 240, .3);
}
.btn--ghost:hover { color: var(--cream); border-color: var(--gold); background: rgba(180, 136, 77, .08); }
.btn--outline {
  font-size: 15px; padding: 14px 30px;
  color: var(--navy); border: 1px solid var(--gold); background: transparent;
}
.btn--outline:hover { background: var(--gold); color: var(--navy); }
.btn--sm { font-size: 14px; padding: 11px 22px; box-shadow: none; }
.btn--sm:hover { transform: translateY(-1px); }

/* ---------- Eyebrow / section headers ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 40px; height: 1px; background: var(--gold); flex: none;
}
.eyebrow--bare::before { display: none; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow span {
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.section { padding: 120px var(--pad-x); }
.section--white { background: var(--white); border-top: 1px solid var(--line); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--cream); }
.section-title { font-size: clamp(30px, 3.4vw, 48px); margin-top: 16px; line-height: 1.1; letter-spacing: -.01em; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { max-width: none; text-align: center; }
.section-head p { font-size: 17px; line-height: 1.7; color: var(--ink-muted); margin: 20px 0 0; }

/* łamanie linii tylko na mobile */
.br-m { display: none; }
@media (max-width: 880px) {
  .br-m { display: inline; }
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 18px var(--pad-x);
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
.nav.is-scrolled {
  background: rgba(15, 29, 48, .94);
  box-shadow: 0 8px 30px -18px rgba(0, 0, 0, .7);
  padding: 12px var(--pad-x);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.nav__logo img { display: block; height: 46px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 14px; font-weight: 500; color: var(--cream); opacity: .85;
  transition: opacity .2s, color .2s;
}
.nav__link { position: relative; }
.nav__link:hover { color: var(--cream); opacity: 1; }
/* aktywna sekcja (scrollspy) */
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav__link.is-active { color: var(--cream); opacity: 1; }
.nav__link.is-active::after { transform: scaleX(1); }
.mobile-menu__links a.is-active { color: var(--gold-light); }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__burger span { display: block; width: 26px; height: 2px; background: var(--cream); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70;
  background: var(--navy);
  display: none; flex-direction: column;
  padding: 26px var(--pad-x);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu__logo { display: block; height: 46px; width: auto; }
.mobile-menu__close {
  background: none; border: none; color: var(--cream);
  font-size: 30px; cursor: pointer; line-height: 1; padding: 4px 8px;
}
.mobile-menu__links {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; margin-top: 48px; overflow-y: auto; text-align: center;
}
.mobile-menu__links a { font-family: var(--serif); font-size: 30px; color: var(--cream); padding: 10px 0; }
.mobile-menu .btn { margin-top: auto; width: 100%; padding: 16px; }

body.menu-open { overflow: hidden; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--navy-dark);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg-drift {
  position: absolute; inset: -8%;
  animation: skDrift 26s ease-in-out infinite;
  background:
    radial-gradient(120% 90% at 78% 20%, #21406a 0%, #16294300 55%),
    radial-gradient(90% 80% at 12% 88%, #1f3a5f 0%, #10203400 60%),
    linear-gradient(135deg, #0d1a2c 0%, #14263D 55%, #0f1f34 100%);
}
.hero__bg-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11, 21, 36, .92) 0%, rgba(15, 29, 48, .78) 45%, rgba(15, 29, 48, .55) 100%);
}
.hero__bg-sheen {
  position: absolute; top: 0; left: 20%; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(180, 136, 77, .25), transparent);
  animation: skSheen 9s ease-in-out infinite;
}
.hero__grid {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--container); margin: 0 auto;
  padding: 120px var(--pad-x) 60px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}
.hero__eyebrow { margin-bottom: 26px; }
.hero__cred {
  font-size: 14px; color: rgba(247, 245, 240, .62);
  margin: -10px 0 22px; letter-spacing: .01em;
}
.hero__title {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02; color: var(--cream); letter-spacing: -.01em;
}
.hero__quote {
  margin: 24px 0 0; max-width: 520px;
  border-left: 2px solid rgba(180, 136, 77, .55); padding-left: 20px;
}
.hero__quote p {
  font-style: italic; font-family: var(--serif);
  font-size: 19px; line-height: 1.5; color: rgba(247, 245, 240, .9); margin: 0;
}
.hero__quote footer {
  margin-top: 10px; font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.hero__lead {
  margin: 26px 0 0; max-width: 560px;
  font-size: 19px; line-height: 1.6; color: rgba(247, 245, 240, .82);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.hero__portrait {
  justify-self: center; position: relative;
  width: 500px; max-width: 100%; align-self: end;
}
.hero__portrait-ring {
  position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%);
  width: 420px; height: 420px;
  border: 1px solid rgba(180, 136, 77, .45); border-radius: 50%; z-index: 0;
}
.hero__portrait-shadow {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 340px; height: 64px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, .5), transparent); z-index: 0;
}
.hero__portrait img {
  position: relative; z-index: 1; display: block; width: 100%; height: auto;
  filter: contrast(1.02) saturate(.96);
}
.hero__trust {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  border-top: 1px solid rgba(247, 245, 240, .12);
  background: rgba(11, 21, 36, .5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero__trust-inner {
  max-width: var(--container); margin: 0 auto; padding: 16px var(--pad-x);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 22px;
  font-size: 13.5px; letter-spacing: .04em; color: rgba(247, 245, 240, .72);
}
.hero__trust-inner .dot { color: var(--gold); }

/* ==========================================================================
   DOWÓD (proof)
   ========================================================================== */
.proof-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 48px; align-items: start; }
.proof-grid h2 { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.08; letter-spacing: -.01em; }
.proof-grid .proof-sub { margin-top: 14px; font-size: 14px; letter-spacing: .03em; color: var(--gold-dark); font-weight: 600; }
.proof-grid p { font-size: 17px; line-height: 1.72; color: var(--ink-muted); margin: 0; text-align: justify; }
.proof-grid p + p { margin-top: 18px; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px; }
.stat-card { background: var(--navy); border-radius: 10px; padding: 34px 26px; color: var(--cream); }
.stat-card__label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.stat-card__value { font-family: var(--serif); font-size: 56px; font-weight: 500; line-height: 1; }
.stat-card__value small { font-size: 26px; font-family: inherit; font-weight: inherit; }
.stat-card__desc { margin-top: 14px; font-size: 14.5px; color: rgba(247, 245, 240, .72); line-height: 1.4; }

.proof-now {
  margin-top: 28px; background: var(--white);
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 34px 40px;
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 36px; align-items: center;
}
.proof-now__label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.proof-now h3 { font-size: 26px; margin: 12px 0; }
.proof-now p { font-size: 15.5px; line-height: 1.7; color: var(--ink-muted); margin: 0; }
.proof-now__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.proof-metric { border: 1px solid var(--line-warm); border-radius: 10px; padding: 22px 20px; background: #faf7f0; }
.proof-metric__value { font-family: var(--serif); font-size: 30px; color: var(--gold-dark); line-height: 1; }
.proof-metric__value--sm { font-size: 19px; line-height: 1.2; }
.proof-metric__desc { margin-top: 10px; font-size: 12.5px; color: var(--ink-faint); line-height: 1.45; }
.proof-cta { margin-top: 40px; text-align: center; }

/* ==========================================================================
   DLA KOGO (paths)
   ========================================================================== */
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.path-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px;
  transition: transform .3s, box-shadow .3s;
}
.path-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(20, 38, 61, .4); }
.path-card--dark { background: var(--navy); border: none; color: var(--cream); }
.path-card--dark:hover { box-shadow: 0 24px 50px -30px rgba(20, 38, 61, .6); }
.path-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.path-card__num { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--gold); line-height: 1; }
.path-card__rule { flex: 1; height: 1px; background: var(--line-warm); }
.path-card--dark .path-card__rule { background: rgba(180, 136, 77, .3); }
.path-card__tag {
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700;
}
.path-card--dark .path-card__tag { color: var(--gold); }
.path-card h3 { font-size: 26px; margin-bottom: 16px; }
.path-card--dark h3 { color: var(--cream); }
.path-card p { font-size: 16px; line-height: 1.72; color: var(--ink-muted); margin: 0; text-align: justify; }
.path-card--dark p { color: rgba(247, 245, 240, .78); }

/* ==========================================================================
   JAK PRACUJĘ (steps)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.step { padding: 36px 28px; border-right: 1px solid var(--line-dark); }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; border-right: none; }
.step__num { font-family: var(--serif); font-size: 40px; color: var(--gold); font-weight: 500; line-height: 1; }
.step h3 { font-size: 21px; margin: 18px 0 12px; }
.step p { font-size: 15px; line-height: 1.65; color: var(--ink-muted); margin: 0; }

/* ==========================================================================
   OBSZARY (areas + tools)
   ========================================================================== */
.areas-grid, .tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.area-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px;
  display: flex; flex-direction: column;
}
.area-card__head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.area-card__num { font-family: var(--serif); font-size: 34px; font-weight: 500; color: var(--gold); line-height: 1; }
.area-card h3 { font-size: 22px; line-height: 1.2; }
.area-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.area-card li { padding-left: 20px; position: relative; font-size: 14.5px; line-height: 1.6; color: var(--ink-muted); }
.area-card li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.area-card li strong { color: var(--ink); font-weight: 600; }

.tools-head { margin-top: 56px; padding-top: 44px; border-top: 1px solid var(--line); }
.tools-head h3 { font-size: 20px; margin-bottom: 8px; }
.tools-head p { font-size: 15px; line-height: 1.7; color: var(--ink-muted); margin: 0 0 30px; max-width: 640px; }
.tool-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.tool-card__head { display: flex; align-items: center; gap: 12px; padding: 20px 24px; background: var(--navy); }
.tool-card__num { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--gold); line-height: 1; }
.tool-card__title { font-size: 14px; font-weight: 600; color: var(--cream); letter-spacing: .01em; }
.tool-card ul { list-style: none; margin: 0; padding: 6px 24px 8px; }
.tool-card li { font-size: 14.5px; color: var(--ink-soft); padding: 12px 0; border-bottom: 1px solid var(--line); }
.tool-card li:last-child { border-bottom: none; }

/* ==========================================================================
   DOŚWIADCZENIE (timeline)
   ========================================================================== */
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.exp-side { position: sticky; top: 100px; }
.exp-side .section-title { color: var(--cream); line-height: 1.08; }
.exp-side__photo {
  margin-top: 30px; width: 100%; height: 320px;
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(180, 136, 77, .4);
}
.exp-side__photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.exp-side p { margin-top: 28px; font-size: 17px; line-height: 1.7; color: rgba(247, 245, 240, .72); }
.exp-side p + p { margin-top: 16px; }

.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(180, 136, 77, .2));
}
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -33px; top: 5px;
  width: 11px; height: 11px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(180, 136, 77, .15);
}
.tl-item__date { font-size: 13px; letter-spacing: .1em; color: var(--gold); font-weight: 600; }
.tl-item__org { font-size: 17.5px; margin-top: 7px; color: var(--cream); line-height: 1.4; font-weight: 600; }
.tl-item__role { display: inline-block; margin-top: 8px; font-size: 14px; letter-spacing: .02em; font-weight: 600; color: var(--gold-light); }
.tl-item--key::before {
  left: -37px; top: 2px; width: 19px; height: 19px; box-shadow: none;
  background: var(--gold) radial-gradient(circle at center, var(--navy) 0 3px, transparent 3.5px);
}
.tl-item--key .tl-item__date { font-weight: 700; }
.tl-item--key .tl-item__org { font-size: 20px; line-height: 1.35; font-family: var(--serif); font-weight: 500; }
.tl-item--key .tl-item__role { font-size: 14.5px; }

/* ==========================================================================
   REALIZACJE (works)
   ========================================================================== */
.works { border-top: 1px solid var(--line-dark); }
.work-row {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px;
  padding: 30px 0; border-bottom: 1px solid var(--line-dark);
}
.work-row h3 { font-family: var(--serif); font-size: 22px; color: var(--ink); line-height: 1.2; font-weight: 500; }
.work-row__role { margin-top: 8px; font-size: 12.5px; letter-spacing: .06em; color: var(--gold-dark); font-weight: 600; }
.work-row p { font-size: 15.5px; line-height: 1.7; color: var(--ink-muted); margin: 0; }

/* ==========================================================================
   NAUKA (education)
   ========================================================================== */
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.edu-head { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.edu-head h3 { font-size: 23px; }
.edu-head svg { flex: none; }
.edu-list { display: flex; flex-direction: column; gap: 20px; }
.edu-item { border-left: 2px solid var(--line-warm); padding-left: 20px; }
.edu-item p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.edu-item strong { color: var(--ink); font-weight: 600; }
.edu-col { display: flex; flex-direction: column; gap: 40px; }
.edu-col > div > p { font-size: 15.5px; line-height: 1.7; color: var(--ink-muted); margin: 0; }
.pub-list { display: flex; flex-direction: column; gap: 16px; }
.pub-list p {
  font-size: 15px; line-height: 1.65; color: var(--ink-muted); margin: 0;
  padding-left: 16px; border-left: 2px solid var(--gold);
}

/* ==========================================================================
   DLACZEGO WARTO (why)
   ========================================================================== */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--line-dark); border: 1px solid var(--line-dark);
  border-radius: var(--radius); overflow: hidden;
}
.why-cell { background: var(--cream); padding: 40px; }
.why-cell h3 { font-size: 22px; margin-bottom: 12px; }
.why-cell p { font-size: 15.5px; line-height: 1.7; color: var(--ink-muted); margin: 0; }

/* ==========================================================================
   NAGRODY (awards)
   ========================================================================== */
.awards-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 44px 0 64px; }
.award-hl { background: var(--navy); border-radius: 10px; padding: 26px 22px; color: var(--cream); }
.award-hl__title { font-family: var(--serif); font-size: 19px; line-height: 1.25; }
.award-hl__desc { margin-top: 10px; font-size: 13px; color: rgba(247, 245, 240, .7); line-height: 1.45; }

.awards-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-top: 1px solid var(--line-dark); padding-top: 24px; margin-bottom: 20px;
}
.awards-bar__label { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); }
.awards-nav { display: flex; gap: 10px; }
.awards-nav button {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid #d8c7a0; background: transparent; color: var(--gold-dark);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; padding: 0;
  transition: background .2s;
}
.awards-nav button:hover { background: #FBF6EC; }

.awards-track {
  display: flex; gap: 14px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 8px;
  scrollbar-width: none;
}
.awards-track::-webkit-scrollbar { display: none; }
.award-card {
  flex: 0 0 300px; scroll-snap-align: start;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 24px 22px;
  display: flex; flex-direction: column; min-height: 250px;
}
.award-card--personal { background: #FBF6EC; border-color: #e3d3ae; }
.award-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 28px; }
.award-card__year { font-family: var(--serif); font-size: 26px; color: var(--gold); line-height: 1; }
.award-card__badge {
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dark); border: 1px solid #d8c7a0; border-radius: 20px;
  padding: 2px 8px; white-space: nowrap;
}
.award-card__title { font-size: 16.5px; font-weight: 600; color: var(--ink); line-height: 1.35; margin-top: 14px; min-height: 67px; }
.award-card__body {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-warm);
  display: flex; flex-direction: column; flex: 1;
}
.award-card--personal .award-card__body { border-top-color: #e6d8b8; }
.award-card__desc { min-height: 60px; font-size: 13px; color: var(--ink-faint); line-height: 1.5; }
.award-card__meta {
  margin-top: auto; display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px; font-size: 12px; line-height: 1.4; min-height: 16px;
}
.award-card__meta em { font-style: italic; color: var(--gold-dark); font-weight: 600; }
.award-card__meta .when { color: #9aa2ad; white-space: nowrap; flex: none; }

/* ==========================================================================
   INNE DOŚWIADCZENIE (other)
   ========================================================================== */
.other { margin-top: 76px; padding-top: 56px; border-top: 1px solid var(--line); }
.other .section-title { font-size: clamp(28px, 3vw, 40px); margin-top: 14px; line-height: 1.12; }
.other__intro { font-size: 16px; line-height: 1.7; color: var(--ink-muted); margin: 14px 0 0; max-width: 720px; }
.other__stack { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }

.board-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; }
.board-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.board-card__head h3 { font-size: 18px; margin: 0; }
.board-card__count {
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700; white-space: nowrap;
}
.board-card__sub { font-size: 13.5px; line-height: 1.55; color: var(--gray); margin: 0 0 12px; }
.board-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; }
.board-row { display: flex; gap: 14px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line); }
.board-row__date {
  flex: 0 0 64px; white-space: nowrap;
  font-family: var(--serif); font-size: 15px; color: var(--gold); font-weight: 500; line-height: 1.3;
}
.board-row__org { font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.board-row__role { font-size: 12px; color: var(--gray); line-height: 1.45; margin-top: 3px; }
.board-row > div:last-child { flex: 1; min-width: 0; }

.other-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.other-col { display: flex; flex-direction: column; gap: 24px; height: 100%; }
.misc-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; flex: 1; }
.misc-card h3 { font-size: 18px; margin: 0 0 18px; }
.misc-card__list { display: flex; flex-direction: column; gap: 14px; }
.misc-item { display: flex; gap: 12px; }
.misc-item::before {
  content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-top: 8px;
}
.misc-item p { font-size: 14px; line-height: 1.6; color: var(--ink-muted); margin: 0; }
.misc-item strong { color: var(--ink); font-weight: 600; }

.key-exp { position: relative; background: var(--navy); border-radius: var(--radius); padding: 24px 26px; overflow: hidden; }
.key-exp::after {
  content: ""; position: absolute; right: -30px; bottom: -30px;
  width: 130px; height: 130px;
  border: 1px solid rgba(180, 136, 77, .25); border-radius: 50%;
}
.key-exp__label {
  position: relative; display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.key-exp p { position: relative; font-size: 16px; line-height: 1.65; color: var(--cream); margin: 0; }
.key-exp strong { color: var(--gold-light); font-weight: 600; }

/* ==========================================================================
   DLA UCZELNI (zajawka podstrony)
   ========================================================================== */
.uni-teaser { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: stretch; }
.uni-teaser__main { display: flex; flex-direction: column; justify-content: center; }
.uni-teaser__main p { font-size: 16.5px; line-height: 1.72; color: var(--ink-muted); margin: 22px 0 0; }
.uni-teaser__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  align-self: flex-start;
  margin-top: 32px; font-size: 15px; padding: 14px 28px;
}
.uni-teaser__card {
  background: var(--navy); color: var(--cream);
  border-radius: var(--radius); padding: 34px 32px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.uni-teaser__card::after {
  content: ""; position: absolute; right: -50px; bottom: -50px;
  width: 190px; height: 190px;
  border: 1px solid rgba(180, 136, 77, .25); border-radius: 50%;
}
.uni-teaser__card-title {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 20px;
}
.uni-mods {
  list-style: none; margin: 0; padding: 0; position: relative; z-index: 1;
  flex: 1; display: flex; flex-direction: column; justify-content: space-between;
}
.uni-mods li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid rgba(247, 245, 240, .1);
  font-size: 15px; line-height: 1.45; color: rgba(247, 245, 240, .82);
}
.uni-mods li:last-child { border-bottom: none; padding-bottom: 0; }
.uni-mods li span {
  flex: none; min-width: 22px;
  font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--gold);
}
.uni-mods li.uni-mods__new { color: var(--cream); font-weight: 600; }
.uni-mods__new em {
  display: block; margin-top: 4px;
  font-style: normal; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.contact-wrap {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: .92fr 1.08fr;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 40px 90px -50px rgba(20, 38, 61, .5);
}
.contact-info { background: var(--navy); color: var(--cream); padding: 56px 48px; position: relative; overflow: hidden; }
.contact-info::after {
  content: ""; position: absolute; right: -40px; bottom: -40px;
  width: 200px; height: 200px;
  border: 1px solid rgba(180, 136, 77, .25); border-radius: 50%;
}
.contact-info h2 { font-size: clamp(28px, 2.8vw, 40px); margin-top: 16px; color: var(--cream); line-height: 1.12; }
.contact-info > p { font-size: 16px; line-height: 1.7; color: rgba(247, 245, 240, .8); margin: 20px 0 0; max-width: 400px; }
.contact-list { margin-top: 38px; display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item svg { margin-top: 2px; flex: none; }
.contact-item__label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(247, 245, 240, .55); }
.contact-item__value { font-size: 15.5px; margin-top: 3px; }
.contact-item__value a { color: var(--cream); }
.contact-item__value a:hover { color: var(--gold-light); }

.contact-form-col { background: var(--white); padding: 56px 48px; }
.contact-form-col h3 { font-size: 24px; margin-bottom: 8px; }
.contact-form-col .form-intro { font-size: 14.5px; color: var(--ink-faint); margin: 0 0 26px; }

.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; }
.field span { font-size: 13px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid #dfd9cc; border-radius: 8px;
  font-size: 15px; background: #faf9f5; outline: none;
  transition: border-color .2s;
  color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field input.is-invalid, .field textarea.is-invalid { border-color: #c0392b; }

.checkbox { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.checkbox input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--gold); flex: none; }
.checkbox span { font-size: 12.5px; color: var(--ink-faint); line-height: 1.5; }

.form .btn { margin-top: 6px; width: 100%; padding: 16px; border-radius: 8px; box-shadow: none; }
.form .btn[disabled] { opacity: .6; cursor: wait; transform: none; }

.form-status { display: none; font-size: 14px; line-height: 1.5; border-radius: 8px; padding: 12px 16px; margin: 0; }
.form-status.is-error { display: block; background: #fdf0ee; color: #9a3324; border: 1px solid #eecfc9; }

.form-success {
  display: none;
  height: 100%; min-height: 360px;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 16px;
}
.form-success.is-visible { display: flex; }
.form-success__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(180, 136, 77, .14);
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-size: 26px; }
.form-success p { font-size: 16px; color: var(--ink-muted); max-width: 340px; margin: 0; line-height: 1.6; }

/* honeypot — hidden from humans, present for bots */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden; opacity: 0;
}

/* ==========================================================================
   COOKIE BANNER (informacyjny)
   ========================================================================== */
.cookie-note {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  margin: 0 auto; max-width: 560px;
  background: var(--navy); color: rgba(247, 245, 240, .85);
  border: 1px solid rgba(180, 136, 77, .35);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; line-height: 1.5;
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, .55);
  animation: cookieIn .5s ease both;
  transition: opacity .35s, transform .35s;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.cookie-note p { margin: 0; }
.cookie-note a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }
.cookie-note a:hover { color: var(--gold); }
.cookie-note__actions { display: flex; flex-direction: column; gap: 8px; flex: none; }
.cookie-note button {
  flex: none;
  font-weight: 600; font-size: 13px;
  padding: 9px 16px; border-radius: 6px; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.cookie-note__accept { background: var(--gold); border: none; color: var(--navy); }
.cookie-note__accept:hover { background: var(--gold-light); }
.cookie-note__decline {
  background: transparent; border: 1px solid rgba(247, 245, 240, .3);
  color: rgba(247, 245, 240, .8);
}
.cookie-note__decline:hover { border-color: var(--gold); color: var(--cream); }
.cookie-note.is-hidden { opacity: 0; transform: translateY(12px); }
@media (max-width: 560px) {
  .cookie-note { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
  .cookie-note__actions { flex-direction: row; }
  .cookie-note__actions button { flex: 1; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy-dark); color: rgba(247, 245, 240, .7);
  padding: 72px var(--pad-x) 34px;
  border-top: 1px solid rgba(180, 136, 77, .28);
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; align-items: start; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { display: block; height: 48px; width: auto; }
.footer__name { font-family: var(--serif); font-size: 20px; color: var(--cream); line-height: 1.2; }
.footer__tagline { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.footer__brand .btn { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; padding: 12px 24px; box-shadow: none; }
.footer__col-title {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(247, 245, 240, .45); font-weight: 600; margin-bottom: 20px;
}
.footer__contact { display: flex; flex-direction: column; gap: 16px; }
.footer__contact a, .footer__contact > div { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: rgba(247, 245, 240, .78); transition: color .2s; }
.footer__contact a:hover { color: var(--cream); }
.footer__contact svg { margin-top: 1px; flex: none; }
.footer__contact .muted { color: rgba(247, 245, 240, .5); font-size: 13.5px; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.footer__nav a { color: rgba(247, 245, 240, .78); transition: color .2s; }
.footer__nav a:hover { color: var(--cream); }
.footer__bottom {
  margin-top: 52px; padding-top: 26px;
  border-top: 1px solid rgba(247, 245, 240, .1);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.footer__bottom span { font-size: 13px; color: rgba(247, 245, 240, .5); }
.footer__legal { display: flex; gap: 24px; font-size: 13px; }
.footer__legal a { color: rgba(247, 245, 240, .5); transition: color .2s; }
.footer__legal a:hover { color: var(--cream); }

/* ==========================================================================
   SUBPAGES (privacy / 404 / thank you)
   ========================================================================== */
.subpage { background: var(--cream); min-height: 100vh; display: flex; flex-direction: column; }
.subpage-main { flex: 1; padding: 160px var(--pad-x) 100px; }
.subpage-main .container { max-width: 820px; }
.subpage-main h1 { font-size: clamp(32px, 4vw, 52px); line-height: 1.1; margin-bottom: 12px; }
.subpage-main .updated { font-size: 13.5px; color: var(--gray); margin-bottom: 40px; }
.subpage-main h2 { font-size: 24px; margin: 44px 0 14px; }
.subpage-main p, .subpage-main li { font-size: 15.5px; line-height: 1.75; color: var(--ink-muted); }
.subpage-main ul { padding-left: 22px; }
.subpage-main .todo { background: #FBF6EC; border: 1px solid #e3d3ae; border-radius: 8px; padding: 2px 8px; color: var(--gold-dark); font-weight: 600; }
.error-page { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.error-page .code { font-family: var(--serif); font-size: clamp(90px, 16vw, 160px); color: var(--gold); line-height: 1; }
.error-page h1 { margin: 10px 0 14px; }
.error-page p { max-width: 460px; margin: 0 auto 34px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1240px) {
  .nav__links { gap: 22px; }
}

@media (max-width: 1138px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  /* --- HERO: układ jednokolumnowy z portretem między tytułem a cytatem --- */
  .hero { display: block; min-height: 100svh; }
  .hero__grid {
    display: flex; flex-direction: column;
    align-items: stretch;
    padding: 100px var(--pad-x) 16px;
    gap: 0;
  }
  /* dzieci kolumny tekstowej stają się bezpośrednimi elementami flexa,
     żeby portret dało się wpiąć między tytuł a cytat */
  .hero__grid > div:first-child { display: contents; }
  /* krótsza złota kreska przy nadtytułach w całym serwisie */
  .eyebrow::before { width: 20px; }

  .hero__eyebrow { order: 1; margin-bottom: 16px; }
  .hero__eyebrow span { font-size: 12px; }
  .hero__cred { order: 2; margin: 0; font-size: 13px; }
  .hero__cred-sep { display: none; }
  .hero__cred span:not(.hero__cred-sep) {
    display: block;
    position: relative;
    padding-left: 15px;
    line-height: 1.5;
  }
  .hero__cred span:not(.hero__cred-sep) ~ span:not(.hero__cred-sep) { margin-top: 3px; }
  .hero__cred span:not(.hero__cred-sep)::before {
    content: "";
    position: absolute; left: 0; top: .55em;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold);
  }
  .hero__title { order: 3; margin-top: 14px; font-size: clamp(34px, 9.6vw, 46px); line-height: 1.06; }
  .hero__portrait {
    order: 4; display: block;
    width: min(62vw, 245px);
    margin: 24px auto 0;
    align-self: center;
  }
  .hero__cta { order: 5; margin-top: 22px; gap: 12px; }
  .hero__cta .btn { width: 100%; padding: 15px 24px; font-size: 15.5px; }
  .hero__portrait-ring {
    width: 94%; height: auto; aspect-ratio: 1; bottom: 6%;
  }
  .hero__portrait-shadow { width: 74%; height: 42px; }
  .hero__quote { order: 6; margin-top: 26px; padding-left: 16px; }
  .hero__quote p { font-size: 15.5px; }
  .hero__quote p br { display: none; }
  .hero__quote footer { font-size: 11px; }
  .hero__lead { order: 7; margin-top: 18px; font-size: 16px; line-height: 1.65; }
  .hero__trust { position: static; margin-top: 32px; }
  .hero__trust-inner { font-size: 12px; padding: 13px var(--pad-x); gap: 8px 16px; }

  .proof-grid, .paths-grid, .edu-grid, .why-grid, .exp-grid,
  .other-grid, .contact-wrap, .board-list { grid-template-columns: 1fr; }
  .proof-grid { gap: 20px; }
  .areas-grid, .tools-grid { grid-template-columns: 1fr; }
  .stats-grid, .awards-highlights { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { padding: 36px 28px 36px 0; border-right: none; border-bottom: 1px solid var(--line-dark); }
  .step:last-child { border-bottom: none; }
  .steps .step:nth-child(odd) { border-right: 1px solid var(--line-dark); }
  .steps .step:nth-child(even) { padding-left: 28px; }
  .steps .step:nth-child(3) { border-bottom: none; }

  .exp-side { position: static; }
  .contact-info, .contact-form-col { padding: 48px 36px; }

  .uni-teaser { grid-template-columns: 1fr; gap: 30px; }
  .uni-teaser__main p { font-size: 16px; }
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__nav-col { display: none; }
}

@media (max-width: 720px) {
  :root { --pad-x: 24px; }
  .section { padding: 50px var(--pad-x); }
  .work-row { grid-template-columns: 1fr; gap: 12px; }
  .proof-now { grid-template-columns: 1fr; padding: 28px 26px; }
  .proof-grid p, .path-card p { text-align: left; }
  .path-card { padding: 34px 28px; }
  .uni-teaser__card { padding: 26px 22px; }
  .uni-teaser__btn { width: 100%; justify-content: center; margin-top: 26px; }
  .uni-mods li { font-size: 14.5px; }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
  .stat-card { padding: 20px 22px; }
  .stat-card__label { margin-bottom: 6px; }
  .stat-card__value { font-size: 38px; }
  .stat-card__value small { font-size: 19px; }
  .stat-card__desc { margin-top: 6px; font-size: 13.5px; }
  .stat-card__desc br { display: none; }
  .awards-highlights { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps .step { border-right: none !important; border-bottom: 1px solid var(--line-dark); padding-left: 0; }
  .steps .step:last-child { border-bottom: none; }
  .hero__cta .btn { width: 100%; }
  .contact-info, .contact-form-col { padding: 40px 24px; }
}

@media (max-width: 440px) {
  .form-row { grid-template-columns: 1fr; }
  .proof-now__metrics { grid-template-columns: 1fr; }
}
