
        :root {

            --primary: #0A2E6D;
            --gold: #C8A646;
            --white: #ffffff;
            --bg: #F8FAFC;
            --text: #243447;
            --muted: #64748B;
            --border: #E5E7EB;

        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden !important;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
        }

        .mobile-link {
            display: block;
            padding: 14px 0;
            font-size: 18px;
            font-weight: 600;
            color: #0A2E6D;
            transition: .25s;
        }

        .mobile-link:hover {
            color: #C8A646;
            padding-left: 8px;
        }

        .container-custom {
            max-width: 1320px;
            margin: auto;
            padding-inline: 1.5rem;
        }

        @keyframes zoomHero {
            from {
                transform: scale(1.05);
            }

            to {
                transform: scale(1.12);
            }
        }

        .gallery-scroll {
            scrollbar-width: none;
        }

        .gallery-scroll::-webkit-scrollbar {
            display: none;
        }

        .gallery-card {

            flex: 0 0 32%;

            height: 430px;

            cursor: pointer;

            transition: .45s;

            scroll-snap-align: center;

            position: relative;

        }

        .gallery-card:hover {

            transform: translateY(-10px) scale(1.03);

        }

        .gallery-card img {

            width: 100%;

            height: 100%;

            object-fit: cover;

        }

        .cloud {

            clip-path: path("M45 220 C20 140 80 70 170 85 C185 25 275 15 315 75 C390 45 450 100 435 170 C495 185 505 285 430 310 C410 375 320 395 260 360 C180 410 70 380 60 305 C20 295 5 250 45 220Z");

        }

        .circle {
            border-radius: 50%;
        }

        .arch {
            clip-path: path("M50 420 L50 180 C50 70 130 0 250 0 C370 0 450 70 450 180 L450 420 Z");
        }

        .paper {
            clip-path: polygon(3% 2%,
                    96% 0,
                    100% 8%,
                    98% 94%,
                    91% 100%,
                    7% 98%,
                    0 90%,
                    2% 10%);
            transform: rotate(-3deg);
        }

        .flower {
            clip-path: path("M256 35C300 90 380 80 405 150C430 220 385 280 420 340C455 400 385 450 320 425C255 400 220 470 170 435C120 400 45 415 35 345C25 275 90 230 75 170C60 110 105 60 165 75C225 90 215 -5 256 35Z");
        }

        .blob {
            clip-path: path("M69.2,-64.7C90.2,-48.2,107.4,-24.1,107.5,0.1C107.6,24.2,90.7,48.4,69.6,66.5C48.4,84.5,24.2,96.4,-2.3,98.7C-28.8,101,-57.5,93.8,-75.9,75.8C-94.3,57.8,-102.3,28.9,-101.3,1C-100.3,-26.8,-90.4,-53.6,-72,-70.3C-53.6,-87,-26.8,-93.6,-1.4,-92.2C24.1,-90.8,48.2,-81.3,69.2,-64.7Z");
        }


        /* ===========================================
   LIGHTBOX
=========================================== */

        #lightbox {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background: rgba(2, 8, 23, .94);
            backdrop-filter: blur(14px);
            opacity: 0;
            visibility: hidden;
            transition: .35s;
        }

        #lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        #previewImage {
            max-width: min(1200px, 92vw);
            max-height: 88vh;
            border-radius: 24px;
            object-fit: contain;
            box-shadow:
                0 30px 80px rgba(0, 0, 0, .55),
                0 0 0 1px rgba(255, 255, 255, .08);
            transform: scale(.92);
            transition: .35s;
        }

        #lightbox.active #previewImage {
            transform: scale(1);
        }

        /* =========================
   Buttons
========================= */

        .gallery-btn {
            position: absolute;
            width: 58px;
            height: 58px;
            border-radius: 999px;
            border: none;
            background: rgba(255, 255, 255, .12);
            backdrop-filter: blur(10px);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .25s;
        }

        .gallery-btn:hover {
            background: var(--gold);
            color: var(--primary);
            transform: scale(1.08);
        }

        /* Close */

        #closeGallery {
            top: 30px;
            right: 30px;
            color: white;
            font-weight: 900;
            font-size: 20px;
        }

        /* Previous */

        #prevImage {
            left: 35px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-weight: 900;
            font-size: 20px;
        }

        /* Next */

        #nextImage {
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-weight: 900;
            font-size: 20px;
        }

        /* Icons */

        .gallery-btn svg {
            width: 26px;
            height: 26px;
        }

        /* Caption */

        #galleryCaption {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 15px;
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(10px);
            padding: .8rem 1.4rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .08);
        }

        /* Mobile */

        @media (max-width:768px) {

            #lightbox {
                padding: 1rem;
            }

            #previewImage {
                width: 100%;
                max-height: 75vh;
                border-radius: 18px;
            }

            .gallery-btn {
                width: 48px;
                height: 48px;
            }

            #prevImage {
                left: 12px;
            }

            #nextImage {
                right: 12px;
            }

            #closeGallery {
                top: 15px;
                right: 15px;
            }

        }
    