        /* ---------- COLORS ---------- */
        :root {
            --bg-dark: #000000;
            --bg-dark-soft: #11100F;
            --bg-cream: #F3F1ED;
            --surface-light: #FAF8F5;
            --gold-light: #F5CC96;
            --gold: #D5B385;
            --gold-dark: #BF955F;
            --gold-rgb: 213, 179, 133;
            --text-main: #2B2A29;
            --text-light: #EBECEC;
            --text-muted: #6E6962;
            --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: var(--surface-light);
            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;
        }

        .top-bar-item a,
        .footer-block a[href^="tel:"],
        .footer-block a[href^="mailto:"] {
            color: inherit;
            transition: color 0.2s ease;
        }

        .top-bar-item a:hover,
        .top-bar-item a:focus-visible,
        .footer-block a[href^="tel:"]:hover,
        .footer-block a[href^="tel:"]:focus-visible,
        .footer-block a[href^="mailto:"]:hover,
        .footer-block a[href^="mailto:"]:focus-visible {
            color: var(--gold-light);
        }

        /* ---------- 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;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 14px 0 12px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .logo-mark {
            display: block;
            width: 190px;
            height: auto;
        }

        .logo-text {
            display: none;
        }

        .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;
            justify-content: 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: var(--bg-dark);
            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-light), 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: var(--text-muted);
        }

        .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: var(--surface-light);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
            font-size: 13px;
            color: var(--text-main);
        }

        .feature-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, var(--gold-light), 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%, var(--gold-light), var(--gold));
        }

        /* ---------- GALLERY ---------- */

        .section-gallery {
            background-color: var(--bg-dark-soft);
            color: var(--text-light);
        }

        .section-gallery .section-subtitle {
            color: rgba(255, 255, 255, 0.4);
        }

        .section-gallery .section-heading {
            color: var(--text-light);
        }

        .section-gallery .container {
            text-align: center;
        }

        .section-gallery .section-heading-accent {
            margin-left: auto;
            margin-right: auto;
        }

        .gallery-desc {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.55);
            max-width: 520px;
            margin: 0 auto 40px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 220px;
            grid-auto-flow: dense;
            gap: 10px;
            text-align: left;
        }

        .gallery-grid--preview {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            grid-auto-rows: auto;
            gap: 16px;
        }

        .gallery-grid--preview .gallery-item img {
            height: 260px;
        }

        .gallery-item--wide {
            grid-column: span 2;
        }

        .gallery-item--tall {
            grid-row: span 2;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
        }

        .js .gallery-item {
            opacity: 0;
            transform: translateY(30px);
        }

        .gallery-item.is-visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.4s ease;
        }

        .gallery-item::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 10px;
            border: 2px solid transparent;
            box-shadow: inset 0 0 0 0 rgba(var(--gold-rgb), 0);
            transition: border-color 0.35s ease, box-shadow 0.35s ease;
            pointer-events: none;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
            filter: brightness(0.85);
        }

        .gallery-item:hover::after {
            border-color: rgba(var(--gold-rgb), 0.5);
            box-shadow: inset 0 0 30px rgba(var(--gold-rgb), 0.1);
        }

        .gallery-grid--preview .gallery-item:hover::after {
            border-color: transparent;
            box-shadow: none;
        }

        .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: var(--surface-light);
            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: var(--text-muted);
        }

        .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: var(--surface-light);
        }

        .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);
            display: flex;
            flex-direction: column;
        }

        .testimonial-card .testimonial-name {
            margin-top: auto;
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 14px;
        }

        .testimonial-name {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .testimonial-meta {
            display: inline-block;
            font-size: 12px;
            color: var(--gold-dark);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .testimonial-meta:hover {
            color: var(--gold);
        }

        /* ---------- 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: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 24px;
            padding-top: 14px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.55);
        }

        .footer-bottom> :last-child {
            justify-self: end;
        }

        .footer-credit {
            text-align: center;
            color: rgba(255, 255, 255, 0.48);
        }

        .footer-credit span {
            color: rgba(255, 255, 255, 0.72);
        }

        .footer-logo-small {
            display: block;
            width: 150px;
            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: center;
                gap: 0;
                padding: 14px 0;
                position: relative;
            }

            .logo-mark {
                width: 160px;
            }

            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);
                grid-auto-rows: 160px;
                gap: 8px;
            }

            .gallery-grid--preview {
                grid-auto-rows: auto;
                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 {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 12px;
            }

            .footer-bottom> :last-child {
                justify-self: center;
            }
        }

        /* ---------- 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: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);

            }

            .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: var(--text-light);
        }

        .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(var(--gold-rgb), 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: 11000;

            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;
        }

        body.contact-modal-open .floating-contact,
        body.contact-modal-open .mobile-menu-btn {
            opacity: 0 !important;
            visibility: hidden;
            pointer-events: none;
        }

        .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: var(--text-muted);

            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;
        }

        .contact-modal-content .section-heading-accent {
            margin-bottom: 14px;
        }

        .modal-intro {
            max-width: 580px;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.65;
        }

        .modal-required-note {
            margin: 0;
            color: var(--text-muted);
            font-size: 11px;
            text-align: right;
        }

        .modal-required-note span,
        .modal-field label > span[aria-hidden="true"] {
            color: var(--gold-dark);
        }

        .modal-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 14px;
        }

        .modal-field {
            min-width: 0;
        }

        .modal-field--wide {
            grid-column: 1 / -1;
        }

        .modal-field label {
            display: block;
            margin-bottom: 7px;
            color: var(--text-main);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.03em;
        }

        .modal-field label span:not([aria-hidden="true"]) {
            color: var(--text-muted);
            font-size: 11px;
            font-weight: 400;
        }

        .modal-form input,
        .modal-form textarea,
        .modal-form select {
            width: 100%;
            padding: 14px 16px;

            font-size: 14px;
            font-family: inherit;

            background: var(--surface-light);
            color: var(--text-main);

            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: 0;
            resize: vertical;
            min-height: 96px;
        }

        .modal-form input:focus,
        .modal-form textarea:focus,
        .modal-form select:focus {
            border-color: rgba(var(--gold-rgb), 0.9);
            box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.22);
        }

        .modal-privacy-note {
            margin-top: 14px;
            padding-top: 12px;
            border-top: 1px solid rgba(43, 42, 41, 0.12);
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .modal-privacy-note a {
            color: inherit;
            text-decoration: underline;
            text-decoration-color: rgba(var(--gold-rgb), 0.7);
            text-underline-offset: 3px;
        }

        .modal-submit {
            width: 100%;
            margin-top: 14px;
        }

        .modal-submit:disabled {
            cursor: wait;
            opacity: 0.7;
            transform: none;
        }

        .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(var(--gold-rgb), 0.12);
            border: 1px solid rgba(var(--gold-rgb), 0.35);
            border-radius: 12px;
            color: var(--text-main);
        }

        .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-privacy-note,
        .modal-form.is-success .modal-required-note,
        .modal-form.is-success .modal-row,
        .modal-form.is-success textarea {
            display: none;
        }

        .modal-note {
            margin-top: 10px;
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
        }

        /* ============================= */
        /* 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: 11px;
                margin-top: 12px;
            }

            .modal-field--wide {
                grid-column: auto;
            }

            .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0s linear 0.3s;
        }

        .lightbox.open {
            opacity: 1;
            visibility: visible;
            transition: opacity 0.3s ease, visibility 0s;
        }

        .lightbox__overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.92);
        }

        .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: visible;
            border-radius: 14px;
            will-change: transform, opacity;
        }

        .lightbox__media.is-entering {
            animation: lightboxZoomIn 0.3s ease-out forwards;
        }

        .lightbox.open .lightbox__media {
            touch-action: none;
        }

        @keyframes lightboxZoomIn {
            from { transform: scale(0.92); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .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: var(--bg-dark-soft);
            display: block;
            transition: opacity 0.2s ease;
        }

        .lightbox__img.is-fading {
            opacity: 0;
        }

        .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;
            z-index: 3;
            transition: background 0.2s ease;
        }

        .lightbox__close:hover {
            background: rgba(0, 0, 0, 0.6);
        }

        .lightbox__nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.4);
            color: rgba(255, 255, 255, 0.85);
            cursor: pointer;
            display: grid;
            place-items: center;
            font-size: 26px;
            line-height: 1;
            z-index: 2;
            transition: background 0.2s ease, border-color 0.2s ease;
        }

        .lightbox__nav:hover {
            background: rgba(0, 0, 0, 0.6);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .lightbox__prev {
            left: 18px;
        }

        .lightbox__next {
            right: 18px;
        }

        .lightbox__counter {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 13px;
            letter-spacing: 0.2em;
            color: rgba(255, 255, 255, 0.5);
            z-index: 2;
        }

        @media (max-width: 768px) {
            .lightbox__nav {
                display: none;
            }

            .lightbox__counter {
                bottom: max(18px, env(safe-area-inset-bottom));
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .gallery-item {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* 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: var(--surface-light);
            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: var(--text-muted);
            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: var(--bg-cream);
            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: var(--bg-dark-soft);
            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: var(--gold);
            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: var(--gold);
            color: var(--text-main);
        }

        .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: var(--surface-light);
            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: var(--text-main);
            cursor: pointer;
        }

        .custom-select__option[aria-selected="true"] {
            background: rgba(var(--gold-rgb), 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: var(--surface-light);
            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(var(--gold-rgb), 0.25);
            box-shadow: inset 0 0 0 2px rgba(var(--gold-rgb), 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;
            }
        }

        /* ---------- EDITORIAL UI REFINEMENT ---------- */

        body {
            line-height: 1.6;
        }

        main {
            overflow: clip;
        }

        section {
            padding: clamp(76px, 9vw, 126px) 0;
        }

        .section-subtitle {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
            color: var(--gold-dark);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.24em;
        }

        .section-subtitle::before {
            content: "";
            width: 34px;
            height: 1px;
            flex: 0 0 34px;
            background: currentColor;
        }

        .section-heading {
            max-width: 840px;
            margin-bottom: 24px;
            font-size: clamp(34px, 4.4vw, 58px);
            font-weight: 500;
            line-height: 1.08;
            letter-spacing: -0.025em;
            text-transform: none;
            text-wrap: balance;
        }

        .section-heading-accent {
            width: 104px;
            height: 1px;
            margin-bottom: 42px;
            background: var(--gold);
        }

        .btn-primary {
            min-height: 48px;
            margin-top: 0;
            padding: 14px 26px;
            border: 1px solid var(--gold);
            border-radius: 0;
            background: var(--gold);
            box-shadow: none;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.18em;
            transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .btn-primary:hover {
            color: var(--gold-light);
            background: transparent;
            box-shadow: none;
            filter: none;
            transform: translateY(-2px);
        }

        .btn-secondary-link {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.19em;
        }

        .btn-secondary-link span {
            padding-bottom: 5px;
            border-bottom-color: var(--gold);
        }

        .hero {
            min-height: clamp(590px, 72vh, 780px);
        }

        .hero-background {
            opacity: 0.78;
            filter: saturate(0.72) contrast(1.06);
            animation: none;
        }

        .hero-overlay {
            background:
                linear-gradient(90deg, rgba(17, 16, 15, 0.94) 0%, rgba(17, 16, 15, 0.68) 52%, rgba(17, 16, 15, 0.08) 100%),
                linear-gradient(0deg, rgba(17, 16, 15, 0.42), transparent 45%);
            animation: none;
        }

        .hero-inner {
            display: flex;
            min-height: clamp(590px, 72vh, 780px);
            align-items: center;
            padding-top: 84px;
            padding-bottom: 96px;
            animation: none;
        }

        .hero-content {
            max-width: 720px;
            padding: 0 0 0 38px;
            border-left: 1px solid rgba(var(--gold-rgb), 0.72);
        }

        .hero-eyebrow {
            margin-bottom: 22px;
            color: var(--gold-light);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.24em;
        }

        .hero-title {
            margin-bottom: 24px;
            font-size: clamp(44px, 5.2vw, 72px);
            font-weight: 500;
            line-height: 1.02;
            letter-spacing: -0.035em;
            text-wrap: balance;
            animation: none;
        }

        .hero-title span {
            color: var(--text-light);
        }

        .hero-text {
            max-width: 610px;
            margin-bottom: 38px;
            font-size: 16px;
            line-height: 1.8;
            color: rgba(235, 236, 236, 0.78);
            animation: none;
        }

        .hero-cta {
            gap: 26px;
            animation: none;
        }

        .cta-note {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 15px;
            color: rgba(235, 236, 236, 0.76);
            font-size: 12px;
            line-height: 1.55;
        }

        .cta-note::before {
            content: "";
            width: 18px;
            height: 1px;
            flex: 0 0 18px;
            background: var(--gold);
        }

        .about-grid {
            grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
            column-gap: clamp(56px, 8vw, 118px);
            row-gap: 44px;
            align-items: start;
        }

        .about-text p {
            margin-bottom: 22px;
            font-size: 16px;
            line-height: 1.85;
        }

        .about-details {
            grid-column: 1 / -1;
            padding-top: 34px;
            border-top: 1px solid rgba(43, 42, 41, 0.16);
        }

        .about-details-copy {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: clamp(44px, 7vw, 92px);
        }

        .about-details-copy p {
            margin: 0;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.8;
        }

        .about-details .about-features {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            margin-top: 32px;
        }

        .about-features {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0 28px;
            margin-top: 38px;
            border-bottom: 1px solid rgba(43, 42, 41, 0.16);
        }

        .feature-pill {
            min-height: 54px;
            padding: 13px 0;
            border: 0;
            border-top: 1px solid rgba(43, 42, 41, 0.16);
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.04em;
        }

        .feature-dot {
            width: 18px;
            height: 1px;
            border-radius: 0;
            background: var(--gold-dark);
        }

        .about-image-wrapper {
            margin-top: 54px;
        }

        .about-image-wrapper::before {
            content: "";
            position: absolute;
            inset: -18px 18px 18px -18px;
            border: 1px solid rgba(var(--gold-rgb), 0.45);
            pointer-events: none;
        }

        .about-image-main {
            position: relative;
            z-index: 1;
            border-radius: 0;
            box-shadow: none;
        }

        .about-image-main img {
            width: 100%;
            min-height: 590px;
            object-fit: cover;
        }

        .about-image-tag {
            z-index: 2;
            left: auto;
            right: -18px;
            bottom: -18px;
            padding: 14px 18px;
            border: 1px solid rgba(var(--gold-rgb), 0.35);
            border-radius: 0;
            background: var(--bg-dark-soft);
            font-size: 10px;
            letter-spacing: 0.18em;
        }

        .about-image-tag span {
            width: 20px;
            height: 1px;
            border-radius: 0;
            background: var(--gold);
        }

        .section-gallery .container {
            text-align: left;
        }

        .section-gallery .section-heading-accent {
            margin-right: 0;
            margin-left: 0;
        }

        .gallery-grid--preview {
            grid-template-columns: 1.25fr 0.75fr;
            grid-template-rows: 430px 310px;
            gap: 14px;
        }

        .gallery-grid--preview .gallery-item {
            border-radius: 0;
        }

        .gallery-grid--preview .gallery-item img {
            height: 100%;
        }

        .gallery-grid--preview .gallery-item:nth-child(3) {
            grid-column: 1;
        }

        .gallery-grid--preview .gallery-item:nth-child(4) {
            grid-column: 2;
        }

        .gallery-item {
            border-radius: 0;
        }

        .gallery-item::after {
            border-radius: 0;
            border-width: 1px;
        }

        .gallery-item:hover img {
            transform: scale(1.025);
        }

        .gallery-actions {
            justify-content: flex-start;
            margin-top: 32px;
        }

        .offer-grid {
            counter-reset: offer-card;
            gap: 0;
            border-top: 1px solid rgba(43, 42, 41, 0.18);
            border-bottom: 1px solid rgba(43, 42, 41, 0.18);
        }

        .offer-card {
            counter-increment: offer-card;
            min-height: 430px;
            padding: 36px 32px 34px;
            border: 0;
            border-right: 1px solid rgba(43, 42, 41, 0.18);
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            gap: 18px;
        }

        .offer-card:last-child {
            border-right: 0;
        }

        .offer-card::before {
            content: "0" counter(offer-card);
            color: var(--gold-dark);
            font-family: "Playfair Display", "Times New Roman", serif;
            font-size: 15px;
            letter-spacing: 0.08em;
        }

        .offer-title {
            min-height: 62px;
            font-size: 27px;
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.01em;
            text-transform: none;
        }

        .offer-desc {
            flex: 1 1 auto;
            font-size: 15px;
            line-height: 1.75;
        }

        .offer-meta {
            display: flex;
            min-height: 68px;
            align-items: flex-start;
            padding-top: 16px;
            border-top: 1px solid rgba(43, 42, 41, 0.12);
            font-size: 12px;
            line-height: 1.65;
        }

        .offer-cta {
            display: inline-flex;
            min-height: 44px;
            width: fit-content;
            align-items: center;
            gap: 12px;
            margin-top: auto;
            padding: 10px 0;
            border: 0;
            background: transparent;
            color: var(--text-main);
            cursor: pointer;
            font-family: inherit;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-align: left;
            text-transform: uppercase;
        }

        .offer-cta::after {
            content: "→";
            color: var(--gold-dark);
            font-size: 16px;
            font-weight: 400;
            transition: transform 0.2s ease;
        }

        .offer-cta:hover::after,
        .offer-cta:focus-visible::after {
            transform: translateX(4px);
        }

        .offer-cta:hover {
            text-decoration: none;
        }

        .offer-cta:focus-visible {
            outline: 1px solid var(--gold-dark);
            outline-offset: 5px;
        }

        .section-highlights {
            border-top: 1px solid rgba(var(--gold-rgb), 0.18);
            border-bottom: 1px solid rgba(var(--gold-rgb), 0.18);
        }

        .highlights-inner {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
            gap: clamp(60px, 8vw, 120px);
            align-items: end;
        }

        .highlights-text {
            max-width: 560px;
        }

        .highlights-numbers {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border-top: 1px solid rgba(235, 236, 236, 0.18);
            border-bottom: 1px solid rgba(235, 236, 236, 0.18);
        }

        .highlight-box {
            min-width: 0;
            padding: 30px 22px;
            border-right: 1px solid rgba(235, 236, 236, 0.18);
        }

        .highlight-box:last-child {
            border-right: 0;
        }

        .highlight-number {
            margin-bottom: 10px;
            font-family: "Playfair Display", "Times New Roman", serif;
            font-size: clamp(40px, 5vw, 64px);
            line-height: 1;
        }

        .highlight-label {
            font-size: 10px;
            line-height: 1.5;
            letter-spacing: 0.14em;
        }

        .testimonials-grid {
            gap: 0;
            border-top: 1px solid rgba(43, 42, 41, 0.18);
            border-bottom: 1px solid rgba(43, 42, 41, 0.18);
        }

        .testimonial-card {
            min-height: 280px;
            padding: 32px 30px;
            border: 0;
            border-right: 1px solid rgba(43, 42, 41, 0.18);
            border-radius: 0;
            box-shadow: none;
        }

        .testimonial-card:last-child {
            border-right: 0;
        }

        .testimonial-stars {
            margin-bottom: 30px;
            color: var(--gold-dark);
            font-size: 11px;
            letter-spacing: 0.12em;
        }

        .testimonial-text {
            font-family: "Playfair Display", "Times New Roman", serif;
            font-size: 21px;
            line-height: 1.55;
        }

        .testimonial-name {
            font-size: 11px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .testimonial-meta {
            margin-top: 4px;
            font-size: 10px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .conversion-strip {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 36px;
            margin-top: 34px;
            padding: 26px 0;
            border-top: 1px solid rgba(var(--gold-rgb), 0.55);
            border-bottom: 1px solid rgba(var(--gold-rgb), 0.55);
        }

        .conversion-strip-label {
            margin-bottom: 6px;
            font-family: "Playfair Display", "Times New Roman", serif;
            font-size: 25px;
            font-weight: 500;
        }

        .conversion-strip p {
            max-width: 640px;
            color: var(--text-muted);
            font-size: 14px;
        }

        .conversion-strip .btn-primary {
            flex: 0 0 auto;
        }

        .conversion-strip .btn-primary:hover {
            border-color: var(--gold-dark);
            color: var(--text-main);
        }

        .location-grid {
            grid-template-columns: 0.72fr 1.28fr;
            gap: clamp(48px, 7vw, 100px);
            align-items: stretch;
        }

        .location-card {
            padding: 28px 0 28px 30px;
            border: 0;
            border-left: 1px solid var(--gold-dark);
            border-radius: 0;
            background: transparent;
            box-shadow: none;
        }

        .location-title {
            margin-bottom: 22px;
            font-family: "Playfair Display", "Times New Roman", serif;
            font-size: 28px;
            font-weight: 500;
            letter-spacing: 0;
            text-transform: none;
        }

        .map-embed {
            position: relative;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            min-height: 440px;
            border: 1px solid rgba(43, 42, 41, 0.16);
            border-radius: 0;
            box-shadow: none;
            overflow: hidden;
        }

        .floating-contact {
            border-radius: 0;
            background: rgba(17, 16, 15, 0.92);
            box-shadow: none;
        }

        .contact-modal-content {
            border-radius: 0;
        }

        footer {
            padding-top: 64px;
        }

        .footer-top {
            padding-bottom: 44px;
        }

        .footer-block-title {
            color: var(--gold);
            font-size: 10px;
            font-weight: 700;
        }

        @media (max-width: 900px) {
            .about-grid,
            .highlights-inner {
                grid-template-columns: 1fr;
            }

            .about-image-wrapper {
                margin: 30px 18px 18px;
            }

            .gallery-grid--preview {
                grid-template-rows: 350px 260px;
            }

            .offer-card {
                padding-right: 24px;
                padding-left: 24px;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 68px 0;
            }

            .section-heading {
                font-size: clamp(32px, 10vw, 42px);
            }

            .section-heading-accent {
                margin-bottom: 32px;
            }

            .hero,
            .hero-inner {
                min-height: 610px;
            }

            .hero-inner {
                padding-top: 70px;
                padding-bottom: 76px;
            }

            .hero-content {
                padding-left: 22px;
            }

            .hero-title {
                font-size: clamp(39px, 12vw, 54px);
            }

            .hero-text {
                font-size: 15px;
                line-height: 1.7;
            }

            .hero-cta {
                align-items: flex-start;
                gap: 22px;
            }

            .btn-primary {
                width: auto;
                min-height: 46px;
                padding: 13px 20px;
            }

            .about-grid {
                gap: 28px;
            }

            .about-details {
                padding-top: 26px;
            }

            .about-details-copy {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .about-details .about-features {
                grid-template-columns: 1fr;
                margin-top: 24px;
            }

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

            .about-image-main img {
                min-height: 420px;
            }

            .about-image-tag {
                right: -10px;
                bottom: -14px;
            }

            .gallery-grid--preview {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 280px);
                gap: 10px;
            }

            .gallery-grid--preview .gallery-item:nth-child(3),
            .gallery-grid--preview .gallery-item:nth-child(4) {
                grid-column: auto;
            }

            .offer-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                border-bottom: 0;
            }

            .offer-card,
            .testimonial-card {
                min-height: auto;
                border-right: 0;
                border-bottom: 1px solid rgba(43, 42, 41, 0.18);
            }

            .offer-title {
                min-height: auto;
            }

            .offer-meta {
                min-height: 0;
            }

            .conversion-strip {
                align-items: flex-start;
                flex-direction: column;
                gap: 20px;
            }

            .highlights-numbers {
                grid-template-columns: 1fr;
            }

            .highlight-box {
                display: grid;
                grid-template-columns: 90px 1fr;
                align-items: center;
                padding: 18px 0;
                border-right: 0;
                border-bottom: 1px solid rgba(235, 236, 236, 0.18);
            }

            .highlight-box:last-child {
                border-bottom: 0;
            }

            .highlight-number {
                margin: 0;
            }

            .location-grid {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .location-card {
                padding-left: 22px;
            }

            .map-embed {
                width: 100%;
                min-width: 0;
                min-height: 0;
                height: auto;
                aspect-ratio: 4 / 3;
            }

            .map-embed iframe {
                position: absolute;
                inset: 0;
                width: 100%;
                max-width: 100%;
                height: 100%;
            }
        }

        /* ---------- EDITORIAL MOBILE NAVIGATION ---------- */

        body.mobile-menu-open {
            overflow: hidden;
        }

        @media (min-width: 901px) {
            section {
                padding-top: 82px;
                padding-bottom: 82px;
            }

            .section-subtitle {
                margin-bottom: 14px;
            }

            .section-heading {
                margin-bottom: 18px;
            }

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

            .hero,
            .hero-inner {
                min-height: clamp(540px, 62vh, 680px);
            }

            .hero-inner {
                padding-top: 62px;
                padding-bottom: 70px;
            }

            .hero-text {
                margin-bottom: 30px;
            }

            .hero-content {
                transform: translateY(-22px);
            }

            .about-grid {
                column-gap: clamp(52px, 6vw, 86px);
                row-gap: 38px;
            }

            .about-image-wrapper {
                margin-top: 0;
            }

            .about-image-main img {
                min-height: 430px;
            }

            .gallery-grid--preview {
                grid-template-rows: 360px 260px;
            }

            .offer-card {
                min-height: 360px;
                padding-top: 28px;
                padding-bottom: 28px;
            }

            .highlights-inner {
                gap: clamp(52px, 6vw, 86px);
            }

            .highlight-box {
                padding-top: 24px;
                padding-bottom: 24px;
            }

            .testimonial-card {
                min-height: 230px;
                padding-top: 26px;
                padding-bottom: 26px;
            }

            .testimonial-stars {
                margin-bottom: 22px;
            }

            .conversion-strip {
                margin-top: 28px;
                padding-top: 22px;
                padding-bottom: 22px;
            }

            .location-grid {
                gap: clamp(48px, 6vw, 82px);
            }

            .map-embed {
                min-height: 380px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                width: 32px;
                height: 24px;
            }

            .mobile-menu-btn span {
                height: 1px;
                border-radius: 0;
                background: var(--gold-light);
            }

            .mobile-menu-btn span:nth-child(2) {
                top: 11px;
                width: 72%;
                margin-left: 28%;
            }

            .mobile-menu-btn span:nth-child(3) {
                top: 22px;
            }

            .mobile-menu-btn.active {
                position: fixed;
                top: 30px;
                right: 24px;
                transform: none;
            }

            .mobile-menu-btn.active span:nth-child(1) {
                transform: translateY(11px) rotate(45deg);
            }

            .mobile-menu-btn.active span:nth-child(3) {
                transform: translateY(-11px) rotate(-45deg);
            }

            .mobile-menu {
                top: 0;
                right: 0;
                width: min(88vw, 420px);
                max-width: none;
                height: 100dvh;
                padding: 0;
                border-left: 1px solid rgba(var(--gold-rgb), 0.28);
                background: var(--bg-dark-soft);
                box-shadow: none;
                transform: translateX(100%);
                transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
                overscroll-behavior: contain;
            }

            .mobile-menu::before {
                content: "Menu";
                display: block;
                padding: 26px 28px 22px;
                border-bottom: 1px solid rgba(235, 236, 236, 0.12);
                color: var(--gold);
                font-size: 10px;
                font-weight: 700;
                letter-spacing: 0.24em;
                text-transform: uppercase;
            }

            .mobile-menu.open {
                right: 0;
                transform: translateX(0);
            }

            .mobile-menu-overlay {
                background: rgba(0, 0, 0, 0.72);
                backdrop-filter: blur(3px);
                transition: opacity 0.3s ease;
            }

            .mobile-menu>ul {
                gap: 0;
                padding: 22px 28px 42px;
            }

            .mobile-menu>ul>li {
                border-bottom: 1px solid rgba(235, 236, 236, 0.12);
            }

            .mobile-menu>ul>li>a,
            .mobile-menu .mobile-parent-link {
                display: block;
                width: 100%;
                padding: 17px 0;
                font-family: "Playfair Display", "Times New Roman", serif;
                font-size: clamp(23px, 7vw, 30px);
                font-weight: 500;
                line-height: 1.15;
                letter-spacing: -0.015em;
                text-transform: none;
            }

            .mobile-menu a::after {
                display: none;
            }

            .mobile-dropdown-header {
                min-height: 64px;
                gap: 16px;
            }

            .mobile-dropdown-toggle {
                display: grid;
                width: 44px;
                height: 44px;
                flex: 0 0 44px;
                place-items: center;
                color: var(--gold);
            }

            .mobile-dropdown-toggle .arrow {
                width: 8px;
                height: 8px;
                border-width: 1px;
                border-color: var(--gold);
            }

            .mobile-menu .mobile-submenu {
                gap: 0;
                padding: 0 0 0 18px;
                border-left: 1px solid rgba(var(--gold-rgb), 0.4);
            }

            .mobile-menu .mobile-dropdown.open .mobile-submenu {
                max-height: 680px;
                padding-top: 6px;
                padding-bottom: 18px;
            }

            .mobile-submenu li {
                border: 0;
            }

            .mobile-submenu a {
                display: flex;
                width: 100%;
                min-height: 46px;
                align-items: center;
                padding: 11px 10px 11px 14px;
                color: rgba(235, 236, 236, 0.7);
                font-size: 11px;
                font-weight: 700;
                line-height: 1.45;
                letter-spacing: 0.12em;
                text-transform: uppercase;
                touch-action: manipulation;
                transition: color 0.18s ease, background-color 0.18s ease, padding-left 0.18s ease;
            }

            .mobile-submenu li+li {
                border-top: 1px solid rgba(235, 236, 236, 0.07);
            }

            .mobile-submenu a:active,
            .mobile-submenu a:focus-visible {
                padding-left: 18px;
                color: var(--gold-light);
                background: rgba(var(--gold-rgb), 0.08);
                outline: none;
            }
        }
