
        :root {
            --navy-900: #061633;
            --navy-800: #081f4d;
            --navy-700: #0b2f73;
            --gold: #d4af37;
            --gold-soft: #e7c96a;
            --gold-line: rgba(212, 175, 55, 0.26);
            --white: #ffffff;
            --off-white: #f7f8fb;
            --paper: #fcfcfd;
            --text-dark: #111827;
            --text-soft: #4b5563;
            --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 18px 42px rgba(0, 0, 0, 0.12);
            --radius: 20px;
            --max-width: 1200px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            font-size: 100%;
            scroll-behavior: smooth;
        }

        html[data-font-size="normal"] {
            font-size: 100%;
        }

        html[data-font-size="large"] {
            font-size: 115%;
        }

        html[data-font-size="larger"] {
            font-size: 130%;
        }

        body {
            margin: 0;
            font-family: "Cormorant Garamond", Georgia, serif;
            background: var(--navy-700);
            color: var(--white);
            line-height: 1.65;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .skip-link {
            position: fixed;
            top: 12px;
            left: 12px;
            z-index: 2000;
            padding: 11px 16px;
            border: 2px solid var(--gold);
            border-radius: 8px;
            background: var(--navy-900);
            color: var(--white);
            font-family: "Libre Baskerville", Georgia, serif;
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.4;
            box-shadow: var(--shadow-medium);
            transform: translateY(calc(-100% - 24px));
            transition: transform 0.2s ease;
        }

        .skip-link:focus {
            outline: 3px solid var(--gold-soft);
            outline-offset: 3px;
            transform: translateY(0);
        }

        #main-content {
            scroll-margin-top: 96px;
        }

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

        /* Widget dostępności */

        .accessibility-widget {
            position: fixed;
            left: 18px;
            bottom: calc(22px + env(safe-area-inset-bottom));
            z-index: 940;
            font-size: 16px;
        }

        .accessibility-trigger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            padding: 0;
            border: 1px solid var(--gold);
            border-radius: 50%;
            background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
            color: var(--gold-soft);
            font-family: "Libre Baskerville", Georgia, serif;
            font-size: 18px;
            font-weight: 700;
            line-height: 1;
            cursor: pointer;
            box-shadow:
                0 12px 28px rgba(0, 0, 0, 0.28),
                0 0 0 4px rgba(212, 175, 55, 0.08);
            transition:
                transform 180ms ease,
                border-color 180ms ease,
                color 180ms ease,
                box-shadow 180ms ease;
        }

        .accessibility-trigger-symbol {
            display: inline-flex;
            align-items: baseline;
            gap: 1px;
        }

        .accessibility-trigger-letter {
            font-size: 22px;
        }

        .accessibility-trigger-letter-small {
            color: var(--gold);
            font-size: 13px;
        }

        @media (hover: hover) and (pointer: fine) {
            .accessibility-trigger:hover {
                border-color: var(--gold-soft);
                color: var(--white);
                transform: translateY(-2px);
                box-shadow:
                    0 15px 32px rgba(0, 0, 0, 0.32),
                    0 0 0 4px rgba(212, 175, 55, 0.12);
            }
        }

        .accessibility-trigger:focus-visible {
            outline: 3px solid var(--white);
            outline-offset: 4px;
        }

        .accessibility-panel {
            position: absolute;
            left: 0;
            bottom: calc(100% + 12px);
            width: min(310px, calc(100vw - 30px));
            padding: 18px;
            border: 1px solid rgba(212, 175, 55, 0.35);
            border-radius: 18px;
            background: rgba(6, 22, 51, 0.98);
            color: var(--white);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
            backdrop-filter: blur(12px);
            transform-origin: left bottom;
        }

        .accessibility-panel[hidden] {
            display: none;
        }

        .accessibility-widget.is-open .accessibility-panel {
            animation: accessibility-panel-in 180ms ease-out both;
        }

        @keyframes accessibility-panel-in {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .accessibility-panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }

        .accessibility-panel-title {
            margin: 0;
            color: var(--gold-soft);
            font-family: "Cinzel", Georgia, serif;
            font-size: 17px;
            line-height: 1.3;
        }

        .accessibility-panel-close {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            width: 34px;
            height: 34px;
            padding: 0;
            border: 1px solid rgba(212, 175, 55, 0.22);
            border-radius: 50%;
            background: transparent;
            color: var(--white);
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
        }

        .accessibility-size-controls {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 7px;
        }

        .accessibility-size-button {
            min-width: 0;
            min-height: 42px;
            padding: 8px 5px;
            border: 1px solid rgba(212, 175, 55, 0.28);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.94);
            font-family: "Libre Baskerville", Georgia, serif;
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            cursor: pointer;
        }

        @media (hover: hover) and (pointer: fine) {
            .accessibility-panel-close:hover,
            .accessibility-size-button:hover {
                border-color: var(--gold-soft);
                background: rgba(212, 175, 55, 0.1);
            }
        }

        .accessibility-size-button.is-active,
        .accessibility-size-button[aria-pressed="true"] {
            border-color: var(--gold);
            background: linear-gradient(135deg, var(--gold-soft), var(--gold));
            color: #111111;
        }

        .accessibility-size-button:focus-visible,
        .accessibility-panel-close:focus-visible {
            outline: 3px solid var(--white);
            outline-offset: 3px;
        }

        .accessibility-panel-help {
            margin: 12px 0 0;
            color: rgba(255, 255, 255, 0.72);
            font-family: "Libre Baskerville", Georgia, serif;
            font-size: 12px;
            line-height: 1.5;
        }

        .visually-hidden {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        @media (max-width: 700px) {
            .accessibility-widget {
                left: 12px;
                bottom: calc(12px + env(safe-area-inset-bottom));
            }

            .accessibility-trigger {
                width: 52px;
                height: 52px;
            }

            .accessibility-panel {
                width: min(300px, calc(100vw - 24px));
                max-height: min(70vh, 440px);
                overflow-y: auto;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .skip-link {
                transition: none;
            }

            .accessibility-trigger {
                transition: none;
            }

            .accessibility-trigger:hover {
                transform: none;
            }

            .accessibility-widget.is-open .accessibility-panel {
                animation: none;
            }
        }

        .section-title {
            margin: 0 0 18px;
            font-size: 2.75rem;
            line-height: 1.2;
            color: var(--navy-800);
        }

        .section-lead {
            max-width: 820px;
            margin: 0 auto;
            font-size: 1.3125rem;
            color: var(--text-soft);
        }

        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(6, 22, 51, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--gold-line);
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .navbar.hidden {
            transform: translateY(-100%);
        }

        .navbar.hidden:focus-within {
            transform: translateY(0);
        }

        .nav-container {
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 8px clamp(28px, 4vw, 80px);
            display: grid;
            grid-template-columns:
                minmax(300px, 1fr)
                max-content
                minmax(300px, 1fr);
            align-items: center;
            gap: clamp(24px, 3vw, 52px);
            box-sizing: border-box;
        }

        .logo {
            grid-column: 1;
            justify-self: start;
            display: flex;
            flex: 0 0 auto;
            align-items: center;
            gap: 23px;
        }

        .logo-nav {
            height: 140px;
            width: auto;
            display: block;
            filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-top {
            font-size: 0.9375rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.74);
        }

        .logo-bottom {
            font-size: 1.6875rem;
            color: var(--gold);
            letter-spacing: 0.3px;
        }

        .nav-toggle {
            grid-column: 3;
            justify-self: end;
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            width: 44px;
            height: 44px;
            padding: 0;
            border: 0;
            background: transparent;
            color: inherit;
            cursor: pointer;
        }

        .nav-toggle-line {
            display: block;
            width: 24px;
            height: 2px;
            background: currentColor;
        }

        .nav-links {
            grid-column: 2;
            justify-self: center;
            display: flex;
            width: max-content;
            max-width: 100%;
            min-width: 0;
            gap: clamp(14px, 1.7vw, 30px);
            flex-wrap: nowrap;
            justify-content: flex-end;
            align-items: center;
            overflow: visible;
        }

        .language-switcher {
            grid-column: 3;
            justify-self: end;
            display: inline-flex;
            align-items: center;
            justify-content: flex-end;
            gap: 7px;
            min-width: 0;
        }

        .language-option {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            min-width: 46px;
            min-height: 36px;
            box-sizing: border-box;
            padding: 6px 9px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            border-radius: 9px;
            background: rgba(255, 255, 255, 0.025);
            color: rgba(255, 255, 255, 0.9);
            font-family: "Libre Baskerville", Georgia, serif;
            font-size: 13px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0.04em;
            white-space: nowrap;
        }

        button.language-option {
            margin: 0;
            appearance: none;
            cursor: default;
        }

        .language-option.is-current {
            border-color: var(--gold);
            background: rgba(212, 175, 55, 0.13);
            color: var(--gold-soft);
            box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08);
        }

        .language-option.is-unavailable {
            color: rgba(255, 255, 255, 0.7);
        }

        @media (hover: hover) and (pointer: fine) {
            .language-option.is-unavailable:hover {
                border-color: rgba(212, 175, 55, 0.46);
                background: rgba(212, 175, 55, 0.07);
                color: rgba(255, 255, 255, 0.9);
            }
        }

        .language-option.is-unavailable::after {
            content: attr(data-language-status);
            position: absolute;
            top: calc(100% + 9px);
            right: 0;
            z-index: 1100;
            width: max-content;
            max-width: min(230px, calc(100vw - 32px));
            padding: 8px 10px;
            border: 1px solid rgba(212, 175, 55, 0.28);
            border-radius: 8px;
            background: var(--navy-900);
            color: var(--white);
            box-shadow: var(--shadow-soft);
            font-family: "Libre Baskerville", Georgia, serif;
            font-size: 12px;
            font-weight: 400;
            line-height: 1.4;
            letter-spacing: 0;
            white-space: normal;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(-3px);
            transition:
                opacity 160ms ease,
                visibility 160ms ease,
                transform 160ms ease;
        }

        .language-option.is-unavailable:hover::after,
        .language-option.is-unavailable:focus::after,
        .language-option.is-unavailable:focus-visible::after,
        .language-option.is-unavailable.is-status-visible::after {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .language-option:focus-visible {
            outline: 3px solid var(--white);
            outline-offset: 3px;
        }

        .language-flag {
            display: block;
            flex: 0 0 auto;
            width: 18px;
            height: 12px;
            border-radius: 2px;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
        }

        .nav-links .language-switcher {
            grid-column: auto;
            justify-self: stretch;
            justify-content: flex-start;
            width: 100%;
            padding: 14px 20px 18px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            box-sizing: border-box;
        }

        .nav-links .language-option.is-unavailable::after {
            right: auto;
            left: 0;
            max-width: min(200px, calc(100vw - 48px));
        }

        .nav-links a,
        .nav-links .nav-dropdown-toggle {
            position: relative;
            font-size: 0.9375rem;
            letter-spacing: 0.4px;
            color: var(--white);
            transition: color 0.25s ease;
            font-family: "Cinzel", serif;
            letter-spacing: 1px;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 6px 2px;
        }

        .nav-links a::after,
        .nav-links .nav-dropdown-toggle::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -8px;
            width: 0;
            height: 2px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transition: width 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
        }

        .nav-links a:hover,
        .nav-links .nav-dropdown-toggle:hover {
            color: var(--gold-soft);
        }

        .nav-links a:hover::after,
        .nav-links .nav-dropdown-toggle:hover::after {
            width: 100%;
        }

        .nav-link-multiline {
            display: inline-flex;
            flex-direction: column;
            line-height: 1.05;
            gap: 2px;
            padding: 2px 0;
            min-width: 86px;
        }

        .nav-dropdown {
            position: relative;
            display: inline-block;
            padding: 8px 16px 20px;
            margin: -8px -16px -20px;
        }

        .nav-dropdown.open {
            z-index: 1001;
        }

        .nav-dropdown-toggle {
            appearance: none;
            border: 0;
            background: transparent;
            color: inherit;
            font: inherit;
            padding: 0;
            cursor: pointer;
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 6px);
            left: 50%;
            transform: translateX(-50%) translateY(2px);
            min-width: 280px;
            padding: 10px 0;
            border-radius: 12px;
            background: rgba(6, 22, 51, 0.97);
            border: 1px solid rgba(212, 175, 55, 0.22);
            box-shadow: var(--shadow-soft);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
            z-index: 1000;
        }

        .nav-dropdown.open .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        .nav-dropdown.open .nav-dropdown-toggle::after {
            width: 100%;
        }

        @media (hover: hover) and (pointer: fine) {
            html:not(.js-enabled) .nav-dropdown:hover {
                z-index: 1001;
            }

            html:not(.js-enabled) .nav-dropdown:hover .nav-dropdown-menu,
            html:not(.js-enabled) .nav-dropdown-menu:hover {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
                pointer-events: auto;
            }

            html:not(.js-enabled) .nav-dropdown:hover .nav-dropdown-toggle::after {
                width: 100%;
            }
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 10px 16px;
            font-size: 0.9375rem;
            color: rgba(255,255,255,0.95);
            white-space: normal;
            line-height: 1.45;
        }

        .nav-dropdown-menu a::after {
            display: none;
        }

        .nav-dropdown-menu a:hover {
            background: rgba(212, 175, 55, 0.12);
            color: var(--gold-soft);
        }

        .nav-dropdown-menu a[aria-current="page"] {
            color: var(--gold, currentColor);
            font-weight: 600;
        }

        .fees-section {
            max-width: 1040px;
            margin: 0 auto 28px;
            padding: 28px 30px;
            border-radius: 20px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(212, 175, 55, 0.16);
            box-shadow: var(--shadow-soft);
        }

        .fees-section h2,
        .fees-section h3 {
            margin: 0 0 10px;
            font-size: 1.5rem;
            color: var(--gold);
            font-family: "Cinzel", serif;
        }

        .fees-section p {
            margin: 0;
            font-size: 1.125rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.9);
        }

        .hero {
            position: relative;
            height: auto;
            overflow: visible;
            padding: 45px 24px 65px;
            background:
                radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 26%),
                linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 75%);
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 960px;
            min-width: 0;
            margin: 0 auto;
            text-align: center;
        }

        .logo-hero {
            display: block;
            width: clamp(220px, 20vw, 315px);
            max-width: 100%;
            height: auto;
            margin: 0 auto -30px;
            object-fit: contain;
            filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.3));
        }

        .hero-title {
            width: 100%;
            max-width: 100%;
            min-width: 0;
            margin-bottom: 18px;
        }

        .hero-title-small {
            margin: 0 0 6px;
            font-size: 0.9375rem;
            color: rgba(255,255,255,0.76);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .hero h1 {
            max-width: 100%;
            min-width: 0;
            margin: 0 0 4px;
            font-size: 3.625rem;
            line-height: 1.02;
            color: var(--white);
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
            font-family: "Cinzel", serif;
            letter-spacing: 1px;
            white-space: normal;
            overflow-wrap: break-word;
            text-wrap: balance;
        }

        .hero .subtitle {
            max-width: 100%;
            min-width: 0;
            margin: 0;
            font-size: 1.5625rem;
            color: var(--gold);
            letter-spacing: 0.3px;
            font-family: "Cinzel", serif;
            white-space: normal;
            overflow-wrap: break-word;
        }

        .hero-motto {
            width: 100%;
            max-width: 880px;
            min-width: 0;
            margin: 0 auto 24px;
            padding: 14px 0;
            border-top: 1px solid var(--gold-line);
            border-bottom: 1px solid var(--gold-line);
            font-family: "Cinzel", Georgia, serif;
            font-size: 1.375rem;
            line-height: 1.4;
            letter-spacing: 1px;
            color: var(--gold-soft);
            font-weight: 500;
            white-space: normal;
            overflow-wrap: break-word;
            text-wrap: balance;
}
        .hero-description {
            width: 100%;
            max-width: 760px;
            min-width: 0;
            margin: 0 auto 12px;
            font-size: 1.125rem;
            line-height: 1.5;
            color: rgba(255,255,255,0.92);
            white-space: normal;
            overflow-wrap: break-word;
}

        .button-group {
            width: 100%;
            max-width: 100%;
            min-width: 0;
            margin-top: 26px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
}

        .hero .button {
            height: auto;
            min-width: 0;
            white-space: normal;
            overflow-wrap: break-word;
        }

        .button {
            display: inline-block;
            min-width: 200px;
            max-width: 100%;
            padding: 14px 30px;
            border-radius: 999px;
            text-align: center;
            font-size: 1.0625rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            transition: all 0.25s ease;
        }

        .about-panel a,
        .service-box a,
        .client-box a,
        .account-item,
        .contact-info,
        .footer {
            overflow-wrap: anywhere;
            word-break: normal;
        }

        .button-primary {
            background: linear-gradient(135deg, var(--gold-soft), var(--gold));
            color: #111111;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 10px 26px rgba(212, 175, 55, 0.24);
        }

        .button-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(212, 175, 55, 0.3);
        }

        .button-secondary {
            color: var(--gold);
            border: 1px solid var(--gold-line);
            background: rgba(255,255,255,0.03);
        }

        .button-secondary:hover {
            transform: translateY(-2px);
            background: rgba(212, 175, 55, 0.1);
        }

        .about,
        .services,
        .clients,
        .contact-section,
        .bank-accounts-quick {
            position: relative;
        }

        .about::before,
        .services::before,
        .clients::before,
        .contact-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: min(180px, 40%);
            height: 1px;
            background: var(--gold-line);
        }

        .bank-accounts-quick {
            padding: 70px 24px 20px;
            background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
            color: var(--white);
        }

        .bank-accounts-panel {
            max-width: 1040px;
            margin: 0 auto;
            padding: 36px 32px;
            border-radius: var(--radius);
            background: rgba(11, 47, 115, 0.35);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(212, 175, 55, 0.15);
            text-align: center;
        }

        .bank-accounts-panel .section-title {
            color: var(--gold);
            margin-bottom: 12px;
        }

        .bank-accounts-panel .section-lead {
            color: rgba(255,255,255,0.86);
            margin-bottom: 24px;
        }

        .bank-accounts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 18px;
        }

        .bank-account-card {
            display: block;
            padding: 20px 22px;
            border-radius: 18px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(212, 175, 55, 0.18);
            color: var(--white);
            transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        .bank-account-card:hover {
            transform: translateY(-3px);
            background: rgba(212, 175, 55, 0.12);
            border-color: rgba(212, 175, 55, 0.34);
        }

        .bank-account-card strong {
            display: block;
            margin-bottom: 8px;
            color: var(--gold-soft);
            font-size: 1.1875rem;
        }

        .bank-account-card span {
            display: block;
            font-size: 1rem;
            color: rgba(255,255,255,0.86);
            line-height: 1.5;
        }

        .about {
            padding: 100px 24px;
            background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
            color: var(--white);
        }

        .about .section-title {
            color: var(--gold);
        }

        .about-panel {
            max-width: 980px;
            margin: 0 auto;
            padding: 44px 42px;
            border-radius: var(--radius);
            background: rgba(11, 47, 115, 0.35);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(212, 175, 55, 0.15);
            text-align: center;
        }

        .about-panel p {
            margin: 0 auto 18px;
            max-width: 820px;
            font-size: 1.3125rem;
            color: rgba(255,255,255,0.88);
        }

        /* O notariuszu */

        .about-professional {
            display: grid;
            grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.45fr);
            align-items: start;
            gap: clamp(44px, 6vw, 86px);
        }

        .about-professional-photo {
            position: sticky;
            top: 118px;
            min-width: 0;
            margin: 0;
        }

        .about-professional-photo-frame {
            position: relative;
            overflow: hidden;
            border: 1px solid var(--gold-line);
            background: rgba(255, 255, 255, 0.035);
        }

        .about-professional-photo-frame::before {
            content: "";
            position: absolute;
            inset: 12px;
            z-index: 1;
            border: 1px solid var(--gold-line);
            pointer-events: none;
        }

        .about-professional-photo img {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            object-position: center top;
        }

        .about-professional-photo figcaption {
            margin-top: 14px;
            text-align: center;
            font-size: 0.9rem;
            line-height: 1.6;
            letter-spacing: 0.04em;
            opacity: 0.86;
        }

        .about-professional-content {
            min-width: 0;
        }

        .about-professional-content .section-title {
            margin-bottom: 14px;
            text-align: left;
        }

        .about-professional-name {
            margin: 0 0 26px;
            font-size: clamp(1.45rem, 2.4vw, 2rem);
        }

        .about-professional-intro {
            font-size: 1.08rem;
            line-height: 1.8;
        }

        .about-professional-content > p {
            line-height: 1.8;
        }

        .about-credentials {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin: 34px 0;
        }

        .about-credential {
            display: flex;
            align-items: flex-start;
            gap: 13px;
            min-width: 0;
            padding: 18px;
            border: 1px solid var(--gold-line);
            background: rgba(255, 255, 255, 0.025);
            box-sizing: border-box;
        }

        .about-credential-icon {
            display: flex;
            flex: 0 0 auto;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            color: var(--gold);
        }

        .about-credential-icon svg {
            display: block;
            width: 28px;
            height: 28px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.55;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .about-credential div {
            display: grid;
            gap: 5px;
            min-width: 0;
        }

        .about-credential strong {
            line-height: 1.35;
        }

        .about-credential span {
            font-size: 0.9rem;
            line-height: 1.5;
            overflow-wrap: anywhere;
        }

        .about-work-philosophy {
            margin-top: 34px;
            padding: 26px 28px;
            border-left: 3px solid var(--gold);
            background: rgba(212, 175, 55, 0.06);
        }

        .about-work-philosophy h3 {
            margin-top: 0;
            margin-bottom: 14px;
        }

        .about-work-philosophy p:last-child {
            margin-bottom: 0;
        }

        .about-professional-motto {
            margin: 34px 0 0;
            padding: 26px 28px;
            border-top: 1px solid var(--gold-line);
            border-bottom: 1px solid var(--gold-line);
            text-align: center;
        }

        .about-professional-motto p {
            margin: 0;
            color: var(--gold);
            font-family: "Cinzel", serif;
            font-size: clamp(1.25rem, 2vw, 1.65rem);
            letter-spacing: 0.045em;
        }

        .about-professional-motto footer {
            margin-top: 9px;
            font-style: normal;
            opacity: 0.86;
        }

        .about-professional-actions {
            justify-content: flex-start;
            margin-top: 30px;
        }

        .about-professional-actions .button:focus-visible {
            outline: 3px solid var(--gold-soft);
            outline-offset: 4px;
        }

        @media (max-width: 980px) {
            .about-professional {
                grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
                gap: 38px;
            }

            .about-credentials {
                grid-template-columns: 1fr;
            }

            .about-professional-photo {
                position: static;
            }
        }

        @media (max-width: 700px) {
            .about-professional {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .about-professional-photo {
                width: 100%;
                max-width: 430px;
                margin-left: auto;
                margin-right: auto;
            }

            .about-professional-content .section-title,
            .about-professional-name {
                text-align: center;
            }

            .about-professional-content > .section-kicker {
                text-align: center;
            }

            .about-credentials {
                grid-template-columns: 1fr;
                margin: 28px 0;
            }

            .about-work-philosophy {
                padding: 22px 20px;
            }

            .about-professional-motto {
                padding: 22px 18px;
            }

            .about-professional-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .about-professional-actions .button {
                width: 100%;
            }
        }

        .services {
            padding: 100px 24px;
            background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
            color: var(--white);
            text-align: center;
        }

        .services .section-title {
            color: var(--gold);
        }

        .services .section-lead {
            color: rgba(255,255,255,0.85);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 28px;
            max-width: 1100px;
            margin: 48px auto 0;
        }

        .service-box,
        .client-box {
            padding: 34px 30px;
            border-radius: var(--radius);
            background: rgba(11, 47, 115, 0.35);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(212, 175, 55, 0.15);
            text-align: left;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .service-box:hover,
        .client-box:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-medium);
            border-color: var(--gold-line);
            background: rgba(11, 47, 115, 0.5);
        }

        .service-box h3,
        .client-box h3 {
            margin: 0 0 14px;
            color: var(--gold);
            font-size: 1.5625rem;
        }

        .service-box p,
        .client-box p {
            margin: 0;
            color: rgba(255,255,255,0.85);
            font-size: 1.1875rem;
            line-height: 1.75;
        }

        .clients {
            padding: 100px 24px;
            background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
            color: var(--white);
            text-align: center;
        }

        .clients .section-title {
            color: var(--gold);
        }

        .clients-intro {
            color: rgba(255,255,255,0.85) !important;
        }

        .clients-intro {
            max-width: 860px;
            margin: 0 auto 48px;
            font-size: 1.3125rem;
            color: var(--text-soft);
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-section {
            padding: 110px 24px 90px;
            z-index: 0;
            margin-top: 0;
            isolation: isolate;
            text-align: center;
            background:
                radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 28%),
                linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
        }

        #kontakt,
        #godziny-otwarcia,
        #mapa-i-trasa,
        #dojazd-i-dostepnosc {
            scroll-margin-top: 172px;
        }

        .contact-section .section-title {
            color: var(--gold);
        }

        .contact-card {
            max-width: 960px;
            margin: 0 auto 42px;
            padding: 34px 26px;
            border-radius: var(--radius);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(212, 175, 55, 0.14);
            box-shadow: var(--shadow-soft);
        }

        .contact-directions-panel {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            gap: 32px;
            margin: 42px 0 28px;
            padding: 28px 30px;
            border: 1px solid var(--gold-line);
            background: rgba(212, 175, 55, 0.07);
            box-sizing: border-box;
        }

        .contact-directions-copy {
            min-width: 0;
            max-width: 720px;
        }

        .contact-directions-copy h3 {
            margin-top: 0;
            margin-bottom: 12px;
        }

        .contact-directions-copy p:last-child {
            margin-bottom: 0;
        }

        .contact-directions-panel .section-kicker {
            margin-bottom: 8px;
        }

        .contact-info {
            font-family: "Libre Baskerville", "Cormorant Garamond", Georgia, serif;
            max-width: 640px;
            margin: 0 auto;
        }

        .contact-info p {
            margin: 4px 0;
            font-size: 1.25rem;
            line-height: 1.45;
            color: rgba(255,255,255,0.92);
        }

        .contact-info a {
            color: var(--gold-soft);
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        .building-name {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
        }

        .building-icon {
            width: 27px;
            height: 27px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            flex-shrink: 0;
        }

        .building-icon svg {
            width: 26px;
            height: 26px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.65;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .contact-list {
            margin: 10px 0 8px;
            display: grid;
            gap: 4px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 10px;
            margin: 0;
            font-size: 1.25rem;
            line-height: 1.35;
            color: rgba(255,255,255,0.92);
        }

        .contact-email {
            margin-top: 10px;
        }

        .contact-item-indent {
            padding-left: 0;
            gap: 0;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 1px;
        }

        .contact-icon svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .contact-icon-landline {
            width: 32px;
            height: 32px;
            margin-top: -3px;
        }

        .contact-icon-landline svg {
            width: 31px;
            height: 31px;
            stroke-width: 1.9;
        }

        .contact-icon-small {
            display: none;
            position: relative;
        }

        .contact-icon-small::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
        }

        .contact-label {
            font-weight: 700;
            color: var(--gold-soft);
        }

        .contact-heading {
            display: contents;
        }

        .contact-mobile-number {
            min-width: 0;
        }

        .contact-mobile-number a {
            white-space: nowrap;
        }

        .opening-hours {
            margin: 14px auto 4px;
            display: inline-block;
            text-align: center;
        }

        .opening-hours-title {
            margin: 0 0 4px;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gold-soft);
            letter-spacing: 0.02em;
        }

        .opening-hours-line {
            margin: 2px 0;
            font-size: 1.1875rem;
            line-height: 1.35;
            color: rgba(255,255,255,0.92);
        }

        .accounts-section {
            position: relative;
            z-index: 1;
            max-width: 1040px;
            margin: 34px auto 0;
            padding: 30px 28px 88px;
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255,255,255,0.04));
            border: 1px solid rgba(212, 175, 55, 0.22);
            box-shadow: var(--shadow-soft);
            text-align: left;
        }

        .accounts-section .container {
            position: relative;
            z-index: 2;
        }

        .accounts-section + .contact-section {
            border-top: 1px solid var(--gold-line);
        }

        .accounts-section + .contact-section::before {
            display: none;
        }

        .accounts-section h2,
        .accounts-section h3 {
            margin: 0 0 18px;
            font-size: 1.625rem;
            color: var(--gold);
            font-family: "Cinzel", serif;
            letter-spacing: 0.03em;
        }

        .account-item {
            margin-bottom: 18px;
            padding: 18px 20px;
            border-radius: 16px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(212, 175, 55, 0.16);
        }

        .account-item:last-child {
            margin-bottom: 0;
        }

        .account-label {
            display: block;
            margin-bottom: 8px;
            font-size: 1.125rem;
            font-weight: 700;
            color: rgba(255,255,255,0.96);
            line-height: 1.5;
        }

        .account-bank {
            display: inline-block;
            margin-top: 4px;
            font-size: 1.125rem;
            color: rgba(255,255,255,0.86);
        }

        .account-number {
            display: block;
            margin: 10px 0 12px;
            font-family: "Cinzel", serif;
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1.4;
            letter-spacing: 0.04em;
            color: var(--gold-soft);
            word-break: break-all;
        }

        .copy-btn {
            border: 1px solid rgba(212, 175, 55, 0.35);
            background: rgba(212, 175, 55, 0.14);
            color: var(--white);
            padding: 9px 14px;
            border-radius: 999px;
            font-size: 0.9375rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: "Libre Baskerville", Georgia, serif;
        }

        .copy-btn:hover {
            background: rgba(212, 175, 55, 0.22);
            transform: translateY(-1px);
        }

        .copy-btn:active {
            transform: translateY(0);
        }

        .map-box {
            width: 100%;
            max-width: 1200px;
            height: 600px;
            margin: 0 auto;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
            border: 1px solid rgba(212, 175, 55, 0.16);
        }

        iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .footer {
            background: #05122a;
            color: var(--white);
            text-align: center;
            padding: 38px 20px;
            border-top: 1px solid var(--gold-line);
        }

        .footer p {
            margin: 8px 0;
            font-size: 1.0625rem;
            color: rgba(255,255,255,0.86);
            font-family: "Libre Baskerville", "Cormorant Garamond", Georgia, serif;
            line-height: 1.5;
        }

        .footer-building-name {
            color: rgba(255,255,255,0.9);
        }

        .footer-building-name .building-icon {
            width: 25px;
            height: 25px;
        }

        .footer-building-name .building-icon svg {
            width: 24px;
            height: 24px;
        }

        .footer-contact {
            width: min(980px, 100%);
            margin: 16px auto 8px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 14px;
            font-family: "Libre Baskerville", "Cormorant Garamond", Georgia, serif;
        }

        .footer-contact-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 36px;
            padding: 6px 12px;
            border: 1px solid rgba(212, 175, 55, 0.22);
            border-radius: 999px;
            color: rgba(255,255,255,0.88);
            text-decoration: none;
            background: rgba(255,255,255,0.035);
            transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
        }

        .footer-contact-item:hover {
            color: var(--gold-soft);
            border-color: rgba(212, 175, 55, 0.48);
            background: rgba(212, 175, 55, 0.08);
        }

        .footer-contact-icon {
            width: 21px;
            height: 21px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            flex-shrink: 0;
        }

        .footer-contact-icon svg {
            width: 19px;
            height: 19px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .footer-contact-icon-landline {
            width: 27px;
            height: 27px;
            margin-left: -2px;
        }

        .footer-contact-icon-landline svg {
            width: 26px;
            height: 26px;
            stroke-width: 1.9;
        }

        .footer .motto {
            margin-top: 12px;
            color: var(--gold);
            font-style: italic;
            font-size: 1.125rem;
        }

        .reveal {
            opacity: 1;
            transform: none;
        }

        .reveal-animations .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal-animations .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-animations .hero .reveal {
            opacity: 1;
            transform: none;
            transition: none;
        }

        @media (max-width: 768px) {
            .reveal-animations .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .nav-container {
                flex-direction: column;
                align-items: center;
            }

            .logo {
                text-align: center;
                flex-direction: column;
            }

            .nav-links {
                justify-content: center;
            }

            .hero h1 {
                font-size: 3.25rem;
            }

            .hero-title-small {
                font-size: 1.5rem;
            }

            .hero .subtitle {
                font-size: 1.75rem;
            }

            .hero-description {
                font-size: 1.3125rem;
            }

            .section-title {
                font-size: 2.25rem;
            }

            .map-box {
                height: 420px;
            }

            .about-panel {
                padding: 36px 28px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                position: static;
            }

            .nav-container {
                padding: 16px 20px;
                gap: 14px;
            }

            .logo-nav {
                height: 100px;
            }

            .logo-top {
                font-size: 0.8125rem;
            }

            .logo-bottom {
                font-size: 1.4375rem;
            }

            .nav-links {
                gap: 14px 18px;
            }

            .nav-links a {
                font-size: 0.9375rem;
            }

            .hero {
                padding: 78px 20px 72px;
            }

            .logo-hero {
                width: clamp(190px, 58vw, 240px);
                margin-bottom: -20px;
            }

            .hero-title-small {
                font-size: 1.375rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .subtitle {
                font-size: 1.5rem;
            }

            .hero-motto {
                font-size: 1.3125rem;
                padding: 16px 0;
            }

            .hero-description {
                font-size: 1.25rem;
            }

            .button {
                width: min(240px, 100%);
                max-width: 100%;
                box-sizing: border-box;
            }

            .about,
            .services,
            .clients,
            .contact-section {
                padding: 78px 20px;
            }

            .about-panel p,
            .section-lead,
            .clients-intro,
            .service-box p,
            .client-box p,
            .contact-info p {
                font-size: 1.125rem;
            }

            .contact-item {
                font-size: 1.125rem;
            }

            .map-box {
                height: 340px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.25rem;
            }

            .hero .subtitle {
                font-size: 1.375rem;
            }

            .section-title {
                font-size: 1.9375rem;
            }

            .service-box,
            .client-box,
            .contact-card,
            .about-panel {
                padding: 24px;
            }

            .hero-title-small {
                font-size: 1.375rem;
            }

            .contact-item {
                justify-content: flex-start;
                text-align: left;
            }

            .contact-item-indent {
                justify-content: center;
                padding-left: 0;
                text-align: center;
            }

            .contact-email a {
                overflow-wrap: anywhere;
            }

            .footer-contact {
                align-items: stretch;
                flex-direction: column;
                gap: 8px;
            }

            .footer-contact-item {
                justify-content: center;
                border-radius: 8px;
                overflow-wrap: anywhere;
            }
        }

        @media (max-width: 768px) {
            .contact-item-mobile,
            .contact-landline-heading,
            .contact-email {
                display: grid;
                grid-template-columns: minmax(0, 1fr);
                justify-items: stretch;
                row-gap: 6px;
                width: min(100%, 320px);
                box-sizing: border-box;
                margin-right: auto;
                margin-left: auto;
                text-align: left;
            }

            .contact-item-mobile {
                order: -1;
                margin-top: 0;
                margin-bottom: 12px;
            }

            .contact-landline-heading {
                margin-bottom: 2px;
            }

            .contact-email {
                margin-top: 16px;
                margin-bottom: 0;
            }

            .contact-item-mobile .contact-heading,
            .contact-landline-heading .contact-heading,
            .contact-email .contact-heading {
                display: inline-flex;
                grid-column: 1;
                grid-row: 1;
                align-items: flex-start;
                justify-content: center;
                justify-self: center;
                gap: 8px;
                min-width: 0;
                max-width: 100%;
            }

            .contact-item-mobile .contact-label,
            .contact-landline-heading .contact-label,
            .contact-email .contact-label {
                min-width: 0;
                white-space: nowrap;
            }

            .contact-item-mobile .contact-label,
            .contact-landline-heading .contact-label {
                white-space: normal;
                overflow-wrap: normal;
                word-break: normal;
                text-align: center;
            }

            .contact-item-mobile .contact-mobile-number {
                grid-column: 1;
                grid-row: 2;
                justify-self: stretch;
                max-width: 100%;
                margin-top: 2px;
                text-align: center;
            }

            .contact-email .contact-email-address {
                grid-column: 1;
                grid-row: 2;
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                width: 100%;
                min-width: 0;
                max-width: 100%;
                margin-top: 2px;
                text-align: center;
                overflow-wrap: normal;
                word-break: normal;
            }

            .contact-email-local,
            .contact-email-domain {
                white-space: nowrap;
            }

            .nav-container {
                position: relative;
                display: grid;
                grid-template-columns: minmax(0, 1fr) auto;
                align-items: center;
            }

            .logo {
                grid-column: 1;
                justify-self: start;
                min-width: 0;
                flex-direction: row;
                gap: 14px;
                text-align: left;
            }

            .logo-nav {
                height: 72px;
            }

            .logo-top {
                font-size: 0.6875rem;
                letter-spacing: 1px;
            }

            .logo-bottom {
                font-size: 1.1875rem;
            }

            .nav-toggle {
                grid-column: 2;
                justify-self: end;
                display: none;
                flex: 0 0 auto;
            }

            .js-enabled .nav-toggle {
                display: flex;
            }

            .nav-links {
                grid-column: 1 / -1;
                position: fixed;
                top: var(--mobile-nav-top, 104px);
                right: 0;
                left: 0;
                inset-inline: 0;
                z-index: 1200;
                display: none;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                justify-self: stretch;
                flex-wrap: nowrap;
                gap: 0;
                box-sizing: border-box;
                width: auto;
                max-width: 100vw;
                max-height: calc(100vh - var(--mobile-nav-top, 104px));
                max-height: calc(100dvh - var(--mobile-nav-top, 104px));
                margin: 0;
                overflow-x: hidden;
                overflow-y: auto;
                overscroll-behavior: contain;
                transform: none;
                border: 1px solid rgba(212, 175, 55, 0.22);
                border-radius: 0 0 14px 14px;
                background: rgba(6, 22, 51, 0.98);
                box-shadow: var(--shadow-soft);
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links > a,
            .nav-dropdown-toggle {
                width: 100%;
                min-height: 44px;
                box-sizing: border-box;
                justify-content: flex-start;
                padding: 14px 20px;
                text-align: left;
                white-space: normal;
            }

            .nav-links a::after,
            .nav-links .nav-dropdown-toggle::after {
                bottom: 4px;
            }

            .nav-dropdown {
                display: block;
                width: 100%;
                margin: 0;
                padding: 0;
            }

            .nav-dropdown-menu {
                position: static;
                display: none;
                width: 100%;
                min-width: 0;
                padding: 0;
                transform: none;
                border: 0;
                border-radius: 0;
                background: rgba(4, 16, 38, 0.94);
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transition: none;
            }

            .nav-dropdown.open .nav-dropdown-menu {
                display: block;
                transform: none;
            }

            .nav-dropdown-menu a {
                padding: 12px 32px;
                white-space: normal;
            }

            html:not(.js-enabled) .nav-container {
                grid-template-columns: minmax(0, 1fr) auto;
            }

            html:not(.js-enabled) .nav-links {
                position: static;
                display: flex;
                flex: 1 0 100%;
                max-height: none;
                margin-top: 14px;
                overflow: visible;
            }

            html:not(.js-enabled) .nav-dropdown-menu {
                display: block;
            }

            html.js-enabled .nav-container > .language-switcher {
                display: none;
            }

            html:not(.js-enabled) .language-switcher {
                grid-column: 1 / -1;
                justify-self: start;
                margin-top: 12px;
            }
        }

        @media (min-width: 360px) and (max-width: 430px) {
            .contact-item-mobile,
            .contact-landline-heading,
            .contact-email {
                position: relative;
                inset-inline-start: -8px;
            }
        }

        @media (max-width: 430px) {
            html[data-font-size="larger"] .contact-email-address {
                font-size: 1rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            .reveal-animations .reveal {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* Generator wymaganych dokumentów */

        .documents-generator-section {
            position: relative;
            padding: 100px 24px;
            scroll-margin-top: 110px;
            background:
                radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.09), transparent 32%),
                linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 54%, var(--navy-700) 100%);
            color: var(--white);
        }

        .documents-generator-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            width: min(180px, 40%);
            height: 1px;
            transform: translateX(-50%);
            background: var(--gold-line);
        }

        .generator-panel {
            width: 100%;
            max-width: 1040px;
            margin: 0 auto;
            padding: 44px 42px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: var(--radius);
            background: rgba(6, 22, 51, 0.72);
            box-shadow: var(--shadow-medium);
        }

        .generator-header {
            max-width: 820px;
            margin: 0 auto 30px;
            text-align: center;
        }

        .generator-header .section-title {
            margin-bottom: 12px;
            color: var(--gold);
        }

        .generator-header > p:last-child {
            margin: 0;
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.86);
        }

        .generator-kicker {
            margin: 0 0 10px;
            font-family: "Cinzel", Georgia, serif;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: var(--gold-soft);
        }

        .generator-progress {
            max-width: 760px;
            margin: 0 auto 34px;
        }

        .generator-progress-text {
            display: block;
            margin-bottom: 8px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
        }

        .generator-progress-track {
            width: 100%;
            height: 10px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.22);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
        }

        .generator-progress-bar {
            display: block;
            width: 25%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--gold), var(--gold-soft));
            box-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
            transition: width 0.25s ease;
        }

        .generator-option-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            width: 100%;
        }

        .generator-option {
            position: relative;
            min-width: 0;
        }

        .generator-option input {
            position: absolute;
            z-index: 2;
            top: 20px;
            left: 20px;
            width: 22px;
            height: 22px;
            margin: 0;
            accent-color: var(--gold);
            cursor: pointer;
        }

        .generator-option-content {
            display: flex;
            min-height: 150px;
            padding: 20px 20px 20px 56px;
            overflow-wrap: anywhere;
            flex-direction: column;
            gap: 8px;
            border: 1px solid rgba(212, 175, 55, 0.18);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.045);
            color: rgba(255, 255, 255, 0.88);
            cursor: pointer;
            transition:
                transform 0.2s ease,
                border-color 0.2s ease,
                background 0.2s ease,
                box-shadow 0.2s ease;
        }

        .generator-option-content:hover {
            transform: translateY(-2px);
            border-color: rgba(212, 175, 55, 0.46);
            background: rgba(212, 175, 55, 0.09);
        }

        .generator-option input:checked + .generator-option-content {
            border-color: var(--gold);
            background: rgba(212, 175, 55, 0.15);
            box-shadow:
                0 0 0 2px rgba(212, 175, 55, 0.16),
                var(--shadow-soft);
        }

        .generator-option input:focus-visible + .generator-option-content {
            outline: 3px solid var(--gold-soft);
            outline-offset: 4px;
        }

        .generator-option-title {
            font-family: "Cinzel", Georgia, serif;
            font-size: 1.125rem;
            font-weight: 600;
            line-height: 1.35;
            color: var(--gold-soft);
        }

        .generator-option-description {
            font-size: 1.0625rem;
            line-height: 1.45;
        }

        .generator-question-group-title {
            margin: 38px 0 18px;
            padding: 0 0 10px;
            border-bottom: 1px solid var(--gold-line);
            font-family: "Cinzel", Georgia, serif;
            font-size: 1.375rem;
            line-height: 1.35;
            color: var(--gold);
        }

        .generator-question-group-title:first-child {
            margin-top: 0;
        }

        .generator-question {
            min-width: 0;
            margin: 0 0 24px;
            padding: 24px;
            border: 1px solid rgba(212, 175, 55, 0.16);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
        }

        .generator-question legend {
            max-width: 100%;
            padding: 0 8px;
            font-size: 1.3125rem;
            font-weight: 700;
            line-height: 1.4;
            color: var(--gold-soft);
        }

        .generator-required-text {
            font-size: 0.9375rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.72);
        }

        .generator-answer-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-top: 14px;
        }

        .generator-answer {
            position: relative;
            display: flex;
            min-width: 0;
            min-height: 48px;
            align-items: stretch;
        }

        .generator-answer input {
            position: absolute;
            z-index: 2;
            top: 50%;
            left: 15px;
            width: 20px;
            height: 20px;
            margin: 0;
            transform: translateY(-50%);
            accent-color: var(--gold);
            cursor: pointer;
        }

        .generator-answer label {
            display: flex;
            width: 100%;
            min-width: 0;
            min-height: 48px;
            padding: 11px 14px 11px 48px;
            overflow-wrap: anywhere;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.035);
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            transition:
                border-color 0.2s ease,
                background 0.2s ease;
        }

        .generator-answer input:checked + label {
            border-color: var(--gold);
            background: rgba(212, 175, 55, 0.13);
            color: var(--white);
        }

        .generator-answer input:focus-visible + label {
            outline: 3px solid var(--gold-soft);
            outline-offset: 3px;
        }

        .generator-actions {
            display: flex;
            margin-top: 30px;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
        }

        .generator-actions .button {
            min-height: 48px;
            border-width: 1px;
            font-family: inherit;
            line-height: 1.25;
            cursor: pointer;
        }

        .generator-actions .button:disabled {
            cursor: not-allowed;
            opacity: 0.55;
            transform: none;
        }

        .generator-actions .button:focus-visible,
        .generator-inline-link:focus-visible,
        .client-box-featured .button:focus-visible {
            outline: 3px solid var(--gold-soft);
            outline-offset: 4px;
        }

        .generator-error {
            max-width: 760px;
            margin: 22px auto 0;
            padding: 14px 16px;
            border: 1px solid rgba(255, 196, 196, 0.5);
            border-radius: 12px;
            background: rgba(126, 24, 24, 0.32);
            color: #fff2f2;
            font-size: 1.125rem;
            font-weight: 700;
            text-align: center;
        }

        .generator-result {
            max-width: 860px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.9);
        }

        .generator-result:focus {
            outline: none;
        }

        .generator-result:focus-visible {
            outline: 3px solid var(--gold-soft);
            outline-offset: 8px;
        }

        .generator-result > h2 {
            margin: 0 0 12px;
            color: var(--gold);
            font-size: 2.125rem;
            line-height: 1.25;
            text-align: center;
        }

        .generator-result > h2:focus-visible {
            outline: 3px solid var(--gold-soft);
            outline-offset: 6px;
        }

        .generator-result > p {
            max-width: 760px;
            margin: 0 auto 28px;
            font-size: 1.1875rem;
            text-align: center;
        }

        .generator-result-section {
            margin-top: 24px;
            padding: 24px;
            border: 1px solid rgba(212, 175, 55, 0.16);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
        }

        .generator-result-section h3,
        .generator-notice h3 {
            margin: 0 0 14px;
            color: var(--gold-soft);
            font-size: 1.5rem;
            line-height: 1.35;
        }

        .generator-result-section ul {
            margin: 0;
            padding-left: 24px;
        }

        .generator-result-section li + li {
            margin-top: 8px;
        }

        .generator-section-note {
            margin: 24px 0 0;
            padding: 12px 14px;
            border-left: 3px solid var(--gold);
            background: rgba(212, 175, 55, 0.08);
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.0625rem;
            line-height: 1.5;
        }

        .generator-check-list {
            display: grid;
            gap: 10px;
        }

        .generator-check-item {
            display: flex;
            min-width: 0;
            min-height: 48px;
            padding: 11px 14px;
            align-items: flex-start;
            gap: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.035);
            cursor: pointer;
        }

        .generator-check-item:hover {
            border-color: rgba(212, 175, 55, 0.34);
        }

        .generator-check-item input {
            flex: 0 0 auto;
            width: 20px;
            height: 20px;
            margin: 3px 0 0;
            accent-color: var(--gold);
        }

        .generator-check-item input:focus-visible {
            outline: 3px solid var(--gold-soft);
            outline-offset: 3px;
        }

        .generator-check-item span {
            min-width: 0;
            overflow-wrap: anywhere;
        }

        .generator-notice {
            margin-top: 28px;
            padding: 24px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 16px;
            background: rgba(212, 175, 55, 0.09);
        }

        .generator-notice p {
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
        }

        .generator-notice p + p {
            margin-top: 12px;
        }

        .generator-copy-status {
            min-height: 28px;
            margin: 18px 0 0;
            color: var(--gold-soft);
            font-weight: 700;
            text-align: center;
        }

        .generator-inline-link {
            display: inline-flex;
            min-height: 44px;
            margin-top: 24px;
            padding: 10px 0;
            align-items: center;
            color: var(--gold-soft);
            font-weight: 700;
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 4px;
        }

        .generator-print-heading,
        .generator-print-date {
            display: none;
        }

        .client-box-featured {
            display: flex;
            min-width: 0;
            flex-direction: column;
            grid-column: 1 / -1;
            align-items: center;
            border-color: rgba(212, 175, 55, 0.4);
            background:
                radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.14), transparent 55%),
                rgba(11, 47, 115, 0.48);
            text-align: center;
        }

        .client-box-featured p {
            max-width: 720px;
        }

        .client-box-featured .button {
            margin-top: 22px;
        }

        @media (max-width: 900px) {
            .generator-option-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .documents-generator-section {
                padding: 78px 20px;
                scroll-margin-top: 90px;
            }

            .generator-panel {
                padding: 32px 24px;
            }

            .generator-option-grid,
            .generator-answer-list {
                grid-template-columns: minmax(0, 1fr);
            }

            .generator-option-content {
                min-height: 118px;
            }

            .generator-result > h2 {
                font-size: 1.875rem;
            }
        }

        @media (max-width: 480px) {
            .documents-generator-section {
                padding-right: 14px;
                padding-left: 14px;
            }

            .generator-panel {
                padding: 26px 16px;
                border-radius: 16px;
            }

            .generator-question,
            .generator-result-section,
            .generator-notice {
                padding: 18px 16px;
            }

            .generator-question legend {
                font-size: 1.1875rem;
            }

            .generator-question-group-title {
                font-size: 1.1875rem;
            }

            .generator-actions {
                align-items: stretch;
                flex-direction: column;
            }

            .generator-actions .button {
                width: 100%;
                min-width: 0;
            }

            .generator-result > h2 {
                font-size: 1.6875rem;
            }
        }

        @media print {
            @page {
                margin: 18mm;
            }

            html,
            body {
                background: #ffffff !important;
                color: #111111 !important;
            }

            .navbar,
            .footer,
            main > section:not(.documents-generator-section),
            main > noscript,
            .generator-header,
            .generator-progress,
            #documents-generator-form,
            .generator-result-actions,
            .generator-copy-status,
            .generator-inline-link,
            .map-box {
                display: none !important;
            }

            .documents-generator-section {
                display: block !important;
                padding: 0 !important;
                background: #ffffff !important;
                color: #111111 !important;
            }

            .documents-generator-section::before {
                display: none !important;
            }

            .documents-generator-section .container {
                max-width: none;
                padding: 0;
            }

            .generator-panel {
                max-width: none;
                padding: 0;
                overflow: visible;
                border: 0;
                background: #ffffff;
                box-shadow: none;
            }

            .generator-result {
                max-width: none;
                color: #111111;
            }

            .generator-result[hidden] {
                display: none !important;
            }

            .generator-result > h2,
            .generator-result-section h3,
            .generator-notice h3 {
                color: #111111;
                text-align: left;
            }

            .generator-result > p {
                max-width: none;
                color: #111111;
                text-align: left;
            }

            .generator-print-heading,
            .generator-print-date {
                display: block;
                margin: 0 0 8px;
                color: #111111;
                font-family: Georgia, serif;
                text-align: left;
            }

            .generator-print-heading {
                font-size: 1.25rem;
                font-weight: 700;
            }

            .generator-result-section,
            .generator-notice {
                break-inside: avoid;
                padding: 14px 0;
                border: 0;
                border-top: 1px solid #999999;
                border-radius: 0;
                background: transparent;
                color: #111111;
            }

            .generator-result-section li,
            .generator-notice p,
            .generator-section-note {
                color: #111111;
            }

            .generator-section-note {
                padding: 8px 0 8px 12px;
                background: transparent;
            }

            .generator-check-item {
                min-height: 0;
                padding: 4px 0;
                border: 0;
                background: transparent;
                color: #111111;
            }

            .generator-check-item input {
                display: none;
            }

            .generator-check-item span::before {
                content: "□ ";
            }
        }

