    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box
    }

    html {
        scroll-behavior: smooth
    }

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background: #fff;
        color: #1a1a1a;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased
    }

    .sec {
        padding: 60px 0
    }

    @media(min-width:1024px) {
        .sec {
            padding: 120px 0
        }
    }

    ::-webkit-scrollbar {
        width: 5px
    }

    ::-webkit-scrollbar-track {
        background: #faf8f5
    }

    ::-webkit-scrollbar-thumb {
        background: #b8964e;
        border-radius: 10px
    }

    /* ══════ HERO ══════ */
    .hero-master {
        position: relative;
        min-height: 100vh;
        min-height: 100dvh;
        overflow: hidden;
        background: #faf8f5;
        display: flex;
        align-items: center
    }

    .hero-video-wrap {
        position: absolute;
        top: 5%;
        right: -2%;
        width: 50%;
        height: 88%;
        border-radius: 40px;
        overflow: hidden;
        z-index: 1
    }

    .hero-video-wrap video {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .hero-video-wrap::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(250, 248, 245, 0.15) 0%, transparent 60%);
        pointer-events: none
    }

    @media(max-width:1279px) {
        .hero-video-wrap {
            width: 48%;
            right: -1%;
            top: 8%;
            height: 80%;
            border-radius: 32px
        }
    }

    @media(max-width:1023px) {
        .hero-master {
            flex-direction: column;
            align-items: stretch;
            min-height: 100vh;
            padding-top: 72px
        }

        .hero-video-wrap {
            position: relative;
            top: 0;
            right: 0;
            width: 100%;
            height: 260px;
            border-radius: 0 0 28px 28px;
            order: -1
        }

        .hero-content {
            padding: 32px 20px 40px
        }
    }

    @media(min-width:640px) and (max-width:1023px) {
        .hero-video-wrap {
            height: 360px
        }
    }

    /* Decorative */
    .deco-circle {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(184, 150, 78, 0.08);
        pointer-events: none
    }

    .deco-dot {
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(184, 150, 78, 0.2);
        pointer-events: none
    }

    @keyframes revealUp {
        0% {
            transform: translateY(100%);
            opacity: 0
        }

        100% {
            transform: translateY(0);
            opacity: 1
        }
    }

    .reveal-text {
        overflow: hidden;
        display: block
    }

    .reveal-text span {
        display: inline-block;
        animation: revealUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        opacity: 0
    }

    .reveal-text span.d1 {
        animation-delay: .2s
    }

    .reveal-text span.d2 {
        animation-delay: .45s
    }

    .grad-line {
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, #b8964e, transparent);
        border-radius: 2px;
        flex-shrink: 0
    }

    .acc-line {
        width: 40px;
        height: 2px;
        background: #b8964e;
        display: inline-block;
        border-radius: 2px;
        flex-shrink: 0
    }

    .grad-gold {
        background: linear-gradient(135deg, #b8964e 0%, #d4a853 40%, #c49a50 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

    /* Buttons */
    .btn-dark {
        background: #1a1a1a;
        color: #fff;
        position: relative;
        overflow: hidden;
        transition: all .4s cubic-bezier(.22, 1, .36, 1)
    }

    .btn-dark::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: #b8964e;
        transition: width .4s cubic-bezier(.22, 1, .36, 1);
        z-index: 0
    }

    .btn-dark:hover::before {
        width: 100%
    }

    .btn-dark:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, .15)
    }

    .btn-dark span,
    .btn-dark i,
    .btn-dark svg {
        position: relative;
        z-index: 1
    }

    .btn-outline {
        border: 1.5px solid #1a1a1a;
        color: #1a1a1a;
        position: relative;
        overflow: hidden;
        transition: all .4s cubic-bezier(.22, 1, .36, 1)
    }

    .btn-outline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: #1a1a1a;
        transition: width .4s cubic-bezier(.22, 1, .36, 1);
        z-index: 0
    }

    .btn-outline:hover::before {
        width: 100%
    }

    .btn-outline:hover {
        color: #fff;
        transform: translateY(-2px)
    }

    .btn-outline span,
    .btn-outline i,
    .btn-outline svg {
        position: relative;
        z-index: 1
    }

    .btn-gold {
        background: linear-gradient(135deg, #b8964e, #d4a853);
        color: #fff;
        transition: all .3s ease
    }

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(184, 150, 78, .3)
    }

    /* Cards */
    .card-lift {
        transition: all .5s cubic-bezier(.22, 1, .36, 1);
        border: 1px solid rgba(0, 0, 0, .04)
    }

    .card-lift:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
        border-color: rgba(184, 150, 78, .2)
    }

    .img-wrap {
        overflow: hidden
    }

    .img-wrap img {
        transition: transform .8s cubic-bezier(.22, 1, .36, 1)
    }

    .img-wrap:hover img,
    .card-lift:hover .img-wrap img {
        transform: scale(1.06)
    }

    /* Stats */
    .stat-sep {
        border-right: 1px solid rgba(0, 0, 0, .08)
    }

    .stat-sep:last-child {
        border-right: none
    }

    .num-style {
        font-variant-numeric: tabular-nums;
        letter-spacing: -.02em
    }

    @keyframes floatSlow {

        0%,
        100% {
            transform: translateY(0) rotate(0deg)
        }

        33% {
            transform: translateY(-8px) rotate(1deg)
        }

        66% {
            transform: translateY(-4px) rotate(-1deg)
        }
    }

    .float-badge {
        animation: floatSlow 6s ease-in-out infinite
    }

    @keyframes scrollDown {
        0% {
            transform: translateY(0);
            opacity: 1
        }

        50% {
            transform: translateY(8px);
            opacity: .3
        }

        100% {
            transform: translateY(0);
            opacity: 1
        }
    }

    .scroll-ind {
        animation: scrollDown 2s ease-in-out infinite
    }

    @keyframes marquee {
        0% {
            transform: translateX(0)
        }

        100% {
            transform: translateX(-50%)
        }
    }

    .tag-scroll {
        animation: marquee 22s linear infinite
    }

    .booking-pill {
        background: rgba(255, 255, 255, .9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, .05);
        box-shadow: 0 20px 60px rgba(0, 0, 0, .06)
    }

    .quote-mark {
        position: absolute;
        top: -10px;
        left: 20px;
        font-size: 90px;
        font-family: 'Playfair Display', serif;
        color: rgba(184, 150, 78, .07);
        line-height: 1;
        pointer-events: none
    }

    .feat-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .4s ease
    }

    .card-lift:hover .feat-icon {
        transform: scale(1.1) rotate(5deg)
    }

    /* Nav */
    .nav-lk {
        position: relative
    }

    .nav-lk::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 50%;
        width: 0;
        height: 2px;
        background: #b8964e;
        transition: all .3s ease;
        transform: translateX(-50%);
        border-radius: 2px
    }

    .nav-lk:hover::after {
        width: 100%
    }

    /* Mobile Menu */
    .mob-m {
        transform: translateX(100%);
        transition: transform .5s cubic-bezier(.22, 1, .36, 1)
    }

    .mob-m.open {
        transform: translateX(0)
    }

    /* Form */
    .f-field {
        background: #f5f0ea;
        border: 1.5px solid transparent;
        transition: all .3s ease;
        color: #1a1a1a
    }

    .f-field:focus {
        border-color: #b8964e;
        box-shadow: 0 0 0 3px rgba(184, 150, 78, .1);
        outline: none;
        background: #fff
    }

    .f-field::placeholder {
        color: #aaa
    }

    /* Grain */
    .grain::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 0
    }

    /* Cursor */
    .cur-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #b8964e;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transition: transform .1s ease;
        mix-blend-mode: difference;
        top: 0;
        left: 0
    }

    .cur-ring {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1.5px solid rgba(184, 150, 78, .45);
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transition: all .15s ease;
        top: 0;
        left: 0
    }

    @media(max-width:1023px) {

        .cur-dot,
        .cur-ring {
            display: none
        }
    }

    .dest-grad {
        background: linear-gradient(180deg, transparent 20%, rgba(10, 10, 10, .88) 100%)
    }

    /* Fill gold for star icons */
    .fill-gold {
        fill: #b8964e
    }