        :root {
            --red: #c41e1e;
            --red-dark: #8f1515;
            --black: #0d0d0d;
            --white: #f5f0eb;
            --cream: #ede8e1;
            --gray: #6b6b65;
            --light: #d8d3cc;
            --transition: all 0.3s ease;
        }

        html { scroll-behavior: smooth; }
        * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; margin: 0; padding: 0; }

        body {
            overflow-x: hidden;
            font-family: 'Crimson Pro', Georgia, serif;
            background: var(--white);
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ── SKIP LINK (dostępność WCAG 2.4.1) ── */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 16px;
            background: var(--red);
            color: var(--white);
            padding: 10px 20px;
            font-family: 'DM Mono', monospace;
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-decoration: none;
            z-index: 9999;
            transition: top 0.2s;
        }
        .skip-link:focus { top: 6px; }

        /* ── PREFERS-REDUCED-MOTION (dostępność WCAG 2.3.3) ── */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* ── TOP BAR ── */
        .topbar {
            background: var(--black);
            color: var(--white);
            padding: 12px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'DM Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 1px;
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
        }
        .topbar a { color: var(--red); text-decoration: none; }
        .topbar-right { display: flex; gap: 24px; align-items: center; }
        .topbar-rezerwuj { display: none; text-decoration: none; } /* widoczny tylko na mobile */
        .topbar-fb { display: flex; align-items: center; gap: 6px; color: var(--white); text-decoration: none; transition: opacity 0.2s; }
        .topbar-fb:hover { opacity: 0.75; }
        .topbar-fb-icon { display: flex; align-items: center; justify-content: center; background: #1877F2; border-radius: 4px; width: 22px; height: 22px; }
        .topbar-fb svg { width: 14px; height: 14px; fill: #ffffff; }
        .topbar-fb-label { color: #ffffff; }
        .topbar-tel {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            text-decoration: none;
        }
        .topbar-tel-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.3rem;
            color: var(--white);
            letter-spacing: 3px;
            line-height: 1;
        }
        .topbar-tel-label {
            font-family: 'DM Mono', monospace;
            font-size: 0.55rem;
            letter-spacing: 2px;
            color: var(--red);
            text-transform: uppercase;
        }
        .topbar-tel:hover .topbar-tel-num { color: var(--red); }

        /* ── HERO ── */
        header {
            background: var(--black);
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            overflow: hidden;
            padding-top: 38px;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 60px 60px 80px;
            position: relative;
            z-index: 2;
        }

        .hero-eyebrow {
            font-family: 'DM Mono', monospace;
            font-size: 1.25rem;
            letter-spacing: 3px;
            color: var(--red);
            text-transform: uppercase;
            margin-bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
            line-height: 1.8;
        }
        .hero-eyebrow::before {
            content: '';
            width: 30px;
            height: 1px;
            background: var(--red);
            margin-bottom: 6px;
            flex-shrink: 0;
            display: none;
        }

        h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(5rem, 10vw, 9rem);
            line-height: 0.9;
            color: var(--white);
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        h1 em {
            color: var(--red);
            font-style: normal;
            display: block;
        }

        .hero-sub {
            font-size: 1.25rem;
            color: #888;
            font-weight: 300;
            line-height: 1.7;
            max-width: 420px;
            margin: 28px 0 40px;
            font-style: italic;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--red);
            color: var(--white);
            padding: 18px 48px;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.3rem;
            letter-spacing: 3px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background 0.2s;
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
        }
        .btn-primary:hover { background: var(--red-dark); }

        .btn-secondary {
            color: #666;
            font-family: 'DM Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid #333;
            padding-bottom: 2px;
            transition: color 0.2s, border-color 0.2s;
        }
        .btn-secondary:hover { color: var(--white); border-color: var(--white); }

        .hero-right {
            position: relative;
            overflow: hidden;
            align-self: stretch;
            background: url('tlo_nowe.webp') center 65% / 100% auto no-repeat;
            background-color: var(--black);
        }
        .hero-right img {
            display: none;
        }
        .hero-right::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--black) 0%, transparent 40%);
        }

        .hero-bg-number {
            position: absolute;
            bottom: -20px;
            left: 60px;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 22rem;
            color: rgba(255,255,255,0.025);
            line-height: 1;
            pointer-events: none;
            z-index: 1;
            letter-spacing: -10px;
        }

        .hero-gallery-bar {
            background: var(--black);
            border-top: 1px solid #1a1a1a;
            border-bottom: 3px solid var(--black);
            padding: 10px 0;
            overflow: hidden;
            position: relative;
        }
        .hero-gallery-bar::before,
        .hero-gallery-bar::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 80px;
            z-index: 10;
            pointer-events: none;
        }
        .hero-gallery-bar::before {
            left: 0;
            background: linear-gradient(to right, var(--black) 40%, transparent);
        }
        .hero-gallery-bar::after {
            right: 0;
            background: linear-gradient(to left, var(--black) 40%, transparent);
        }
        .hero-gallery-wrap {
            display: flex;
            width: max-content;
            animation: galleryScroll 18s linear infinite;
        }
        .hero-gallery-wrap:hover { animation-play-state: paused; }
        @keyframes galleryScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .hero-gallery {
            display: flex;
            gap: 6px;
            flex-shrink: 0;
        }
        .hero-gallery-item {
            width: 100px;
            height: 100px;
            flex-shrink: 0;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            background: #111;
        }
        .hero-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease, filter 0.4s ease;
            filter: grayscale(0.3);
        }
        .hero-gallery-item:hover img {
            transform: scale(1.3);
            filter: grayscale(0);
        }
        .hero-gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0);
            transition: background 0.3s;
            pointer-events: none;
        }
        .hero-gallery-item:hover::after {
            background: rgba(196,30,30,0.25);
        }

        /* ── GALLERY LABEL MOBILE ── */
        .gallery-label-mobile {
            display: none;
        }

        /* tagi i trust bar – tylko mobile */
        .hero-tags, .hero-trust { display: none; }
        /* hero-title-row – na desktopie h1 i eyebrow normalnie */
        .hero-title-row { display:flex; align-items:center; gap:28px; margin-bottom:8px; }
        .brand-bar {
            background: var(--cream);
            border-top: 1px solid var(--light);
            border-bottom: 3px solid var(--black);
            overflow: hidden;
            position: relative;
            padding: 0;
        }
        .brand-bar::before,
        .brand-bar::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 100px;
            z-index: 10;
            pointer-events: none;
        }
        .brand-bar::before {
            left: 0;
            background: linear-gradient(to right, var(--cream) 40%, transparent 100%);
        }
        .brand-bar::after {
            right: 0;
            background: linear-gradient(to left, var(--cream) 40%, transparent 100%);
        }
        .brand-ticker-wrap {
            display: flex;
            width: max-content;
            animation: brandScroll 22s linear infinite;
        }
        .brand-ticker-wrap:hover { animation-play-state: paused; }
        .brand-ticker {
            display: flex;
            align-items: center;
            padding: 22px 0;
            flex-shrink: 0;
        }
        @keyframes brandScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .brand-ticker-item {
            display: flex;
            align-items: center;
        }
        .brand-card {
            cursor: pointer;
            filter: grayscale(1);
            opacity: 0.38;
            transition: all 0.3s;
            background: white;
            padding: 12px 28px;
            margin: 0 50px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .brand-card:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
        .brand-logo { height: 36px; width: auto; display: block; }
        .brand-name {
            font-family: 'DM Mono', monospace;
            font-size: 0.52rem;
            letter-spacing: 3px;
            color: var(--gray);
            text-transform: uppercase;
            white-space: nowrap;
        }
        .brand-sep {
            width: 1px;
            height: 40px;
            background: var(--light);
            flex-shrink: 0;
        }

        /* ── SEKCJA OFERTY ── */
        /* ── TAGI POD NAGŁÓWKIEM OFERT ── */
        .section-tags-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 24px;
        }
        .section-tag {
            font-family: 'DM Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray);
            border: 1px solid #ddd;
            padding: 6px 14px;
            transition: all 0.2s;
            cursor: default;
        }
        .section-tag:hover {
            border-color: var(--red);
            color: var(--red);
        }

        .section-offers {
            padding: 0;
            background: var(--white);
        }

        .section-header {
            padding: 80px 80px 24px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            border-bottom: 3px solid var(--black);
        }
        .section-label {
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 4px;
            color: var(--red);
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-label::before { content: ''; width: 20px; height: 1px; background: var(--red); }

        h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 5vw, 5rem);
            letter-spacing: 2px;
            line-height: 1;
            color: var(--black);
            text-transform: uppercase;
        }
        h2 em { color: var(--red); font-style: normal; }

        .offers-list { display: flex; flex-direction: column; }

        .offer-row {
            display: grid;
            grid-template-columns: 80px 1fr 1fr auto;
            gap: 0;
            border-bottom: 3px solid var(--black);
            cursor: pointer;
            transition: background 0.2s;
            align-items: stretch;
            -webkit-tap-highlight-color: rgba(196,30,30,0.15);
            touch-action: manipulation;
        }
        .offer-row:first-child {
            border-top: 3px solid var(--black);
        }
        .offer-row:hover { background: var(--cream); }
        .offer-row:hover .offer-num { color: var(--red); }

        .offer-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid var(--light);
            transition: color 0.2s;
            padding: 30px 0;
        }

        .offer-main {
            padding: 30px 40px;
            border-right: 1px solid var(--light);
        }
        .offer-tag {
            font-family: 'DM Mono', monospace;
            font-size: 0.58rem;
            letter-spacing: 3px;
            color: var(--gray);
            text-transform: uppercase;
            margin-bottom: 8px;
            display: block;
        }
        .offer-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.6rem;
            letter-spacing: 2px;
            color: var(--black);
            line-height: 1;
            display: block;
            margin-bottom: 8px;
            font-weight: 900;
        }
        /* FIX #4: kontrast tekstu – z #888 na #666 dla WCAG AA */
        .offer-desc {
            font-size: 1.1rem;
            color: #666;
            font-style: italic;
            line-height: 1.5;
        }

        .offer-features {
            padding: 20px 30px;
            border-right: 1px solid var(--light);
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
        }
        .offer-features .modal-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 0;
            border: none;
        }
        .offer-features .modal-item-icon {
            color: var(--red);
            font-size: 1rem;
            min-width: 20px;
            padding-top: 2px;
        }
        .offer-features .modal-item-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .offer-features .modal-item-text strong {
            font-family: 'DM Mono', monospace;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            color: var(--dark);
        }
        .offer-features .modal-item-text span {
            font-size: 0.82rem;
            color: #888;
            line-height: 1.4;
        }

        .offer-action {
            padding: 30px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-width: 180px;
        }
        .offer-price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--black);
            line-height: 1;
            text-align: center;
        }
        .btn-offer { width: 100%; }
        .offer-price span {
            font-family: 'DM Mono', monospace;
            font-size: 0.6rem;
            color: var(--gray);
            letter-spacing: 2px;
            display: block;
            margin-bottom: 12px;
        }
        .offer-arrow { display: none; }
        .offer-row:hover .offer-arrow { display: none; }
        .offer-hint {
            font-family: 'DM Mono', monospace;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: var(--red);
            text-transform: uppercase;
            white-space: nowrap;
            pointer-events: none;
            display: flex;
            align-items: center;
            gap: 5px;
            opacity: 0.75;
            margin-top: 10px;
        }
        .offer-hint::before {
            content: '+';
            display: inline-block;
            color: var(--red);
            font-size: 0.9rem;
            font-weight: 700;
            line-height: 1;
            flex-shrink: 0;
        }
        .offer-row:hover .offer-hint { opacity: 1; }
        .btn-offer {
            background: var(--black);
            color: var(--white);
            padding: 13px 22px;
            font-family: 'DM Mono', monospace;
            font-size: 0.68rem;
            letter-spacing: 2px;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            transition: background 0.2s;
            white-space: nowrap;
            animation: offerPulse 2.8s ease-in-out infinite;
        }
        .btn-offer:hover {
            background: var(--red);
            animation: none;
        }
        @keyframes offerPulse {
            0%   { box-shadow: 0 0 0px 0px rgba(196,30,30,0); }
            50%  { box-shadow: 0 0 12px 4px rgba(196,30,30,0.55); }
            100% { box-shadow: 0 0 0px 0px rgba(196,30,30,0); }
        }

        .zaliczka-notice {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-family: 'DM Mono', monospace;
            font-size: 0.58rem;
            letter-spacing: 0.5px;
            color: var(--gray);
            line-height: 1.6;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #e8e3dc;
        }
        .zaliczka-notice i { font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; color: #aaa; }
        .modal-footer .zaliczka-notice {
            border-top: 1px solid #222;
            color: #555;
            margin-top: 14px;
            padding-top: 14px;
        }
        .modal-footer .zaliczka-notice i { color: #444; }
        .offer-details {
            font-family: 'DM Mono', monospace;
            font-size: 0.58rem;
            letter-spacing: 1.5px;
            color: var(--red);
            text-transform: uppercase;
            text-decoration: none;
            border-bottom: 1px solid rgba(196,30,30,0.3);
            padding-bottom: 1px;
            cursor: pointer;
            background: none;
            border-top: none;
            border-left: none;
            border-right: none;
            transition: border-color 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .offer-details:hover { border-bottom-color: var(--red); color: var(--red-dark); }

        /* ── INKLUZYWNOŚĆ ── */
        .section-inclusive {
            background: var(--black);
            padding: 80px;
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 60px;
            align-items: start;
        }
        .inclusive-left .section-label { margin-bottom: 20px; }
        .inclusive-left h2 { color: var(--white); margin-bottom: 24px; }
        .inclusive-left p {
            color: #888;
            font-size: 1.2rem;
            font-weight: 300;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .inclusive-left strong { color: var(--red); font-style: normal; }

        .inclusive-right {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .inc-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: stretch;
            background: #111;
            border-left: 3px solid var(--red);
            margin-bottom: 12px;
        }
        .inc-photo {
            overflow: hidden;
            position: relative;
            cursor: pointer;
            max-width: 100%;
            background: #000;
        }
        .inc-photo .slide-img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
            position: absolute;
            top: 0; left: 0;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }
        .inc-photo .slide-img:first-child {
            position: relative;
            opacity: 0;
        }
        .inc-photo .slide-img.active {
            opacity: 1;
        }
        .inc-photo:hover .slide-img.active { transform: scale(1.02); }
        .inc-photo-hint {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: rgba(0,0,0,0.65);
            color: var(--red);
            font-family: 'DM Mono', monospace;
            font-size: 0.55rem;
            letter-spacing: 2px;
            padding: 6px 10px;
            text-align: center;
            transition: background 0.2s;
        }
        .inc-photo:hover .inc-photo-hint { background: rgba(196,30,30,0.8); color: #fff; }
        .inclusive-gallery-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #111;
            border: 1px dashed #333;
            color: #444;
            font-family: 'DM Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 2px;
            text-align: center;
            padding: 20px;
            min-height: 140px;
            box-sizing: border-box;
        }
        .inc-box {
            background: #111;
            padding: 30px;
        }
        .inc-box-icon {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: var(--white);
            line-height: 1;
            margin-bottom: 10px;
            display: block;
        }
        .inc-box h4 {
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 2px;
            color: var(--white);
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .inc-box p {
            color: #555;
            font-size: 0.95rem;
            font-style: normal;
            line-height: 1.5;
            margin: 0;
        }

        /* ── O MNIE ── */
        .section-feeling {
            background: var(--black);
            padding: 60px 80px;
            text-align: center;
            border-bottom: 3px solid var(--black);
        }
        .feeling-text {
            font-family: 'Crimson Pro', serif;
            font-size: clamp(1.4rem, 3vw, 2.2rem);
            color: var(--white);
            font-style: italic;
            line-height: 1.5;
            max-width: 700px;
            margin: 0 auto;
        }
        .feeling-text em {
            color: var(--red);
            font-style: italic;
        }

        @media (max-width: 768px) {
            .section-feeling { padding: 44px 24px; }
        }
        @media (max-width: 480px) {
            .section-feeling { padding: 36px 20px; }
        }

        .section-about {
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
            border-top: 3px solid var(--black);
            border-bottom: 3px solid var(--black);
        }
        .about-img-wrap {
            overflow: hidden;
            position: relative;
        }
        .about-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            filter: grayscale(0.3) contrast(1.1);
            display: block;
        }
        .about-img-wrap::after {
            content: 'MARIUSZ\ABIELAK';
            white-space: pre;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5rem;
            color: rgba(255,255,255,0.08);
            position: absolute;
            bottom: 20px;
            left: 20px;
            line-height: 0.9;
            letter-spacing: 3px;
            pointer-events: none;
        }
        .about-content {
            padding: 70px 80px;
            background: var(--cream);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .about-content .section-label { margin-bottom: 20px; }
        .about-content h2 { margin-bottom: 30px; font-size: clamp(2rem, 3vw, 3.5rem); }
        .about-content p {
            font-size: 1.15rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
            font-weight: 300;
        }
        .about-content p strong { color: var(--black); font-weight: 600; }
        .about-quote {
            border-left: 4px solid var(--red);
            padding: 12px 20px;
            margin: 24px 0;
            font-style: italic;
            font-size: 1.15rem;
            color: var(--black);
            background: rgba(196,30,30,0.04);
        }
        .link-linkedin {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 2px;
            color: var(--red);
            text-decoration: none;
            text-transform: uppercase;
            border-bottom: 1px solid var(--red);
            padding-bottom: 2px;
            margin-top: 10px;
        }

        /* ── SEKCJA INSTYTUCJE ── */
        .section-instytucje {
            background: var(--cream);
            padding: 80px;
            border-top: 3px solid var(--black);
            border-bottom: 3px solid var(--black);
        }

        .inst-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 50px;
        }
        .inst-header-left .section-label { margin-bottom: 16px; }
        .inst-header-left h2 { margin-top: 0; margin-bottom: 0; }
        .inst-header-img {
            overflow: hidden;
            position: relative;
            max-height: 340px;
        }
        .inst-header-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            filter: grayscale(0.2) contrast(1.05);
        }

        .inst-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            margin-bottom: 50px;
        }
        .inst-card {
            background: var(--white);
            padding: 36px 30px;
            border-top: 3px solid transparent;
            transition: border-color 0.2s;
            display: flex;
            flex-direction: column;
            gap: 14px;
            position: relative;
        }
        .inst-card:hover { border-top-color: var(--red); }
        .inst-card-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            line-height: 1;
            color: var(--red);
        }
        .inst-card-icon i { font-size: 3rem; }
        .inst-card h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.4rem;
            letter-spacing: 1px;
            color: var(--black);
            line-height: 1.2;
            padding-right: 56px;
            white-space: normal;
            word-break: break-word;
        }
        .inst-card p {
            font-size: 1.05rem;
            color: #666;
            font-style: italic;
            line-height: 1.6;
            margin: 0;
            flex: 1;
        }
        .inst-card-tag {
            font-family: 'DM Mono', monospace;
            font-size: 0.58rem;
            letter-spacing: 2px;
            color: var(--red);
            text-transform: uppercase;
        }

        .inst-atuty {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            margin-bottom: 50px;
        }
        .inst-atut {
            background: var(--black);
            padding: 28px 24px 28px 24px;
            padding-top: 36px;
            border-left: 3px solid transparent;
            transition: border-color 0.2s;
            position: relative;
        }
        .inst-atut:hover { border-left-color: var(--red); }
        .inst-atut-icon {
            position: absolute;
            top: 16px;
            right: 16px;
            font-size: 2.4rem;
            color: var(--red);
            line-height: 1;
            display: block;
        }
        .inst-atut h5 {
            font-family: 'DM Mono', monospace;
            font-size: 0.62rem;
            letter-spacing: 2px;
            color: var(--white);
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .inst-atut p {
            color: #555;
            font-size: 0.95rem;
            font-style: italic;
            line-height: 1.5;
            margin: 0;
        }

        .inst-cta {
            background: var(--black);
            padding: 40px 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        .inst-cta-text h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--white);
            letter-spacing: 2px;
            line-height: 1;
            margin-bottom: 8px;
        }
        .inst-cta-text p {
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 2px;
            color: var(--gray);
            text-transform: uppercase;
        }

        /* ── HERO FEELING ── */
        .hero-feeling {
            font-family: 'Crimson Pro', Georgia, serif;
            font-size: clamp(1.2rem, 2vw, 1.55rem);
            font-style: italic;
            font-weight: 300;
            color: rgba(255,255,255,0.75);
            line-height: 1.6;
            max-width: 480px;
            margin: 18px 0 28px;
            padding-left: 18px;
            border-left: 3px solid var(--red);
        }
        .hero-feeling em {
            color: var(--white);
            font-style: normal;
            font-weight: 600;
        }

        /* ── CYTAT PRZED OFERTAMI ── */
        .big-quote {
            background: var(--black);
            padding: 90px 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-bottom: 3px solid var(--red);
            position: relative;
            overflow: hidden;
        }
        .big-quote::before {
            content: '❝';
            font-family: Georgia, serif;
            font-size: 18rem;
            color: rgba(196,30,30,0.06);
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            line-height: 1;
            pointer-events: none;
        }
        .big-quote-text {
            font-family: 'Crimson Pro', Georgia, serif;
            font-size: clamp(1.7rem, 3.5vw, 2.9rem);
            font-style: italic;
            font-weight: 300;
            color: var(--white);
            line-height: 1.45;
            max-width: 860px;
            position: relative;
            z-index: 1;
        }
        .big-quote-text em {
            color: var(--red);
            font-style: normal;
            font-weight: 600;
        }
        .big-quote-author {
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 3px;
            color: var(--gray);
            text-transform: uppercase;
            margin-top: 32px;
            display: flex;
            align-items: center;
            gap: 14px;
            position: relative;
            z-index: 1;
            white-space: nowrap;
        }
        .big-quote-author::before,
        .big-quote-author::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--red);
        }

        @media (max-width: 768px) {
            .big-quote { padding: 60px 24px; }
            .big-quote::before { font-size: 10rem; }
            .hero-feeling { font-size: 1.1rem; margin: 14px 0 20px; }
        }

        /* mobilne style dla instytucji */
        @media (max-width: 768px) {
            .inst-grid { grid-template-columns: 1fr; }
            .inst-atuty { grid-template-columns: 1fr 1fr; }
            .inst-cta { flex-direction: column; align-items: flex-start; padding: 28px 20px; }
            .inst-cta .btn-primary { width: 100%; text-align: center; }
        }
        @media (max-width: 480px) {
            .inst-atuty { grid-template-columns: 1fr; }
        }

        /* ── FAQ ── */
        .section-faq {
            padding: 80px;
            background: var(--white);
            border-bottom: 3px solid var(--black);
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 80px;
            margin-top: 50px;
        }
        details {
            border-bottom: 1px solid var(--light);
            padding: 20px 0;
        }
        details summary {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.0rem;
            letter-spacing: 1px;
            color: var(--black);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        details summary::-webkit-details-marker { display: none; }
        details summary::after {
            content: '+';
            color: var(--red);
            font-size: 1.5rem;
            line-height: 1;
            flex-shrink: 0;
        }
        details[open] summary::after { content: '−'; }
        details p {
            margin-top: 10px;
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.6;
            font-style: italic;
        }

        /* Etykieta areny */
        .etykieta {
            background: var(--black);
            padding: 50px 80px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }
        .etykieta-item {
            background: #111;
            padding: 30px;
        }
        .etykieta-item h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.3rem;
            color: var(--red);
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .etykieta-item p {
            color: #666;
            font-size: 1rem;
            font-style: italic;
            line-height: 1.6;
        }

        /* ── FOOTER ── */
        footer {
            background: var(--black);
            padding: 60px 80px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            align-items: center;
            border-top: 3px solid var(--red);
        }
        .footer-logo-text {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: var(--white);
            letter-spacing: 4px;
            line-height: 1;
        }
        .footer-logo-text em {
            color: var(--red);
            font-style: normal;
            display: block;
            font-size: 1rem;
            letter-spacing: 6px;
            margin-top: 4px;
        }
        .footer-contact {
            text-align: center;
        }
        .footer-contact a {
            display: block;
            font-family: 'DM Mono', monospace;
            font-size: 0.8rem;
            color: var(--gray);
            text-decoration: none;
            letter-spacing: 1px;
            margin-bottom: 8px;
            transition: color 0.2s;
        }
        .footer-contact a:hover { color: var(--red); }
        .footer-contact .footer-tel {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--white);
            letter-spacing: 3px;
            margin-bottom: 6px;
        }
        .footer-right {
            text-align: right;
        }
        .footer-cities {
            font-family: 'DM Mono', monospace;
            font-size: 0.6rem;
            color: #444;
            letter-spacing: 1px;
            line-height: 2;
        }
        .footer-copy {
            font-family: 'DM Mono', monospace;
            font-size: 0.6rem;
            color: #333;
            margin-top: 16px;
        }

        /* ── MODALE ── */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 5000;
            background: rgba(0,0,0,0.92);
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        .modal-overlay.active { display: flex; }

        .modal-box {
            background: var(--white);
            max-width: 600px;
            width: 100%;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
            animation: modalIn 0.3s ease;
            border-top: 4px solid var(--red);
        }
        @keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        .modal-header {
            position: sticky;
            top: 0;
            background: var(--white);
            z-index: 10;
            padding: 26px 8px 26px 20px;
            border-bottom: 1px solid var(--light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-shrink: 0;
        }
        .modal-header h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.4rem;
            color: var(--black);
            letter-spacing: 3px;
            line-height: 1;
            text-align: left;
        }
        .modal-close-btn {
            background: var(--red);
            border: none;
            color: var(--white);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1rem;
            flex-shrink: 0;
            transition: background 0.2s;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        .modal-close-btn:hover,
        .modal-close-btn:focus { background: var(--red-dark); outline: 2px solid var(--red); outline-offset: 2px; }

        .modal-body {
            padding: 24px 32px;
            overflow-y: auto;
            flex: 1;
            scrollbar-width: thin;
            scrollbar-color: var(--red) var(--cream);
            position: relative;
        }
        .modal-body::after {
            content: '';
            position: sticky;
            bottom: 0;
            display: block;
            height: 56px;
            margin-top: -56px;
            background: linear-gradient(to bottom, transparent, rgba(245,240,235,0.96));
            pointer-events: none;
        }
        .modal-body::-webkit-scrollbar { width: 4px; }
        .modal-body::-webkit-scrollbar-track { background: var(--cream); }
        .modal-body::-webkit-scrollbar-thumb { background: var(--red); }

        .modal-body p { color: #555; font-size: 1.1rem; line-height: 1.8; margin-bottom: 16px; font-style: italic; }
        .modal-lead { font-size: 1.2rem; color: var(--black); font-style: italic; border-left: 3px solid var(--red); padding-left: 14px; }
        .modal-section-title {
            font-family: 'DM Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 4px;
            color: var(--red);
            text-transform: uppercase;
            margin: 20px 0 12px;
            border-bottom: 1px solid var(--light);
            padding-bottom: 6px;
        }
        .modal-item { display: flex; gap: 14px; margin-bottom: 16px; padding-bottom: 14px; }
        .modal-item:last-child { }
        .modal-item-icon { font-size: 2.8rem; flex-shrink: 0; color: var(--red); line-height: 1; align-self: flex-start; margin-top: 0.45em; }
        .modal-item-text strong { color: var(--black); display: block; font-size: 0.85rem; letter-spacing: 0.5px; margin-bottom: 3px; font-family: 'DM Mono', monospace; text-transform: uppercase; font-style: normal; }
        .modal-item-text span { color: #777; font-size: 0.9rem; line-height: 1.6; }

        .modal-footer {
            padding: 18px 32px 24px;
            border-top: 1px solid var(--light);
            text-align: center;
            flex-shrink: 0;
        }
        .modal-footer .btn-primary { font-size: 1.1rem; padding: 14px 40px; }

        /* ── BOOKING ── */
        .booking-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 5000;
            background: rgba(0,0,0,0.92);
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        .booking-overlay.active { display: flex; }
        .booking-box {
            background: var(--white);
            max-width: 460px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            border-top: 4px solid var(--red);
            animation: modalIn 0.3s ease;
            scrollbar-width: thin;
            scrollbar-color: var(--red) var(--cream);
            position: relative;
        }
        /* gradient sygnalizujący że jest więcej treści */
        .booking-box::after {
            content: '';
            position: sticky;
            bottom: 0;
            display: block;
            height: 60px;
            margin-top: -60px;
            background: linear-gradient(to bottom, transparent, rgba(245,240,235,0.97));
            pointer-events: none;
        }
        .booking-inner { padding: 20px 32px 36px; }
        .booking-inner .booking-title { display: block; }
        .booking-inner .booking-subtitle { display: block; }
        .booking-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.2rem;
            color: var(--black);
            letter-spacing: 2px;
            margin-bottom: 6px;
        }
        .booking-subtitle {
            font-family: 'DM Mono', monospace;
            font-size: 0.6rem;
            color: var(--gray);
            letter-spacing: 2px;
            margin-bottom: 28px;
            text-transform: uppercase;
        }
        .booking-header {
            position: sticky;
            top: 0;
            background: var(--white);
            border-bottom: 1px solid var(--light);
            padding: 26px 8px 26px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 10;
            flex-shrink: 0;
        }
        .booking-header-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.4rem;
            letter-spacing: 3px;
            color: var(--black);
            line-height: 1;
        }
        .booking-close {
            background: var(--red);
            border: none;
            color: var(--white);
            width: 44px; height: 44px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.1rem;
            letter-spacing: 2px;
            transition: background 0.2s;
            flex-shrink: 0;
            touch-action: manipulation;
            clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
        }
        .booking-close:hover,
        .booking-close:focus { background: var(--red-dark); }
        .booking-form label {
            font-family: 'DM Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 2px;
            color: var(--red);
            text-transform: uppercase;
            display: block;
            margin-bottom: 6px;
        }
        .booking-form input, .booking-form select {
            width: 100%;
            padding: 14px 16px;
            margin-bottom: 18px;
            background: var(--cream);
            border: 1px solid var(--light);
            border-bottom: 2px solid var(--black);
            color: var(--black);
            font-family: 'Crimson Pro', serif;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .booking-form input:focus, .booking-form select:focus { border-bottom-color: var(--red); }
        .phone-field { display: flex; align-items: stretch; margin-bottom: 18px; }
        .phone-prefix {
            background: var(--black);
            color: var(--white);
            font-family: 'DM Mono', monospace;
            font-size: 1rem;
            border: 1px solid var(--light);
            border-right: none;
            border-bottom: 2px solid var(--black);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 10px;
            margin: 0;
            box-sizing: border-box;
        }
        .phone-input { margin-bottom: 0 !important; border-left: none; flex: 1; }
        .zaliczka-info {
            background: var(--cream);
            border: 1px solid var(--light);
            border-left: 4px solid var(--red);
            padding: 20px;
            margin: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .zaliczka-label {
            font-family: 'DM Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 2px;
            color: var(--gray);
            text-transform: uppercase;
        }
        .zaliczka-amount {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--red);
            line-height: 1;
        }

        /* FIX #5: RODO info przy formularzu */
        .rodo-info {
            font-family: 'DM Mono', monospace;
            font-size: 0.55rem;
            color: #999;
            line-height: 1.6;
            letter-spacing: 0.3px;
            margin-bottom: 16px;
            padding: 10px 14px;
            background: var(--cream);
            border-left: 2px solid var(--light);
        }
        .rodo-info a { color: var(--gray); }

        .btn-pay {
            width: 100%;
            background: var(--red);
            color: var(--white);
            border: none;
            padding: 18px;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.4rem;
            letter-spacing: 3px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .btn-pay:hover { background: var(--red-dark); }
        .blik-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            letter-spacing: 5px;
            color: var(--black);
            text-align: center;
            margin: 16px 0;
        }
        .blik-label {
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 2px;
            color: var(--gray);
            text-align: center;
            text-transform: uppercase;
        }

        /* ── POTWIERDZENIE REZERWACJI ── */
        .booking-confirmation {
            text-align: center;
            padding: 20px 0;
        }
        .booking-confirmation-icon {
            font-size: 3rem;
            margin-bottom: 16px;
        }
        .booking-confirmation h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            letter-spacing: 2px;
            color: var(--black);
            margin-bottom: 12px;
        }
        .booking-confirmation p {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.7;
            font-style: italic;
        }

        /* ── SENDING STATE ── */
        .btn-pay:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            header { grid-template-columns: 1fr; }
            .hero-right { display: none; }
            .hero-left { padding: 100px 40px 60px; }
            .hero-bg-number { font-size: 14rem; left: 30px; }
            .section-header { padding: 60px 40px 24px; }
            .offer-row { grid-template-columns: 60px 1fr auto; }
            .offer-features { display: none; }
            .offer-action { min-width: 140px; padding: 20px; }
            .section-inclusive { grid-template-columns: 1fr; padding: 60px 40px; gap: 40px; }
            .inc-row { grid-template-columns: 1fr; }
            .inc-photo { max-width: 100%; width: 100%; }
            .section-feeling {
            background: var(--black);
            padding: 60px 80px;
            text-align: center;
            border-bottom: 3px solid var(--black);
        }
        .feeling-text {
            font-family: 'Crimson Pro', serif;
            font-size: clamp(1.4rem, 3vw, 2.2rem);
            color: var(--white);
            font-style: italic;
            line-height: 1.5;
            max-width: 700px;
            margin: 0 auto;
        }
        .feeling-text em {
            color: var(--red);
            font-style: italic;
        }

        @media (max-width: 768px) {
            .section-feeling { padding: 44px 24px; }
        }
        @media (max-width: 480px) {
            .section-feeling { padding: 36px 20px; }
        }

        .section-about { grid-template-columns: 1fr; }
            .about-img-wrap { min-height: 300px; }
            .about-content { padding: 50px 40px; }
            .section-faq { padding: 60px 40px; }
            .faq-grid { grid-template-columns: 1fr; gap: 0; }
            .etykieta { padding: 40px; grid-template-columns: 1fr; gap: 2px; }
            footer { grid-template-columns: 1fr; padding: 50px 40px; text-align: center; }
            .footer-right { text-align: center; }
            .brand-card { margin: 0 28px; }
        }
        /* ── SMARTFON (≤768px) ── */
        @media (max-width: 768px) {
            /* TOPBAR – FB po lewej, telefon po prawej, duże strefy dotyku */
            .topbar {
                padding: 0;
                height: 48px;
                display: flex;
                align-items: stretch;
            }
            .topbar > span { display: none; }
            .topbar-email { display: none; }

            /* topbar-right – 3 kolumny na całą szerokość */
            .topbar-right {
                width: 100%;
                display: flex;
                justify-content: stretch;
                align-items: stretch;
                gap: 0;
            }

            /* REZERWUJ – lewa sekcja */
            .topbar-rezerwuj {
                display: flex;
                align-items: center;
                justify-content: center;
                flex: 1;
                background: var(--red);
                color: var(--white) !important;
                text-decoration: none !important;
                border: none;
                cursor: pointer;
                font-family: 'Bebas Neue', sans-serif;
                font-size: 0.85rem;
                letter-spacing: 2px;
                padding: 0 8px;
                text-align: center;
                line-height: 1.2;
                border-left: 1px solid #1a1a1a;
                transition: opacity 0.2s;
            }
            .topbar-rezerwuj:active { opacity: 0.8; }
            .topbar-rezerwuj { touch-action: manipulation; -webkit-tap-highlight-color: rgba(255,255,255,0.2); }

            /* FB – środek, oryginalne barwy Facebooka, taki sam rozmiar jak pozostałe */
            .topbar-fb {
                display: flex;
                flex-direction: row;
                align-items: center;
                flex: 1;
                background: #1877F2;
                border-right: 1px solid #1a1a1a;
                overflow: hidden;
            }
            .topbar-fb-icon {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 36px;
                flex-shrink: 0;
                padding-left: 6px;
            }
            .topbar-fb svg {
                width: 32px;
                height: 32px;
                fill: #ffffff;
            }
            .topbar-fb-label {
                display: flex;
                align-items: center;
                justify-content: center;
                flex: 1;
                background: #1877F2;
                font-family: 'Bebas Neue', sans-serif;
                font-size: 0.75rem;
                letter-spacing: 2px;
                color: #ffffff;
                line-height: 1;
                padding: 0;
            }

            /* ZADZWOŃ – lewa sekcja */
            .topbar-tel {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                flex: 1;
                background: var(--black);
                text-decoration: none;
                gap: 1px;
                border-right: 1px solid #1a1a1a;
                padding: 0 8px;
            }
            .topbar-tel-num {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 1.05rem;
                color: var(--white);
                letter-spacing: 2px;
                line-height: 1;
            }
            .topbar-tel-label {
                font-family: 'DM Mono', monospace;
                font-size: 0.48rem;
                letter-spacing: 1px;
                color: var(--red);
                text-transform: uppercase;
                font-weight: 700;
                margin-top: 6px;
            }
            .topbar-tel:active .topbar-tel-num { color: var(--red); }

            /* Ukryj duży czerwony przycisk rezerwacji w hero na mobile */
            .hero-cta { display: none !important; }

            /* HERO – tarcza jako tło na mobile */
            header {
                position: relative;
            }
            /* ── HERO MOBILE – PRZEPROJEKTOWANIE ── */
            header {
                display: block;
                position: relative;
                min-height: 100svh;
                padding-top: 48px;
                background: var(--black);
            }
            .hero-right {
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 100px;
                max-height: none;
                z-index: 0;
                pointer-events: none;
                background: none;
            }
            .hero-right img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center top;
                opacity: 0.65;
                filter: grayscale(0.1) contrast(1.2) brightness(1.05);
                image-rendering: auto;
            }
            .hero-right::after {
                background: linear-gradient(
                    to bottom,
                    rgba(13,13,13,0.3) 0%,
                    rgba(13,13,13,0.15) 25%,
                    rgba(13,13,13,0.75) 70%,
                    rgba(13,13,13,1) 100%
                );
            }
            .hero-left {
                position: relative;
                z-index: 2;
                padding: 0 20px 36px;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                min-height: calc(100svh - 48px);
            }

            /* Tytuł + badge obok siebie */
            .hero-title-row {
                display: flex;
                align-items: flex-end;
                gap: 14px;
            }
            /* Ukryj okrąg SVG na mobile, pokaż zwykły h1 */
            .hero-circle-wrap { display: none; }
            .hero-h1-mobile { display: block; }

            /* Badge po prawej stronie tytułu – wysokość = h1, szerokość do prawej krawędzi */
            .hero-eyebrow {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                flex: 1;
                align-self: stretch;
                margin-bottom: 10px;
                background: transparent;
                border: none;
                color: #fff;
                gap: 0;
                padding: 6px;
                min-width: 0;
            }
            .hero-eyebrow::before { display: none; }
            .hero-eyebrow span {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 1.3rem;
                letter-spacing: 2px;
                line-height: 1.35;
                white-space: nowrap;
                display: block;
            }

            h1 { font-size: clamp(3.8rem, 16vw, 5.5rem); }
            .hero-sub {
                font-size: 0.95rem;
                color: rgba(255,255,255,0.9);
                margin: 12px 0 16px;
                line-height: 1.6;
            }

            /* Cytat — ukryty na mobile, widoczny tylko na desktopie */
            .hero-feeling { display: none; }

            /* Tagi — dla kogo, tuż pod hero-sub */
            .hero-tags {
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                margin-bottom: 24px;
            }
            .hero-tag {
                font-family: 'DM Mono', monospace;
                font-size: 0.6rem;
                letter-spacing: 1px;
                color: rgba(255,255,255,0.7);
                border: 1px solid rgba(255,255,255,0.25);
                padding: 5px 10px;
                text-transform: uppercase;
            }

            /* Trust bar */
            .hero-trust {
                display: flex;
                gap: 0;
                margin-bottom: 0;
                border: 1px solid rgba(255,255,255,0.12);
                align-items: stretch;
            }
            .hero-trust-item {
                flex: 1;
                padding: 18px 8px 20px;
                text-align: center;
                border-right: 1px solid rgba(255,255,255,0.12);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
            }
            .hero-trust-item:last-child { border-right: none; }
            .hero-trust-val {
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--red);
                line-height: 1;
                height: 56px;
                gap: 2px;
            }
            .hero-trust-val i {
                font-size: 3.5rem;
                line-height: 1;
            }
            .trust-15 {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 1.6rem;
                color: var(--red);
                line-height: 1;
            }
            .hero-trust-lbl {
                display: block;
                font-family: 'DM Mono', monospace;
                font-size: 0.5rem;
                letter-spacing: 1px;
                color: rgba(255,255,255,0.5);
                text-transform: uppercase;
                margin-top: 8px;
                line-height: 1.4;
            }

            .hero-cta { flex-direction: column; align-items: stretch; gap: 0; }
            .btn-primary {
                width: 100%;
                text-align: center;
                padding: 24px 32px;
                font-size: 1.5rem;
                clip-path: none;
            }
            .hero-bg-number { display: none; }

            /* ciemne tła – szary tekst → biały */
            .hero-sub { color: rgba(255,255,255,0.9); }
            .inclusive-left p { color: rgba(255,255,255,0.85); }
            .inc-box p { color: rgba(255,255,255,0.75); }
            .etykieta-item p { color: rgba(255,255,255,0.8); }
            .footer-contact a { color: rgba(255,255,255,0.7); }
            .footer-cities { color: rgba(255,255,255,0.45); }
            .footer-copy { color: rgba(255,255,255,0.3); }

            /* pokaż elementy tylko-mobile */
            .hero-tags, .hero-trust { display: flex; }

            /* galeria – auto-scroll jak brand bar */
            .hero-gallery-bar { padding: 0; overflow: hidden; }
            .hero-gallery-wrap {
                animation: galleryScroll 14s linear infinite;
            }
            .hero-gallery-wrap:hover { animation-play-state: running; }
            .hero-gallery {
                overflow-x: visible;
                flex-wrap: nowrap;
                scroll-snap-type: none;
                padding: 0;
                gap: 4px;
            }
            .hero-gallery-item {
                width: 160px;
                height: 160px;
                flex-shrink: 0;
                scroll-snap-align: unset;
            }

            /* napis nad galerią */
            .gallery-label-mobile {
                display: block;
                background: var(--black);
                font-family: 'DM Mono', monospace;
                font-size: 0.6rem;
                letter-spacing: 4px;
                text-transform: uppercase;
                color: rgba(255,255,255,0.45);
                text-align: center;
                padding: 10px 0 6px;
                border-top: 1px solid #1a1a1a;
            }

            /* brand bar węższy */
            .brand-ticker {
                padding: 10px 0;
            }
            .brand-card {
                padding: 8px 18px;
                margin: 0 24px;
            }
            .brand-logo { height: 26px; }
            .offer-row { grid-template-columns: 44px 1fr auto; }
            .offer-num { font-size: 1.2rem; }
            .offer-main { padding: 18px 16px; }
            .offer-title { font-size: 1.7rem; }
            .offer-action { padding: 18px 14px; min-width: 100px; gap: 8px; }
            .offer-price { font-size: 1.3rem; }
            .offer-arrow { display: none; }
            .offer-hint {
                font-size: 0.5rem;
                letter-spacing: 1px;
                opacity: 0.9;
            }
            .btn-offer { padding: 14px 18px; font-size: 0.72rem; letter-spacing: 2px; }

            .section-inclusive { padding: 44px 20px; gap: 32px; }
            .inc-row { grid-template-columns: 1fr; }
            .inc-photo { max-width: 100%; width: 100%; }
            .inc-box { padding: 20px; }

            .about-img-wrap { min-height: 320px; max-height: 380px; }
            .about-img-wrap img { object-position: top center; }
            .about-content { padding: 36px 20px; }

            .section-faq { padding: 44px 20px; }

            .etykieta { padding: 28px 20px; }

            footer { padding: 40px 20px; gap: 28px; }
            .footer-logo-text { font-size: 2rem; }
            .footer-tel { font-size: 1.6rem; }

            /* FIX #6: brand bar – wolniejsza animacja na mobile, start od środka */
            .brand-ticker { animation-duration: 30s; animation-name: brandScrollMobile; }
            .brand-card { margin: 0 16px; padding: 10px 16px; }

            .section-instytucje { padding: 44px 20px; }
            .inst-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
            .inst-header-img { max-height: 220px; }
            .inst-grid { grid-template-columns: 1fr; }
            .inst-atuty { grid-template-columns: 1fr 1fr; }
            .inst-cta { flex-direction: column; align-items: flex-start; padding: 28px 20px; }
            .inst-cta .btn-primary { width: 100%; text-align: center; }

            .modal-overlay { padding: 0; align-items: flex-end; }
            .modal-box { max-height: 96vh; max-width: 100%; border-radius: 0; }
            .modal-header { padding: 26px 8px 26px 20px; }
            .modal-body { padding: 16px 20px; }
            .modal-footer { padding: 12px 20px 18px; }
            .modal-footer .btn-primary { width: 100%; text-align: center; font-size: 1rem; padding: 14px 20px; }

            .booking-overlay { padding: 0; align-items: flex-end; }
            .booking-box { max-height: 96vh; border-radius: 0; max-width: 100%; }
            .booking-inner { padding: 24px 18px; }
            .booking-title { font-size: 1.8rem; }
            .btn-pay { font-size: 1.2rem; }
        }

        /* ── SMARTFON MAŁY (≤480px) ── */
        @media (max-width: 480px) {
            .hero-left { padding: 58px 16px 42px; }
            .about-img-wrap { min-height: 280px; max-height: 340px; }
            h1 { font-size: clamp(3rem, 16vw, 5rem); }

            .offer-row { grid-template-columns: 1fr; }
            .offer-num { display: none; }
            .offer-main { border-right: none; border-bottom: 1px solid var(--light); padding: 16px; }
            .offer-action { padding: 12px 16px 14px; flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }

            .section-instytucje { padding: 36px 16px; }
            .inst-atuty { grid-template-columns: 1fr; }

            .section-inclusive { padding: 36px 16px; }
            .inclusive-right { grid-template-columns: 1fr; }
            .inclusive-left p { font-size: 0.95rem; }

            .section-header { padding: 36px 16px 16px; }
            .section-tags-bar { display: none; }
            .about-img-wrap { min-height: 260px; max-height: 320px; }
            .about-content { padding: 28px 16px; }
            .section-faq { padding: 36px 16px; }
            details summary { font-size: 1.1rem; }
            .etykieta { padding: 24px 16px; }
            .etykieta-item { padding: 18px; }
            footer { padding: 30px 16px; gap: 22px; }
            .footer-logo-text { font-size: 1.8rem; }
        }

        /* ── iPhone SE i bardzo małe (≤375px) ── */
        @media (max-width: 375px) {
            h1 { font-size: clamp(2.8rem, 18vw, 4rem); }
            .hero-eyebrow span { font-size: 0.68rem; }
            .btn-primary { font-size: 1rem; padding: 14px 24px; }
        }


        /* ── OPINIE KLIENTÓW ── */
        .section-reviews { background: var(--black); padding: 80px; overflow: hidden; }
        .reviews-header { padding-bottom: 40px; border-bottom: 1px solid #222; margin-bottom: 48px; text-align: center; }
        .reviews-header-top { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
        .reviews-rating { display: flex; align-items: center; gap: 8px; }
        .reviews-stars { color: #f5a623; font-size: 1.2rem; letter-spacing: 2px; }
        .reviews-score { font-family: "DM Mono", monospace; font-size: 0.7rem; letter-spacing: 2px; color: var(--gray); }
        .reviews-title { font-family: "Bebas Neue", sans-serif; font-size: clamp(2.5rem,5vw,4rem); color: var(--white); letter-spacing: 2px; line-height: 1; text-transform: uppercase; }
        .reviews-title em { color: var(--red); font-style: normal; }
        .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
        .review-card { background: #141414; border: 1px solid #222; padding: 32px; display: flex; flex-direction: column; }
        .review-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
        .review-text { font-family: "Crimson Pro", serif; font-size: 1.15rem; color: var(--white); line-height: 1.7; font-style: italic; margin-bottom: 20px; flex: 1; }
        .review-author { font-family: "DM Mono", monospace; font-size: 0.65rem; letter-spacing: 2px; color: var(--red); text-transform: uppercase; }
        .reviews-cta { margin-top: 40px; text-align: center; }
        .reviews-cta-link { display: inline-block; font-family: "Bebas Neue", sans-serif; font-size: 1rem; letter-spacing: 3px; color: var(--gray); text-decoration: none; border: 1px solid #333; padding: 12px 32px; transition: border-color 0.2s, color 0.2s; }
        .reviews-cta-link:hover { border-color: var(--red); color: var(--white); }
        @media (max-width: 1024px) { .section-reviews { padding: 60px 40px; } .reviews-grid { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 768px) { .section-reviews { padding: 44px 20px; } .reviews-grid { grid-template-columns: 1fr; gap: 16px; } .reviews-header { padding-bottom: 24px; margin-bottom: 28px; } .review-card { padding: 22px 18px; } }
        @media (max-width: 480px) { .section-reviews { padding: 36px 16px; } .review-card { padding: 18px 14px; } }

        /* ── FOCUS STYLES ── */
        a:focus-visible,
        button:focus-visible,
        details summary:focus-visible {
            outline: 2px solid var(--red);
            outline-offset: 3px;
        }

        /* ── LIGHTBOX ── */
        #lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        #lightbox.open { display: flex; }

        /* wrapper trzyma zdjęcie + strzałki razem */
        #lb-inner {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 92vw;
            max-height: 88vh;
        }
        #lb-img {
            max-width: 100%;
            max-height: 88vh;
            object-fit: contain;
            display: block;
        }
        #lb-close {
            position: fixed;
            top: 16px; right: 16px;
            background: var(--red);
            border: none;
            color: #fff;
            width: 52px; height: 52px;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10001;
            transition: background 0.2s;
            display: flex; align-items: center; justify-content: center;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        #lb-close:hover { background: var(--red-dark); }
        #lb-prev, #lb-next {
            position: absolute;
            top: 50%; transform: translateY(-50%);
            background: rgba(0,0,0,0.7);
            border: 1px solid rgba(255,255,255,0.25);
            color: #fff;
            width: 52px; height: 52px;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10001;
            transition: background 0.2s, border-color 0.2s;
            display: flex; align-items: center; justify-content: center;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        #lb-prev:hover, #lb-next:hover { background: var(--red); border-color: var(--red); }
        #lb-prev { left: -26px; }
        #lb-next { right: -26px; }
        #lb-counter {
            position: fixed;
            bottom: 16px; left: 50%;
            transform: translateX(-50%);
            color: rgba(255,255,255,0.4);
            font-size: 0.65rem;
            letter-spacing: 3px;
            font-family: 'DM Mono', monospace;
        }

        @media (max-width: 768px) {
            #lb-prev { left: 4px; }
            #lb-next { right: 4px; }
            #lb-img { max-height: 80vh; }
        }
    
        /* ── HERO CIRCLE ── */
        .hero-circle-wrap { display:inline-block; flex-shrink:0; }
        .hero-h1-mobile { display:none; }
        .orbit-spin {
            transform-origin: 200px 200px;
            animation: orbitSpin 28s linear infinite;
            pointer-events: none;
        }
        @keyframes orbitSpin {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }

        /* ── LIGHTBOX TARCZ ── */
        #lightbox-tr {
            display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92);
            z-index: 9999; align-items: center; justify-content: center; flex-direction: column;
        }
        #lightbox-tr.open { display: flex; }
        #lbtr-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 90vw; max-width: 600px; }
        #lbtr-img { width: 100%; max-height: 70vh; object-fit: contain; border: 1px solid #333; display: block; }
        #lbtr-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }
        #lbtr-nav { display: flex; gap: 40px; justify-content: center; align-items: center; margin-top: 12px; }
        #lbtr-prev, #lbtr-next { background: none; border: 1px solid #555; color: #ccc; font-size: 1.1rem; padding: 7px 18px; cursor: pointer; transition: all 0.2s; border-radius: 2px; }
        #lbtr-prev:hover, #lbtr-next:hover { border-color: var(--red); color: var(--red); }
        #lbtr-count { color: #888; font-family: "DM Mono", monospace; font-size: 0.75rem; letter-spacing: 2px; min-width: 48px; text-align: center; }
        .inc-photo .slide-img-tr { width: 100%; height: auto; object-fit: contain; display: block; position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.8s ease-in-out; }
        .inc-photo .slide-img-tr:first-child { position: relative; opacity: 0; }
        .inc-photo .slide-img-tr.active { opacity: 1; }

        #lightbox-l {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.92);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        #lightbox-l.open { display: flex; }
        #lbl-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 90vw; max-width: 600px; }
        #lbl-img { width: 100%; max-height: 70vh; object-fit: contain; border: 1px solid #333; display: block; }
        #lbl-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }
        #lbl-nav { display: flex; gap: 40px; justify-content: center; align-items: center; margin-top: 12px; }
        #lbl-prev, #lbl-next { background: none; border: 1px solid #555; color: #ccc; font-size: 1.1rem; padding: 7px 18px; cursor: pointer; transition: all 0.2s; border-radius: 2px; }
        #lbl-prev:hover, #lbl-next:hover { border-color: var(--red); color: var(--red); }
        #lbl-count { color: #888; font-family: "DM Mono", monospace; font-size: 0.75rem; letter-spacing: 2px; min-width: 48px; text-align: center; }
        .inc-photo .slide-img-l { width: 100%; height: auto; object-fit: contain; display: block; position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.8s ease-in-out; }
        .inc-photo .slide-img-l:first-child { position: relative; opacity: 0; }
        .inc-photo .slide-img-l.active { opacity: 1; }

        #lightbox-s {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.92);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        #lightbox-s.open { display: flex; }
        #lbs-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 90vw; max-width: 600px; }
        #lbs-img { width: 100%; max-height: 70vh; object-fit: contain; border: 1px solid #333; display: block; }
        #lbs-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }
        #lbs-nav { display: flex; gap: 40px; justify-content: center; align-items: center; margin-top: 12px; }
        #lbs-prev, #lbs-next { background: none; border: 1px solid #555; color: #ccc; font-size: 1.1rem; padding: 7px 18px; cursor: pointer; transition: all 0.2s; border-radius: 2px; }
        #lbs-prev:hover, #lbs-next:hover { border-color: var(--red); color: var(--red); }
        #lbs-count { color: #888; font-family: "DM Mono", monospace; font-size: 0.75rem; letter-spacing: 2px; min-width: 48px; text-align: center; }
        .inc-photo .slide-img-s {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
            position: absolute;
            top: 0; left: 0;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }
        .inc-photo .slide-img-s:first-child { position: relative; opacity: 0; }
        .inc-photo .slide-img-s.active { opacity: 1; }

        #lightbox-t {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }
        #lightbox-t.open { display: flex; }
        #lightbox-t { flex-direction: column; justify-content: center; }
        #lbt-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            width: 90vw;
            max-width: 600px;
        }
        #lbt-img { width: 100%; max-height: 70vh; object-fit: contain; display: block; }
        #lbt-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; z-index: 10001; line-height: 1; }
        #lbt-nav { display: flex; gap: 40px; justify-content: center; align-items: center; margin-top: 12px; }
        #lbt-prev, #lbt-next { background: none; border: 1px solid #555; color: #ccc; font-size: 1.1rem; padding: 7px 18px; cursor: pointer; transition: all 0.2s; border-radius: 2px; }
        #lbt-prev:hover, #lbt-next:hover { border-color: var(--red); color: var(--red); }
        #lbt-count { color: #888; font-family: 'DM Mono',monospace; font-size: 0.75rem; letter-spacing: 2px; min-width: 48px; text-align: center; }