/* Status dokumentów i gotowość do wizyty */

.generator-document-declaration {
    max-width: 860px;
    margin: 0 auto 30px;
}

.generator-document-section {
    min-width: 0;
    margin-top: 34px;
}

.generator-live-status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.generator-requirement-section {
    min-width: 0;
    margin-top: 34px;
}

.generator-requirement-list {
    display: grid;
    min-width: 0;
    gap: 12px;
}

.generator-requirement-item {
    display: grid;
    min-width: 0;
    padding: 16px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.generator-requirement-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 50%;
    color: var(--gold-soft);
    font-weight: 700;
}

.generator-requirement-content,
.generator-requirement-label,
.generator-requirement-description {
    min-width: 0;
    overflow-wrap: anywhere;
}

.generator-requirement-label {
    display: block;
    color: var(--gold-soft);
    line-height: 1.45;
}

.generator-requirement-description {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}

.generator-document-section-heading {
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold-line);
    color: var(--gold);
    font-family: "Cinzel", Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.35;
}

.generator-document-section-description {
    max-width: 860px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.0625rem;
    line-height: 1.55;
}

.generator-document-status-list {
    display: grid;
    min-width: 0;
    gap: 18px;
}

.generator-document-status {
    min-width: 0;
    margin: 0;
    padding: 20px;
    overflow-wrap: anywhere;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.generator-document-status[aria-invalid="true"] {
    border-color: rgba(231, 124, 124, 0.9);
    box-shadow: 0 0 0 2px rgba(126, 24, 24, 0.24);
}

.generator-document-status legend {
    max-width: 100%;
    padding: 0 8px;
    overflow-wrap: anywhere;
    color: var(--gold-soft);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
}

.generator-document-status-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.generator-document-status-option {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 50px;
    align-items: stretch;
}

.generator-document-status-option input {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 15px;
    width: 20px;
    height: 20px;
    margin: 0;
    transform: translateY(-50%);
    accent-color: var(--gold);
    cursor: pointer;
}

.generator-document-status-option label {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 11px 14px 11px 48px;
    overflow-wrap: anywhere;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.generator-document-status-option input:checked + label {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.13);
    color: var(--white);
}

.generator-document-status-option input:focus-visible + label {
    outline: 3px solid var(--gold-soft);
    outline-offset: 3px;
}

.generator-readiness {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left-width: 5px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.generator-readiness--ready {
    border-left-color: #58a879;
    background: rgba(42, 112, 72, 0.13);
}

.generator-readiness--review {
    border-left-color: var(--gold);
    background: rgba(212, 175, 55, 0.09);
}

.generator-readiness--incomplete {
    border-left-color: #b85f5f;
    background: rgba(126, 24, 24, 0.17);
}

.generator-readiness-label {
    margin: 0 0 8px;
    color: var(--gold-soft);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.4;
    text-transform: uppercase;
}

.generator-readiness-title {
    margin: 0 0 10px;
    color: var(--white);
    font-family: "Cinzel", Georgia, serif;
    font-size: 1.6875rem;
    line-height: 1.3;
}

.generator-readiness-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
}

.generator-readiness-levels {
    display: grid;
    min-width: 0;
    margin: 16px 0 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.generator-readiness-level {
    display: flex;
    min-width: 0;
    padding: 11px 12px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;
}

.generator-readiness-level dt,
.generator-readiness-level dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.generator-readiness-level dd {
    font-weight: 700;
}

.generator-readiness-level .is-ready {
    color: #8fd2aa;
}

.generator-readiness-level .is-not-ready {
    color: var(--gold-soft);
}

.generator-answer-summary dl {
    display: grid;
    margin: 0;
    gap: 10px;
}

.generator-answer-summary-item {
    display: grid;
    min-width: 0;
    padding: 14px 16px;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.generator-answer-summary-question,
.generator-answer-summary-value {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.generator-answer-summary-question {
    color: var(--gold-soft);
    font-weight: 700;
}

.generator-answer-summary-value {
    color: rgba(255, 255, 255, 0.9);
}

.generator-document-summary-table {
    display: grid;
    min-width: 0;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.11);
}

.generator-document-summary-row {
    display: grid;
    min-width: 0;
    padding: 13px 15px;
    grid-template-columns: minmax(0, 1.7fr) minmax(170px, 0.8fr);
    align-items: center;
    gap: 18px;
    background: var(--navy-900);
}

.generator-document-summary-header {
    background: rgba(212, 175, 55, 0.13);
    color: var(--gold-soft);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.generator-document-summary-label {
    min-width: 0;
    overflow-wrap: anywhere;
}

.generator-document-summary-status {
    display: inline-block;
    justify-self: start;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.generator-document-summary-status--have {
    border-color: rgba(88, 168, 121, 0.72);
}

.generator-document-summary-status--ordered,
.generator-document-summary-status--unknown,
.generator-document-summary-status--not-specified {
    border-color: rgba(212, 175, 55, 0.62);
}

.generator-document-summary-status--missing {
    border-color: rgba(184, 95, 95, 0.82);
}

.generator-review-reasons {
    border-left: 4px solid var(--gold);
}

.generator-blocking-documents {
    border-left: 4px solid #b85f5f;
}

@media (max-width: 700px) {
    .generator-document-status-options,
    .generator-answer-summary-item,
    .generator-readiness-levels {
        grid-template-columns: minmax(0, 1fr);
    }

    .generator-requirement-item {
        padding: 14px;
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .generator-document-status {
        padding: 18px 14px;
    }

    .generator-document-status legend {
        font-size: 1.125rem;
    }

    .generator-document-summary-header {
        display: none;
    }

    .generator-document-summary-row {
        padding: 15px;
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    .generator-document-summary-status {
        max-width: 100%;
        border-radius: 10px;
    }

    .documents-generator-section .generator-actions {
        padding-bottom: 82px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .generator-progress-bar {
        transition: none;
    }
}

@media print {
    .generator-readiness,
    .generator-answer-summary-item,
    .generator-document-summary-row {
        border-color: #777777;
        background: transparent;
        color: #111111;
    }

    .generator-readiness {
        break-inside: avoid;
        padding: 12px 0 12px 14px;
    }

    .generator-readiness-label,
    .generator-readiness-title,
    .generator-readiness-description,
    .generator-answer-summary-question,
    .generator-answer-summary-value,
    .generator-document-summary-header,
    .generator-document-summary-status {
        color: #111111;
    }

    .generator-answer-summary,
    .generator-document-summary {
        break-inside: auto;
    }

    .generator-answer-summary-item,
    .generator-document-summary-row {
        break-inside: avoid;
    }

    .generator-document-summary-table {
        border-color: #777777;
        background: #777777;
    }

    .generator-document-summary-status {
        padding: 0;
        border: 0;
    }
}

/* Promocja rezerwacji online */

.nav-dropdown-booking-link,
.nav-dropdown-menu .nav-dropdown-booking-link {
    color: var(--gold, currentColor);
    font-weight: 650;
}

.nav-dropdown-booking-link::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 9px;
    border-radius: 50%;
    background: currentColor;
    vertical-align: middle;
}

.booking-promo {
    position: relative;
    padding: clamp(42px, 6vw, 74px) 0;
}

.booking-promo-panel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid rgba(212, 175, 55, 0.42);
    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.08),
            rgba(255, 255, 255, 0.018)
        );
    overflow-wrap: anywhere;
}

.booking-promo-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 3px;
    background: var(--gold, currentColor);
}

.booking-promo-heading {
    max-width: 850px;
    margin-bottom: 34px;
}

.booking-promo-heading h2 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--gold-soft);
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    line-height: 1.2;
}

.booking-promo-heading p:last-child {
    margin-bottom: 0;
    font-size: 1.04rem;
    line-height: 1.75;
}

.booking-promo-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.booking-promo-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-width: 0;
    padding: 21px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    background: rgba(255, 255, 255, 0.022);
}

