        /* ---------- COLORS ---------- */
        :root {
            --bg-dark: #050506;
            --bg-dark-soft: #111111;
            --bg-cream: #FAF7F2;
            --gold: #D4AF37;
            --gold-dark: #b28922;
            --text-main: #111111;
            --text-light: #FFFFFF;
            --text-muted: #777777;
            --max-width: 1200px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background-color: #ffffff;
            color: var(--text-main);
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ---------- GENERAL LAYOUT ---------- */

        .page-wrapper {
            min-height: 100vh;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 80px 0;
        }

        h1,
        h2,
        h3 {
            font-family: "Playfair Display", "Times New Roman", serif;
        }

        .section-heading {
            font-size: 32px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 14px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .section-heading-accent {
            width: 60px;
            height: 2px;
            background: linear-gradient(to right, var(--gold), transparent);
            margin-bottom: 24px;
        }

        /* ---------- TOP BAR ---------- */

        .top-bar {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-size: 14px;
        }

        .top-bar-inner {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 24px;
            padding: 8px 0;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0.85;
        }

        .top-bar-item span {
            font-weight: 400;
        }

        /* ---------- HEADER & NAV ---------- */

        header {
            background-color: var(--bg-dark-soft);
            color: var(--text-light);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-left: 16px;
            padding-right: 16px;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .logo-mark {
            /* Replace src below with your logo file */
            width: 120px;
            height: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .logo-name {
            font-family: "Playfair Display", serif;
            font-size: 24px;
            letter-spacing: 0.18em;
            color: var(--gold);
        }

        .logo-tagline {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(255, 255, 255, 0.6);
        }

        nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 32px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.16em;
        }

        nav a {
            color: var(--text-light);
            position: relative;
            padding-bottom: 4px;
        }

        nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: width 0.2s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* ---------- HERO ---------- */

        .hero {
            position: relative;
            background: #000;
            color: var(--text-light);
            overflow: hidden;
            width: 100%;
            margin: 0;
        }

        .hero-background {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            min-width: 100%;
            min-height: 100%;
            max-width: none;
            max-height: none;
            object-fit: cover;
            object-position: center;
            opacity: 0.65;
            animation: heroFadeIn 1.2s ease-out both;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.3));
            animation: heroFadeIn 1.2s ease-out both;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            padding: 90px 0 110px;
            animation: heroRiseIn 1s ease-out both;
            animation-delay: 0.15s;
        }

        .hero-content {
            max-width: 520px;
            padding: 16px;
        }

        .hero-eyebrow {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.28em;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 16px;
        }

        .hero-title {
            font-size: 40px;
            line-height: 1.2;
            margin-bottom: 16px;
            animation: heroRiseIn 0.9s ease-out both;
            animation-delay: 0.25s;
        }

        .hero-title span {
            color: var(--gold);
        }

        .hero-text {
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 32px;
            animation: heroRiseIn 0.9s ease-out both;
            animation-delay: 0.35s;
        }

        .hero-cta {
            display: flex;
            align-items: center;
            gap: 18px;
            animation: heroRiseIn 0.9s ease-out both;
            animation-delay: 0.45s;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 0.65;
            }
        }

        @keyframes heroRiseIn {
            from {
                opacity: 0;
                transform: translateY(12px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (prefers-reduced-motion: reduce) {

            .hero-background,
            .hero-overlay,
            .hero-inner,
            .hero-title,
            .hero-text,
            .hero-cta {
                animation: none;
            }
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-size: 13px;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
            filter: brightness(1.05);
        }

        .btn-secondary-link {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: rgba(255, 255, 255, 0.8);
        }

        .btn-secondary-link span {
            border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        }

        /* ---------- ABOUT SECTION ---------- */

        .section-about {
            background-color: var(--bg-cream);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 16px;
            color: #555555;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
            margin-top: 24px;
        }

        .feature-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            background-color: #ffffff;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
            font-size: 13px;
            color: #444444;
        }

        .feature-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #fff2bf, var(--gold));
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image-main {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
        }

        .about-image-tag {
            position: absolute;
            left: 18px;
            bottom: 18px;
            background-color: rgba(0, 0, 0, 0.75);
            color: var(--text-light);
            padding: 10px 16px;
            border-radius: 999px;
            font-size: 12px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .about-image-tag span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #fff8d4, var(--gold));
        }

        /* ---------- GALLERY ---------- */

        .section-gallery {
            background-color: #ffffff;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
        }

        .gallery-grid--preview {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .gallery-grid--preview .gallery-item img {
            height: 260px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            transform: scale(1.03);
            transition: transform 0.25s ease, filter 0.25s ease;
        }

        .gallery-item::after {
            content: "Zobacz";
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 14px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: rgba(255, 255, 255, 0);
            background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
            opacity: 0;
            transition: opacity 0.25s ease, color 0.25s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.06);
            filter: brightness(0.9);
        }

        .gallery-item:hover::after {
            opacity: 1;
            color: rgba(255, 255, 255, 0.9);
        }

        .gallery-actions {
            display: flex;
            justify-content: center;
            margin-top: 26px;
        }

        /* ---------- OFFER ---------- */

        .section-offer {
            background-color: var(--bg-cream);
        }

        .offer-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 32px;
        }

        .offer-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 24px 22px 26px;
            box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
            border-top: 3px solid var(--gold);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .offer-title {
            font-size: 18px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .offer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: #555555;
        }

        .offer-meta {
            font-size: 13px;
            color: var(--text-muted);
        }

        .offer-cta {
            margin-top: 14px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--gold-dark);
            cursor: pointer;
        }

        .offer-cta:hover {
            text-decoration: underline;
        }

        /* ---------- HIGHLIGHTS ---------- */

        .section-highlights {
            background-color: var(--bg-dark-soft);
            color: var(--text-light);
        }

        .highlights-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .highlights-text {
            max-width: 420px;
        }

        .highlights-numbers {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .highlight-box {
            min-width: 120px;
            flex: 0 1 140px;
        }

        .highlight-number {
            font-size: 32px;
            color: var(--gold);
            margin-bottom: 4px;
        }

        .highlight-label {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ---------- TESTIMONIALS ---------- */

        .section-testimonials {
            background-color: #ffffff;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .testimonial-card {
            border-radius: 16px;
            padding: 22px 20px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.7;
            color: #555555;
            margin-bottom: 14px;
        }

        .testimonial-name {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .testimonial-meta {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ---------- FOOTER ---------- */

        footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding-top: 40px;
            padding-bottom: 22px;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-block-title {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-block p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
        }

        .footer-social {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .footer-social a:hover {
            color: var(--text-light);
            transform: translateY(-1px);
        }

        /* iOS-safe footer icons */
        .footer-social a {
            display: flex;
            /* zamiast inline-flex też OK, chodzi o jednoznaczność */
            align-items: center;
        }

        .footer-social svg {
            width: 18px !important;
            height: 18px !important;
            flex: 0 0 18px;
            /* nie pozwól flexowi rozciągać/kurczyć SVG */
            display: block;
            /* eliminuje „dziwne” baseline spacing */
            max-width: 18px;
            max-height: 18px;
            fill: currentColor;
        }

        .footer-social svg path {
            fill: currentColor;
            /* dodatkowe zabezpieczenie na Safari */
        }


        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 14px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.55);
        }

        .footer-logo-small {
            width: 90px;
            height: auto;
        }

        /* ---------- DESKTOP-ONLY ADJUSTMENTS ---------- */

        @media (min-width: 1200px) {
            body {
                font-size: 15px;
            }
        }

        /* ---------- MOBILE MENU BASE ---------- */

        .mobile-menu-btn {
            display: none;
        }

        .mobile-menu {
            display: none;
        }

        .mobile-menu-overlay {
            display: none;
        }

        /* ---------- MOBILE VERSION ---------- */

        @media (max-width: 768px) {

            /* GLOBAL */
            .container {
                padding: 0 16px;
            }

            section {
                padding: 50px 0;
            }

            h1,
            h2,
            h3 {
                word-wrap: break-word;
            }

            /* TOP BAR */
            .top-bar-inner {
                justify-content: center;
                flex-wrap: wrap;
                gap: 6px;
                font-size: 12px;
            }

            /* HEADER */
            .header-inner {
                flex-direction: row;
                justify-content: space-between;
                padding: 14px 0;
            }

            nav ul {
                display: none;
                /* hide desktop menu */
            }

            /* HERO */
            .hero-inner {
                padding: 70px 0 70px;
            }

            .hero-title {
                font-size: 28px;
            }

            .hero-text {
                font-size: 14px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
            }

            .btn-primary {
                width: 100%;
                justify-content: center;
                padding: 14px 0;
                font-size: 14px;
            }

            .btn-secondary-link {
                font-size: 13px;
            }

            /* ABOUT */
            .about-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .about-image-tag {
                font-size: 10px;
                padding: 8px 12px;
            }


            /* GALLERY */
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .gallery-item img {
                height: 150px;
            }

            .gallery-grid--preview {
                gap: 10px;
            }

            .gallery-grid--preview .gallery-item img {
                height: 170px;
            }

            .gallery-actions {
                margin-top: 18px;
                width: 100%;
            }

            .gallery-actions .btn-primary {
                width: 100%;
                justify-content: center;
            }

            /* OFFER */
            .offer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .offer-card {
                padding: 20px;
            }

            /* HIGHLIGHTS */
            .highlights-inner {
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }

            .highlights-numbers {
                justify-content: center;
                gap: 16px 24px;
                width: 100%;
            }

            .highlight-box {
                flex: 1 1 120px;
                text-align: center;
            }

            .highlight-number {
                font-size: 24px;
            }

            .highlight-label {
                font-size: 12px;
            }

            /* TESTIMONIALS */
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            /* FOOTER */
            .footer-top {
                flex-direction: column;
                text-align: left;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
        }

        /* ---------- MOBILE MODE ---------- */
        @media (max-width: 768px) {

            /* hide desktop nav */
            .desktop-menu {
                display: none;
            }

            /* show hamburger */
            .mobile-menu-btn {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                width: 28px;
                height: 22px;
                cursor: pointer;
                z-index: 9999;
                position: relative;

            }

            .mobile-menu-btn span {
                display: block;
                height: 3px;
                width: 100%;
                background: var(--text-light);
                border-radius: 3px;
                transition: 0.3s;
                position: absolute;
                left: 0;
                width: 100%;
                height: 3px;
                background: var(--text-light);
                border-radius: 3px;
                transition: transform 0.3s ease, opacity 0.2s ease;
            }

            .mobile-menu-btn span:nth-child(1) {
                top: 0;
            }

            .mobile-menu-btn span:nth-child(2) {
                top: 9px;
            }

            .mobile-menu-btn span:nth-child(3) {
                top: 18px;
            }

            /* ANIMACJA – hamburger -> X */
            .mobile-menu-btn.active span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }

            .mobile-menu-btn.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-btn.active span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }


            /* MOBILE MENU PANEL */
            .mobile-menu {
                display: block;
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 340px;
                height: 100vh;
                background: var(--bg-dark-soft);
                padding: 40px 26px;
                transition: right 0.35s ease;
                z-index: 9998;
                box-shadow: -6px 0 20px rgba(0, 0, 0, 0.4);
                overflow-y: auto;
            }

            .mobile-menu-overlay {
                display: block;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.55);
                z-index: 9997;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.35s ease;
            }

            .mobile-menu.open {
                right: 0;
            }

            .mobile-menu.open+.mobile-menu-overlay {
                opacity: 1;
                pointer-events: auto;
            }

            .mobile-menu>ul {
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 22px;
                padding: 26px 40px;
            }

            .mobile-menu .mobile-submenu {
                list-style: none;
                overflow: hidden;
                max-height: 0;
                opacity: 0;
                transform: translateY(-6px);
                transition:
                    max-height 0.35s ease,
                    opacity 0.25s ease,
                    transform 0.25s ease;
                display: flex;
                flex-direction: column;
                gap: 14px;
            }

            .mobile-menu .mobile-dropdown.open .mobile-submenu {
                max-height: 500px;
                /* wystarczająco duże */
                opacity: 1;
                transform: translateY(0);
            }


            .mobile-menu a {
                position: relative;
                display: inline-block;
                font-size: 18px;
                color: var(--text-light);
                letter-spacing: 0.14em;
                text-transform: uppercase;
            }

            .mobile-menu a::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -6px;
                width: 0;
                height: 2px;
                background-color: var(--gold);
                transition: width 0.2s ease;
            }

            .mobile-menu a:active::after {
                width: 100%;
            }

        }

        /* ---------- DESKTOP DROPDOWN ---------- */

        .nav-dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 0;
            min-width: 240px;
            background: var(--bg-dark-soft);
            border-radius: 14px;
            padding: 14px 0;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.06);
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
            z-index: 999;
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 22px;
            font-size: 13px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.85);
            transition: background 0.15s ease, color 0.15s ease;
        }

        .dropdown-menu a:hover {
            background: rgba(255, 255, 255, 0.06);
            color: var(--gold);
        }

        /* hover + keyboard focus */
        .nav-dropdown:hover .dropdown-menu,
        .nav-dropdown:focus-within .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* ---------- MOBILE DROPDOWN ---------- */

        .mobile-dropdown-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-parent-link {
            display: block;
            line-height: 1.2;
            font-size: 18px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-light);
        }

        .mobile-dropdown-toggle {
            background: none;
            border: none;
            /* usuwa kółko */
            padding: 0;
            /* usuwa dodatkową przestrzeń */
            width: auto;
            height: auto;
            border-radius: 0;
            cursor: pointer;
            line-height: 0;
        }


        .mobile-dropdown-toggle .arrow {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-right: 2px solid rgba(255, 255, 255, 0.6);
            border-bottom: 2px solid rgba(255, 255, 255, 0.6);
            transform: rotate(45deg);
            transition: transform 0.25s ease;
            /* powiększa obszar kliku bez kółka */
            box-sizing: content-box;
        }


        .mobile-dropdown.open .mobile-dropdown-toggle .arrow {
            transform: rotate(-135deg);
        }

        .mobile-submenu {
            list-style: none;
            padding-left: 14px;
            display: none;
            flex-direction: column;
            gap: 14px;
        }

        .mobile-submenu a {
            font-size: 15px;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.85);
        }

        .mobile-dropdown.open .mobile-submenu {
            display: flex;
        }

        .mobile-submenu-list {
            padding-top: 12px;
        }

        /* ---------- CONTACT FORM ---------- */

        .contact-form-wrapper {
            max-width: 720px;
            margin: 0 auto 60px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 14px 16px;
            font-family: inherit;
            font-size: 14px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background-color: rgba(255, 255, 255, 0.06);
            color: #ffffff;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.55);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--gold);
            background-color: rgba(255, 255, 255, 0.08);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form .btn-primary {
            align-self: flex-start;
            margin-top: 16px;
        }

        /* MOBILE */
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form .btn-primary {
                width: 100%;
                justify-content: center;
            }
        }

        /* ============================= */
        /* FLOATING CONTACT BUTTON */
        /* ============================= */

        .floating-contact {
            position: fixed;
            right: max(18px, env(safe-area-inset-right));
            bottom: max(18px, env(safe-area-inset-bottom));

            padding: 12px 18px;
            border-radius: 999px;

            font-size: 12px;
            letter-spacing: 0.16em;
            text-transform: uppercase;

            background: rgba(17, 17, 17, 0.75);
            color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.247);

            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);

            cursor: pointer;
            z-index: 10010;

            opacity: 0;
            transform: translateY(16px);
            pointer-events: none;

            transition:
                color 0.2s ease,
                border-color 0.2s ease,
                transform 0.2s ease,
                bottom 0.2s ease;

            will-change: transform, opacity;
        }

        body.cookie-banner-visible .floating-contact {
            bottom: calc(max(18px, env(safe-area-inset-bottom)) + var(--cookie-banner-height, 0px) + 12px);
        }

        /* linia jak w menu */
        .floating-contact::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 8px;

            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);

            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.25s ease;
        }

        .floating-contact.visible {
            animation: floatingFadeIn 0.5s ease-out forwards;
            pointer-events: auto;
        }

        @keyframes floatingFadeIn {
            from {
                opacity: 0;
                transform: translateY(16px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* hover identyczny feeling jak "Wesela" */
        .floating-contact:hover {
            color: var(--gold);
            border-color: rgba(212, 175, 55, 0.35);
        }

        .floating-contact:hover::after {
            transform: scaleX(1);
        }

        /* focus klawiatura */
        .floating-contact:focus-visible {
            outline: none;
        }

        @media (max-width: 768px) {
            .floating-contact {
                right: 14px;
                bottom: 14px;
                padding: 11px 16px;
                font-size: 11px;
            }

            body.cookie-banner-visible .floating-contact {
                bottom: calc(14px + var(--cookie-banner-height, 0px) + 10px);
            }

            .floating-contact::after {
                left: 16px;
                right: 16px;
            }
        }



        /* ============================= */
        /* MODAL (bez display:none -> brak zacięć przy zamykaniu) */
        /* ============================= */

        .contact-modal {
            position: fixed;
            inset: 0;
            z-index: 9998;

            opacity: 0;
            visibility: hidden;
            pointer-events: none;

            transition: opacity 0.22s ease, visibility 0s linear 0.22s;
        }

        .contact-modal.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;

            transition: opacity 0.22s ease, visibility 0s;
        }

        .contact-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.62);
        }

        /* animacja wejścia/wyjścia kontenera */
        .contact-modal-content {
            position: relative;

            max-width: 720px;
            margin: 6vh auto;
            background: var(--bg-cream);
            border-radius: 18px;

            padding: 28px 24px 30px;

            max-height: 88vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;

            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);

            transform: translateY(18px) scale(0.985);
            opacity: 0;

            transition: transform 0.26s ease, opacity 0.26s ease;
            will-change: transform, opacity;
        }

        .contact-modal.open .contact-modal-content {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        /* ============================= */
        /* CLOSE BUTTON – X idealnie na środku */
        /* ============================= */
        .contact-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;

            width: 40px;
            height: 40px;
            border-radius: 999px;

            background: rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.08);

            cursor: pointer;
            color: #555;

            display: grid;
            place-items: center;

            /* reset typografii, żeby nic nie przesuwało */
            padding: 0;
            line-height: 0;
            font-size: 0;
        }

        .contact-modal-close::before {
            content: "×";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);

            font-size: 26px;
            line-height: 1;
        }


        .contact-modal-close span {
            display: block;
            font-size: 22px;
            /* lepiej centrowalne niż 26px */
            line-height: 1;
            transform: translateY(-1px);
            /* mikrokorekta optyczna */
        }

        /* hover subtelny */
        .contact-modal-close:hover {
            background: rgba(0, 0, 0, 0.08);
        }

        /* ============================= */
        /* FORM */
        /* ============================= */

        .modal-form {
            margin-top: 14px;
        }

        .modal-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 14px;
        }

        .modal-form input,
        .modal-form textarea,
        .modal-form select {
            width: 100%;
            padding: 14px 16px;

            font-size: 14px;
            font-family: inherit;

            background: #ffffff;
            color: #111111;

            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.20);
            outline: none;
        }

        .modal-form select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            padding-right: 42px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23777777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 12px 8px;
        }

        .modal-form textarea {
            margin-top: 14px;
            resize: vertical;
            min-height: 130px;
        }

        .modal-form input:focus,
        .modal-form textarea:focus,
        .modal-form select:focus {
            border-color: rgba(212, 175, 55, 0.9);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.22);
        }

        .modal-consent {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 14px;

            font-size: 13px;
            color: #555;
            line-height: 1.5;
        }

        .modal-consent input[type="checkbox"] {
            margin-top: 2px;
            width: 16px;
            height: 16px;
            accent-color: rgba(212, 175, 55, 0.95);
        }

        .modal-consent a {
            color: inherit;
            text-decoration: underline;
        }

        .hp-field {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        .modal-success {
            margin-top: 16px;
            padding: 14px 16px;
            background: rgba(212, 175, 55, 0.12);
            border: 1px solid rgba(212, 175, 55, 0.35);
            border-radius: 12px;
            color: #3d2f0b;
        }

        .modal-success h3 {
            margin: 0 0 6px;
            font-size: 16px;
        }

        .modal-success p {
            margin: 0;
            font-size: 13px;
        }

        .modal-form-status {
            margin-top: 12px;
            font-size: 13px;
            color: #7a2020;
        }

        .modal-form.is-success .modal-note,
        .modal-form.is-success .btn-primary,
        .modal-form.is-success .modal-consent,
        .modal-form.is-success .modal-row,
        .modal-form.is-success textarea {
            display: none;
        }

        .modal-note {
            margin-top: 14px;
            font-size: 13px;
            color: #666;
        }

        /* ============================= */
        /* MOBILE */
        /* ============================= */

        @media (max-width: 768px) {
            .contact-modal-content {
                width: calc(100% - 20px);
                margin: max(12px, env(safe-area-inset-top)) auto;
                padding: 20px max(16px, env(safe-area-inset-right)) 20px max(16px, env(safe-area-inset-left));
                border-radius: 16px;
                max-height: calc(100vh - 24px);
                max-height: calc(100dvh - 24px);
            }

            .modal-row {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .floating-contact {
                right: 14px;
                bottom: 14px;
                padding: 12px 18px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {

            .modal-form input,
            .modal-form textarea,
            .modal-form select {
                font-size: 16px;
                padding: 12px 14px;
            }
        }

        /* jeśli ktoś ma redukcję animacji */
        @media (prefers-reduced-motion: reduce) {

            .floating-contact,
            .contact-modal,
            .contact-modal-content {
                transition: none !important;
                animation: none !important;
            }
        }

        /* ============================= */
        /* GALLERY LIGHTBOX */
        /* ============================= */

        body.no-scroll {
            overflow: hidden;
        }

        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: none;
        }

        .lightbox.open {
            display: block;
        }

        .lightbox__overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.82);
        }

        .lightbox__content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: grid;
            place-items: center;
            padding: clamp(14px, 4vw, 24px);
        }

        .lightbox__media {
            position: relative;
            display: inline-block;
            max-width: min(1100px, 100%);
            max-height: 86vh;
            overflow: hidden;
            border-radius: 14px;
        }

        .lightbox__img {
            max-width: 100%;
            max-height: 86vh;
            width: auto;
            height: auto;
            border-radius: 14px;
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
            background: #111;
            cursor: pointer;
            display: block;
        }

        .lightbox__close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 44px;
            height: 44px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: rgba(0, 0, 0, 0.35);
            color: rgba(255, 255, 255, 0.92);
            cursor: pointer;
            display: grid;
            place-items: center;
            font-size: 26px;
            line-height: 1;
        }

        .lightbox__close:hover {
            background: rgba(0, 0, 0, 0.5);
        }

        .lightbox__nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            background: rgba(0, 0, 0, 0.6);
            color: #ffffff;
            cursor: pointer;
            display: grid;
            place-items: center;
            font-size: 28px;
            line-height: 1;
            z-index: 2;
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
        }

        .lightbox__tap {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 50%;
            border: 0;
            padding: 0;
            margin: 0;
            background: transparent;
            cursor: pointer;
            display: none;
            z-index: 1;
        }

        .lightbox__tap--prev {
            left: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
        }

        .lightbox__tap--next {
            right: 0;
            background: linear-gradient(270deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
        }

        .lightbox__nav:hover {
            background: rgba(0, 0, 0, 0.5);
        }

        .lightbox__prev {
            left: 18px;
        }

        .lightbox__next {
            right: 18px;
        }

        @media (max-width: 768px) {
            .lightbox__nav {
                width: 48px;
                height: 48px;
                font-size: 24px;
                background: rgba(0, 0, 0, 0.7);
            }

            .lightbox__tap {
                display: block;
            }
        }

        /* LOCATION / MAP */
        .section-location {
            background-color: var(--bg-cream);
            /* trzyma rytm kolorów: białe opinie -> krem mapa -> ciemny footer */
            border-top: 1px solid rgba(0, 0, 0, 0.04);
        }

        .location-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 32px;
            align-items: start;
        }

        .location-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
            border-top: 3px solid var(--gold);
        }

        .location-title {
            font-size: 16px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .location-text {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 12px;
        }

        .location-muted {
            color: var(--text-muted);
            font-size: 14px;
        }

        .map-embed {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 18px 46px rgba(0, 0, 0, 0.10);
            background: #f3f3f3;
            aspect-ratio: 16 / 10;
        }

        .map-embed iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        @media (max-width: 768px) {
            .location-grid {
                grid-template-columns: 1fr;
            }

            .map-embed {
                aspect-ratio: 16 / 12;
            }
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #111;
            color: rgba(255, 255, 255, 0.85);
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.35s ease;
            font-family: 'Lato', sans-serif;
        }

        .cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .cookie-text {
            font-size: 14px;
            line-height: 1.6;
        }

        .cookie-text a {
            color: #d6b36a;
            text-decoration: underline;
        }

        .cookie-actions {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 10px 18px;
            font-size: 13px;
            border: none;
            cursor: pointer;
            letter-spacing: 0.05em;
        }

        .cookie-accept {
            background: #d6b36a;
            color: #111;
        }

        .cookie-decline {
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* iOS Safari: keep text sizing consistent */
        html {
            -webkit-text-size-adjust: 100%;
        }

        /* Form controls: consistent height and typography */
        .modal-form input,
        .modal-form select,
        .modal-form textarea {
            line-height: 1.2;
        }

        /* Date input: iOS normalizations */
        .modal-form input[type="date"] {
            -webkit-appearance: none;
            appearance: none;
            min-height: 48px;
        }

        /* Ensure the date text aligns nicely on iOS */
        .modal-form input[type="date"]::-webkit-date-and-time-value {
            text-align: left;
        }

        /* Optional: hide iOS inner controls if they clash visually */
        .modal-form input[type="date"]::-webkit-clear-button,
        .modal-form input[type="date"]::-webkit-inner-spin-button {
            display: none;
        }

        .js .modal-form select.is-enhanced,
        .js .modal-form input[type="date"].is-enhanced {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        .custom-select,
        .custom-date {
            position: relative;
            width: 100%;
        }

        .custom-select__input {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23777777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 12px 8px;
        }

        .custom-date__input {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2' fill='none' stroke='%23777777' stroke-width='2'/%3E%3Cpath d='M8 2v4M16 2v4M3 10h18' fill='none' stroke='%23777777' stroke-width='2'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px 16px;
        }

        .custom-select__list,
        .custom-date__panel {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            background: #ffffff;
            border: 1px solid rgba(17, 17, 17, 0.12);
            border-radius: 10px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            opacity: 0;
            pointer-events: none;
            transform: translateY(-6px);
            transition: opacity 0.2s ease, transform 0.2s ease;
            z-index: 30;
        }

        .custom-select.is-open .custom-select__list,
        .custom-date.is-open .custom-date__panel {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .custom-select__list {
            max-height: 220px;
            overflow: auto;
            padding: 6px 0;
        }

        .custom-select__option {
            width: 100%;
            text-align: left;
            background: transparent;
            border: none;
            padding: 10px 14px;
            font-size: 14px;
            font-family: inherit;
            color: #111111;
            cursor: pointer;
        }

        .custom-select__option[aria-selected="true"] {
            background: rgba(212, 175, 55, 0.16);
        }

        .custom-select__option:hover,
        .custom-select__option:focus {
            background: rgba(17, 17, 17, 0.06);
            outline: none;
        }

        .custom-select__option:disabled {
            cursor: not-allowed;
            opacity: 0.45;
        }

        .custom-date__panel {
            padding: 12px;
        }

        .custom-date__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .custom-date__title {
            font-size: 14px;
            font-weight: 600;
            text-transform: capitalize;
        }

        .custom-date__nav {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid rgba(17, 17, 17, 0.12);
            background: #ffffff;
            cursor: pointer;
        }

        .custom-date__weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            font-size: 11px;
            text-transform: uppercase;
            color: rgba(17, 17, 17, 0.6);
            margin-bottom: 6px;
        }

        .custom-date__grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
        }

        .custom-date__day {
            border: none;
            background: rgba(17, 17, 17, 0.04);
            border-radius: 8px;
            padding: 8px 0;
            cursor: pointer;
            font-size: 13px;
        }

        .custom-date__day:hover,
        .custom-date__day:focus {
            background: rgba(17, 17, 17, 0.1);
            outline: none;
        }

        .custom-date__day.is-selected {
            background: rgba(212, 175, 55, 0.25);
            box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.7);
        }

        .custom-date__day.is-today {
            box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.25);
        }

        .custom-date__empty {
            height: 32px;
        }

        /* Mobile: force 16px font-size to avoid iOS quirks */
        @media (max-width: 768px) {

            .modal-form input,
            .modal-form select,
            .modal-form textarea {
                font-size: 16px;
            }
        }
