:root {
      --ink: #101412;
      --ink-2: #181f1b;
      --paper: #f5f7f4;
      --white: #fff;
      --muted: #667069;
      --line: rgba(16, 20, 18, .12);
      --green: #55c900;
      --green-2: #255c00;
      --lime: #c7ff9e;
      --radius: 22px;
      --shadow: 0 20px 60px rgba(13, 22, 16, .12);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    body.menu-open, body.lightbox-open { overflow: hidden; }
    img { display: block; max-width: 100%; }
    a { color: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    button { font: inherit; }
    .container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 16px;
      color: var(--green-2);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
    .section-title {
      max-width: 760px;
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.75rem);
      line-height: 1.06;
      letter-spacing: -.045em;
    }
    .section-lead { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
    .skip-link {
      position: fixed; top: 10px; left: 10px; z-index: 2000; padding: 10px 16px;
      color: var(--ink); background: var(--white); border-radius: 8px; transform: translateY(-160%);
    }
    .skip-link:focus { transform: translateY(0); }

    .site-header {
      position: fixed; inset: 0 0 auto; z-index: 1000;
      border-bottom: 1px solid rgba(255,255,255,.13);
      background: rgba(12, 17, 14, .72);
      backdrop-filter: blur(16px);
      transition: background .25s ease, box-shadow .25s ease;
    }
    .site-header.scrolled { background: rgba(12, 17, 14, .95); box-shadow: 0 12px 35px rgba(0,0,0,.16); }
    .nav-wrap { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
    .brand img { width: 245px; height: auto; }
    .nav-links { display: flex; align-items: center; gap: 26px; }
    .nav-links a {
      position: relative; color: rgba(255,255,255,.82); text-decoration: none;
      font-size: .92rem; font-weight: 650;
    }
    .nav-links a:not(.nav-cta)::after {
      content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px;
      background: var(--green); transition: right .2s ease;
    }
    .nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
    .nav-links a:hover::after, .nav-links a:focus-visible::after { right: 0; }
    .nav-cta, .button {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      min-height: 50px; padding: 0 22px; border: 0; border-radius: 999px;
      color: var(--ink) !important; background: var(--green); text-decoration: none;
      font-weight: 800; box-shadow: 0 10px 28px rgba(85,201,0,.22);
      transition: transform .2s ease, background .2s ease;
    }
    .nav-cta { min-height: 44px; padding-inline: 18px; }
    .nav-cta:hover, .button:hover { transform: translateY(-2px); background: #65e500; }
    .menu-toggle {
      display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid rgba(255,255,255,.22);
      border-radius: 50%; color: #fff; background: transparent; cursor: pointer;
    }
    .menu-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: .2s ease; }

    .hero {
      position: relative; min-height: 640px; display: grid; align-items: end;
      overflow: hidden; color: #fff; background: var(--ink);
    }
    .slides, .slide { position: absolute; inset: 0; }
    .slide {
      opacity: 0; transition: opacity 1s ease; pointer-events: none;
    }
    .slide.active { opacity: 1; }
    .slide img { width: 100%; height: 100%; object-fit: cover; }
    .hero::before {
      content: ""; position: absolute; inset: 0; z-index: 2;
      background:
        linear-gradient(90deg, rgba(8,12,10,.93) 0%, rgba(8,12,10,.62) 48%, rgba(8,12,10,.22) 78%),
        linear-gradient(0deg, rgba(8,12,10,.88) 0%, transparent 52%);
    }
    .hero::after {
      content: ""; position: absolute; inset: auto -12% -35% auto; z-index: 2;
      width: 62vw; height: 62vw; border: 1px solid rgba(105,229,23,.28); border-radius: 50%;
      box-shadow: 0 0 0 80px rgba(85,201,0,.035), 0 0 0 160px rgba(85,201,0,.025);
    }
    .hero-content { position: relative; z-index: 3; padding: 145px 0 75px; }
    .hero-kicker {
      display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
      color: var(--lime); font-size: .8rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase;
    }
    .hero-kicker::before { content: ""; width: 36px; height: 2px; background: var(--green); }
    h1 {
      max-width: 820px; margin: 0; font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1; letter-spacing: -.055em; text-wrap: balance;
    }
    h1 span { color: var(--green); }
    .hero-copy { max-width: 660px; margin: 25px 0 30px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.5vw, 1.12rem); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
    .button.secondary { color: #fff !important; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.24); box-shadow: none; }
    .button.secondary:hover { background: rgba(255,255,255,.14); }
    .slider-ui {
      position: absolute; right: max(20px, calc((100vw - var(--max)) / 2)); bottom: 48px; z-index: 4;
      display: flex; align-items: center; gap: 12px;
    }
    .slider-arrow {
      width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
      color: #fff; background: rgba(0,0,0,.18); cursor: pointer; transition: .2s ease;
    }
    .slider-arrow:hover { color: var(--ink); background: var(--green); border-color: var(--green); }
    .slider-count { min-width: 48px; color: rgba(255,255,255,.7); font-size: .85rem; text-align: center; }
.about { padding: 82px 0; }
    .about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
    .about-copy p { margin: 0 0 20px; color: var(--muted); font-size: 1.04rem; }
    .about-copy p:first-child { color: var(--ink); font-size: 1.2rem; }
.services { padding: 82px 0; color: #fff; background: var(--ink); }
    .services .eyebrow { color: var(--green); }
    .services .section-lead { color: rgba(255,255,255,.61); }
    .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }
    .service-card {
      position: relative; min-height: 265px; padding: 28px; overflow: hidden;
      border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: var(--ink-2);
    }
    .service-card::after {
      content: ""; position: absolute; width: 180px; height: 180px; right: -90px; bottom: -90px;
      border: 1px solid rgba(85,201,0,.28); border-radius: 50%; transition: transform .35s ease;
    }
    .service-card:hover::after { transform: scale(1.3); }
    .service-card.accent { color: var(--ink); background: var(--green); border-color: var(--green); }
    .service-card.accent::after { border-color: rgba(16,20,18,.2); }
    .service-no { color: var(--green); font-size: .77rem; font-weight: 800; letter-spacing: .13em; }
    .accent .service-no { color: var(--ink); }
    .service-card h3 { margin: 58px 0 12px; font-size: 1.5rem; line-height: 1.12; letter-spacing: -.03em; }
    .service-card p { margin: 0; color: rgba(255,255,255,.62); font-size: .94rem; }
    .service-card.accent p { color: rgba(16,20,18,.72); }

    .gallery { padding: 82px 0; }
    .gallery-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 46px; }
    .gallery-note { max-width: 310px; margin: 0; color: var(--muted); font-size: .93rem; }
    .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 14px; }
    .gallery-item {
      position: relative; display: block; overflow: hidden; border-radius: 16px; background: #dfe4df;
      cursor: zoom-in;
    }
    .gallery-item:nth-child(1), .gallery-item:nth-child(8) { grid-column: span 2; grid-row: span 2; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
    .gallery-item::after {
      content: "Powiększ  ↗"; position: absolute; right: 12px; bottom: 12px; padding: 8px 12px;
      color: #fff; background: rgba(10,15,12,.72); border-radius: 999px; font-size: .74rem; font-weight: 750;
      opacity: 0; transform: translateY(6px); transition: .25s ease;
    }
    .gallery-item:hover img { transform: scale(1.045); filter: brightness(.86); }
    .gallery-item:hover::after { opacity: 1; transform: translateY(0); }

    .contact { padding: 82px 0; color: var(--ink); background: #e9eee9; }
    .contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 22px; }
    .contact-panel, .map-panel { border-radius: var(--radius); overflow: hidden; }
    .contact-panel {
      padding: clamp(30px, 5vw, 54px); background: var(--white); color: var(--ink);
      border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(16,20,18,.08);
    }
    .gallery .eyebrow,
    .contact-panel .eyebrow { color: #255c00; }
    .contact-panel h2 { margin: 0 0 28px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.02; letter-spacing: -.045em; }
    .contact-name { margin: 0 0 22px; font-size: 1.2rem; font-weight: 850; }
    .contact-lines { display: grid; gap: 10px; margin-bottom: 30px; }
    .contact-lines a { width: fit-content; text-decoration-thickness: 1px; text-underline-offset: 4px; font-weight: 650; }
    .pdf-link {
      display: flex; align-items: center; gap: 16px; padding: 18px; margin-top: 28px;
      border: 1px solid var(--line); border-radius: 14px; background: #f3f6f2; text-decoration: none;
      transition: background .2s ease;
    }
    .pdf-link:hover { background: #e7efe3; border-color: rgba(63,160,0,.35); }
    .pdf-icon {
      flex: 0 0 47px; display: grid; place-items: center; height: 56px; border-radius: 10px;
      color: var(--green); background: var(--ink); font-size: .72rem; font-weight: 900;
    }
    .pdf-link strong { display: block; line-height: 1.25; }
    .pdf-link small { opacity: .68; }
    .map-panel {
      min-height: 520px; display: grid; place-items: center; padding: clamp(30px, 6vw, 70px);
      background: linear-gradient(145deg, #182019, #0d120e); border: 1px solid var(--line);
    }
    .map-card { max-width: 430px; color: #fff; text-align: center; }
    .map-card .eyebrow { justify-content: center; color: #b9ff8a; }
    .map-marker {
      display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 28px;
      border: 1px solid rgba(85,201,0,.45); border-radius: 50%; color: var(--green);
      background: rgba(85,201,0,.08); box-shadow: 0 0 0 14px rgba(85,201,0,.035);
    }
    .map-card h3 { margin: 0 0 15px; font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.05; letter-spacing: -.04em; }
    .map-card p:not(.eyebrow) { margin: 0 0 28px; color: rgba(255,255,255,.66); }
    .map-card small { display: block; margin-top: 14px; color: rgba(255,255,255,.46); }

    .languages { padding: 55px 0; color: #fff; background: #0b0f0c; border-top: 1px solid rgba(255,255,255,.08); }
    .languages-head { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 24px; }
    .languages h2 { margin: 0; font-size: 1rem; letter-spacing: .03em; }
    .languages p { margin: 0; color: rgba(255,255,255,.46); font-size: .83rem; }
    .lang-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 8px; }
    .lang-link {
      display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px;
      border: 1px solid rgba(255,255,255,.11); border-radius: 9px; color: rgba(255,255,255,.75);
      background: rgba(255,255,255,.035); text-decoration: none; font-size: .76rem; font-weight: 800;
      transition: .2s ease;
    }
    .lang-link img { width: 20px; height: 20px; object-fit: cover; border-radius: 2px; }
    .lang-link:hover, .lang-link:focus-visible, .lang-link.active {
      color: #fff; border-color: rgba(85,201,0,.65); background: rgba(85,201,0,.12);
    }

    .footer { padding: 48px 0 24px; color: rgba(255,255,255,.58); background: #0b0f0c; border-top: 1px solid rgba(255,255,255,.08); }
    .footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; padding-bottom: 35px; }
    .footer h2 { margin: 0 0 13px; color: #fff; font-size: .92rem; letter-spacing: .02em; }
    .footer p { margin: 0; font-size: .84rem; line-height: 1.75; }
    .footer-links { display: grid; gap: 6px; }
    .footer a { color: rgba(255,255,255,.78); text-underline-offset: 3px; }
    .footer-bottom {
      display: flex; justify-content: space-between; gap: 20px; padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.09); font-size: .76rem;
    }

    .lightbox {
      position: fixed; inset: 0; z-index: 1500; display: grid; place-items: center; padding: 55px;
      background: rgba(5,8,6,.94); opacity: 0; visibility: hidden; transition: .2s ease;
    }
    .lightbox.open { opacity: 1; visibility: visible; }
    .lightbox img { max-width: min(1200px, 92vw); max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 30px 80px #000; }
    .lightbox button {
      position: absolute; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25);
      border-radius: 50%; color: #fff; background: rgba(255,255,255,.07); cursor: pointer;
    }
    .lightbox-close { top: 20px; right: 20px; font-size: 1.5rem; }
    .lightbox-prev { left: 20px; top: 50%; }
    .lightbox-next { right: 20px; top: 50%; }
    .lightbox-caption { position: absolute; bottom: 18px; color: rgba(255,255,255,.65); font-size: .83rem; }

    @media (max-width: 1000px) {
      .nav-links {
        position: fixed; inset: 80px 0 auto; display: grid; gap: 0; padding: 20px;
        background: rgba(12,17,14,.98); border-top: 1px solid rgba(255,255,255,.1);
        transform: translateY(-130%); opacity: 0; transition: .25s ease;
      }
      .nav-links.open { transform: translateY(0); opacity: 1; }
      .nav-links a { padding: 14px; }
      .nav-links .nav-cta { margin-top: 10px; }
      .menu-toggle { display: block; }
      .about-grid, .contact-grid { grid-template-columns: 1fr; }
      .service-grid { grid-template-columns: 1fr 1fr; }
      .service-card:last-child { grid-column: 1 / -1; }
      .lang-grid { grid-template-columns: repeat(6, 1fr); }
      .slider-ui { bottom: 45px; }
.proof-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
}

    @media (max-width: 720px) {
      .container { width: min(calc(100% - 28px), var(--max)); }
      .brand img { width: 205px; }
      .nav-wrap { min-height: 72px; }
      .nav-links { inset-block-start: 72px; }
      .hero { min-height: 650px; }
      .hero-content { padding: 125px 0 145px; }
      .hero::before { background: linear-gradient(0deg, rgba(8,12,10,.94) 0%, rgba(8,12,10,.55) 74%, rgba(8,12,10,.45)); }
      .slider-ui { left: 14px; right: auto; bottom: 70px; }
      .about, .gallery, .contact, .services { padding: 66px 0; }
      .feature-list, .service-grid { grid-template-columns: 1fr; }
      .service-card:last-child { grid-column: auto; }
      .service-card { min-height: 240px; }
      .service-card h3 { margin-top: 46px; }
      .gallery-head, .languages-head, .footer-row { align-items: start; flex-direction: column; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 175px; gap: 8px; }
      .gallery-item:nth-child(1), .gallery-item:nth-child(8) { grid-column: span 2; grid-row: span 2; }
      .lang-grid { grid-template-columns: repeat(3, 1fr); }
      .map-panel { min-height: 390px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; }
      .lightbox { padding: 15px; }
      .lightbox-prev, .lightbox-next { top: auto; bottom: 20px; }
      .lightbox-caption { bottom: 32px; max-width: 55%; text-align: center; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    }

    /* Polityka prywatności */
    .policy-body { background: #f1f4f0; }
    .policy-header {
      position: sticky; top: 0; z-index: 1000; color: #fff;
      background: rgba(12,17,14,.96); border-bottom: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(14px);
    }
    .policy-nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .policy-nav .brand img { width: 225px; }
    .policy-nav-links { display: flex; align-items: center; gap: 10px; }
    .policy-nav-links a {
      padding: 10px 15px; border-radius: 999px; color: rgba(255,255,255,.78);
      text-decoration: none; font-size: .88rem; font-weight: 700;
    }
    .policy-nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
    .policy-hero { padding: 76px 0 62px; color: #fff; background: var(--ink); }
    .policy-hero h1 { max-width: 850px; font-size: clamp(2.7rem, 6vw, 5.2rem); }
    .policy-hero p:last-child { max-width: 720px; margin: 22px 0 0; color: rgba(255,255,255,.65); font-size: 1.05rem; }
    .policy-wrap {
      display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 32px;
      align-items: start; padding-top: 52px; padding-bottom: 78px;
    }
    .policy-summary {
      position: sticky; top: 105px; padding: 24px; border: 1px solid var(--line);
      border-radius: 17px; background: #fff; box-shadow: 0 12px 35px rgba(16,20,18,.06);
    }
    .policy-summary strong { display: block; margin-bottom: 10px; color: var(--green-2); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
    .policy-summary p { margin: 0; color: var(--muted); font-size: .9rem; }
    .policy-summary a { display: inline-block; margin-top: 16px; color: var(--green-2); font-size: .88rem; font-weight: 750; }
    .policy-content {
      padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line);
      border-radius: var(--radius); background: #fff; box-shadow: 0 18px 55px rgba(16,20,18,.07);
    }
    .policy-notice {
      padding: 22px 24px; margin-bottom: 38px; border-left: 4px solid var(--green);
      border-radius: 0 13px 13px 0; background: #eff8e9;
    }
    .policy-notice strong { display: block; margin-bottom: 5px; }
    .policy-content section + section { margin-top: 42px; padding-top: 38px; border-top: 1px solid var(--line); }
    .policy-content h2 { margin: 0 0 15px; font-size: clamp(1.4rem, 3vw, 1.85rem); line-height: 1.2; letter-spacing: -.025em; }
    .policy-content h3 { margin: 25px 0 8px; font-size: 1.05rem; }
    .policy-content p { margin: 0 0 14px; color: #4f5952; }
    .policy-content ul { margin: 12px 0 0; padding-left: 22px; color: #4f5952; }
    .policy-content li + li { margin-top: 7px; }
    .policy-content a { color: #337f00; text-underline-offset: 3px; }
    .policy-contact {
      padding: 26px; margin-top: 42px; border-radius: 16px; color: #fff; background: var(--ink);
    }
    .policy-contact h2 { color: #fff; }
    .policy-contact p { color: rgba(255,255,255,.68); }
    .policy-contact a { color: var(--lime); }
    .policy-footer { padding: 32px 0; color: rgba(255,255,255,.55); background: #0b0f0c; }
    .policy-footer-row { display: flex; justify-content: space-between; gap: 24px; font-size: .8rem; }
    .policy-footer a { color: rgba(255,255,255,.8); }

    @media (max-width: 850px) {
      .policy-wrap { grid-template-columns: 1fr; }
      .policy-summary { position: static; }
    }
    @media (max-width: 600px) {
      .policy-nav { min-height: 70px; }
      .policy-nav .brand img { width: 185px; }
      .policy-nav-links a:first-child { display: none; }
      .policy-hero { padding: 55px 0 48px; }
      .policy-wrap { padding-top: 28px; padding-bottom: 50px; }
      .policy-footer-row { flex-direction: column; }
    }