.booking-promo-step-number {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--gold, currentColor);
    border-radius: 50%;
    color: var(--gold, currentColor);
    font-weight: 700;
}

.booking-promo-step div {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.booking-promo-step strong {
    color: var(--gold-soft);
    line-height: 1.4;
}

.booking-promo-step div span {
    font-size: 0.93rem;
    line-height: 1.6;
    opacity: 0.86;
}

.booking-promo-action {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
    margin-top: 30px;
}

.booking-promo-action p {
    max-width: 640px;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    opacity: 0.84;
}

.hero-booking-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-booking-button-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}

.hero-booking-button-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-booking-note {
    width: 100%;
    max-width: 610px;
    min-width: 0;
    margin: 14px auto 0;
    font-size: 0.88rem;
    line-height: 1.55;
    opacity: 0.78;
    white-space: normal;
    overflow-wrap: break-word;
}

.contact-booking-action {
    display: grid;
    justify-items: center;
    gap: 10px;
    max-width: 540px;
    margin: 28px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--gold-line);
}

.contact-info .contact-booking-action .button-primary {
    color: var(--navy-900);
    text-decoration: none;
}

.contact-info .contact-booking-action .button-primary:hover {
    text-decoration: none;
}

.contact-info .contact-booking-action p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
}

.client-box .client-booking-note {
    margin: 14px 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-soft);
}

