        :root {
            --saffron: #FF6A00;
            --saffron-d: #E05500;
            --gold: #E8A020;
            --gold-l: #FFC84A;
            --crimson: #C0392B;
            --royalblue: #0A4E8A;
            --skyblue: #1E88E5;
            --cream: #FFFBF4;
            --cream2: #FFF5E6;
            --warm: #FEFCF8;
            --sand: #F5EDD8;
            --dark: #1A0A00;
            --text: #2D1A00;
            --mid: #6B4C2A;
            --light: #9A7550;
            --bdr: rgba(232, 160, 32, 0.2);
            --bdr-s: rgba(255, 106, 0, 0.28);
            --shad: 0 8px 40px rgba(45, 26, 0, 0.1);
            --shad-w: 0 20px 60px rgba(255, 106, 0, 0.12);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--cream);
            color: var(--text);
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 5px;
        }

        ::-webkit-scrollbar-track {
            background: var(--sand);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--saffron), var(--gold));
            border-radius: 3px;
        }

        /* LOADER */
        #loader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            background: var(--warm);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 18px;
        }

        .ld-ring {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid var(--sand);
            border-top-color: var(--saffron);
            border-right-color: var(--gold);
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        .ld-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--saffron);
        }

        .ld-sub {
            font-size: .7rem;
            letter-spacing: 3px;
            color: var(--light);
            text-transform: uppercase;
        }

        /* CURSOR */
        #cur {
            width: 12px;
            height: 12px;
            background: var(--saffron);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            mix-blend-mode: multiply;
            transition: width .2s, height .2s, background .2s;
        }

        #cur.big {
            width: 32px;
            height: 32px;
            background: rgba(255, 106, 0, 0.16);
            border: 2px solid var(--saffron);
        }

        /* NAV */
        #nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 72px;
            padding: 0 52px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all .35s;
        }

        #nav.sc {
            background: rgba(254, 252, 248, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--bdr);
            box-shadow: 0 4px 28px rgba(255, 106, 0, 0.07);
            height: 64px;
        }

        .n-logo {
            display: flex;
            align-items: center;
            gap: 11px;
            text-decoration: none;
        }

        .n-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .95rem;
            color: #fff;
            box-shadow: 0 4px 14px rgba(255, 106, 0, 0.32);
        }

        .n-top {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--saffron);
            line-height: 1;
        }

        .n-bot {
            font-size: .56rem;
            letter-spacing: 3px;
            color: var(--light);
            text-transform: uppercase;
        }

        .n-links {
            display: flex;
            align-items: center;
            gap: 34px;
        }

        .n-links a {
            font-size: .84rem;
            font-weight: 500;
            color: var(--mid);
            text-decoration: none;
            transition: color .25s;
            position: relative;
        }

        .n-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--saffron);
            transition: width .28s;
            border-radius: 2px;
        }

        .n-links a:hover {
            color: var(--saffron);
        }

        .n-links a:hover::after {
            width: 100%;
        }

        .n-r {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .n-ph {
            font-size: .8rem;
            font-weight: 600;
            color: var(--mid);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .n-ph i {
            color: var(--saffron);
        }

        .btn-book {
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            color: #fff;
            font-weight: 700;
            font-size: .8rem;
            padding: 10px 22px;
            border-radius: 100px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 22px rgba(255, 106, 0, 0.3);
            transition: all .25s;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
        }

        .btn-book:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(255, 106, 0, 0.42);
        }

        #ham {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.35rem;
            color: var(--text);
        }

        /* MOBILE MENU */
        #mm {
            position: fixed;
            inset: 0;
            z-index: 1300;
            background: var(--warm);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 26px;
            transform: translateX(100%);
            transition: transform .4s cubic-bezier(.25, .46, .45, .94);
        }

        #mm.on {
            transform: translateX(0);
        }

        #mmClose {
            position: absolute;
            top: 20px;
            right: 22px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 1px solid var(--bdr);
            background: #fff;
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            cursor: pointer;
            box-shadow: 0 10px 28px rgba(45, 26, 0, 0.12);
        }

        #mmClose:hover {
            color: var(--saffron);
        }

        .ml {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
            transition: color .25s;
        }

        .ml:hover {
            color: var(--saffron);
        }

        /* HERO */
        #hero {
            position: relative;
            height: 100vh;
            min-height: 680px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hbg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.4s ease;
        }

        .hbg.on {
            opacity: 1;
        }

        .hgrad {
            position: absolute;
            inset: 0;
            background: linear-gradient(108deg, rgba(255, 252, 248, 0.97) 0%, rgba(255, 245, 230, 0.84) 36%, rgba(255, 252, 248, 0.22) 64%, rgba(255, 252, 248, 0) 100%);
        }

        .hbody {
            position: relative;
            z-index: 2;
            padding: 0 64px;
            max-width: 700px;
        }

        .hchip {
            
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: linear-gradient(135deg, rgba(255, 106, 0, 0.09), rgba(232, 160, 32, 0.09));
            border: 1px solid rgba(255, 106, 0, 0.22);
            color: var(--saffron);
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            padding: 7px 17px;
            border-radius: 100px;
            margin-bottom: 18px;
            opacity: 0;
        }

        .hh1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 700;
            line-height: 1.02;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .hh1 em {
            font-style: italic;
            color: var(--saffron);
        }

        .hsub {
            font-size: 1rem;
            color: var(--mid);
            line-height: 1.78;
            max-width: 460px;
            margin-bottom: 34px;
        }

        .hact {
            display: flex;
            gap: 13px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .btn-p {
            background: linear-gradient(135deg, var(--saffron), #FF8C00);
            color: #fff;
            font-weight: 700;
            font-size: .88rem;
            padding: 14px 30px;
            border-radius: 100px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 26px rgba(255, 106, 0, 0.32);
            transition: all .28s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-p:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 34px rgba(255, 106, 0, 0.44);
        }

        .btn-o {
            background: #fff;
            border: 2px solid rgba(255, 106, 0, 0.28);
            color: var(--saffron);
            font-weight: 700;
            font-size: .88rem;
            padding: 13px 28px;
            border-radius: 100px;
            text-decoration: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all .28s;
            box-shadow: 0 4px 14px rgba(255, 106, 0, 0.07);
        }

        .btn-o:hover {
            background: rgba(255, 106, 0, 0.05);
            border-color: var(--saffron);
            transform: translateY(-2px);
        }

        .dest-view-btn {
            font-family: inherit;
        }

        .hstats {
            display: flex;
            background: #fff;
            border-radius: 18px;
            border: 1px solid var(--bdr);
            box-shadow: var(--shad);
            overflow: hidden;
            width: fit-content;
        }

        .hstat {
            padding: 17px 26px;
            text-align: center;
            border-right: 1px solid var(--bdr);
        }

        .hstat:last-child {
            border-right: none;
        }

        .hstat-n {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--saffron);
            line-height: 1;
        }

        .hstat-l {
            font-size: .68rem;
            color: var(--light);
            font-weight: 500;
            letter-spacing: .5px;
            margin-top: 3px;
        }

        .hdots {
            position: absolute;
            right: 52px;
            bottom: 44px;
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .hd {
            width: 4px;
            height: 26px;
            border-radius: 4px;
            background: rgba(255, 106, 0, 0.18);
            border: none;
            cursor: pointer;
            transition: all .3s;
        }

        .hd.on {
            background: var(--saffron);
            height: 42px;
        }

        .scroll-i {
            position: absolute;
            left: 64px;
            bottom: 38px;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 11px;
            color: var(--light);
            font-size: .68rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .scroll-i-line {
            width: 44px;
            height: 1px;
            background: linear-gradient(90deg, var(--saffron), transparent);
        }

        .hthumbs {
            position: absolute;
            right: 80px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .htmb {
            width: 124px;
            height: 86px;
            border-radius: 14px;
            overflow: hidden;
            border: 3px solid #fff;
            box-shadow: 0 8px 24px rgba(45, 26, 0, 0.16);
            cursor: pointer;
            transition: all .3s;
        }

        .htmb:hover {
            transform: scale(1.07);
        }

        .htmb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* SECTIONS */
        section {
            padding: 96px 52px;
        }

        .ctr {
            max-width: 1240px;
            margin: 0 auto;
        }

        .sh {
            text-align: center;
            margin-bottom: 60px;
        }

        .sc {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: linear-gradient(135deg, rgba(255, 106, 0, 0.07), rgba(232, 160, 32, 0.07));
            border: 1px solid rgba(255, 106, 0, 0.18);
            color: var(--saffron);
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            padding: 6px 15px;
            border-radius: 100px;
            margin-bottom: 13px;
        }

        .sh2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.9rem, 4vw, 3.3rem);
            font-weight: 700;
            color: var(--dark);
            line-height: 1.1;
        }

        .sh2 span {
            color: var(--saffron);
        }

        .sd {
            font-size: .92rem;
            color: var(--mid);
            line-height: 1.8;
            max-width: 520px;
            margin: 13px auto 0;
        }

        @keyframes imageShimmer {
            0% {
                background-position: 180% 0;
            }

            100% {
                background-position: -180% 0;
            }
        }

        .dc.is-loading::before,
        .gi.is-loading::before,
        .piw.is-loading::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 4;
            pointer-events: none;
            background: linear-gradient(110deg,
                    rgba(255, 251, 244, 0.82) 0%,
                    rgba(255, 238, 206, 0.94) 38%,
                    rgba(255, 255, 255, 0.98) 50%,
                    rgba(255, 238, 206, 0.94) 62%,
                    rgba(255, 251, 244, 0.82) 100%);
            background-size: 220% 100%;
            animation: imageShimmer 1.15s ease-in-out infinite;
        }

        .dc.is-loading img,
        .gi.is-loading img,
        .piw.is-loading img {
            opacity: 0;
        }

        .dc.is-loaded img,
        .gi.is-loaded img,
        .piw.is-loaded img {
            opacity: 1;
        }

        /* DESTINATIONS */
        #dest {
            background: var(--warm);
        }

        .dgrid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 220px;
            gap: 16px;
        }

        .dc {
            position: relative;
            border-radius: 22px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shad);
            transition: transform .36s, box-shadow .36s;
        }

        .dc:hover {
            transform: translateY(-7px);
            box-shadow: 0 26px 56px rgba(45, 26, 0, 0.17);
        }

        .dc.tall {
            grid-row: span 2;
        }

        .dc.wide {
            grid-column: span 2;
        }

        .dc img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity .45s ease, transform .55s;
        }

        .dc.image-missing {
            background: linear-gradient(135deg, var(--saffron), var(--gold));
        }

        .dc.image-missing img {
            display: none;
        }

        .dc:hover img {
            transform: scale(1.1);
        }

        .dov {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 10, 0, 0.85) 0%, rgba(26, 10, 0, 0.18) 55%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            transition: background .35s;
        }

        .dc:hover .dov {
            background: linear-gradient(to top, rgba(192, 57, 43, 0.82) 0%, rgba(255, 106, 0, 0.18) 55%, transparent 100%);
        }

        .dtag {
            display: inline-block;
            background: rgba(255, 200, 74, 0.22);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 200, 74, 0.4);
            color: #FFD54F;
            font-size: .62rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 100px;
            margin-bottom: 6px;
        }

        .dname {
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
        }

        .dfrom {
            font-size: .75rem;
            color: rgba(255, 255, 255, 0.62);
            margin-top: 3px;
        }

        .dgo {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: .78rem;
            opacity: 0;
            transform: scale(.7) rotate(-45deg);
            transition: all .28s;
        }

        .dc:hover .dgo {
            opacity: 1;
            transform: scale(1) rotate(0);
        }

        /* PACKAGES */
        #pkg {
            background: linear-gradient(155deg, var(--cream) 0%, var(--cream2) 100%);
            position: relative;
        }

        #pkg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
        }

        .pgrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            align-items: start;
        }

        .pc {
            background: #fff;
            border-radius: 22px;
            overflow: hidden;
            border: 1px solid rgba(232, 160, 32, 0.14);
            box-shadow: var(--shad);
            transition: all .36s;
            position: relative;
        }

        .pc:hover {
            transform: translateY(-10px);
            box-shadow: 0 28px 60px rgba(255, 106, 0, 0.14);
            border-color: rgba(255, 106, 0, 0.25);
        }

        .piw {
            overflow: hidden;
            position: relative;
            aspect-ratio: 1200 / 617;
        }

        .piw.tour-poster {
            background: var(--cream2);
        }

        .piw.tour-poster .pi {
            object-position: center top;
        }

        .pi {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity .45s ease, transform .5s;
        }

        .pc:hover .pi {
            transform: none;
        }

        .pbadge {
            position: absolute;
            top: 13px;
            left: 13px;
            z-index: 2;
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            color: #fff;
            font-size: .64rem;
            font-weight: 800;
            padding: 4px 13px;
            border-radius: 100px;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(255, 106, 0, 0.35);
        }

        .prat {
            position: absolute;
            top: 13px;
            right: 13px;
            z-index: 2;
            background: rgba(255, 255, 255, 0.95);
            color: var(--text);
            font-size: .72rem;
            font-weight: 700;
            padding: 4px 9px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            gap: 3px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .prat i {
            color: #F59E0B;
        }

        .pb {
            padding: 20px 20px 22px;
        }

        .pname {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 9px;
        }

        .pchips {
            display: flex;
            gap: 7px;
            flex-wrap: wrap;
            margin-bottom: 13px;
        }

        .pchip {
            background: var(--cream2);
            border: 1px solid var(--bdr);
            color: var(--mid);
            font-size: .7rem;
            font-weight: 500;
            padding: 3px 11px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .pchip i {
            color: var(--saffron);
            font-size: .65rem;
        }

        .pfs {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--bdr);
        }

        .pf {
            font-size: .8rem;
            color: var(--mid);
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .pf i {
            color: #4CAF50;
            font-size: .68rem;
            width: 13px;
        }

        .pfoot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .ppr {
            display: flex;
            flex-direction: column;
        }

        .ppr .frm {
            font-size: .66rem;
            color: var(--light);
            line-height: 1;
        }

        .ppr .amt {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.65rem;
            font-weight: 700;
            color: var(--saffron);
            line-height: 1.1;
        }

        .ppr .ppx {
            font-size: .68rem;
            color: var(--light);
        }

        .pcta {
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            color: #fff;
            font-size: .78rem;
            font-weight: 700;
            padding: 10px 18px;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(255, 106, 0, 0.28);
            transition: all .25s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .pcta:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 22px rgba(255, 106, 0, 0.42);
        }

        /* WHY */
        #why {
            background: var(--warm);
        }

        .wlayout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .wbody {
            font-size: .9rem;
            color: var(--mid);
            line-height: 1.85;
            margin: 16px 0 28px;
        }

        .wfeats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 13px;
        }

        .wfc {
            background: #fff;
            border-radius: 16px;
            border: 1px solid var(--bdr);
            padding: 20px 16px;
            box-shadow: 0 4px 18px rgba(255, 106, 0, 0.05);
            transition: all .3s;
        }

        .wfc:hover {
            border-color: var(--saffron);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(255, 106, 0, 0.1);
        }

        .wfi {
            width: 46px;
            height: 46px;
            border-radius: 13px;
            background: linear-gradient(135deg, rgba(255, 106, 0, 0.09), rgba(232, 160, 32, 0.09));
            border: 1px solid rgba(255, 106, 0, 0.16);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            color: var(--saffron);
            margin-bottom: 11px;
        }

        .wft {
            font-size: .86rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .wfd {
            font-size: .76rem;
            color: var(--light);
            line-height: 1.6;
        }

        .cgrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .cc {
            background: #fff;
            border-radius: 20px;
            border: 1px solid var(--bdr);
            padding: 30px 18px;
            text-align: center;
            box-shadow: var(--shad);
            position: relative;
            overflow: hidden;
            transition: all .3s;
        }

        .cc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--saffron), var(--gold));
        }

        .cc:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 48px rgba(255, 106, 0, 0.11);
        }

        .cn {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--saffron);
            line-height: 1;
        }

        .cl {
            font-size: .76rem;
            color: var(--light);
            font-weight: 500;
            margin-top: 5px;
        }

        .ci2 {
            font-size: 2.2rem;
            opacity: .06;
            position: absolute;
            bottom: 7px;
            right: 14px;
            color: var(--saffron);
        }

        /* GALLERY */
        #gal {
            background: linear-gradient(155deg, var(--cream2) 0%, var(--sand) 100%);
        }

        .ggrid {
            columns: 4;
            column-gap: 13px;
        }

        @media(max-width:1024px) {
            .ggrid {
                columns: 3;
            }
        }

        @media(max-width:600px) {
            .ggrid {
                columns: 1;
                max-width: 430px;
                margin: 0 auto;
            }
        }

        .gi {
            break-inside: avoid;
            margin-bottom: 13px;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            display: block;
            box-shadow: 0 4px 18px rgba(45, 26, 0, 0.09);
            border: 2.5px solid #fff;
            transition: transform .3s, box-shadow .3s;
        }

        .gi:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(255, 106, 0, 0.16);
        }

        .gi img {
            width: 100%;
            display: block;
            transition: opacity .45s ease, transform .5s;
        }

        .gi:hover img {
            transform: scale(1.07);
        }

        .gov {
            position: absolute;
            inset: 0;
            background: rgba(192, 57, 43, 0.52);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity .28s;
            border-radius: 14px;
        }

        .gov i {
            font-size: 1.9rem;
            color: #fff;
        }

        .gi:hover .gov {
            opacity: 1;
        }

        /* LIGHTBOX */
        #lb {
            position: fixed;
            inset: 0;
            background: rgba(26, 10, 0, 0.93);
            backdrop-filter: blur(14px);
            z-index: 9000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 18px;
        }

        #lb.on {
            display: flex;
        }

        #lb img {
            max-width: 88vw;
            max-height: 84vh;
            border-radius: 16px;
            object-fit: contain;
            border: 2px solid rgba(255, 255, 255, 0.09);
        }

        #lbc {
            position: absolute;
            top: 20px;
            right: 26px;
            font-size: 1.9rem;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: color .25s;
            background: none;
            border: none;
        }

        #lbc:hover {
            color: var(--saffron);
        }

        #lbpv,
        #lbnx {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.7rem;
            color: rgba(255, 255, 255, 0.45);
            cursor: pointer;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .25s;
        }

        #lbpv:hover,
        #lbnx:hover {
            background: var(--saffron);
            color: #fff;
            border-color: var(--saffron);
        }

        #lbpv {
            left: 16px;
        }

        #lbnx {
            right: 16px;
        }

        /* TESTIMONIALS */
        #test {
            background: var(--warm);
        }

        .tslider {
            overflow: hidden;
        }

        .ttrack {
            display: flex;
            transition: transform .65s cubic-bezier(.25, .46, .45, .94);
        }

        .tslide {
            min-width: 100%;
            padding: 0 8px;
        }

        .tc {
            background: #fff;
            border-radius: 24px;
            border: 1px solid var(--bdr);
            padding: 38px 42px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: var(--shad);
            position: relative;
        }

        .tc::before {
            content: '\201C';
            font-family: 'Cormorant Garamond', serif;
            font-size: 8rem;
            line-height: .65;
            position: absolute;
            top: 18px;
            left: 30px;
            color: rgba(255, 106, 0, 0.07);
            pointer-events: none;
        }

        .tstars {
            color: #F59E0B;
            font-size: .95rem;
            letter-spacing: 4px;
            margin-bottom: 13px;
        }

        .ttxt {
            font-size: .98rem;
            color: var(--mid);
            line-height: 1.85;
            font-style: italic;
            margin-bottom: 24px;
        }

        .tau {
            display: flex;
            align-items: center;
            gap: 13px;
        }

        .tav {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--saffron);
            background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(232, 160, 32, 0.2));
            color: var(--saffron);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.15rem;
        }

        .tname {
            font-weight: 700;
            font-size: .92rem;
            color: var(--dark);
        }

        .trole {
            font-size: .76rem;
            color: var(--light);
        }

        .tbadge {
            margin-left: auto;
            background: linear-gradient(135deg, rgba(255, 106, 0, 0.07), rgba(232, 160, 32, 0.07));
            border: 1px solid rgba(255, 106, 0, 0.18);
            color: var(--saffron);
            font-size: .68rem;
            font-weight: 700;
            padding: 3px 11px;
            border-radius: 100px;
        }

        .tctrl {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 28px;
        }

        .tbtn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid var(--bdr);
            color: var(--mid);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .88rem;
            transition: all .25s;
        }

        .tbtn:hover {
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            color: #fff;
            border-color: transparent;
        }

        .tdots {
            display: flex;
            gap: 6px;
        }

        .td {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(255, 106, 0, 0.18);
            border: none;
            cursor: pointer;
            transition: all .28s;
        }

        .td.on {
            width: 22px;
            border-radius: 4px;
            background: var(--saffron);
        }

        /* CONTACT */
        #contact {
            background: linear-gradient(135deg, rgba(255, 106, 0, 0.03) 0%, var(--cream) 40%, rgba(10, 78, 138, 0.03) 100%);
        }

        .clayout {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: start;
        }

        .cinfo {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .citem {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .cicn {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            flex-shrink: 0;
        }

        .cicn.o {
            background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(255, 140, 0, 0.06));
            color: var(--saffron);
            border: 1px solid rgba(255, 106, 0, 0.18);
        }

        .cicn.b {
            background: linear-gradient(135deg, rgba(10, 78, 138, 0.09), rgba(30, 136, 229, 0.05));
            color: var(--royalblue);
            border: 1px solid rgba(10, 78, 138, 0.13);
        }

        .cicn.g {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.09), rgba(76, 175, 80, 0.03));
            color: #388E3C;
            border: 1px solid rgba(76, 175, 80, 0.18);
        }

        .cilabel {
            font-size: .66rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--light);
            margin-bottom: 2px;
        }

        .cival {
            font-size: .9rem;
            font-weight: 600;
            color: var(--dark);
        }

        .cisub {
            font-size: .76rem;
            color: var(--light);
        }

        .cfbox {
            background: #fff;
            border-radius: 26px;
            border: 1px solid var(--bdr);
            padding: 38px;
            box-shadow: var(--shad-w);
        }

        .ftit {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .fsub {
            font-size: .8rem;
            color: var(--light);
            margin-bottom: 26px;
        }

        .frow {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 13px;
            margin-bottom: 13px;
        }

        .fg {
            margin-bottom: 13px;
        }

        .fl {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--mid);
            display: block;
            margin-bottom: 6px;
        }

        .fi {
            width: 100%;
            background: var(--cream);
            border: 1.5px solid var(--bdr);
            border-radius: 11px;
            padding: 12px 15px;
            color: var(--dark);
            font-family: 'Outfit', sans-serif;
            font-size: .86rem;
            outline: none;
            transition: border-color .25s, box-shadow .25s, background .25s;
            -webkit-appearance: none;
            appearance: none;
        }

        .fi:focus {
            border-color: var(--saffron);
            box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.09);
            background: #fff;
        }

        .fi::placeholder {
            color: var(--light);
        }

        select.fi {
            cursor: pointer;
        }

        textarea.fi {
            resize: vertical;
        }

        .fsub-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--saffron), #FF8C00);
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-size: .92rem;
            font-weight: 700;
            padding: 14px;
            border-radius: 13px;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 26px rgba(255, 106, 0, 0.3);
            transition: all .28s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .fsub-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 34px rgba(255, 106, 0, 0.42);
        }

        .fsecure {
            text-align: center;
            font-size: .73rem;
            color: var(--light);
            margin-top: 11px;
        }

        .fsecure i {
            color: var(--saffron);
        }

        /* FOOTER */
        footer {
            background: var(--dark);
            padding: 68px 52px 26px;
        }

        .fgrid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.4fr;
            gap: 44px;
            margin-bottom: 52px;
        }

        .fbrand {
            display: flex;
            align-items: center;
            gap: 11px;
            margin-bottom: 16px;
        }

        .f-logo {
            width: 58px;
            height: 58px;
            object-fit: contain;
            flex: 0 0 58px;
        }

        .ft {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
        }

        .fb {
            font-size: .55rem;
            letter-spacing: 3px;
            color: rgba(255, 255, 255, 0.32);
            text-transform: uppercase;
        }

        .fdesc {
            font-size: .8rem;
            color: rgba(255, 255, 255, 0.38);
            line-height: 1.8;
            max-width: 270px;
            margin-bottom: 20px;
        }

        .socials {
            display: flex;
            gap: 8px;
        }

        .soc {
            width: 36px;
            height: 36px;
            border-radius: 11px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.09);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: .82rem;
            text-decoration: none;
            transition: all .25s;
        }

        .soc:hover {
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            border-color: transparent;
            color: #fff;
            transform: translateY(-2px);
        }

        .fh {
            font-size: .76rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
        }

        .flinks {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .flinks a {
            font-size: .8rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color .22s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .flinks a i {
            font-size: .6rem;
            color: var(--saffron);
        }

        .flinks a:hover {
            color: var(--gold);
        }

        .fcontact,
        .foffices {
            display: flex;
            flex-direction: column;
            gap: 11px;
        }

        .fitem {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            font-size: .8rem;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.48);
        }

        .fitem i {
            color: var(--saffron);
            font-size: .76rem;
            margin-top: 4px;
            width: 14px;
            flex: 0 0 14px;
        }

        .foffice {
            padding-left: 13px;
            border-left: 2px solid rgba(255, 106, 0, 0.42);
        }

        .fo-title {
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.74);
            margin-bottom: 5px;
        }

        .foffice p {
            font-size: .78rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.42);
            margin: 0;
        }

        .fnl {
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .fni {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.11);
            border-radius: 10px;
            padding: 11px 15px;
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-size: .8rem;
            outline: none;
            transition: border-color .25s;
        }

        .fni:focus {
            border-color: var(--saffron);
        }

        .fni::placeholder {
            color: rgba(255, 255, 255, 0.28);
        }

        .fnsb {
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            color: #fff;
            font-size: .8rem;
            font-weight: 700;
            padding: 11px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all .25s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .fnsb:hover {
            box-shadow: 0 6px 20px rgba(255, 106, 0, 0.36);
        }

        .fcerts {
            display: flex;
            gap: 7px;
            margin-top: 14px;
            flex-wrap: wrap;
        }

        .fcert {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 7px;
            padding: 4px 10px;
            font-size: .66rem;
            color: rgba(255, 255, 255, 0.38);
        }

        .fbar {
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding-top: 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 11px;
        }

        .fcopy {
            font-size: .74rem;
            color: rgba(255, 255, 255, 0.22);
        }

        .fleg {
            display: flex;
            gap: 18px;
        }

        .fleg a {
            font-size: .74rem;
            color: rgba(255, 255, 255, 0.22);
            text-decoration: none;
            transition: color .22s;
        }

        .fleg a:hover {
            color: var(--gold);
        }

        /* BACK TO TOP */
        #btt {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 42px;
            height: 42px;
            border-radius: 13px;
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            color: #fff;
            font-size: .95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 800;
            box-shadow: 0 6px 20px rgba(255, 106, 0, 0.36);
            opacity: 0;
            transform: translateY(14px);
            transition: all .3s;
            border: none;
        }

        #btt.vis {
            opacity: 1;
            transform: translateY(0);
        }

        #btt:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 26px rgba(255, 106, 0, 0.5);
        }

        /* TOAST */
        #toast {
            position: fixed;
            bottom: 76px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            color: #fff;
            padding: 12px 24px;
            border-radius: 100px;
            font-weight: 700;
            font-size: .86rem;
            z-index: 9999;
            opacity: 0;
            transition: all .36s;
            box-shadow: 0 8px 26px rgba(255, 106, 0, 0.36);
            pointer-events: none;
            white-space: nowrap;
        }

        /* REVEAL */
        .rv {
            opacity: 0;
            transform: translateY(34px);
        }

        .rl {
            opacity: 0;
            transform: translateX(-38px);
        }

        .rr {
            opacity: 0;
            transform: translateX(38px);
        }

        .rs {
            opacity: 0;
            transform: scale(.91);
        }

        /* RESPONSIVE */
        @media(max-width:1200px) {
            .dgrid {
                grid-template-columns: repeat(3, 1fr);
            }

            .pgrid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:1024px) {
            .dgrid {
                grid-template-columns: repeat(2, 1fr);
            }

            .dc.wide {
                grid-column: auto;
            }

            .dc.tall {
                grid-row: auto;
            }

            .fgrid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width:768px) {
            #nav,
            #nav.sc {
                top: 0;
                left: 0;
                right: 0;
                width: 100%;
                margin: 0;
                border-radius: 0 !important;
            }

            #nav {
                padding: 0 20px;
                height: 68px;
                z-index: 1200;
                background: rgba(254, 252, 248, 0.96);
                border-radius: 0;
                border: 0;
                border-bottom: 1px solid var(--bdr);
                box-shadow: 0 4px 18px rgba(45, 26, 0, 0.08);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
            }

            .n-links,
            .n-r {
                display: none;
            }

            #ham {
                display: block;
                position: relative;
                z-index: 1200;
                color: var(--dark);
                font-size: 1.55rem;
                padding: 10px;
            }

            .n-logo-img {
                width: 58px;
                height: 58px;
                object-fit: contain;
            }

            .hbody {
                padding: 0 24px;
                max-width: 100%;
            }

            .hthumbs,
            .scroll-i {
                display: none;
            }

            .hdots {
                right: 20px;
            }

            .hh1 {
                font-size: 2.8rem;
            }

            .hstats {
                flex-wrap: wrap;
            }

            section {
                padding: 70px 22px;
            }

            .dgrid {
                grid-template-columns: 1fr 1fr;
            }

            .pgrid {
                grid-template-columns: 1fr;
            }

            .wlayout {
                grid-template-columns: 1fr;
            }

            .clayout {
                grid-template-columns: 1fr;
            }

            footer {
                padding: 44px 22px 20px;
            }

            .fgrid {
                grid-template-columns: 1fr;
            }

            .frow {
                grid-template-columns: 1fr;
            }
        }
