  :root {
    --paper:      #F6F2E8;
    --paper-2:    #EFE9D9;
    --paper-3:    #FBF8EF;
    --ink:        #14130E;
    --ink-1:      #1F1D17;
    --ink-soft:   #56524A;
    --ink-faint:  #8E8A7E;
    --gold:       #9B7B3C;
    --gold-dark:  #7C6230;
    --gold-soft:  rgba(155,123,60,.14);
    --line:       #DED7C5;
    --line-soft:  #E9E3D2;
    --maxw:       1240px;
    --gutter:     32px;
    --sans:       'Helvetica Neue', Helvetica, Arial, sans-serif;
    --ease:       cubic-bezier(.22,.61,.36,1);
    --ease-out:   cubic-bezier(.16,1,.3,1);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.58;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
  }
  h1, h2, h3 { font-family: var(--sans); line-height: 1.06; letter-spacing: -0.018em; font-weight: 700; }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--gold); color: var(--paper); }
  ::-moz-selection { background: var(--gold); color: var(--paper); }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; }

  /* === paper grain overlay (na cały viewport) === */
  .grain {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 1; pointer-events: none;
    opacity: .35; mix-blend-mode: multiply;
  }

  /* === scroll progress bar === */
  .progress {
    position: fixed; top: 0; left: 0; height: 2px; width: 0;
    background: var(--gold); z-index: 100; transition: width .12s linear;
  }

  /* === HEADER === */
  header {
    position: sticky; top: 0; z-index: 50;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
  }
  header.scrolled { border-color: var(--line); box-shadow: 0 4px 24px -16px rgba(20,19,14,.18); }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 124px; }
  .logo-link { display: flex; align-items: center; gap: 10px; }
  .logo-link img { height: 64px; width: auto; display: block; }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-link {
    font-size: 13.5px; font-weight: 500; color: var(--ink-soft); letter-spacing: .02em;
    position: relative; padding: 4px 0; transition: color .2s;
  }
  .nav-link::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform .4s var(--ease-out);
  }
  .nav-link:hover { color: var(--ink); }
  .nav-link:hover::after { transform: scaleX(1); }
  .nav-mail {
    font-style: italic; font-weight: 400;
    font-size: 14.5px; color: var(--ink); letter-spacing: .005em;
    border-bottom: 1px solid var(--gold); padding: 2px 0;
    transition: color .2s;
  }
  .nav-mail:hover { color: var(--gold); }

  /* === NAV DROPDOWN === */
  .nav-item.has-dropdown { position: relative; }
  .nav-trigger {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--sans);
    background: none; border: 0; padding: 4px 0;
    cursor: pointer;
    font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
    letter-spacing: .02em;
    position: relative;
    transition: color .2s;
  }
  .nav-trigger::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s var(--ease-out);
  }
  .nav-trigger:hover, .nav-item.open .nav-trigger { color: var(--ink); }
  .nav-trigger:hover::after,
  .nav-item.open .nav-trigger::after,
  .nav-item:hover .nav-trigger::after { transform: scaleX(1); }
  .nav-chev {
    display: inline-block; width: 6px; height: 6px;
    border-right: 1.4px solid currentColor;
    border-bottom: 1.4px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .35s var(--ease-out);
  }
  .nav-item.open .nav-chev,
  .nav-item:hover .nav-chev { transform: translateY(1px) rotate(225deg); }

  /* invisible hover bridge między triggerem a dropdownem (18px gap) */
  .nav-item.has-dropdown::after {
    content: ""; position: absolute;
    top: 100%; left: -32px; right: -32px;
    height: 22px;
    pointer-events: auto;
  }

  .dropdown {
    position: absolute; top: calc(100% + 18px); left: -24px;
    min-width: 240px;
    background: var(--paper-3);
    border: 1px solid var(--line);
    padding: 14px 0;
    opacity: 0; transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
    box-shadow: 0 28px 56px -28px rgba(20,19,14,.28);
  }
  .dropdown::before {
    content: ""; position: absolute; top: -1px; left: 24px; width: 40px;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .45s var(--ease-out) .12s;
  }
  .nav-item.open .dropdown,
  .nav-item:hover .dropdown {
    opacity: 1; transform: none; pointer-events: auto;
  }
  .nav-item.open .dropdown::before,
  .nav-item:hover .dropdown::before { transform: scaleX(1); }
  .dropdown a {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 24px;
    font-size: 13.5px; color: var(--ink-soft);
    letter-spacing: .005em;
    transition: color .15s, padding-left .28s var(--ease-out);
    position: relative;
  }
  .dropdown a::before {
    content: ""; display: block; width: 0; height: 1px; background: var(--gold);
    transition: width .25s var(--ease-out);
  }
  .dropdown a:hover { color: var(--ink); padding-left: 30px; }
  .dropdown a:hover::before { width: 12px; }
  .dropdown-rule {
    display: block; height: 1px; background: var(--line);
    margin: 10px 24px;
  }
  .dropdown-meta {
    padding: 6px 24px 2px;
    font-style: italic; font-size: 11.5px; color: var(--ink-faint);
    letter-spacing: .04em;
  }

  /* === BURGER (mobile) === */
  .burger {
    display: none;
    background: none; border: 0; cursor: pointer;
    padding: 0; margin-right: -8px;
    width: 48px; height: 48px;
    position: relative; z-index: 120;
  }
  .burger span {
    display: block; width: 26px; height: 1.6px;
    background: var(--ink);
    position: absolute; left: 11px;
    transition: transform .4s var(--ease-out), top .4s var(--ease-out), opacity .2s, background .2s;
  }
  .burger span:nth-child(1) { top: 17px; }
  .burger span:nth-child(2) { top: 23px; width: 18px; }
  .burger span:nth-child(3) { top: 29px; }
  body.menu-open .burger span:nth-child(1) { top: 23px; transform: rotate(45deg); background: var(--gold); }
  body.menu-open .burger span:nth-child(2) { opacity: 0; }
  body.menu-open .burger span:nth-child(3) { top: 23px; transform: rotate(-45deg); background: var(--gold); }

  /* === MOBILE DRAWER === */
  .drawer {
    position: fixed; inset: 0;
    background: var(--paper);
    z-index: 110;
    padding: 112px 22px 40px;
    display: flex; flex-direction: column;
    overflow-y: auto;
    opacity: 0; transform: translateY(-14px);
    pointer-events: none;
    transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
  }
  body.menu-open { overflow: hidden; }
  body.menu-open .drawer { opacity: 1; transform: none; pointer-events: auto; }

  .drawer-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .drawer-eyebrow::before { content: ""; display: block; width: 24px; height: 1px; background: var(--gold); }

  .drawer-nav { list-style: none; padding: 0; margin: 0; }
  .drawer-nav > li {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    position: relative;
  }
  .drawer-nav .drawer-num {
    position: absolute; top: 28px; left: 0;
    font-style: italic; font-weight: 400;
    font-size: 11.5px; color: var(--gold);
    letter-spacing: .04em;
  }
  .drawer-nav .drawer-label {
    display: block; padding-left: 56px;
    font-size: 26px; font-weight: 700;
    letter-spacing: -.018em; color: var(--ink);
    text-transform: uppercase;
    line-height: 1.05;
  }
  .drawer-nav a.drawer-label { transition: color .2s; }
  .drawer-nav a.drawer-label:hover { color: var(--gold); }
  .drawer-group { cursor: pointer; }
  .drawer-group-chev {
    position: absolute; right: 4px; top: 32px;
    display: block; width: 9px; height: 9px;
    border-right: 1.6px solid var(--ink-soft);
    border-bottom: 1.6px solid var(--ink-soft);
    transform: rotate(45deg);
    transition: transform .35s var(--ease-out);
  }
  .drawer-group.open .drawer-group-chev {
    transform: rotate(225deg) translate(-2px, -2px);
  }
  .drawer-sub {
    list-style: none; padding: 0; margin: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .45s var(--ease-out);
  }
  .drawer-group.open .drawer-sub { max-height: 320px; }
  .drawer-sub li { padding: 10px 0; padding-left: 56px; }
  .drawer-sub li:first-child { padding-top: 22px; }
  .drawer-sub a {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 15.5px; color: var(--ink-soft);
    letter-spacing: .005em;
    transition: color .2s;
  }
  .drawer-sub a::before {
    content: ""; display: block; width: 10px; height: 1px; background: var(--gold);
  }
  .drawer-sub a:hover { color: var(--ink); }

  .drawer-foot {
    margin-top: 40px;
  }
  .drawer-mail {
    display: inline-block;
    font-style: italic; font-size: 19px;
    color: var(--ink); border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
  }
  .drawer-loc {
    margin-top: 18px;
    font-size: 12px; font-weight: 600; letter-spacing: .22em;
    text-transform: uppercase; color: var(--ink-faint);
  }

  /* === HERO === */
  .hero {
    position: relative;
    padding: 140px 0 180px;
    min-height: 84vh;
    display: flex; align-items: center;
  }
  .hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
      radial-gradient(720px 480px at 92% 12%, rgba(155,123,60,.13), transparent 70%),
      radial-gradient(540px 460px at 6% 88%, rgba(20,19,14,.05), transparent 70%);
  }
  .hero-watermark {
    position: absolute; bottom: -40px; right: -10px; z-index: -1;
    font-weight: 900; font-size: 30vw; line-height: 1;
    color: var(--ink); opacity: .025; letter-spacing: -.05em; pointer-events: none;
    user-select: none;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11.5px; font-weight: 600; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 64px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: ""; display: block; height: 1px; background: var(--gold);
  }
  .hero-eyebrow::before { width: 28px; }
  .hero-eyebrow::after { width: 8px; }
  .hero h1 {
    margin: 0;
    max-width: 14ch;
  }
  .hero h1 .line-a {
    display: block;
    font-weight: 900;
    font-size: clamp(56px, 9.4vw, 138px);
    line-height: .94;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .hero h1 .line-b {
    display: block;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(48px, 8vw, 116px);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-top: .02em;
  }
  .hero h1 .line-b .gold {
    position: relative; display: inline-block;
  }
  .hero h1 .line-b .gold::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: .06em;
    height: 4px; background: var(--gold); transform-origin: left;
    transform: scaleX(0); transition: transform 1.1s var(--ease-out) .9s;
  }
  .loaded .hero h1 .line-b .gold::after { transform: scaleX(1); }
  .hero-sub {
    margin-top: 60px;
    font-size: clamp(18px, 1.5vw, 22px);
    color: var(--ink-soft);
    max-width: 38em;
    font-weight: 400; line-height: 1.5;
  }
  .hero-sub strong { color: var(--ink); font-weight: 600; }
  .hero-meta {
    margin-top: 80px;
    display: flex; align-items: center; gap: 32px;
    font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
    color: var(--ink-faint);
  }
  .hero-meta-rule {
    flex: 0 0 60px; height: 1px; background: var(--gold);
    transform-origin: left; transform: scaleX(0);
    transition: transform 1s var(--ease-out) 1.2s;
  }
  .loaded .hero-meta-rule { transform: scaleX(1); }
  .hero-meta span em {
    font-style: italic; font-weight: 400;
    text-transform: none; letter-spacing: .01em;
    color: var(--ink-soft); margin-left: 6px; font-size: 13.5px;
  }

  /* === SECTION FRAME === */
  section { padding: 140px 0; position: relative; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11.5px; font-weight: 600; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 36px;
  }
  .section-tag::before { content: ""; display: block; width: 28px; height: 1px; background: var(--gold); }
  .section-tag .roman {
    font-style: italic; font-weight: 400;
    font-size: 13px; color: var(--ink); letter-spacing: .04em; text-transform: none; margin-left: 6px;
  }
  .section-title {
    font-size: clamp(34px, 4.6vw, 60px);
    max-width: 17ch; margin-bottom: 28px;
    font-weight: 700; letter-spacing: -.022em;
  }
  .section-title em { font-style: italic; font-weight: 400; }
  .section-lead {
    font-size: clamp(17px, 1.35vw, 21px);
    color: var(--ink-soft); max-width: 38em; line-height: 1.55; font-weight: 400;
  }
  .section-lead em { font-style: italic; }

  /* === MANIFEST === */
  .manifest { background: var(--paper-2); }
  .manifest::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0, var(--line) 12%, var(--line) 88%, transparent 100%);
  }
  .manifest-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px;
    margin-top: 80px;
  }
  .man-item { position: relative; padding-top: 12px; }
  .man-item:nth-child(2) { transform: translateY(40px); }
  .man-item:nth-child(3) { transform: translateY(80px); }
  .man-item .num {
    display: block;
    font-weight: 700;
    font-size: 60px; line-height: 1; letter-spacing: -.04em;
    color: var(--gold); margin-bottom: 32px;
    position: relative;
  }
  .man-item .num::after {
    content: ""; display: block; width: 36px; height: 1px;
    background: var(--gold); margin-top: 18px; opacity: .6;
  }
  .man-item h3 {
    font-size: 24px; margin-bottom: 18px; max-width: 14ch; font-weight: 700;
    letter-spacing: -.015em;
  }
  .man-item p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.62; }
  .man-item p strong { color: var(--ink); font-weight: 600; }

  /* === DYWIZJE === */
  .dywizje::before, .perspektywy::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0, var(--line) 12%, var(--line) 88%, transparent 100%);
  }
  .dyw-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    margin-top: 80px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .div-card {
    background: transparent;
    padding: 56px 52px 64px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: background .35s var(--ease);
    overflow: hidden;
  }
  .div-card::before {
    content: ""; position: absolute; top: 0; left: 0; height: 2px; width: 0;
    background: var(--gold);
    transition: width .55s var(--ease-out);
  }
  .div-card:hover { background: var(--paper-3); }
  .div-card:hover::before { width: 100%; }
  .div-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
  .div-num {
    font-weight: 600;
    font-size: 13px; color: var(--gold); letter-spacing: .14em; text-transform: uppercase;
  }
  .div-num em { font-style: italic; font-weight: 400; font-size: 12.5px; color: var(--ink-faint); margin-left: 8px; letter-spacing: .02em; text-transform: none; }
  .div-mark {
    display: block; width: 32px; height: 1px; background: var(--ink); opacity: .25;
    transition: width .4s var(--ease-out), background .4s, opacity .4s;
  }
  .div-card:hover .div-mark { width: 64px; background: var(--gold); opacity: 1; }
  .div-card h3 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700; margin-bottom: 14px;
    letter-spacing: -.022em;
  }
  .div-tagline {
    font-style: italic; font-weight: 400;
    font-size: 17px; color: var(--gold-dark);
    margin-bottom: 28px; line-height: 1.4;
  }
  .div-body { font-size: 15.5px; color: var(--ink-soft); line-height: 1.62; max-width: 38ch; }
  .div-body strong { color: var(--ink); font-weight: 600; }

  /* === PERSPEKTYWY === */
  .perspektywy { background: var(--paper-2); }
  .persp-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 100px;
    margin-top: 64px; align-items: start;
  }
  .persp-intro { font-size: 17px; color: var(--ink-soft); line-height: 1.62; max-width: 28ch; }
  .persp-intro em { font-style: italic; color: var(--ink); }
  .persp-cap {
    margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line);
    font-style: italic;
    font-size: 15.5px; color: var(--ink); letter-spacing: -.005em;
  }
  .persp-list { list-style: none; }
  .persp-list li {
    padding: 30px 0; border-bottom: 1px solid var(--line);
    display: grid; grid-template-columns: 56px 1fr 32px; gap: 28px; align-items: baseline;
    transition: padding-left .35s var(--ease);
    position: relative;
  }
  .persp-list li:hover { padding-left: 12px; }
  .persp-list li:last-child { border-bottom: 0; }
  .persp-num {
    font-style: italic; font-weight: 400;
    font-size: 14px; color: var(--gold); letter-spacing: .03em;
  }
  .persp-title {
    font-size: clamp(18px, 1.6vw, 23px); font-weight: 600;
    color: var(--ink); line-height: 1.34; letter-spacing: -.015em;
  }
  .persp-arrow {
    width: 24px; height: 1px; background: var(--ink); opacity: .25; align-self: center;
    transition: width .4s var(--ease-out), background .4s, opacity .4s;
  }
  .persp-list li:hover .persp-arrow { width: 40px; background: var(--gold); opacity: 1; }

  /* === REALIZACJE === */
  .realizacje { background: var(--paper); }
  .realizacje::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0, var(--line) 12%, var(--line) 88%, transparent 100%);
  }
  .real-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 64px 80px;
    margin-top: 80px;
  }
  .real-item {
    position: relative; padding-top: 30px;
    display: flex; flex-direction: column;
  }
  .real-item::before {
    content: ""; position: absolute; top: 0; left: 0; width: 60px;
    height: 1px; background: var(--gold);
    transition: width .55s var(--ease-out);
  }
  .real-item:hover::before { width: 100%; }
  .real-num {
    font-weight: 600;
    font-size: 11.5px; color: var(--gold);
    letter-spacing: .22em; text-transform: uppercase;
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 12px;
  }
  .real-num em {
    font-style: italic; font-weight: 400; font-size: 13px;
    color: var(--ink-faint); letter-spacing: .02em;
    text-transform: none;
  }
  .real-title {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 700; letter-spacing: -.022em;
    color: var(--ink); margin-bottom: 14px;
    line-height: 1.1;
  }
  .real-tagline {
    font-style: italic; font-weight: 400;
    font-size: 16px; color: var(--gold-dark);
    line-height: 1.4; margin-bottom: 22px;
  }
  .real-body {
    font-size: 15.5px; color: var(--ink-soft); line-height: 1.6;
    margin-bottom: 32px;
    flex: 1;
  }
  .real-body strong { color: var(--ink); font-weight: 600; }
  .real-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600; color: var(--ink);
    letter-spacing: .18em; text-transform: uppercase;
    position: relative; padding-bottom: 6px;
    align-self: flex-start;
  }
  .real-link::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 100%; height: 1px; background: var(--gold);
    transform: scaleX(.4); transform-origin: left;
    transition: transform .35s var(--ease-out);
  }
  .real-link:hover::after { transform: scaleX(1); }
  .real-link .arr {
    display: inline-block; font-style: normal;
    transition: transform .35s var(--ease-out);
  }
  .real-link:hover .arr { transform: translateX(6px); }

  /* === PARTNERZY === */
  .partnerzy { background: var(--paper-2); }
  .partnerzy::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0, var(--line) 12%, var(--line) 88%, transparent 100%);
  }
  .part-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px 100px;
    margin-top: 80px;
  }
  .part-item {
    display: grid; grid-template-columns: 60px 1fr; gap: 20px;
    align-items: start;
    position: relative;
    padding-top: 14px;
  }
  .part-item::before {
    content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 1px;
    background: var(--gold); opacity: .6;
    transition: width .4s var(--ease-out), opacity .4s;
  }
  .part-item:hover::before { width: 100%; opacity: 1; }
  .part-num {
    font-style: italic; font-weight: 400;
    font-size: 14px; color: var(--gold);
    letter-spacing: .03em;
  }
  .part-text h3 {
    font-size: 21px; font-weight: 700; letter-spacing: -.018em;
    margin-bottom: 10px; color: var(--ink);
    line-height: 1.2;
  }
  .part-text p {
    font-size: 15px; color: var(--ink-soft); line-height: 1.6;
    max-width: 36ch;
  }
  .part-note {
    margin-top: 56px;
    font-style: italic;
    font-size: 16px; color: var(--ink);
    padding-top: 28px;
    border-top: 1px solid var(--line);
    max-width: 36ch;
    letter-spacing: -.005em;
  }

  /* === ZESPÓŁ === */
  .zespol { background: var(--paper); }
  .zespol::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0, var(--line) 12%, var(--line) 88%, transparent 100%);
  }
  .zespol-block {
    margin-top: 80px;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px;
    align-items: start;
  }
  .zespol-quote {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700; letter-spacing: -.022em;
    color: var(--ink); line-height: 1.2;
    max-width: 18ch;
  }
  .zespol-quote em { font-style: italic; font-weight: 400; color: var(--gold-dark); }
  .zespol-meta { padding-top: 14px; }
  .zespol-marks {
    display: flex; gap: 16px; margin-bottom: 32px;
    align-items: center;
  }
  .zespol-mark {
    width: 12px; height: 12px;
    border: 1.6px solid var(--gold);
    border-radius: 50%;
    transition: background .35s var(--ease);
  }
  .zespol-mark.filled { background: var(--gold); }
  .zespol-marks-rule {
    flex: 1; max-width: 60px; height: 1px;
    background: var(--gold); opacity: .4;
    margin-left: 8px;
  }
  .zespol-note {
    font-size: 16px; color: var(--ink-soft); line-height: 1.6;
    max-width: 30ch;
  }
  .zespol-note em { font-style: italic; color: var(--ink); }
  .zespol-roles {
    margin-top: 36px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    padding-top: 22px; border-top: 1px solid var(--line);
  }
  .zespol-role {
    font-size: 10.5px; font-weight: 600; letter-spacing: .22em;
    text-transform: uppercase; color: var(--ink-faint);
  }

  /* === KONTAKT === */
  .kontakt {
    background: var(--paper);
    padding: 130px 0 150px;
    position: relative;
  }
  .kontakt::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 28%, transparent 80%);
    opacity: .7;
  }
  .kontakt-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11.5px; font-weight: 600; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 40px;
  }
  .kontakt-eyebrow::before { content:""; display:block; width:28px; height:1px; background: var(--gold); }
  .kontakt-eyebrow .roman {
    font-style: italic; font-weight: 400;
    font-size: 13px; color: var(--ink); letter-spacing: .04em; text-transform: none; margin-left: 6px;
  }
  .kontakt-headline {
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -.026em; font-weight: 700;
    max-width: 18ch; margin-bottom: 64px;
    line-height: 1.04;
  }
  .kontakt-headline em { font-style: italic; font-weight: 400; }
  .kontakt-grid {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px;
    align-items: end;
  }
  .kontakt-mail {
    display: inline-block;
    font-size: clamp(24px, 3.6vw, 48px);
    font-weight: 700; letter-spacing: -.024em;
    color: var(--ink);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    transition: color .25s, transform .35s var(--ease-out);
    line-height: 1.05;
  }
  .kontakt-mail:hover { color: var(--gold-dark); transform: translateY(-2px); }
  .kontakt-sub {
    margin-top: 22px;
    font-size: 15.5px; color: var(--ink-soft);
    max-width: 32em; line-height: 1.6;
  }
  .kontakt-meta dl { display: grid; row-gap: 28px; margin: 0; }
  .kontakt-meta dt {
    font-size: 11px; font-weight: 600; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gold);  margin-bottom: 8px;
  }
  .kontakt-meta dd {
    font-size: 16px; color: var(--ink); margin: 0;
  }
  .kontakt-meta dd em { font-style: italic; color: var(--ink-soft); font-size: 13px; display: block; margin-top: 3px; }

  /* === FOOTER === */
  footer {
    background: var(--ink); color: #B5B0A0; padding: 110px 0 40px;
    position: relative;
  }
  footer::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
    background: var(--gold); opacity: .35;
  }
  .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; }
  .foot-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
  .foot-brand-logo img { height: 96px; }
  .foot-tag {
    font-style: italic;
    font-size: 16px; max-width: 26em; color: #C8C2B0; line-height: 1.55; font-weight: 400;
  }
  footer h4 {
    color: #F6F2E8;
    font-size: 11px; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; margin-bottom: 22px;
  }
  footer a {
    color: #B5B0A0; display: block; margin-bottom: 12px; font-size: 14px;
    transition: color .2s; position: relative;
  }
  footer a:hover { color: var(--gold); }
  .foot-bottom {
    margin-top: 80px; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
    font-size: 12px; color: #7B7669;
  }
  .foot-roman { font-style: italic; letter-spacing: .04em; }

  /* === COOKIE === */
  .cookie {
    position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 80; max-width: 460px;
    background: var(--paper-3); border: 1px solid var(--line); border-radius: 14px;
    padding: 22px 24px; box-shadow: 0 30px 60px -22px rgba(0,0,0,.35);
    transform: translateY(160%); transition: transform .55s var(--ease-out);
  }
  .cookie.show { transform: none; }
  .cookie p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.55; }
  .cookie p a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); }
  .cookie-btns { display: flex; gap: 10px; }
  .c-btn {
    flex: 1; font-family: var(--sans); font-weight: 600;
    padding: 11px 18px; border-radius: 999px; border: 1.5px solid var(--ink);
    background: transparent; color: var(--ink); cursor: pointer; font-size: 13.5px;
    transition: background .2s, color .2s, border-color .2s;
  }
  .c-btn.solid { background: var(--ink); color: var(--paper); }
  .c-btn:hover.solid { background: var(--gold); border-color: var(--gold); }
  .c-btn:hover:not(.solid) { background: var(--ink); color: var(--paper); }

  /* === REVEAL === */
  .reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-d="1"] { transition-delay: .12s; }
  .reveal[data-d="2"] { transition-delay: .24s; }
  .reveal[data-d="3"] { transition-delay: .36s; }
  .reveal[data-d="4"] { transition-delay: .48s; }

  .hero .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); }
  .loaded .hero .reveal { opacity: 1; transform: none; }
  .loaded .hero .reveal[data-d="0"] { transition-delay: .05s; }
  .loaded .hero .reveal[data-d="1"] { transition-delay: .25s; }
  .loaded .hero .reveal[data-d="2"] { transition-delay: .55s; }
  .loaded .hero .reveal[data-d="3"] { transition-delay: .85s; }
  .loaded .hero .reveal[data-d="4"] { transition-delay: 1.05s; }

  /* === RESPONSIVE === */
  @media (max-width: 1080px) {
    .manifest-grid { grid-template-columns: 1fr; gap: 48px; }
    .man-item:nth-child(2), .man-item:nth-child(3) { transform: none; }
    .persp-grid { grid-template-columns: 1fr; gap: 48px; }
    .dyw-grid { grid-template-columns: 1fr; }
    .real-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    .part-grid { grid-template-columns: 1fr; gap: 44px; }
    .zespol-block { grid-template-columns: 1fr; gap: 48px; }
    .kontakt-grid { grid-template-columns: 1fr; gap: 56px; }
  }
  @media (max-width: 860px) {
    .nav-links > .nav-link:not(.nav-mail),
    .nav-links > .nav-item.has-dropdown { display: none; }
    .nav-mail { display: none; }
    .burger { display: block; }
    .nav { height: 92px; }
  }
  @media (max-width: 720px) {
    body { font-size: 16px; }
    :root { --gutter: 22px; }
    .hero { padding: 80px 0 100px; min-height: auto; }
    section { padding: 90px 0; }
    .nav { height: 88px; }
    .logo-link img { height: 48px; }
    .foot-brand-logo img { height: 56px; max-width: 100%; }
    .hero-eyebrow { margin-bottom: 36px; gap: 10px; }
    .hero-sub { margin-top: 44px; }
    .hero-meta { margin-top: 48px; flex-wrap: wrap; gap: 14px; }
    .div-card { padding: 40px 30px; }
    .persp-list li { grid-template-columns: 44px 1fr; gap: 20px; }
    .persp-arrow { display: none; }
    .foot-grid { grid-template-columns: 1fr; gap: 36px; }
    .cookie { left: 10px; right: 10px; bottom: 10px; }
    .real-grid { grid-template-columns: 1fr; gap: 56px; }
    .real-item::before { width: 48px; }
    .kontakt { padding: 90px 0 110px; }
    .kontakt-headline { margin-bottom: 48px; }
    .zespol-roles { grid-template-columns: 1fr; row-gap: 8px; }
    .cookie-btns { flex-direction: column; gap: 8px; }
    .c-btn { width: 100%; padding: 13px 20px; font-size: 14px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal, .hero .reveal { opacity: 1; transform: none; transition: none; }
    .hero h1 .line-b .gold::after { transform: scaleX(1); transition: none; }
    .hero-meta-rule { transform: scaleX(1); transition: none; }
    * { scroll-behavior: auto; }
  }