.hero-booking-button:focus-visible,
.booking-promo-action .button:focus-visible,
.contact-booking-action .button:focus-visible,
.nav-dropdown-booking-link:focus-visible {
    outline: 3px solid var(--gold-soft);
    outline-offset: 4px;
}

@media (max-width: 900px) {
    .booking-promo-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .booking-promo {
        padding: 34px 0;
    }

    .booking-promo-panel {
        padding: 25px 20px;
    }

    .booking-promo-action {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-promo-action .button,
    .contact-booking-action .button {
        width: 100%;
    }

    .booking-promo-action p {
        text-align: center;
    }

    .hero-booking-button {
        width: 100%;
    }

    .hero-booking-note {
        text-align: center;
    }

    .contact-booking-action {
        width: 100%;
    }
}

@media print {
    .booking-promo {
        display: none !important;
    }
}

/* Dojazd i dostępność kancelarii */

.access-section {
    padding: 96px 0;
}

.access-section-in-contact {
    margin-top: 64px;
    padding: 64px 0 0;
    border-top: 1px solid var(--gold-line);
}

.access-section-in-contact .access-header {
    margin-bottom: 42px;
}

.access-section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.access-header {
    max-width: 860px;
    margin: 0 auto 48px;
    text-align: center;
}

.access-section-lead {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gold);
    opacity: 1;
    filter: none;
    font-weight: 500;
    font-size: 1.03rem;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

.access-street-view {
    max-width: 1120px;
    margin: 0 auto 50px;
    padding: 30px;
    border: 1px solid var(--gold-line);
    background: rgba(255, 255, 255, 0.035);
    box-sizing: border-box;
}

.access-street-view-header {
    max-width: 820px;
    margin: 0 auto 24px;
    text-align: center;
}

.access-street-view-header h4 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 1.17em;
}

