:root {
            /* LUXURY GOLD palette (original design) */
            --bg: #050505;
            --bg-2: #0b0b0d;
            --bg-3: #111214;
            --card: rgba(255,255,255,.05);
            --card-2: rgba(255,255,255,.03);
            --line: rgba(255,255,255,.12);
            --line-soft: rgba(255,255,255,.07);
            --text: #f6f3ee;
            --muted: #b8b4ae;
            --gold: #d7b67a;
            --gold-2: #f0d49b;
            --dark-gold: #8d6a34;
            --wet: #f0d49b;
            --wet-deep: #d7b67a;
            --signal: #d7b67a;
            --signal-2: #f0d49b;
            --accent-green: #25D366;
            --shadow: 0 24px 70px rgba(0,0,0,.45);
            --radius: 26px;
            --radius-sm: 18px;
            --display: 'Inter', Arial, sans-serif;
            --body: 'Inter', Arial, sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }

        body {
            color: var(--text);
            font-family: var(--body);
            line-height: 1.55;
            background: #0b0c0e;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -2;
            background:
                radial-gradient(circle at 20% 15%, rgba(215,182,122,.05), transparent 30%),
                radial-gradient(circle at 80% 10%, rgba(215,182,122,.06), transparent 24%),
                linear-gradient(180deg, #0b0c0e 0%, #0b0c0e 100%);
            pointer-events: none;
        }

        img { display: block; max-width: 100%; }
        a { color: inherit; text-decoration: none; }
        button, input, select, textarea { font: inherit; }

        .container { width: min(1220px, calc(100% - 32px)); margin: 0 auto; }

        h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; letter-spacing: -.03em; }

        .accent { color: var(--gold-2); }
        .accent-signal { color: var(--gold); }

        .gold-text {
            background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 42%, #b98b46 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(28px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 18px rgba(215,182,122,.4); }
            50% { box-shadow: 0 0 32px rgba(215,182,122,.8); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        @keyframes heroReveal {
            from { opacity: 0; transform: scale(1.05); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes borderGlow {
            0%, 100% { border-color: rgba(215,182,122,.15); }
            50% { border-color: rgba(215,182,122,.4); }
        }

        @keyframes navSlide {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes particleFloat {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
        }

        @keyframes luxuryGlow {
            0% { transform: scale(1); box-shadow: 0 0 10px rgba(255,215,0,.35); }
            50% { transform: scale(1.05); box-shadow: 0 0 28px rgba(255,215,0,.9); }
            100% { transform: scale(1); box-shadow: 0 0 10px rgba(255,215,0,.35); }
        }

        @keyframes dashSweep {
            from { stroke-dashoffset: 240; }
            to { stroke-dashoffset: 0; }
        }

        /* PARTICLE BACKGROUND */
        .particles {
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(215,182,122,.3);
            border-radius: 50%;
            animation: particleFloat linear infinite;
        }

        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .stagger-1 { transition-delay: .06s; }
        .stagger-2 { transition-delay: .12s; }
        .stagger-3 { transition-delay: .18s; }
        .stagger-4 { transition-delay: .24s; }

        /* NAV */
        .nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(6,6,6,.78);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--line-soft);
            transition: transform .3s ease;
            animation: navSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .nav.nav-hidden { transform: translateY(-100%); }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 14px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
            font-family: var(--display);
            font-weight: 800;
            font-size: .98rem;
            letter-spacing: .04em;
            text-transform: uppercase;
            white-space: nowrap;
            flex: 0 0 auto;
        }

        .brand-logo {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--line);
            background: #000;
            flex: 0 0 auto;
            transition: transform 0.3s ease;
        }
        .brand:hover .brand-logo { transform: rotate(-5deg) scale(1.05); }
        .brand-logo img { width: 100%; height: 100%; object-fit: cover; }

        .brand-sub {
            font-family: var(--body);
            font-size: .68rem;
            font-weight: 500;
            color: var(--muted);
            letter-spacing: .1em;
            text-transform: none;
            display: block;
            margin-top: 1px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px 20px;
            color: var(--muted);
            font-size: .86rem;
            font-weight: 500;
            flex: 1 1 100%;
            order: 3;
            justify-content: center;
        }

        .nav-links a { position: relative; transition: color .2s ease; white-space: nowrap; }
        .nav-links a:hover, .nav-links a.active { color: var(--text); }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            left: 0; right: 0; bottom: -18px;
            height: 2px;
            background: var(--signal);
        }

        .nav-cta { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

        /* MOBILE NAV BURGER */
        .nav-burger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            border: 1px solid var(--line);
            background: rgba(255,255,255,.04);
            cursor: pointer;
            flex: 0 0 auto;
        }
        .nav-burger span {
            display: block;
            width: 18px;
            height: 2px;
            margin: 0 auto;
            background: var(--text);
            transition: all .25s ease;
        }
        .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-burger.open span:nth-child(2) { opacity: 0; }
        .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-menu {
            position: fixed;
            inset: 0;
            z-index: 150;
            background: rgba(8,9,11,.98);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 32px 28px;
            opacity: 0;
            pointer-events: none;
            transform: translateY(-8px);
            transition: opacity .25s ease, transform .25s ease;
            overflow-y: auto;
        }
        .mobile-menu.open {
            opacity: 1;
            pointer-events: all;
            transform: translateY(0);
        }
        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .mobile-menu-links a {
            padding: 15px 4px;
            font-family: var(--display);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            border-bottom: 1px solid var(--line-soft);
        }
        .mobile-menu-links a.active { color: var(--wet); }
        .mobile-menu-cta {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 28px;
        }
        .mobile-menu-cta .btn { width: 100%; padding: 16px; font-size: 1rem; }
        body.menu-open { overflow: hidden; }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 22px;
            border-radius: 10px;
            cursor: pointer;
            border: 1px solid var(--line);
            background: rgba(255,255,255,.04);
            color: var(--text);
            font-weight: 700;
            font-size: .94rem;
            transition: all .2s ease;
            white-space: nowrap;
        }
        .btn:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.07); }
        .btn:active { transform: translateY(1px); }

        .btn-primary {
            color: #0d0a05;
            border-color: transparent;
            background: linear-gradient(180deg, #f8e6be 0%, #d9b77c 55%, #bb8948 100%);
            box-shadow: 0 14px 34px rgba(215,182,122,.22);
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
            transition: left 0.5s ease;
        }
        .btn-primary:hover::before { left: 100%; }
        .btn-primary:hover { box-shadow: 0 18px 45px rgba(215,182,122,.35); }

        .btn-whatsapp {
            color: #071109;
            border-color: transparent;
            background: linear-gradient(180deg, #3ee683 0%, #22b45d 100%);
        }
        .btn-whatsapp:hover { box-shadow: 0 14px 32px rgba(37,211,102,.35); }

        .btn-ghost {
            background: transparent;
            border-color: var(--line);
            color: var(--muted);
        }
        .btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.3); }

        .btn-call {
            color: #fff;
            border-color: transparent;
            background: linear-gradient(180deg, #3ee683 0%, #22b45d 100%);
            box-shadow: 0 10px 26px rgba(34,180,93,.3);
        }
        .btn-call:hover { box-shadow: 0 14px 32px rgba(34,180,93,.45); }

        /* HERO */
        .hero { padding: 28px 0 20px; }

        .hero-shell {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            border: 1px solid var(--line);
            box-shadow: var(--shadow);
            animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hero-shell::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(6,7,9,.88) 0%, rgba(6,7,9,.5) 45%, rgba(6,7,9,.18) 100%);
            z-index: 1;
        }

        .hero-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 26px;
            align-items: stretch;
            min-height: 660px;
            padding: 40px;
        }

        .hero-media { position: absolute; inset: 0; z-index: 0; }
        .hero-media img, .hero-media video {
            width: 100%; height: 100%; object-fit: cover;
            filter: saturate(1.05) contrast(1.03);
            transition: transform 8s ease;
        }
        .hero-shell:hover .hero-media img, .hero-shell:hover .hero-media video { transform: scale(1.03); }

        .hero-copy { position: relative; display: flex; flex-direction: column; justify-content: space-between; max-width: 680px; }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            width: max-content;
            padding: 9px 14px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,.16);
            background: rgba(10,11,13,.5);
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .14em;
            font-size: .72rem;
            font-weight: 700;
            animation: fadeInDown 0.8s 0.2s both;
        }
        .eyebrow::before {
            content: "";
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--signal);
            box-shadow: 0 0 12px rgba(215,182,122,.8);
            animation: pulse 2s infinite;
        }

        h1 {
            margin: 16px 0 16px;
            font-size: clamp(2.6rem, 5.6vw, 5.4rem);
            line-height: .96;
            letter-spacing: -.03em;
            max-width: 720px;
            animation: fadeInUp 0.9s 0.3s both;
        }

        h1 .line2 { color: var(--wet); }

        .hero p.lead {
            margin: 0 0 24px;
            color: #ddd4c8;
            max-width: 560px;
            font-size: 1.08rem;
            animation: fadeInUp 0.9s 0.45s both;
        }

        .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; animation: fadeInUp 0.9s 0.55s both; }

        .trust-bar { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 14px; }

        .trust-item {
            padding: 16px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--line);
            background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
            box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
            backdrop-filter: blur(6px);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s both;
        }
        .trust-item:nth-child(1) { animation-delay: 0.6s; }
        .trust-item:nth-child(2) { animation-delay: 0.7s; }
        .trust-item:nth-child(3) { animation-delay: 0.8s; }
        .trust-item:hover {
            transform: translateY(-3px);
            border-color: rgba(215,182,122,.25);
            box-shadow: 0 12px 30px rgba(0,0,0,.3);
        }
        .trust-item strong { display: block; font-family: var(--display); font-size: 1.05rem; margin-bottom: 4px; }
        .trust-item span { color: var(--muted); font-size: .88rem; }

        .hero-side { display: grid; align-content: end; gap: 14px; }

        .floating-card, .mini-gallery, .card, .split-copy, .split-visual,
        .review, .coverage-box, .booking-box, .contact-panel, .cta-shell {
            background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
            border: 1px solid var(--line);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            backdrop-filter: blur(8px);
        }

        .floating-card {
            padding: 20px;
            animation: fadeInRight 0.9s 0.5s both;
            transition: all 0.4s ease;
        }
        .floating-card:hover { transform: translateY(-4px); border-color: rgba(215,182,122,.3); }
        .floating-label { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); font-weight: 700; margin-bottom: 8px; }
        .floating-card h3 { margin: 0 0 8px; font-size: 1.3rem; font-family: var(--display); }
        .floating-card p { margin: 0; color: #ddd4c8; font-size: .94rem; }
        .floating-price {
            display: inline-flex;
            margin-top: 14px;
            padding: 10px 14px;
            border-radius: 8px;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.11);
            color: #fff4de;
            font-weight: 700;
            font-size: .92rem;
            animation: borderGlow 3s infinite;
        }

        .mini-gallery { padding: 10px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; animation: fadeInRight 0.9s 0.7s both; }
        .mini-gallery figure { margin: 0; overflow: hidden; border-radius: 12px; aspect-ratio: 1/1; border: 1px solid var(--line); background: #0a0a0a; }
        .mini-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1); }
        .mini-gallery figure:hover img { transform: scale(1.08); }

        /* SECTIONS */
        section { padding: 40px 0; }
        .section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; }
        .section-heading h2 { margin: 0; font-size: clamp(1.9rem, 3.2vw, 3rem); }
        .section-heading p { margin: 0; color: var(--muted); max-width: 560px; }
        .eyebrow-sm {
            display: inline-block;
            font-size: .74rem;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--signal);
            margin-bottom: 8px;
        }

        /* SIGNATURE STRIP */
        .signature-box {
            padding: 20px 24px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0,1fr));
            gap: 16px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
        }
        .signature-metric { border-right: 1px solid var(--line-soft); padding-right: 14px; transition: all 0.3s ease; }
        .signature-metric:last-child { border-right: none; }
        .signature-metric:hover { transform: translateY(-2px); }
        .signature-metric strong { display: block; font-family: var(--display); font-size: 1.5rem; margin-bottom: 4px; color: var(--wet); }
        .signature-metric span { color: var(--muted); font-size: .9rem; }

        /* SERVICE CARDS */
        .cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
        .card {
            position: relative; overflow: hidden; padding: 24px; min-height: 250px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .card::after {
            content: "";
            position: absolute;
            top: -40px; right: -40px;
            width: 120px; height: 120px;
            background: radial-gradient(circle, rgba(215,182,122,.24), transparent 68%);
            pointer-events: none;
            transition: all 0.4s ease;
        }
        .card:hover {
            transform: translateY(-6px);
            border-color: rgba(215,182,122,.3);
            box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 40px rgba(215,182,122,.08);
        }
        .card:hover::after { width: 180px; height: 180px; background: radial-gradient(circle, rgba(215,182,122,.35), transparent 68%); }
        .card.premium-highlight { border-color: rgba(215,182,122,.4); }
        .card .icon {
            width: 42px; height: 42px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
            margin-bottom: 14px; font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .card:hover .icon { transform: scale(1.1) rotate(-5deg); border-color: rgba(215,182,122,.3); }
        .card h3 { margin: 0 0 4px; font-size: 1.18rem; font-family: var(--display); }
        .service-price {
            font-family: var(--display); font-size: 1.7rem; font-weight: 800; margin: 6px 0 10px;
            background: linear-gradient(180deg, #fff, var(--gold-2));
            -webkit-background-clip: text; background-clip: text; color: transparent;
        }
        .price-sub { display: block; font-family: var(--body, sans-serif); font-size: .74rem; font-weight: 600; letter-spacing: .02em; color: var(--muted); -webkit-text-fill-color: var(--muted); margin-top: 2px; }
        .card p { margin: 0 0 14px; color: var(--muted); font-size: .94rem; }
        .list { margin: 0; padding-left: 16px; color: #e6e0d8; font-size: .92rem; }
        .list li + li { margin-top: 7px; }
        .list li { transition: transform 0.2s ease; }
        .card:hover .list li { transform: translateX(3px); }
        .luxury-popular-badge {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 999px;
            background: linear-gradient(135deg,#f5d38a,#b8892d,#f5d38a);
            color: #111;
            font-weight: 800;
            letter-spacing: 1px;
            font-size: .68rem;
            text-transform: uppercase;
            margin-bottom: 6px;
            box-shadow: 0 0 12px rgba(255,215,0,.55);
            animation: luxuryGlow 2s ease-in-out infinite;
        }

        /* SPLIT SECTIONS */
        .split-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: 20px; align-items: stretch; }
        .split-copy, .split-visual, .coverage-box, .booking-box, .contact-panel, .cta-shell { padding: 26px; }
        .split-copy p, .coverage-box p, .booking-box p, .contact-panel p { color: var(--muted); }
        .benefits { margin-top: 16px; display: grid; gap: 10px; }
        .benefit { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 15px 16px; background: rgba(255,255,255,.03); transition: all .2s ease; }
        .benefit:hover { border-color: rgba(215,182,122,.3); background: rgba(215,182,122,.05); }
        .benefit strong { display: block; margin-bottom: 3px; font-family: var(--display); font-size: .98rem; }
        .benefit p { color: var(--muted); font-size: .92rem; margin: 0; }

        .visual-stack { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; height: 100%; }
        .visual-stack figure { margin: 0; overflow: hidden; border-radius: 18px; border: 1px solid var(--line); background: #090909; }
        .visual-stack .tall { aspect-ratio: .9/1.08; }
        .visual-stack .small { aspect-ratio: 1/1; }
        .visual-stack img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
        .visual-stack figure:hover img { transform: scale(1.05); }
        .stack-right { display: grid; gap: 12px; }

        /* GALLERY */
        .gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
        .gallery-item {
            position: relative; margin: 0; overflow: hidden;
            border-radius: 18px; background: #0b0b0b;
            border: 1px solid var(--line); min-height: 210px;
            transition: all .3s ease;
        }
        .gallery-item:hover { transform: translateY(-3px); }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
        .gallery-item:hover img { transform: scale(1.05); }
        .gallery-item figcaption {
            position: absolute; left: 12px; bottom: 12px; right: 12px;
            padding: 9px 12px; border-radius: 8px;
            background: rgba(10,11,13,.72); border: 1px solid rgba(255,255,255,.12);
            color: #f0f0f0; font-size: .84rem; width: max-content; max-width: calc(100% - 24px);
            backdrop-filter: blur(6px);
        }
        .span-5 { grid-column: span 5; } .span-4 { grid-column: span 4; }
        .span-3 { grid-column: span 3; } .span-6 { grid-column: span 6; }

        /* BEFORE/AFTER SLIDER */
        .ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
        .ba-pair { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: #0b0b0b; }
        .ba-slider {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            cursor: ew-resize;
            user-select: none;
            touch-action: none;
        }
        .ba-slider img {
            position: absolute; inset: 0;
            width: 100%; height: 100%; object-fit: cover;
            pointer-events: none;
        }
        .ba-slider .ba-after-wrap {
            position: absolute; inset: 0;
            left: auto;
            overflow: hidden;
            width: 50%;
        }
        .ba-slider .ba-after-wrap img {
            position: absolute;
            top: 0; right: 0;
            height: 100%;
        }
        .ba-slider .ba-handle {
            position: absolute; top: 0; bottom: 0; left: 50%;
            width: 3px; background: #fff;
            transform: translateX(-50%);
            box-shadow: 0 0 12px rgba(0,0,0,.5);
        }
        .ba-slider .ba-handle::after {
            content: '⟺';
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 40px; height: 40px;
            background: #fff; color: #111;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem; font-weight: 800;
            box-shadow: 0 4px 16px rgba(0,0,0,.4);
        }
        .ba-slider .ba-tag {
            position: absolute; top: 12px; z-index: 3;
            padding: 5px 12px; border-radius: 6px;
            font-size: .72rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: .06em; color: #fff;
        }
        .ba-slider .ba-tag.before { left: 12px; background: rgba(140,45,35,.85); }
        .ba-slider .ba-tag.after { right: 12px; background: rgba(24,104,196,.85); }
        .ba-caption { padding: 14px 18px; text-align: center; color: var(--wet); font-weight: 600; font-size: .96rem; border-top: 1px solid var(--line); }

        /* REVIEWS */
        .reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
        .review { padding: 20px; transition: all .3s ease; }
        .review:hover { border-color: rgba(215,182,122,.25); }
        .stars { letter-spacing: .2em; color: var(--signal); margin-bottom: 8px; font-size: .92rem; }
        .review p { margin: 0 0 14px; color: #D6D9DD; font-size: .93rem; }
        .review strong { display: block; font-family: var(--display); font-size: .95rem; }
        .review span { color: var(--muted); font-size: .84rem; }

        /* FAQ */
        .faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
        .faq-item {
            border: 1px solid var(--line);
            border-radius: var(--radius-sm);
            background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
            overflow: hidden;
            transition: border-color .2s ease;
        }
        .faq-item:hover { border-color: rgba(215,182,122,.3); }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 22px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: var(--display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
        }
        .faq-toggle {
            flex: 0 0 auto;
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--gold-2);
            transition: transform .25s ease;
        }
        .faq-item.open .faq-toggle { transform: rotate(45deg); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease;
        }
        .faq-answer p {
            padding: 0 22px 20px;
            margin: 0;
            color: var(--muted);
            font-size: .94rem;
            line-height: 1.6;
        }

        /* COVERAGE */
        .coverage-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
        .coverage-map { margin-top: 20px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
        .boroughs-map { display: block; width: 100%; height: auto; }
        .boroughs-map .boro {
            fill: url(#boroFill);
            stroke: rgba(215,182,122,.35);
            stroke-width: 1.2;
            transition: fill .2s ease, stroke .2s ease;
        }
        .boroughs-map a:hover .boro,
        .boroughs-map a:focus .boro {
            fill: rgba(215,182,122,.22);
            stroke: var(--gold-2);
        }
        .boroughs-map text {
            fill: #cdd6e0;
            font-family: var(--body, sans-serif);
            font-size: 11px;
            font-weight: 600;
            pointer-events: none;
        }
        .boroughs-map a:hover text,
        .boroughs-map a:focus text { fill: var(--gold-2); }
        .tag {
            padding: 10px 15px; border-radius: 8px; font-weight: 700; font-size: .88rem;
            background: rgba(255,255,255,.04); border: 1px solid var(--line); transition: all .2s ease;
        }
        .tag:hover { border-color: rgba(215,182,122,.35); color: var(--wet); }

        /* BOOKING */
        .booking-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 18px; align-items: start; }
        .service-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
        .service-pill {
            padding: 9px 13px; border-radius: 8px; background: rgba(255,255,255,.04);
            border: 1px solid var(--line); color: #D6D9DD; font-weight: 600; font-size: .88rem;
            cursor: pointer; transition: all .2s ease;
        }
        .service-pill:hover, .service-pill.active { border-color: var(--wet); background: rgba(215,182,122,.1); color: var(--wet); }

        .quick-points { display: grid; gap: 10px; margin-top: 16px; }
        .quick-point { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; background: rgba(255,255,255,.03); }
        .quick-point strong { display: block; margin-bottom: 3px; color: var(--wet); font-family: var(--display); font-size: .92rem; }
        .quick-point p { color: var(--muted); font-size: .88rem; margin: 0; }

        /* MULTI-STEP FORM */
        .form-progress { display: flex; gap: 6px; margin-bottom: 20px; }
        .form-progress-step { flex: 1; height: 4px; border-radius: 4px; background: var(--line); transition: background .3s ease; }
        .form-progress-step.done { background: var(--wet); }

        .form-step { display: none; }
        .form-step.active { display: block; animation: fadeUp .4s ease both; }

        .step-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: 14px; }

        .booking-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
        .field label { display: block; margin-bottom: 7px; font-size: .88rem; font-weight: 600; color: #D6D9DD; }
        .field input, .field select, .field textarea {
            width: 100%; border-radius: 10px; padding: 13px 14px; outline: none;
            border: 1px solid var(--line); background: rgba(255,255,255,.04); color: var(--text);
            transition: all .2s ease; font-size: .95rem;
        }
        .field input:focus, .field select:focus, .field textarea:focus {
            border-color: var(--wet); box-shadow: 0 0 0 3px rgba(215,182,122,.15);
        }
        .field select option { background: #1a1a1a; color: var(--text); }
        .field textarea { min-height: 90px; resize: vertical; }
        .field.full { grid-column: 1/-1; }

        .service-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 4px; }
        .service-choice {
            border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px;
            cursor: pointer; transition: all .2s ease; background: rgba(255,255,255,.02);
        }
        .service-choice:hover { border-color: rgba(215,182,122,.35); }
        .service-choice.selected { border-color: var(--wet); background: rgba(215,182,122,.08); }
        .legal-body { color: #d6d9dd; font-size: .96rem; line-height: 1.7; }
        .legal-body h2 { font-family: var(--display); font-size: 1.2rem; margin: 28px 0 8px; color: #fff; }
        .legal-body p { margin: 0 0 14px; }
        .legal-body a { color: var(--wet); }
        .article-body h2 { margin-top: 30px; }
        .article-body .list { margin: 0 0 16px; }
        .article-body .list li { margin-bottom: 8px; color: #e6e0d8; }

        /* Breadcrumbs */
        .crumbs { font-size: .8rem; color: var(--muted); margin-bottom: 14px; }
        .crumbs a { color: var(--muted); text-decoration: none; }
        .crumbs a:hover { color: var(--wet); }
        .crumbs span { color: #cdd6e0; }

        /* Blog post grid */
        .post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
        .post-card { display: block; padding: 24px; border-radius: 16px; background: rgba(255,255,255,.03); border: 1px solid var(--line); text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
        .post-card:hover { border-color: rgba(215,182,122,.4); transform: translateY(-3px); }
        .post-eyebrow { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
        .post-card h3 { font-family: var(--display); margin: 10px 0 8px; color: #fff; font-size: 1.15rem; line-height: 1.3; }
        .post-card p { color: var(--muted); font-size: .92rem; margin: 0 0 14px; }
        .post-more { color: var(--wet); font-weight: 600; font-size: .88rem; }

        /* Footer trust badges + nav */
        .footer-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 20px; }
        .footer-badge { font-size: .78rem; font-weight: 600; color: #d6d9dd; padding: 7px 14px; border-radius: 999px; background: rgba(215,182,122,.08); border: 1px solid rgba(215,182,122,.22); white-space: nowrap; }
        .footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin-bottom: 22px; }
        .footer-nav a { color: var(--muted); text-decoration: none; font-size: .84rem; }
        .footer-nav a:hover { color: var(--wet); }
        .service-choice strong { display: block; font-family: var(--display); font-size: .94rem; margin-bottom: 2px; }
        .service-choice span { color: var(--muted); font-size: .82rem; }

        .step-actions { display: flex; gap: 10px; margin-top: 22px; justify-content: space-between; }
        .step-actions .btn { flex: 1; }

        .booking-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
        .booking-note { margin-top: 12px; color: var(--muted); font-size: .86rem; }

        /* MODAL */
        .modal-overlay {
            position: fixed; inset: 0; z-index: 1000;
            background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; transition: opacity .3s ease; padding: 20px;
        }
        .modal-overlay.active { opacity: 1; pointer-events: all; }
        .modal {
            background: linear-gradient(180deg, #16171b, #0e0f12);
            border: 1px solid var(--line); border-radius: 20px; padding: 32px;
            max-width: 460px; width: 100%;
            transform: scale(.92) translateY(16px); transition: transform .35s cubic-bezier(.16,1,.3,1);
        }
        .modal-overlay.active .modal { transform: scale(1) translateY(0); }
        .modal-icon {
            width: 58px; height: 58px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; font-size: 26px;
            margin: 0 auto 16px;
            background: rgba(215,182,122,.12); border: 1px solid rgba(215,182,122,.3);
            color: var(--wet);
        }
        .modal h3 { text-align: center; font-size: 1.3rem; margin: 0 0 8px; }
        .modal p { text-align: center; color: var(--muted); margin: 0 0 6px; }
        .modal .booking-id {
            text-align: center; font-family: monospace; color: var(--wet);
            background: rgba(255,255,255,.04); border: 1px solid var(--line);
            border-radius: 10px; padding: 9px 12px; margin: 12px 0; font-size: .88rem;
        }
        .modal-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
        .modal-actions .btn { flex: 1; min-width: 130px; }
        .modal-error .modal-icon { background: rgba(215,182,122,.12); border-color: rgba(215,182,122,.3); color: var(--signal); }

        .btn-loading { pointer-events: none; position: relative; }
        .btn-loading .btn-text { opacity: 0; }
        .btn-loading::after {
            content: ''; position: absolute; width: 18px; height: 18px;
            border: 2px solid transparent; border-top-color: currentColor;
            border-radius: 50%; animation: spin .6s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* CTA */
        .cta-shell { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; align-items: start; }

        /* FOOTER */
        .footer { padding: 22px 0 40px; margin-top: 8px; color: var(--muted); border-top: 1px solid var(--line-soft); }
        .social-links { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 14px; }
        .social-links a {
            display: flex; align-items: center; justify-content: center;
            width: 42px; height: 42px; border-radius: 50%;
            background: rgba(255,255,255,.05); border: 1px solid var(--line);
            color: var(--muted); transition: all .2s ease;
        }
        .social-links a:hover { background: var(--wet); color: #061019; border-color: var(--wet); }
        .social-links a svg { width: 20px; height: 20px; }

        /* FLOATING CONTACT STACK */
        .floating-contact-stack {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 200;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
        }

        .floating-pill {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 11px 18px 11px 11px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,.14);
            box-shadow: 0 12px 28px rgba(0,0,0,.4);
            transition: all .2s ease;
            font-family: var(--display);
            font-weight: 700;
            font-size: .88rem;
            white-space: nowrap;
        }
        .floating-pill:hover { transform: translateX(-4px) scale(1.03); }

        .floating-pill .pill-icon {
            width: 34px; height: 34px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex: 0 0 auto;
            background: rgba(255,255,255,.16);
        }
        .floating-pill .pill-icon svg { width: 17px; height: 17px; }

        .pill-call {
            color: #fff;
            background: linear-gradient(180deg, #4a9eff 0%, #2571d6 100%);
        }
        .pill-book {
            color: #0d0a05;
            background: linear-gradient(180deg, #f8e6be 0%, #d9b77c 55%, #bb8948 100%);
        }
        .pill-whatsapp {
            color: #071109;
            background: linear-gradient(180deg, #3ee683 0%, #22b45d 100%);
        }
        .pill-book .pill-icon { background: rgba(0,0,0,.12); }

        /* RESPONSIVE */
        @media (max-width: 1120px) {
            .hero-grid, .cards, .split-section, .booking-layout, .reviews-grid, .cta-shell {
                grid-template-columns: 1fr;
            }
            .hero-shell::before {
                background: linear-gradient(180deg, rgba(6,7,9,.7) 0%, rgba(6,7,9,.3) 40%, rgba(6,7,9,.86) 100%);
            }
            .hero-grid { min-height: auto; }
            .signature-box { grid-template-columns: repeat(2, minmax(0,1fr)); }
            .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
            .trust-bar { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .span-5, .span-4, .span-3, .span-6 { grid-column: span 1; }
            .ba-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .nav-burger { display: flex; }
        }

        @media (max-width: 760px) {
            .container { width: min(100% - 20px, 1220px); }
            .hero { padding-top: 14px; }
            .hero-grid { padding: 20px; gap: 16px; }
            .hero-actions, .booking-actions, .modal-actions { flex-direction: column; }
            .hero-actions .btn, .booking-actions .btn, .modal-actions .btn { width: 100%; }
            .booking-grid, .cards, .reviews-grid, .signature-box, .service-choice-grid { grid-template-columns: 1fr; }
            .signature-metric { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line-soft); padding-bottom: 12px; }
            .signature-metric:last-child { border-bottom: none; padding-bottom: 0; }
            .visual-stack { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr; }
            .mini-gallery { grid-template-columns: repeat(2, 1fr); }
            .brand-sub { display: none; }
            .brand { font-size: .88rem; }
            .brand-logo { width: 38px; height: 38px; }
            .nav-cta { gap: 6px; }
            .nav-cta .btn {
                padding: 8px 12px;
                font-size: .78rem;
                border-radius: 8px;
            }
            .nav-burger { width: 36px; height: 36px; }
        }

        @media (max-width: 400px) {
            .nav-cta .btn { padding: 8px 9px; font-size: .72rem; }
        }

        @media (max-width: 520px) {
            h1 { font-size: clamp(2.2rem, 12vw, 3rem); }
            .btn { width: 100%; }
            .booking-grid, .mini-gallery { grid-template-columns: 1fr; }
            .floating-contact-stack { right: 14px; bottom: 14px; gap: 8px; }
            .floating-pill { padding: 10px; border-radius: 50%; }
            .floating-pill .pill-label { display: none; }
            .floating-pill .pill-icon { width: 32px; height: 32px; background: transparent; }
            .hero-shell { border-radius: 18px; }
            .hero-grid { padding: 16px; }
            .step-actions { flex-direction: column; }
        }