.access-street-view-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--gold-line);
    background: rgba(0, 0, 0, 0.12);
    aspect-ratio: 16 / 9;
}

.access-street-view-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.access-street-view-note {
    max-width: 820px;
    margin: 14px auto 0;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.82;
}

.access-header .section-title {
    color: var(--gold);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.access-card {
    min-width: 0;
    padding: 30px;
    border: 1px solid var(--gold-line);
    background: rgba(255, 255, 255, 0.035);
    box-sizing: border-box;
}

.access-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: var(--gold-soft);
}

.access-card-icon svg {
    display: block;
    overflow: visible;
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.access-card-icon-accessibility .accessibility-symbol {
    width: 31px;
    height: 31px;
    fill: currentColor;
    stroke: none;
}

.access-card-icon-wide {
    width: 58px;
    height: 50px;
    border-radius: 999px;
}

.access-card-icon-wide svg {
    width: 38px;
    height: 29px;
}

.transport-side-icon,
.car-side-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.transport-side-icon path:nth-of-type(2),
.transport-side-icon path:nth-of-type(3),
.transport-side-icon path:nth-of-type(4) {
    fill: none;
}

.access-card-icon-offsite .offsite-notarial-icon {
    display: block;
    width: 31px;
    height: 31px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.access-card h4 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 1.17em;
}

.access-card p {
    margin-bottom: 14px;
}

.access-inline-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 8px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    overflow-wrap: anywhere;
}

.access-inline-link:focus-visible {
    outline: 3px solid var(--gold-soft);
    outline-offset: 4px;
}

.access-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 38px;
}

.contact-directions-panel .contact-map-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    margin: 0;
}

.contact-directions-panel + .map-box {
    margin-top: 28px;
}

.access-verification-note {
    max-width: 820px;
    margin: 28px auto 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-kicker {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    color: var(--gold-soft);
}

@media (max-width: 1100px) {
    .contact-directions-panel {
        grid-template-columns: 1fr;
    }

    .contact-directions-copy {
        max-width: none;
    }

    .contact-directions-panel .contact-map-actions {
        justify-content: center;
    }
}

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

@media (max-width: 600px) {
    .access-section-lead {
        font-size: 1rem;
        line-height: 1.7;
        padding-left: 4px;
        padding-right: 4px;
    }

    .access-street-view {
        margin-bottom: 36px;
        padding: 20px;
    }

    .access-street-view-frame {
        aspect-ratio: 4 / 3;
    }

    .access-street-view-note {
        font-size: 0.84rem;
    }

    .access-section {
        padding: 68px 0;
    }

    .access-card {
        padding: 23px;
    }

    .access-card-icon-wide {
        width: 56px;
        height: 46px;
    }

    .access-card-icon-wide svg {
        width: 36px;
        height: 27px;
    }

    .access-card-icon-accessibility .accessibility-symbol {
        width: 29px;
        height: 29px;
    }

    .access-card-icon-offsite .offsite-notarial-icon {
        width: 29px;
        height: 29px;
    }

    .contact-directions-panel {
        grid-template-columns: 1fr;
        gap: 22px;
        margin: 32px 0 24px;
        padding: 22px;
    }

    .contact-directions-panel .contact-map-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-directions-panel .contact-map-actions .button {
        width: 100%;
    }

    .accounts-section {
        padding-bottom: 62px;
    }

    .contact-section {
        padding-top: 62px;
    }

    .access-section-in-contact {
        margin-top: 46px;
        padding-top: 46px;
    }

    .access-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .access-actions .button {
        width: 100%;
    }
}

/* Najczęściej zadawane pytania */

.subpage-hero {
    position: relative;
    padding: 104px 0 88px;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.14), transparent 34%),
        linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 58%, var(--navy-900) 100%);
}

.subpage-hero h1 {
    max-width: 980px;
    margin: 0 auto 22px;
    color: var(--white);
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(2.15rem, 5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: 0.02em;
}

.subpage-lead {
    max-width: 840px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.18rem;
    line-height: 1.72;
}

.faq-preview-section,
.faq-page-section,
.faq-contact-section {
    padding: 88px 0;
}

.faq-preview-section,
.faq-page-section {
    color: var(--white);
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 30%),
        linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
}

.faq-preview-section {
    position: relative;
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
}

.faq-page-section .section-title,
.faq-preview-section .section-title {
    color: var(--gold);
}

.faq-preview-lead,
.faq-intro {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
}

.faq-intro {
    font-size: 1.12rem;
    line-height: 1.72;
}

.faq-groups {
    display: grid;
    gap: 54px;
    margin-top: 46px;
}

.faq-group {
    min-width: 0;
}

.faq-group > h3 {
    margin: 0 0 22px;
    color: var(--gold-soft);
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    line-height: 1.3;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 980px;
    margin: 38px auto 0;
    text-align: left;
}

.faq-group .faq-list {
    margin-top: 0;
}

.faq-item {
    min-width: 0;
    border: 1px solid var(--gold-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
}

.faq-item summary {
    position: relative;
    display: block;
    padding: 22px 62px 22px 24px;
    color: var(--white);
    cursor: pointer;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.5;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.55rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item summary:focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 4px;
}

.faq-item summary:hover {
    background: rgba(212, 175, 55, 0.07);
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--gold-line);
}

.faq-answer {
    padding: 22px 24px 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.04rem;
    line-height: 1.72;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-inline-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-top: 8px;
    color: var(--gold-soft);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.faq-inline-link:focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 4px;
}

.faq-preview-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 38px;
}

.faq-contact-section {
    color: var(--white);
    background: var(--navy-900);
}

.faq-contact-panel {
    max-width: 900px;
    margin: 0 auto;
    padding: 36px;
    border: 1px solid var(--gold-line);
    border-radius: var(--radius);
    text-align: center;
    background: rgba(212, 175, 55, 0.07);
}

.faq-contact-panel h2 {
    margin-top: 0;
    color: var(--gold);
    font-family: "Cinzel", Georgia, serif;
}

.faq-contact-panel p {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
}

.faq-contact-panel .button-group {
    justify-content: center;
    margin-top: 26px;
}

.payment-future-note {
    margin-top: 20px;
    padding: 18px 20px;
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.06);
}

@media (max-width: 600px) {
    .subpage-hero {
        padding: 72px 0 64px;
    }

    .subpage-hero h1 {
        font-size: 2rem;
    }

    .subpage-lead {
        font-size: 1.05rem;
        line-height: 1.68;
    }

    .faq-preview-section,
    .faq-page-section,
    .faq-contact-section {
        padding: 64px 0;
    }

    .faq-item summary {
        padding: 19px 52px 19px 18px;
    }

    .faq-item summary::after {
        right: 18px;
    }

    .faq-answer {
        padding: 18px;
    }

    .faq-groups {
        gap: 42px;
    }

    .faq-preview-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-preview-actions .button {
        width: 100%;
    }

    .faq-contact-panel {
        padding: 24px 20px;
    }
}

/* Pływający przycisk telefonu */

.phone-floating-button {
    position: fixed;
    right: 24px;
    bottom: calc(94px + env(safe-area-inset-bottom));
    z-index: 950;

    display: inline-flex;
    align-items: center;
    gap: 11px;

    min-height: 56px;
    padding: 10px 19px 10px 12px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;

    background: var(--gold);
    color: var(--navy-800);

    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.28),
        0 2px 6px rgba(0, 0, 0, 0.18);

    transition:
        transform 160ms ease,
        filter 160ms ease,
        box-shadow 160ms ease;
}

.phone-floating-button:hover {
    color: var(--navy-800);
    filter: brightness(1.08);
    transform: translateY(-2px);

    box-shadow:
        0 11px 28px rgba(0, 0, 0, 0.32),
        0 3px 8px rgba(0, 0, 0, 0.2);
}

.phone-floating-button:active {
    transform: translateY(0);
}

.phone-floating-button:focus-visible {
    outline: 3px solid var(--gold-soft);
    outline-offset: 4px;
}

.phone-floating-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;
}

.phone-floating-icon svg {
    display: block;
    width: 30px;
    height: 30px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.phone-floating-label {
    white-space: nowrap;
}

@media (max-width: 600px) {
    .phone-floating-button {
        right: 16px;
        bottom: calc(86px + env(safe-area-inset-bottom));

        width: 58px;
        height: 58px;
        min-height: 58px;
        padding: 0;

        justify-content: center;
        border-radius: 50%;
    }

    .phone-floating-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .phone-floating-icon {
        width: 34px;
        height: 34px;
    }

    .phone-floating-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .phone-floating-button {
        transition: none;
    }

    .phone-floating-button:hover {
        transform: none;
    }
}

@media print {
    .phone-floating-button {
        display: none !important;
    }
}

/* Pływający przycisk WhatsApp */

.whatsapp-floating-button {
    position: fixed;
    right: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    z-index: 950;

    display: inline-flex;
    align-items: center;
    gap: 11px;

    min-height: 56px;
    padding: 10px 19px 10px 12px;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;

    background: #0b7a3b;
    color: #ffffff;

    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.28),
        0 2px 6px rgba(0, 0, 0, 0.18);

    transition:
        transform 160ms ease,
        background-color 160ms ease,
        box-shadow 160ms ease;
}

.whatsapp-floating-button:hover {
    background: #086832;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 11px 28px rgba(0, 0, 0, 0.32),
        0 3px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-floating-button:active {
    transform: translateY(0);
}

.whatsapp-floating-button:focus-visible {
    outline: 3px solid var(--gold, #c5a35a);
    outline-offset: 4px;
}

.whatsapp-floating-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;
}

.whatsapp-floating-icon svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.whatsapp-floating-label {
    white-space: nowrap;
}

@media (max-width: 600px) {
    .whatsapp-floating-button {
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom));

        width: 58px;
        height: 58px;
        min-height: 58px;
        padding: 0;

        justify-content: center;
        border-radius: 50%;
    }

    .whatsapp-floating-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .whatsapp-floating-icon {
        width: 34px;
        height: 34px;
    }

    .whatsapp-floating-icon svg {
        width: 31px;
        height: 31px;
    }

    .footer {
        padding-bottom: calc(170px + env(safe-area-inset-bottom));
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-floating-button {
        transition: none;
    }

    .whatsapp-floating-button:hover {
        transform: none;
    }
}

@media print {
    .whatsapp-floating-button {
        display: none !important;
    }
}

/* Rozwijane menu czynności */

.nav-dropdown-menu-services {
    width: 640px;
    max-width: calc(100vw - 32px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.nav-dropdown-services.open .nav-dropdown-menu-services {
    display: grid;
}

.nav-dropdown-menu-services a {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 52px;
    padding: 14px 18px;
    white-space: normal;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.nav-dropdown-menu-services .nav-dropdown-overview {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--gold-line);
    color: var(--gold, currentColor);
    font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
    html:not(.js-enabled) .nav-dropdown-services:hover .nav-dropdown-menu-services {
        display: grid;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .nav-dropdown-menu-services {
        width: 370px;
        grid-template-columns: 1fr;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .nav-dropdown-menu-services .nav-dropdown-overview {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .nav-dropdown-menu-services {
        position: static;
        width: 100%;
        max-width: none;
        max-height: none;
        grid-template-columns: 1fr;
        overflow: visible;
        transform: none;
    }

    .nav-dropdown-menu-services .nav-dropdown-overview {
        grid-column: auto;
    }

    .nav-dropdown-services .nav-dropdown-menu-services a {
        min-height: 48px;
        padding: 13px 18px 13px 30px;
    }
}

/* Rozwijane menu kontaktowe */

.nav-dropdown-contact .nav-dropdown-menu-contact {
    right: 0;
    left: auto;
    min-width: 285px;
    transform: translateY(2px);
}

.nav-dropdown-contact.open .nav-dropdown-menu-contact {
    transform: translateY(0);
}

.nav-dropdown-menu-contact a {
    white-space: normal;
    line-height: 1.45;
}

.nav-dropdown-menu-contact a:last-child {
    color: var(--gold, currentColor);
    font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
    html:not(.js-enabled) .nav-dropdown-contact:hover .nav-dropdown-menu-contact,
    html:not(.js-enabled) .nav-dropdown-menu-contact:hover {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #kontakt,
    #godziny-otwarcia,
    #mapa-i-trasa,
    #dojazd-i-dostepnosc {
        scroll-margin-top: 24px;
    }

    .nav-dropdown-contact .nav-dropdown-menu-contact {
        position: static;
        width: 100%;
        min-width: 0;
        max-width: none;
        right: auto;
        left: auto;
        transform: none;
    }

    .nav-dropdown-contact.open .nav-dropdown-menu-contact {
        transform: none;
    }

    .nav-dropdown-contact .nav-dropdown-menu-contact a {
        min-height: 48px;
        padding-left: 30px;
    }
}

/* Przydatne linki */

.useful-links-hero .subpage-hero-lead {
    max-width: 840px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.18rem;
    line-height: 1.72;
}

.useful-links-section {
    padding: clamp(54px, 7vw, 90px) 0;
}

.useful-links-section + .useful-links-section {
    border-top: 1px solid var(--gold-line);
}

.useful-links-section-heading {
    margin-bottom: 30px;
}

.useful-links-section-heading h2 {
    margin: 0;
    color: var(--gold);
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.25;
}

.useful-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.useful-link-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
    min-height: 190px;
    padding: 26px;
    border: 1px solid rgba(212, 175, 55, 0.34);
    background: rgba(255, 255, 255, 0.025);
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background-color 160ms ease;
}

.useful-link-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.065);
}

.useful-link-card:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.useful-link-card-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--gold);
}

.useful-link-card-icon svg {
    display: block;
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.useful-link-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-self: stretch;
    min-width: 0;
    height: 100%;
}

.useful-link-card-content strong {
    margin-bottom: 10px;
    font-size: 1.08rem;
    line-height: 1.4;
}

.useful-link-card-content > span:not(.useful-link-card-action) {
    line-height: 1.65;
    opacity: 0.88;
}

.useful-link-card-action {
    margin-top: auto;
    padding-top: 18px;
    color: var(--gold);
    font-weight: 600;
}

.useful-links-notice {
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 20px 24px;
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.055);
    text-align: left;
}

.useful-links-notice p {
    margin: 0;
}

.useful-links-contact {
    padding: 0 0 clamp(60px, 8vw, 100px);
}

.useful-links-contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(212, 175, 55, 0.38);
    background: rgba(255, 255, 255, 0.025);
}

.useful-links-contact-panel > div:first-child {
    max-width: 680px;
}

.useful-links-contact-panel h2 {
    margin: 0 0 12px;
    color: var(--gold);
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    line-height: 1.3;
}

.useful-links-contact-panel p {
    margin: 0;
}

.useful-links-contact-panel .button-group {
    flex: 0 0 auto;
    justify-content: flex-end;
    margin-top: 0;
}

@media (max-width: 760px) {
    .useful-links-grid {
        grid-template-columns: 1fr;
    }

    .useful-link-card {
        min-height: 0;
        padding: 22px 20px;
    }

    .useful-links-contact-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .useful-links-contact-panel .button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .useful-links-contact-panel .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .useful-link-card {
        transition: none;
    }

    .useful-link-card:hover {
        transform: none;
    }
}

/* Formularze i dokumenty */

.forms-download-hero .subpage-hero-lead {
    max-width: 840px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.18rem;
    line-height: 1.72;
}

.forms-download-section {
    padding: clamp(54px, 7vw, 90px) 0;
}

.forms-download-section + .forms-download-section {
    border-top: 1px solid var(--gold-line);
}

.forms-download-heading {
    max-width: 880px;
    margin-bottom: 30px;
}

.forms-download-heading h2 {
    margin: 0;
    color: var(--gold);
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.25;
}

.forms-download-heading > p:not(.section-kicker) {
    margin: 16px 0 0;
    font-size: 1.08rem;
    line-height: 1.7;
    opacity: 0.9;
}

.forms-download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.forms-download-grid-single {
    grid-template-columns: minmax(0, 1fr);
}

.forms-download-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
    min-height: 190px;
    padding: 26px;
    border: 1px solid rgba(212, 175, 55, 0.34);
    background: rgba(255, 255, 255, 0.025);
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background-color 160ms ease;
}

.forms-download-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.065);
}

.forms-download-card:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.forms-download-card-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--gold);
}

.forms-download-card-icon svg {
    display: block;
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.forms-download-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-self: stretch;
    min-width: 0;
    height: 100%;
}

.forms-download-card-content strong {
    margin-bottom: 10px;
    font-size: 1.08rem;
    line-height: 1.4;
}

.forms-download-card-content > span:not(.forms-download-card-action) {
    line-height: 1.65;
    opacity: 0.88;
}

.forms-download-card-action {
    margin-top: auto;
    padding-top: 18px;
    color: var(--gold);
    font-weight: 600;
}

.forms-download-notice {
    max-width: 1040px;
    margin: 34px auto 0;
    padding: 20px 24px;
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.055);
    text-align: left;
}

.forms-download-notice p,
.forms-download-context-note p {
    margin: 0;
}

.forms-download-context-note {
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
    line-height: 1.7;
}

.forms-download-contact {
    padding: 0 0 clamp(60px, 8vw, 100px);
}

.forms-download-contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
    max-width: 100%;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(212, 175, 55, 0.38);
    background: rgba(255, 255, 255, 0.025);
}

.forms-download-contact-panel > div:first-child {
    min-width: 0;
    max-width: 680px;
}

.forms-download-contact-panel h2 {
    margin: 0 0 12px;
    color: var(--gold);
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    line-height: 1.3;
}

.forms-download-contact-panel p {
    margin: 0;
}

.forms-download-contact-panel .button-group {
    width: auto;
    min-width: 0;
    justify-content: flex-end;
    margin-top: 0;
}

.forms-download-contact-panel .button {
    flex: 1 1 200px;
    min-width: 0;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: normal;
}

@media (max-width: 1100px) {
    .forms-download-contact-panel {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
    }

    .forms-download-contact-panel .button-group {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .forms-download-grid {
        grid-template-columns: 1fr;
    }

    .forms-download-card {
        min-height: 0;
        padding: 22px 20px;
    }

}

@media (max-width: 600px) {
    .forms-download-contact-panel .button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .forms-download-contact-panel .button {
        width: 100%;
        flex: 0 1 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .forms-download-card {
        transition: none;
    }

    .forms-download-card:hover {
        transform: none;
    }
}

/* Umawianie wizyty online */

.booking-mode-notice {
    padding: 16px 0;
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
    background: rgba(212, 175, 55, 0.1);
    color: var(--white);
}

.booking-mode-notice p {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 16px;
    border-left: 3px solid var(--gold);
    font-size: 1.125rem;
    line-height: 1.55;
}

.booking-section {
    padding: 96px 24px;
    scroll-margin-top: 100px;
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.09), transparent 44%),
        var(--navy-800);
    color: var(--white);
}

.booking-panel {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 42px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius);
    background: rgba(6, 22, 51, 0.76);
    box-shadow: var(--shadow-medium);
}

.booking-header {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.booking-header .section-kicker {
    margin-bottom: 10px;
    color: var(--gold-soft);
}

.booking-header .section-title {
    margin-bottom: 14px;
    color: var(--gold);
}

.booking-header .section-title:focus-visible {
    outline: 3px solid var(--gold-soft);
    outline-offset: 6px;
}

.booking-header > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1875rem;
    line-height: 1.6;
}

.booking-generator-summary {
    margin-bottom: 30px;
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.booking-generator-summary-title {
    margin: 0 0 18px;
    color: var(--gold-soft);
    font-family: "Cinzel", Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.35;
}

.booking-generator-summary-grid {
    display: grid;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.booking-generator-summary-item {
    min-width: 0;
    padding: 14px 16px;
    overflow-wrap: anywhere;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.booking-generator-summary-item dt {
    margin: 0 0 5px;
    color: var(--gold-soft);
    font-size: 0.9375rem;
    font-weight: 700;
}

.booking-generator-summary-item dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.125rem;
    line-height: 1.45;
}

.booking-generator-summary-notice {
    margin: 20px 0 0;
    padding: 13px 15px;
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.08);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
}

.booking-unavailable,
.booking-form-error {
    margin: 20px 0;
    padding: 14px 16px;
    border: 1px solid rgba(231, 124, 124, 0.58);
    border-radius: 12px;
    background: rgba(126, 24, 24, 0.28);
    color: #fff2f2;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.5;
}

.booking-contact-form {
    min-width: 0;
}

.booking-contact-form fieldset {
    min-width: 0;
    margin: 0 0 24px;
    padding: 22px;
    border: 1px solid rgba(212, 175, 55, 0.17);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.booking-contact-form legend {
    max-width: 100%;
    padding: 0 8px;
    color: var(--gold-soft);
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1.4;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.booking-field {
    min-width: 0;
    margin-bottom: 24px;
}

.booking-form-grid .booking-field {
    margin-bottom: 0;
}

.booking-field--full {
    grid-column: 1 / -1;
}

.booking-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--gold-soft);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
}

.field-required,
.field-optional {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

.booking-field input,
.booking-field textarea {
    width: 100%;
    max-width: 100%;
    min-height: 50px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font: inherit;
    font-size: 1.0625rem;
    line-height: 1.4;
}

.booking-field textarea {
    min-height: 132px;
    resize: vertical;
}

.booking-field input:focus-visible,
.booking-field textarea:focus-visible,
.booking-contact-preference input:focus-visible,
.booking-confirmation-box input:focus-visible,
.booking-actions .button:focus-visible,
.generator-booking-entry .button:focus-visible {
    outline: 3px solid var(--gold-soft);
    outline-offset: 3px;
}

.booking-field input[aria-invalid="true"],
.booking-field textarea[aria-invalid="true"] {
    border-color: rgba(231, 124, 124, 0.9);
    box-shadow: 0 0 0 2px rgba(126, 24, 24, 0.22);
}

.field-help {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.booking-contact-preference {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.booking-contact-preference label {
    display: flex;
    min-width: 160px;
    min-height: 50px;
    padding: 11px 14px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.booking-contact-preference input,
.booking-confirmation-box input {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--gold);
}

.booking-confirmation-box {
    margin: 24px 0;
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.07);
}

.booking-confirmation-box label {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
}

.booking-confirmation-box input {
    margin-top: 3px;
}

.booking-confirmation-box input[aria-invalid="true"] {
    outline: 3px solid rgba(231, 124, 124, 0.9);
    outline-offset: 3px;
}

.booking-confirmation-box span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.booking-turnstile {
    max-width: 100%;
    margin: 24px 0;
    padding: 18px;
    overflow-x: auto;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.booking-turnstile:focus-visible {
    outline: 3px solid var(--gold-soft);
    outline-offset: 3px;
}

#booking-turnstile-widget {
    min-height: 65px;
}

.booking-privacy-note {
    margin: 0;
    padding: 14px 16px;
    border-left: 3px solid var(--gold);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.55;
}

.booking-actions {
    display: flex;
    margin-top: 26px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.booking-actions .button {
    min-height: 50px;
    border-width: 1px;
    font-family: inherit;
    cursor: pointer;
}

.booking-calendar-placeholder {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.08);
}

.booking-calendar-placeholder:focus-visible {
    outline: 3px solid var(--gold-soft);
    outline-offset: 5px;
}

.booking-calendar-placeholder h3 {
    margin: 0 0 10px;
    color: var(--gold-soft);
    font-size: 1.5rem;
}

.booking-calendar-placeholder p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.booking-embed {
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 16px;
    background: #ffffff;
}

.booking-embed-loading {
    margin: 0;
    padding: 18px 20px;
    color: var(--navy);
    font-weight: 700;
    text-align: center;
}

.booking-app-frame {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 720px;
    min-height: 360px;
    border: 0;
    background: #ffffff;
}

.booking-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.booking-submission-result {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.1);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}

.booking-submission-result:focus-visible {
    outline: 3px solid var(--gold-soft);
    outline-offset: 5px;
}

.booking-submission-result h3 {
    margin: 0 0 12px;
    color: var(--gold-soft);
    font-size: 1.5rem;
}

.booking-submission-result p:last-child {
    margin-bottom: 0;
}

.booking-request-code {
    color: var(--gold-soft);
    letter-spacing: 0.08em;
}

.generator-booking-entry {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.08);
    text-align: center;
}

.generator-booking-entry--incomplete {
    border-color: rgba(184, 95, 95, 0.68);
    background: rgba(126, 24, 24, 0.16);
}

.generator-booking-entry-message {
    max-width: 720px;
    margin: 0 auto 16px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.125rem;
    line-height: 1.55;
}

.generator-booking-entry--incomplete .generator-booking-entry-message {
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .booking-mode-notice {
        padding-right: 14px;
        padding-left: 14px;
    }

    .booking-section {
        padding: 76px 14px;
        scroll-margin-top: 86px;
    }

    .booking-panel {
        padding: 28px 16px;
        border-radius: 16px;
    }

    .booking-generator-summary,
    .booking-contact-form fieldset,
    .booking-calendar-placeholder,
    .booking-submission-result {
        padding: 18px 14px;
    }

    .booking-embed {
        margin-right: 0;
        margin-bottom: 96px;
        margin-left: 0;
        border-radius: 12px;
    }

    .booking-app-frame {
        min-height: 540px;
    }

    .booking-generator-summary-grid,
    .booking-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .booking-field--full {
        grid-column: auto;
    }

    .booking-contact-preference {
        align-items: stretch;
        flex-direction: column;
    }

    .booking-contact-preference label {
        width: 100%;
        min-width: 0;
    }

    .booking-actions {
        padding-bottom: 92px;
        align-items: stretch;
        flex-direction: column;
    }

    .booking-actions .button,
    .generator-booking-entry .button {
        width: 100%;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .booking-section,
    .booking-mode-notice,
    .generator-booking-entry,
    .booking-embed {
        scroll-behavior: auto;
    }
}

@media print {
    .booking-section,
    .booking-mode-notice,
    .generator-booking-entry,
    .booking-embed,
    .booking-submission-result {
        display: none !important;
    }
}

/* ==========================================================================
   Generator dokumentów — subtelniejsze opisy w podsumowaniu
   ========================================================================== */

@media screen {
    .generator-result-section {
        border-color: rgba(212, 175, 55, 0.12);
        background: rgba(255, 255, 255, 0.032);
    }

    .generator-result-section h3 {
        margin-bottom: 18px;
        color: rgba(231, 201, 106, 0.92);
    }

    .generator-result-section ul {
        display: grid;
        margin: 0;
        padding: 0;
        gap: 14px;
        list-style: none;
    }

    .generator-result-section li {
        position: relative;
        min-width: 0;
        margin: 0 !important;
        padding: 0 0 0 18px;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    .generator-result-section li::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 1px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.82);
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.075);
    }

    /*
     * Niektóre pozycje zawierają osobno nazwę i opis.
     * Zerowy rozmiar tekstu ukrywa techniczny separator między elementami,
     * ale nie wpływa na zwykłe pozycje tekstowe.
     */
    .generator-result-section li:has(> span),
    .generator-result-section li:has(> small),
    .generator-result-section li:has(> mark),
    .generator-result-section li:has(> em) {
        font-size: 0;
    }

    .generator-result-section li > strong:first-child {
        display: block;
        margin: 0;
        color: rgba(255, 255, 255, 0.98);
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.42;
    }

    .generator-result-section li > span,
    .generator-result-section li > small,
    .generator-result-section li > mark,
    .generator-result-section li > em {
        display: block;
        margin: 5px 0 0;
        padding: 0 !important;
        border: 0 !important;
        border-left: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        color: rgba(235, 241, 250, 0.86) !important;
        font-size: 1.03125rem;
        font-style: normal;
        font-weight: 500;
        line-height: 1.56;
        letter-spacing: 0.005em;
        text-decoration: none;
    }

    .generator-result-section li > mark {
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
    }

    .generator-review-reasons {
        border-left-width: 2px;
        border-left-color: rgba(212, 175, 55, 0.58);
        background:
            linear-gradient(
                90deg,
                rgba(212, 175, 55, 0.045),
                rgba(255, 255, 255, 0.022) 34%,
                rgba(255, 255, 255, 0.022)
            );
    }

    .generator-review-reasons li {
        color: rgba(255, 255, 255, 0.82);
    }

    .generator-section-note {
        border-left-width: 2px;
        border-left-color: rgba(212, 175, 55, 0.55);
        background: rgba(255, 255, 255, 0.025);
        color: rgba(214, 223, 238, 0.78);
    }
}

@media screen and (max-width: 700px) {
    .generator-result-section ul {
        gap: 16px;
    }

    .generator-result-section li {
        padding-left: 16px;
    }

    .generator-result-section li::before {
        top: 9px;
    }

    .generator-result-section li > strong:first-child {
        font-size: 1.0625rem;
    }

    .generator-result-section li > span,
    .generator-result-section li > small,
    .generator-result-section li > mark,
    .generator-result-section li > em {
        font-size: 0.96875rem;
    }
}

/* Istniejące menu zwijane uruchamiane po wykryciu braku miejsca. */

html.js-enabled .navbar.nav-is-compact .nav-container {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
}

html.js-enabled .navbar.nav-is-compact .nav-toggle {
    grid-column: 2;
    justify-self: end;
    display: flex;
    flex: 0 0 auto;
}

html.js-enabled .navbar.nav-is-compact .nav-links {
    grid-column: 1 / -1;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1000;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    max-height: calc(100vh - 110px);
    overflow-x: clip;
    overflow-y: auto;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 0 0 14px 14px;
    background: rgba(6, 22, 51, 0.98);
    box-shadow: var(--shadow-soft);
}

html.js-enabled .navbar.nav-is-compact .nav-container > .language-switcher {
    display: none;
}

html.js-enabled .navbar.nav-is-compact .nav-links.open {
    display: flex;
}

html.js-enabled .navbar.nav-is-compact .nav-links > a,
html.js-enabled .navbar.nav-is-compact .nav-dropdown-toggle {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    justify-content: flex-start;
    padding: 14px 20px;
    text-align: left;
    white-space: normal;
}

html.js-enabled .navbar.nav-is-compact .nav-links a::after,
html.js-enabled .navbar.nav-is-compact .nav-dropdown-toggle::after {
    bottom: 4px;
}

html.js-enabled .navbar.nav-is-compact .nav-dropdown {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

html.js-enabled .navbar.nav-is-compact .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: none;
    padding: 0;
    overflow: visible;
    transform: none;
    border: 0;
    border-radius: 0;
    background: rgba(4, 16, 38, 0.94);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
}

html.js-enabled .navbar.nav-is-compact .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    transform: none;
}

html.js-enabled .navbar.nav-is-compact .nav-dropdown-menu-services {
    grid-template-columns: 1fr;
}

html.js-enabled .navbar.nav-is-compact .nav-dropdown-services.open .nav-dropdown-menu-services {
    display: grid;
}

html.js-enabled .navbar.nav-is-compact .nav-dropdown-menu a {
    min-height: 48px;
    padding: 13px 30px;
    white-space: normal;
}

html[data-font-size="larger"] .hero {
    height: auto;
    max-height: none;
    overflow: visible;
    padding: clamp(30px, 4vw, 52px) 20px clamp(38px, 5vw, 64px);
}

html[data-font-size="larger"] .hero-inner {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: clamp(16px, 2.5vw, 28px);
    width: min(100%, 980px);
    max-width: 980px;
    min-width: 0;
    margin: 0 auto;
}

html[data-font-size="larger"] .logo-hero {
    align-self: center;
    flex: 0 0 auto;
    margin: 0 auto;
}

html[data-font-size="larger"] .logo-hero {
    width: clamp(200px, 22vw, 270px);
}

html[data-font-size="larger"] .hero-title {
    align-self: center;
    max-width: 860px;
    margin: 0;
    text-align: center;
}

html[data-font-size="larger"] .hero h1 {
    max-width: 100%;
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
}

html[data-font-size="larger"] .hero .subtitle {
    line-height: 1.35;
    white-space: normal;
}

html[data-font-size="larger"] .hero-motto {
    box-sizing: border-box;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 18px 20px;
    text-align: center;
}

html[data-font-size="larger"] .hero-description {
    box-sizing: border-box;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding: 18px 20px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    text-align: left;
}

html[data-font-size="larger"] .hero .button-group {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    width: min(100%, 780px);
    margin: 0 auto;
}

html[data-font-size="larger"] .hero .button {
    height: auto;
    min-height: 54px;
    padding: 14px 22px;
    white-space: normal;
}

html[data-font-size="larger"] .hero .button {
    flex: 1 1 280px;
    width: auto;
}

html[data-font-size="larger"] .hero-booking-note {
    width: 100%;
    max-width: 610px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 700px) {
    html[data-font-size="larger"] .hero {
        padding: 28px 16px 42px;
    }

    html[data-font-size="larger"] .hero-inner {
        gap: 16px;
        width: 100%;
    }

    html[data-font-size="larger"] .hero-motto,
    html[data-font-size="larger"] .hero-description {
        padding: 16px;
    }

    html[data-font-size="larger"] .hero .button-group {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        width: 100%;
    }

    html[data-font-size="larger"] .hero .button {
        width: 100%;
        min-width: 0;
    }
}

@media print {
    .accessibility-widget {
        display: none !important;
    }
}


/* Informacje prawne i dokumenty zgodnościowe */

.footer-professional-info {
    max-width: 820px;
    margin: 24px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--gold-line);
}

.footer-professional-info p {
    margin: 7px auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.875rem;
    line-height: 1.65;
}

.footer-professional-info a,
.footer-legal-links a {
    color: var(--gold-soft);
    text-decoration: underline;
    text-decoration-color: rgba(231, 201, 106, 0.42);
    text-underline-offset: 3px;
}

.footer-professional-info a:hover,
.footer-legal-links a:hover {
    color: var(--white);
    text-decoration-color: currentColor;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    margin: 18px auto 8px;
    font-size: 0.9375rem;
}

.legal-page .about-panel {
    max-width: 1000px;
    text-align: left;
}

.legal-document .section-title,
.legal-document > .section-kicker,
.legal-document-updated {
    text-align: center;
}

.legal-document-updated {
    margin-bottom: 34px !important;
    color: rgba(255, 255, 255, 0.66) !important;
    font-size: 0.9375rem !important;
}

.legal-document h2 {
    margin: 34px 0 12px;
    color: var(--gold-soft);
    font-size: 1.5rem;
    line-height: 1.35;
}

.legal-document p,
.legal-document li {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.legal-document p {
    max-width: none;
    margin: 0 0 14px;
}

.legal-document ul {
    margin: 10px 0 22px;
    padding-left: 24px;
}

.legal-document li + li {
    margin-top: 9px;
}

.legal-document a,
.booking-privacy-note a {
    color: var(--gold-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-document code,
.legal-technical-name {
    font-family: inherit;
    font-size: 0.94em;
    font-weight: 600;
    letter-spacing: 0;
}

.legal-document code {
    padding: 2px 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.legal-technical-name {
    display: block;
    margin-top: 3px;
    color: var(--gold-soft);
    overflow-wrap: anywhere;
}

.legal-technical-name-inline {
    display: inline;
    margin-top: 0;
    white-space: nowrap;
    overflow-wrap: normal;
}

.legal-inline-note {
    margin-top: 12px !important;
    padding: 14px 16px;
    border-left: 2px solid rgba(212, 175, 55, 0.72);
    background: rgba(212, 175, 55, 0.055);
    color: rgba(255, 255, 255, 0.88) !important;
}

.booking-privacy-note {
    margin: 18px 0;
    padding: 16px 18px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.booking-privacy-note p {
    margin: 0;
}

.booking-privacy-note p + p {
    margin-top: 10px;
}

@media (max-width: 700px) {
    .footer-legal-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .legal-page .about-panel {
        padding: 30px 22px;
    }

    .legal-document h2 {
        font-size: 1.3125rem;
    }

    .legal-document p,
    .legal-document li {
        font-size: 1rem;
    }
}

@media print {
    .footer-professional-info,
    .footer-legal-links {
        display: none !important;
    }
}


/* Cookies i zarządzanie zgodą */

.cookie-dialog-open {
    overflow: hidden;
}

.cookie-consent-banner[hidden],
.cookie-settings-backdrop[hidden],
.cookie-external-placeholder[hidden] {
    display: none !important;
}

.cookie-consent-banner {
    position: fixed;
    z-index: 10050;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cookie-consent-card {
    width: min(1120px, 100%);
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 20px;
    background: rgba(5, 18, 42, 0.985);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    pointer-events: auto;
    backdrop-filter: blur(14px);
}

.cookie-consent-copy h2,
.cookie-settings-dialog h2 {
    margin: 2px 0 10px;
    color: var(--white);
    font-size: clamp(1.35rem, 2.3vw, 1.85rem);
    line-height: 1.25;
}

.cookie-consent-copy p,
.cookie-settings-dialog p,
.cookie-category p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.cookie-consent-copy p {
    margin: 0 0 8px;
}

.cookie-consent-kicker {
    margin: 0 !important;
    color: var(--gold-soft) !important;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 0.78rem !important;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cookie-consent-actions,
.cookie-settings-actions,
.cookie-external-placeholder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cookie-consent-actions {
    justify-content: flex-end;
    max-width: 520px;
}

.cookie-button,
.footer-cookie-settings {
    appearance: none;
    border: 1px solid rgba(212, 175, 55, 0.72);
    border-radius: 999px;
    background: transparent;
    color: var(--white);
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background-color 160ms ease,
        color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.cookie-button {
    min-height: 46px;
    padding: 11px 18px;
}

.cookie-button-equal {
    background: rgba(212, 175, 55, 0.12);
}

.cookie-button-settings {
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-button:hover,
.cookie-button:focus-visible,
.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
    border-color: var(--gold-soft);
    background: var(--gold-soft);
    color: var(--navy-900);
    outline: none;
    transform: translateY(-1px);
}

.cookie-text-link {
    color: var(--gold-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-text-link:hover,
.cookie-text-link:focus-visible {
    color: var(--white);
}

.cookie-settings-backdrop {
    position: fixed;
    z-index: 10060;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(1, 8, 20, 0.76);
    backdrop-filter: blur(8px);
}

.cookie-settings-dialog {
    position: relative;
    width: min(760px, 100%);
    max-height: min(86vh, 780px);
    overflow: auto;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 22px;
    background: #061633;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}

.cookie-settings-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.cookie-settings-close:hover,
.cookie-settings-close:focus-visible {
    border-color: var(--gold-soft);
    color: var(--gold-soft);
    outline: none;
}

.cookie-category {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, 0.19);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.cookie-category h3 {
    margin: 0 0 6px;
    color: var(--gold-soft);
    font-size: 1.12rem;
}

.cookie-category p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-switch {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
}

.cookie-switch input {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
}

.cookie-switch-fixed {
    cursor: default;
    opacity: 0.84;
}

.cookie-settings-actions {
    margin-top: 24px;
}

.cookie-settings-policy {
    margin: 18px 0 0 !important;
    font-size: 0.9rem;
}

.footer-cookie-settings {
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--gold-soft);
    background: transparent;
    font-size: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(231, 201, 106, 0.42);
    text-underline-offset: 3px;
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
    background: transparent;
    color: var(--white);
    transform: none;
    text-decoration-color: currentColor;
}

.cookie-external-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    background:
        radial-gradient(
            circle at top,
            rgba(212, 175, 55, 0.09),
            rgba(5, 18, 42, 0.97) 58%
        );
    color: var(--white);
}

.cookie-external-placeholder h3 {
    margin: 0;
    color: var(--gold-soft);
    font-size: 1.35rem;
}

.cookie-external-placeholder p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.cookie-external-placeholder-actions {
    justify-content: center;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .cookie-consent-card {
        grid-template-columns: 1fr;
    }

    .cookie-consent-actions {
        justify-content: flex-start;
        max-width: none;
    }
}

@media (max-width: 650px) {
    .cookie-consent-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .cookie-consent-card,
    .cookie-settings-dialog {
        padding: 20px;
        border-radius: 16px;
    }

    .cookie-consent-actions,
    .cookie-settings-actions,
    .cookie-external-placeholder-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .cookie-button {
        width: 100%;
    }

    .cookie-category {
        grid-template-columns: 1fr;
    }

    .cookie-external-placeholder {
        min-height: 240px;
        padding: 22px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-button,
    .footer-cookie-settings {
        transition: none;
    }
}

@media print {
    .cookie-consent-banner,
    .cookie-settings-backdrop,
    .cookie-external-placeholder,
    .footer-cookie-settings {
        display: none !important;
    }
}


.cookie-policy-table-wrap {
    width: 100%;
    margin: 18px 0 24px;
    overflow-x: auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
}

.cookie-policy-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.025);
}

.cookie-policy-table th,
.cookie-policy-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    text-align: left;
    vertical-align: top;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.55;
}

.cookie-policy-table th {
    color: var(--gold-soft);
    font-size: 0.93rem;
}

.cookie-policy-table tr:last-child td {
    border-bottom: 0;
}

.cookie-noscript-note {
    padding: 18px;
    color: var(--white);
    text-align: center;
}

.cookie-noscript-note a {
    color: var(--gold-soft);
}


/* Szeroka mapa lokalizacji kancelarii */

.contact-directions-panel + .map-box.map-box-wide {
    width: calc(100vw - 32px);
    max-width: 1600px;
    height: clamp(480px, 47vw, 680px);
    margin-top: 30px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.map-box-wide iframe,
.map-box-wide .cookie-external-placeholder {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .contact-directions-panel + .map-box.map-box-wide {
        width: calc(100vw - 20px);
        height: 420px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .contact-directions-panel + .map-box.map-box-wide {
        width: calc(100vw - 12px);
        height: 360px;
        border-radius: 12px;
    }
}


/* Intuicyjny i równorzędny wybór plików cookies */

.cookie-consent-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(175px, 1fr));
    width: min(700px, 100%);
    max-width: 700px;
}

.cookie-consent-actions .cookie-button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 11px 16px;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.58);
}

.cookie-consent-actions .cookie-button:hover,
.cookie-consent-actions .cookie-button:focus-visible {
    background: var(--gold-soft);
    border-color: var(--gold-soft);
    color: var(--navy-900);
}

@media (max-width: 800px) {
    .cookie-consent-actions {
        grid-template-columns: 1fr;
        max-width: none;
    }
}
