

        /* =========================================
           BASE
        ========================================= */

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Rozha One", serif;
            background: #f2e8d5;
            color: #0c0a0a;
            line-height: 1.7;
        }

        img {
            width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            font-family: inherit;
        }

        .container {
            width: min(1180px, calc(100% - 40px));
            margin: auto;
        }

        .serif {
            font-family: "Playfair Display", serif;
        }


        /* =========================================
           HEADER
           NO NAVIGATION
        ========================================= */

        .header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 28px 0;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #f2e8d5;
        }

        .logo-mark {
            width: 44px;
            height: 44px;
            border: 1px solid rgba(242, 232, 213, .75);
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-family: "Playfair Display", serif;
            font-size: 19px;
        }

        .logo-text strong {
            display: block;
            font-family: "Playfair Display", serif;
            font-size: 21px;
            font-weight: 500;
            line-height: 1;
        }

        .logo-text span {
            display: block;
            margin-top: 4px;
            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;
            opacity: .75;
        }

        .header-location {
            color: rgba(242, 232, 213, .75);
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }


        /* =========================================
           HERO
        ========================================= */

        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
            color: #f2e8d5;
        }

        .hero-image {
            position: absolute;
            inset: 0;

            background:
                linear-gradient(
                    180deg,
                    rgba(12, 10, 10, .15),
                    rgba(12, 10, 10, .82)
                ),
                url("../images/uploads/webp/48.webp")
                center/cover;

            transform: scale(1.03);

            animation: heroZoom 12s ease forwards;
        }

        @keyframes heroZoom {

            from {
                transform: scale(1.03);
            }

            to {
                transform: scale(1);
            }

        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 200px 0 10px;
            margin-left:80px;
        }

        .eyebrow {
            display: flex;
            align-items: center;
            gap: 12px;

            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 10px;
            font-weight: 600;

            margin-bottom: 20px;
        }

        .eyebrow::before {
            content: "";
            width: 38px;
            height: 1px;
            background: #8c3b2a;
        }

        .hero h1 {
            max-width: 850px;

            font-family: "Playfair Display", serif;
            font-size: clamp(55px, 8vw, 110px);
            font-weight: 400;
            line-height: .95;
            letter-spacing: -3px;
        }

        .hero-bottom {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;

            margin-top: 40px;
        }

        .hero-description {
            max-width: 500px;

            font-size: 15px;
            line-height: 1.8;

            color: rgba(242, 232, 213, .78);
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 15px;

            padding: 13px 0;

            border-bottom: 1px solid #8c3b2a;

            color: #f2e8d5;

            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .hero-cta span {
            color: #8c3b2a;
            transition: .3s;
        }

        .hero-cta:hover span {
            transform: translateX(6px);
        }

        .hero-scroll {
            position: absolute;

            right: 40px;
            bottom: 40px;

            writing-mode: vertical-rl;

            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;

            opacity: .65;
        }


        /* =========================================
           ABOUT
        ========================================= */

        .intro {
            padding: 135px 0;
        }

        .intro-grid {
            display: grid;
            grid-template-columns: .8fr 1.4fr;

            gap: 100px;

            align-items: start;
        }

        .section-label {
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;

            color: #8c3b2a;

            font-weight: 600;
        }

        .intro h2 {
            margin-top: 18px;

            font-family: "Playfair Display", serif;
            font-size: clamp(40px, 5vw, 67px);
            font-weight: 400;
            line-height: 1.06;

            color: #0c0a0a;
        }

        .intro-copy {
            padding-top: 35px;
        }

        .intro-copy p {
            font-size: 16px;
            color: #514b45;

            margin-bottom: 25px;
        }

        .intro-copy p:first-child {
            color: #0c0a0a;

            font-size: 19px;
            line-height: 1.7;
        }


        /* =========================================
           FEATURE IMAGE
        ========================================= */

        .feature {
            padding-bottom: 135px;
        }

        .feature-image {
            height: 620px;

            position: relative;
            overflow: hidden;
        }

        .feature-image::after {
            content: "";

            position: absolute;
            inset: 0;

            border: 1px solid rgba(242, 232, 213, .15);

            pointer-events: none;
        }

        .feature-image img {
            height: 100%;
            object-fit: cover;

            transition: transform 1s ease;
        }

        .feature-image:hover img {
            transform: scale(1.04);
        }

        .feature-caption {
            position: absolute;

            left: 30px;
            bottom: 30px;

            padding: 14px 20px;

            background: #f2e8d5;

            color: #0c0a0a;

            font-size: 10px;
            letter-spacing: 1.5px;
            text-transform: uppercase;

            z-index: 2;
        }


        /* =========================================
           STAY
        ========================================= */

        .stay {
            background: #0c0a0a;
            color: #f2e8d5;

            padding: 125px 0;
        }

        .stay-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;

            margin-bottom: 65px;
        }

        .stay .section-label {
            color: #c66c55;
        }

        .stay h2 {
            font-family: "Playfair Display", serif;

            font-size: clamp(43px, 5vw, 70px);

            font-weight: 400;
            line-height: 1;

            margin-top: 15px;
        }

        .stay-intro {
            max-width: 370px;

            color: rgba(242, 232, 213, .6);

            font-size: 14px;
        }

        .stay-grid {
            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 2px;
        }

        .stay-card {
            background: #181414;

            overflow: hidden;
        }

        .stay-card-image {
            height: 290px;

            overflow: hidden;
        }

        .stay-card-image img {
            height: 100%;
            object-fit: cover;

            transition: .7s ease;
        }

        .stay-card:hover img {
            transform: scale(1.05);
        }

        .stay-card-content {
            padding: 30px;
        }

        .stay-card-content span {
            font-size: 9px;
            letter-spacing: 2px;
            text-transform: uppercase;

            color: #c66c55;
        }

        .stay-card h3 {
            font-family: "Playfair Display", serif;

            font-size: 27px;
            font-weight: 400;

            margin: 10px 0;
        }

        .stay-card p {
            font-size: 13px;

            color: rgba(242, 232, 213, .58);
        }


        /* =========================================
           AMENITIES
        ========================================= */

        .amenities {
            padding: 135px 0;
        }

        .amenities-header {
            max-width: 720px;

            margin-bottom: 70px;
        }

        .amenities h2 {
            font-family: "Playfair Display", serif;

            font-size: clamp(43px, 5vw, 68px);

            font-weight: 400;

            line-height: 1.05;

            margin-top: 15px;
        }

        .amenities-grid {
            display: grid;

            grid-template-columns: repeat(4, 1fr);

            border-top: 1px solid rgba(12, 10, 10, .16);
            border-left: 1px solid rgba(12, 10, 10, .16);
        }

        .amenity {
            min-height: 175px;

            padding: 28px;

            border-right: 1px solid rgba(12, 10, 10, .16);
            border-bottom: 1px solid rgba(12, 10, 10, .16);

            transition: .3s ease;
        }

        .amenity:hover {
            background: #eadbc4;
        }

        .amenity-number {
            font-size: 10px;

            color: #8c3b2a;

            margin-bottom: 40px;
        }

        .amenity h3 {
            font-family: "Playfair Display", serif;

            font-size: 22px;
            font-weight: 400;
        }

        .amenity p {
            color: #70675e;

            font-size: 12px;

            margin-top: 5px;
        }


        /* =========================================
           DINING
        ========================================= */

        .dining {
            background: #8c3b2a;

            color: #f2e8d5;

            padding: 125px 0;
        }

        .dining-grid {
            display: grid;

            grid-template-columns: 1.1fr .9fr;

            gap: 90px;

            align-items: center;
        }

        .dining-image {
            height: 570px;

            overflow: hidden;
        }

        .dining-image img {
            height: 100%;
            object-fit: cover;
        }

        .dining .section-label {
            color: #f2e8d5;
            opacity: .65;
        }

        .dining-content h2 {
            font-family: "Playfair Display", serif;

            font-size: clamp(43px, 5vw, 65px);

            line-height: 1.05;

            font-weight: 400;

            margin: 15px 0 25px;
        }

        .dining-content > p {
            color: rgba(242, 232, 213, .75);

            margin-bottom: 35px;

            font-size: 15px;
        }

        .meal-list {
            border-top: 1px solid rgba(242, 232, 213, .25);
        }

        .meal {
            display: flex;
            justify-content: space-between;

            gap: 30px;

            padding: 18px 0;

            border-bottom: 1px solid rgba(242, 232, 213, .25);

            font-size: 13px;
        }

        .meal strong {
            font-weight: 500;
        }

        .meal span {
            color: rgba(242, 232, 213, .65);
        }

        .cuisine {
            margin-top: 25px;

            font-size: 10px !important;

            letter-spacing: 1.2px;

            color: rgba(242, 232, 213, .6) !important;
        }


        /* =========================================
           REVIEWS
        ========================================= */

        .reviews {
            padding: 135px 0;
        }

        .reviews-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;

            margin-bottom: 60px;
        }

        .reviews h2 {
            font-family: "Playfair Display", serif;

            font-size: clamp(43px, 5vw, 65px);

            font-weight: 400;

            line-height: 1;

            margin-top: 15px;
        }

        .rating {
            text-align: right;
        }

        .rating strong {
            display: block;

            font-family: "Playfair Display", serif;

            font-size: 50px;

            font-weight: 400;

            color: #8c3b2a;
        }

        .rating span {
            font-size: 11px;

            color: #756c62;
        }

        .review-slider {
            position: relative;

            min-height: 300px;
        }

        .review {
            display: none;

            max-width: 850px;
        }

        .review.active {
            display: block;

            animation: fadeReview .5s ease;
        }

        @keyframes fadeReview {

            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }

        .quote {
            font-family: "Playfair Display", serif;

            font-size: clamp(28px, 3vw, 42px);

            line-height: 1.3;

            color: #0c0a0a;
        }

        .review-author {
            margin-top: 35px;

            font-size: 10px;

            text-transform: uppercase;

            letter-spacing: 2px;

            color: #8c3b2a;
        }

        .review-controls {
            display: flex;

            gap: 10px;

            margin-top: 35px;
        }

        .review-btn {
            width: 45px;
            height: 45px;

            border: 1px solid rgba(12, 10, 10, .25);

            background: transparent;

            cursor: pointer;

            transition: .3s;
        }

        .review-btn:hover {
            background: #8c3b2a;

            color: #f2e8d5;

            border-color: #8c3b2a;
        }


        /* =========================================
           LOCATION
        ========================================= */

        .location {
            background: #0c0a0a;

            color: #f2e8d5;

            padding: 125px 0;
        }

        .location-grid {
            display: grid;

            grid-template-columns: .9fr 1.1fr;

            gap: 90px;

            align-items: center;
        }

        .location .section-label {
            color: #c66c55;
        }

        .location h2 {
            font-family: "Playfair Display", serif;

            font-weight: 400;

            font-size: clamp(45px, 5vw, 68px);

            line-height: 1.05;

            margin: 15px 0 25px;
        }

        .location p {
            color: rgba(242, 232, 213, .62);

            font-size: 14px;

            max-width: 450px;
        }

        .location-details {
            margin-top: 40px;
        }

        .location-detail {
            display: flex;

            justify-content: space-between;

            padding: 17px 0;

            border-bottom: 1px solid rgba(242, 232, 213, .12);

            font-size: 13px;
        }

        .location-detail span {
            color: rgba(242, 232, 213, .45);
        }

        .location-detail strong {
            font-weight: 500;
        }

        .location-map {
            min-height: 480px;

            background:
                linear-gradient(
                    rgba(12, 10, 10, .15),
                    rgba(12, 10, 10, .15)
                ),
                url("../images/uploads/webp/76.webp")
                center/cover;
        }


        /* =========================================
           FAQ
        ========================================= */

        .faq {
            padding: 125px 0;
        }

        .faq-header {
            margin-bottom: 55px;
        }

        .faq h2 {
            font-family: "Playfair Display", serif;

            font-weight: 400;

            font-size: clamp(42px, 5vw, 65px);

            margin-top: 15px;
        }

        .faq-list {
            max-width: 900px;
        }

        .faq-item {
            border-top: 1px solid rgba(12, 10, 10, .18);
        }

        .faq-item:last-child {
            border-bottom: 1px solid rgba(12, 10, 10, .18);
        }

        .faq-question {
            width: 100%;

            border: 0;

            background: transparent;

            padding: 25px 0;

            display: flex;

            justify-content: space-between;

            align-items: center;

            text-align: left;

            font-family: "Playfair Display", serif;

            font-size: 21px;

            color: #0c0a0a;

            cursor: pointer;
        }

        .faq-icon {
            font-family: "DM Sans", sans-serif;

            color: #8c3b2a;

            font-size: 20px;

            font-weight: 300;

            transition: .3s;
        }

        .faq-answer {
            max-height: 0;

            overflow: hidden;

            transition: max-height .4s ease;
        }

        .faq-answer p {
            max-width: 750px;

            padding: 0 0 25px;

            color: #70675e;

            font-size: 14px;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }


        /* =========================================
           BOOKING
        ========================================= */

        .booking {
            position: relative;

            min-height: 560px;

            display: flex;

            align-items: center;

            overflow: hidden;

            color: #f2e8d5;
        }

        .booking-bg {
            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    rgba(12, 10, 10, .62),
                    rgba(12, 10, 10, .78)
                ),
                url("../images/uploads/webp/29.webp")
                center/cover;
        }

        .booking-content {
            position: relative;

            z-index: 2;

            text-align: center;

            width: 100%;
        }

        .booking-content .eyebrow {
            justify-content: center;
        }

        .booking h2 {
            font-family: "Playfair Display", serif;

            font-weight: 400;

            font-size: clamp(45px, 6vw, 75px);

            line-height: 1;

            margin: 18px auto 25px;

            max-width: 800px;
        }

        .booking p {
            max-width: 500px;

            margin: auto;

            color: rgba(242, 232, 213, .72);

            font-size: 14px;
        }

        .booking-btn {
            display: inline-block;

            margin-top: 35px;

            padding: 15px 32px;

            background: #8c3b2a;

            color: #f2e8d5;

            font-size: 10px;

            letter-spacing: 1.5px;

            text-transform: uppercase;

            transition: .3s;
        }

        .booking-btn:hover {
            background: #f2e8d5;

            color: #0c0a0a;
        }


        /* =========================================
           FOOTER
        ========================================= */

        .footer {
            background: #0c0a0a;

            color: rgba(242, 232, 213, .65);

            padding: 70px 0 130px;
        }

        .footer-grid {
            display: grid;

            grid-template-columns: 1.3fr 1fr 1fr 1fr;

            gap: 60px;

            padding-bottom: 60px;
        }

        .footer-brand strong {
            display: block;

            font-family: "Playfair Display", serif;

            font-size: 30px;

            font-weight: 400;

            color: #f2e8d5;

            margin-bottom: 10px;
        }

        .footer-brand p {
            max-width: 300px;

            font-size: 13px;
        }

        .footer h4 {
            color: #f2e8d5;

            font-size: 10px;

            text-transform: uppercase;

            letter-spacing: 2px;

            margin-bottom: 18px;
        }

        .footer ul {
            list-style: none;
        }

        .footer li {
            font-size: 13px;

            margin-bottom: 9px;
        }

        .footer li a:hover {
            color: #8c3b2a;
        }

        .footer-bottom {
            border-top: 1px solid rgba(242, 232, 213, .1);

            padding-top: 25px;

            display: flex;

            justify-content: space-between;

            font-size: 10px;
        }


        /* =========================================
           SCROLL REVEAL
        ========================================= */

        .reveal {
            opacity: 0;

            transform: translateY(30px);

            transition:
                opacity .8s ease,
                transform .8s ease;
        }

        .reveal.visible {
            opacity: 1;

            transform: translateY(0);
        }


        /* =========================================
           RESPONSIVE
        ========================================= */

        @media (max-width: 900px) {

           .hero-content {
             margin-left: 20px;
            margin-right: 20px;
           }

            .intro-grid,
            .dining-grid,
            .location-grid {
                grid-template-columns: 1fr;

                gap: 50px;
            }

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

            .stay-card-image {
                height: 350px;
            }

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

            .feature-image {
                height: 480px;
            }

            .location-map {
                min-height: 400px;
            }

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

        }


        @media (max-width: 600px) {

            .container {
                width: min(100% - 28px, 1180px);
            }

            .header {
                padding: 18px 0;
            }

            .logo-mark {
                width: 39px;
                height: 39px;
            }

            .logo-text strong {
                font-size: 18px;
            }

            .hero-content {
                padding: 145px 0 65px;
            }

            .hero h1 {
                font-size: 55px;

                letter-spacing: -1.5px;
            }

            .hero-bottom {
                display: block;
            }

            .hero-description {
                margin-bottom: 25px;
            }

            .hero-scroll {
                display: none;
            }

            .intro,
            .amenities,
            .reviews,
            .faq {
                padding: 85px 0;
            }

            .feature {
                padding-bottom: 85px;
            }

            .feature-image {
                height: 360px;
            }

            .stay,
            .dining,
            .location {
                padding: 85px 0;
            }

            .stay-head,
            .reviews-header {
                display: block;
            }

            .stay-intro {
                margin-top: 25px;
            }

            .rating {
                text-align: left;

                margin-top: 25px;
            }

            .stay-card-image {
                height: 270px;
            }

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

            .amenity {
                min-height: 140px;
            }

            .dining-image {
                height: 380px;
            }

            .location-map {
                min-height: 300px;
            }

            .booking {
                min-height: 500px;
            }

            .footer-grid {
                grid-template-columns: 1fr;

                gap: 35px;
            }

            .footer-bottom {
                display: block;
            }

            .footer-bottom span {
                display: block;

                margin-top: 8px;
            }

        }
h1,
h2,
h3,
h4,
h5,
h6,
.logo-text strong,
.quote {
    font-family: "Playfair Display", serif;
}
button,
input,
textarea,
select {
    font-family: Arial, Helvetica, sans-serif;
}

.section-label,
.eyebrow,
.hero-cta,
.hero-scroll,
.header-location,
.booking-btn,
.footer h4 {
    font-family: Arial, Helvetica, sans-serif;
}

.hindi-text {
    font-family: "Rozha One", serif;
}

  .rajvana-features {
    background: #f2e8d5;
    color: #0c0a0a;
    padding: 10px 0;
}


/* =========================================
   INTRO
========================================= */

.rajvana-features-intro {
    max-width: 850px;
    margin-bottom: 80px;
}

.rajvana-features-label {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #8c3b2a;

    font-family: "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 20px;
}

.rajvana-features-label::before {
    content: "";

    width: 38px;
    height: 1px;

    background: #8c3b2a;
}

.rajvana-features-intro h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 6vw, 82px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -2px;
}

.rajvana-features-intro p {
    max-width: 500px;

    margin-top: 28px;

    color: rgba(12, 10, 10, .6);

    font-family: "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   MAIN GRID
========================================= */

.rajvana-features-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: start;
}


/* =========================================
   IMAGE
========================================= */

.rajvana-features-image {
    position: sticky;
    top: 40px;

    height: 680px;

    overflow: hidden;

    background: #0c0a0a;
}

.rajvana-features-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1.2s ease;
}

.rajvana-features-image:hover img {
    transform: scale(1.035);
}

.rajvana-image-tag {
    position: absolute;

    left: 25px;
    bottom: 25px;

    padding: 12px 17px;

    background: #f2e8d5;

    color: #0c0a0a;

    font-family: "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================
   FEATURE LIST
========================================= */

.rajvana-feature-list {
    border-top: 1px solid rgba(12, 10, 10, .18);
}

.rajvana-feature {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 25px;

    padding: 27px 0;

    border-bottom: 1px solid rgba(12, 10, 10, .18);

    transition: padding-left .35s ease;
}

.rajvana-feature:hover {
    padding-left: 12px;
}

.rajvana-feature-number {
    padding-top: 5px;

    color: #8c3b2a;

    font-family: "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 10px;

    letter-spacing: 1px;
}

.rajvana-feature h3 {
    font-family: "Playfair Display", serif;

    font-size: 27px;

    font-weight: 400;

    line-height: 1.15;
}

.rajvana-feature p {
    max-width: 430px;

    margin-top: 7px;

    color: rgba(12, 10, 10, .58);

    font-family: "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   LOCATION STORY
========================================= */

.rajvana-location-story {
    display: grid;

    grid-template-columns: 70px 1.4fr .7fr;

    gap: 45px;

    align-items: center;

    margin-top: 140px;

    padding-top: 70px;

    border-top: 1px solid rgba(12, 10, 10, .18);
}

.rajvana-location-line {
    width: 1px;
    height: 120px;

    background: #8c3b2a;

    justify-self: center;
}

.rajvana-location-content > span {
    display: block;

    margin-bottom: 15px;

    color: #8c3b2a;

    font-family: "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 9px;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.rajvana-location-content h3 {
    font-family: "Playfair Display", serif;

    font-size: clamp(35px, 4vw, 54px);

    font-weight: 400;

    line-height: 1.05;
}

.rajvana-location-content p {
    max-width: 500px;

    margin-top: 20px;

    color: rgba(12, 10, 10, .58);

    font-family: "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 14px;
}

.rajvana-location-fact {
    padding-left: 35px;

    border-left: 1px solid rgba(12, 10, 10, .18);
}

.rajvana-location-fact strong {
    display: block;

    color: #8c3b2a;

    font-family: "Playfair Display", serif;

    font-size: 36px;

    font-weight: 400;
}

.rajvana-location-fact span {
    display: block;

    max-width: 180px;

    margin-top: 7px;

    color: rgba(12, 10, 10, .55);

    font-family: "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .rajvana-features {
        padding: 100px 0;
    }

    .rajvana-features-layout {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .rajvana-features-image {
        position: relative;
        top: auto;

        height: 600px;
    }

    .rajvana-location-story {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-top: 90px;
    }

    .rajvana-location-line {
        width: 40px;
        height: 1px;

        justify-self: start;
    }

    .rajvana-location-fact {
        padding-left: 0;

        padding-top: 25px;

        border-left: 0;

        border-top: 1px solid rgba(12, 10, 10, .18);
    }

}


@media (max-width: 600px) {

    .rajvana-features {
        padding: 80px 0;
    }

    .rajvana-features-intro {
        margin-bottom: 55px;
    }

    .rajvana-features-intro h2 {
        font-size: 46px;

        letter-spacing: -1px;
    }

    .rajvana-features-image {
        height: 430px;
    }

    .rajvana-feature {
        grid-template-columns: 35px 1fr;

        gap: 15px;

        padding: 23px 0;
    }

    .rajvana-feature h3 {
        font-size: 23px;
    }

    .rajvana-feature p {
        font-size: 12px;
    }

    .rajvana-location-content h3 {
        font-size: 38px;
    }

}

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    padding: 18px 0;

    background: #0c0a0a;

    box-shadow: 0 4px 25px rgba(0, 0, 0, .18);
}

.header-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {
    display: inline-flex;

    align-items: center;
}

.logo img {
    display: block;

    width: 80px;

    height: auto;
}


/* =========================================
   BOOK NOW
========================================= */

.header-book-btn {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    padding: 11px 20px;

    background: #f2e8d5;

    border: 1px solid #f2e8d5;

    color: #0c0a0a;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: all .3s ease;
}

.header-book-btn span {
    color: #8c3b2a;

    font-size: 14px;

    line-height: 1;

    transition: transform .3s ease;
}

.header-book-btn:hover {
    background: #8c3b2a;

    border-color: #8c3b2a;

    color: #f2e8d5;
}

.header-book-btn:hover span {
    color: #f2e8d5;

    transform: translate(3px, -3px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .header {
        padding: 14px 0;
    }

    .logo img {
        width: 82px;
    }

    .header-book-btn {
        padding: 9px 14px;

        font-size: 9px;

        gap: 9px;
    }

}

/* =========================================
   STICKY BOOK NOW
========================================= */

.sticky-book {
    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 9998;

    width: 330px;

    padding: 7px;

    background: #0c0a0a;

    border: 1px solid rgba(242, 232, 213, .18);

    box-shadow:
        0 15px 45px rgba(12, 10, 10, .25);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity .4s ease,
        visibility .4s ease,
        transform .4s ease;
}


/* Show after scrolling */

.sticky-book.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.sticky-book-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.sticky-book-text {
    padding-left: 13px;
}


.sticky-book-text span {
    display: block;

    color: rgba(242, 232, 213, .5);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.sticky-book-text strong {
    display: block;

    margin-top: 2px;

    color: #f2e8d5;

    font-family:
        "Playfair Display",
        serif;

    font-size: 16px;

    font-weight: 400;
}


/* =========================================
   BUTTON
========================================= */

.sticky-book-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 105px;

    padding: 14px 16px;

    background: #8c3b2a;

    color: #f2e8d5;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    transition:
        background .3s ease,
        color .3s ease;
}


.sticky-book-btn span {
    font-size: 13px;

    transition: transform .3s ease;
}


.sticky-book-btn:hover {
    background: #f2e8d5;

    color: #0c0a0a;
}


.sticky-book-btn:hover span {
    transform: translate(3px, -3px);

    color: #8c3b2a;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sticky-book {
        left: 12px;
        right: 12px;

        bottom: 12px;

        width: auto;

        padding: 6px;
    }


    .sticky-book-inner {
        gap: 10px;
    }


    .sticky-book-text {
        padding-left: 10px;
    }


    .sticky-book-text span {
        font-size: 7px;

        letter-spacing: 1px;
    }


    .sticky-book-text strong {
        font-size: 15px;
    }


    .sticky-book-btn {
        min-width: 105px;

        padding: 13px 14px;
    }

}
.rajvana-enquiry {
    background: #f2e8d5;
    padding: 110px 0;
}


/* =========================================
   MAIN WRAPPER
========================================= */

.rajvana-enquiry-wrap {
    display: grid;

    grid-template-columns: .7fr 1.8fr;

    gap: 80px;

    align-items: center;

    padding: 65px;

    background: #0c0a0a;
}


/* =========================================
   INTRO
========================================= */

.rajvana-enquiry-intro {
    color: #f2e8d5;
}

.rajvana-enquiry-label {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 18px;

    color: #c66c55;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.rajvana-enquiry-label::before {
    content: "";

    width: 30px;
    height: 1px;

    background: #8c3b2a;
}


.rajvana-enquiry-intro h2 {
    font-family:
        "Playfair Display",
        serif;

    font-size: clamp(42px, 4vw, 62px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -1px;
}


.rajvana-enquiry-intro p {
    max-width: 320px;

    margin-top: 25px;

    color: rgba(242, 232, 213, .55);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   FORM
========================================= */

.rajvana-contact-form {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px 20px;
}


.form-field {
    position: relative;

    border-bottom: 1px solid rgba(242, 232, 213, .25);
}


.form-field label {
    display: block;

    margin-bottom: 7px;

    color: rgba(242, 232, 213, .48);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 5px 0 13px;

    border: 0;

    outline: none;

    background: transparent;

    color: #f2e8d5;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 400;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(242, 232, 213, .35);
}


/* SELECT */

.form-field select {
    appearance: none;

    -webkit-appearance: none;

    cursor: pointer;

    background-image:
        linear-gradient(45deg, transparent 50%, #8c3b2a 50%),
        linear-gradient(135deg, #8c3b2a 50%, transparent 50%);

    background-position:
        calc(100% - 5px) 12px,
        100% 12px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}


.form-field select option {
    background: #0c0a0a;

    color: #f2e8d5;
}


/* =========================================
   MESSAGE
========================================= */

.form-field-message {
    grid-column: span 2;
}


.form-field textarea {
    resize: none;

    min-height: 35px;
}


/* =========================================
   SUBMIT
========================================= */

.rajvana-submit {
    align-self: end;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    min-height: 48px;

    padding: 12px 20px;

    border: 1px solid #8c3b2a;

    background: #8c3b2a;

    color: #f2e8d5;

    cursor: pointer;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition:
        background .3s ease,
        color .3s ease;
}


.rajvana-submit span {
    font-size: 14px;

    transition: transform .3s ease;
}


.rajvana-submit:hover {
    background: #f2e8d5;

    color: #0c0a0a;
}


.rajvana-submit:hover span {
    transform: translate(3px, -3px);

    color: #8c3b2a;
}


/* =========================================
   INPUT FOCUS
========================================= */

.form-field:focus-within {
    border-color: #8c3b2a;
}


.form-field:focus-within label {
    color: #c66c55;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .rajvana-enquiry-wrap {
        grid-template-columns: 1fr;

        gap: 55px;

        padding: 50px;
    }

    .rajvana-enquiry-intro p {
        max-width: 500px;
    }

}


@media (max-width: 700px) {

    .rajvana-enquiry {
        padding: 75px 0;
    }


    .rajvana-enquiry-wrap {
        display: block;

        padding: 40px 25px;
    }


    .rajvana-enquiry-intro {
        margin-bottom: 45px;
    }


    .rajvana-enquiry-intro h2 {
        font-size: 43px;
    }


    .rajvana-contact-form {
        display: flex;

        flex-direction: column;

        gap: 23px;
    }


    .form-field,
    .form-field-message {
        width: 100%;
    }


    .form-field input,
    .form-field select,
    .form-field textarea {
        padding-bottom: 12px;
    }


    .form-field-message {
        margin-top: 5px;
    }


    .form-field textarea {
        min-height: 70px;
    }


    .rajvana-submit {
        width: 100%;

        margin-top: 8px;

        min-height: 52px;
    }

}

/* =========================================
   RAJVANA MASTERPLAN
========================================= */

.rajvana-masterplan {
    position: relative;

    padding: 150px 0;

    background: #0c0a0a;

    color: #f2e8d5;

    overflow: hidden;
}


/* =========================================
   BACKGROUND DETAIL
========================================= */

.rajvana-masterplan::before {
    content: "";

    position: absolute;

    width: 800px;
    height: 800px;

    top: -450px;
    right: -300px;

    border: 1px solid rgba(242, 232, 213, .035);

    border-radius: 50%;

    pointer-events: none;
}

.rajvana-masterplan::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    bottom: -300px;
    left: -250px;

    border: 1px solid rgba(140, 59, 42, .12);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.rajvana-masterplan .container {
    position: relative;

    z-index: 2;

    width: min(1400px, calc(100% - 70px));

    margin: 0 auto;
}


/* =========================================
   INTRO
========================================= */

.masterplan-intro {
    max-width: 780px;

    margin-bottom: 70px;
}


.masterplan-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: #c56d55;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.masterplan-eyebrow::before {
    content: "";

    width: 38px;

    height: 1px;

    background: #8c3b2a;
}


.masterplan-intro h2 {
    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: clamp(52px, 6vw, 84px);

    font-weight: 400;

    line-height: .96;

    letter-spacing: -2px;
}


.masterplan-intro h2 em {
    color: #8c3b2a;

    font-style: italic;
}


.masterplan-intro p {
    max-width: 500px;

    margin: 27px 0 0;

    color: rgba(242, 232, 213, .52);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.masterplan-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        340px;

    align-items: stretch;

    gap: 0;
}


/* =========================================
   MAP
========================================= */

.masterplan-map {
    position: relative;

    min-width: 0;

    padding: 10px;

    background: #171312;

    border: 1px solid rgba(242, 232, 213, .1);
}


.map-image-wrap {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #111;

    aspect-ratio: 16 / 10;
}


.masterplan-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform-origin: center;

    transition:
        transform .7s cubic-bezier(.2, .7, .2, 1);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.map-overlay {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(12, 10, 10, .18) 0%,
            transparent 20%,
            transparent 75%,
            rgba(12, 10, 10, .35) 100%
        );
}


/* =========================================
   MAP BRAND
========================================= */

.map-top-label {
    position: absolute;

    top: 25px;
    left: 28px;

    display: flex;

    flex-direction: column;

    color: #f2e8d5;

    text-shadow:
        0 2px 15px rgba(0, 0, 0, .5);
}


.map-top-label span {
    font-family:
        "Playfair Display",
        serif;

    font-size: 23px;

    line-height: 1;
}


.map-top-label strong {
    margin-top: 5px;

    color: rgba(242, 232, 213, .65);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 7px;

    font-weight: 500;

    letter-spacing: 3px;
}


/* =========================================
   MAP CONTROLS
========================================= */

.map-controls {
    position: absolute;

    right: 22px;
    bottom: 22px;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.map-control {
    display: grid;

    place-items: center;

    width: 34px;
    height: 34px;

    padding: 0;

    border: 1px solid rgba(242, 232, 213, .4);

    background: rgba(12, 10, 10, .65);

    color: #f2e8d5;

    backdrop-filter: blur(8px);

    cursor: pointer;

    font-family: Arial, sans-serif;

    font-size: 17px;

    line-height: 1;

    transition:
        background .25s ease,
        border-color .25s ease;
}


.map-control:hover {
    background: #8c3b2a;

    border-color: #8c3b2a;
}


/* =========================================
   MAP LOCATION
========================================= */

.map-location {
    position: absolute;

    left: 50%;

    bottom: 24px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 8px 12px;

    transform: translateX(-50%);

    background: rgba(12, 10, 10, .7);

    border: 1px solid rgba(242, 232, 213, .2);

    backdrop-filter: blur(8px);

    color: #f2e8d5;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    white-space: nowrap;
}


.location-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c85d43;

    box-shadow:
        0 0 0 4px rgba(200, 93, 67, .2);
}


/* =========================================
   SIDEBAR
========================================= */

.masterplan-sidebar {
    display: flex;

    flex-direction: column;

    min-height: 100%;

    padding: 40px 34px;

    background: #8c3b2a;

    color: #f2e8d5;
}


/* =========================================
   SIDEBAR TOP
========================================= */

.sidebar-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.sidebar-index {
    font-family:
        "Playfair Display",
        serif;

    font-size: 17px;
}


.sidebar-category {
    color: rgba(242, 232, 213, .6);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================
   SIDEBAR MAIN
========================================= */

.sidebar-brand {
    margin-top: 55px;

    color: rgba(242, 232, 213, .55);

    font-family:
        "Playfair Display",
        serif;

    font-size: 16px;

    font-style: italic;
}


.sidebar-main h3 {
    margin: 8px 0 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: 50px;

    font-weight: 400;

    line-height: .95;
}


.sidebar-main p {
    margin-top: 22px;

    color: rgba(242, 232, 213, .72);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================
   PROPERTY LIST
========================================= */

.property-list {
    margin-top: 35px;

    padding-top: 18px;

    border-top: 1px solid rgba(242, 232, 213, .2);

    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 20px;
}


.property-list-heading {
    grid-column: 1 / -1;

    margin-bottom: 8px;

    color: rgba(242, 232, 213, .55);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 7px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.property-item {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 6px 0;

    border-bottom: 1px solid rgba(242, 232, 213, .08);

    cursor: default;

    transition:
        padding-left .25s ease,
        color .25s ease;
}


.property-item:hover {
    padding-left: 4px;

    color: #fff;
}


.property-number {
    color: rgba(242, 232, 213, .42);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 7px;
}


.property-name {
    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 9px;

    letter-spacing: .5px;

    text-transform: uppercase;
}


/* =========================================
   SIDEBAR BOTTOM
========================================= */

.sidebar-bottom {
    margin-top: auto;
}


.sidebar-note {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    color: rgba(242, 232, 213, .5);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 7px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.note-line {
    width: 25px;

    height: 1px;

    background: rgba(242, 232, 213, .5);
}


.masterplan-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 22px;

    padding: 15px 0;

    border-top: 1px solid rgba(242, 232, 213, .25);

    color: #f2e8d5;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.masterplan-cta span {
    font-size: 16px;

    transition: transform .3s ease;
}


.masterplan-cta:hover span {
    transform:
        translate(4px, -4px);
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.masterplan-statement {
    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 40px;

    margin-top: 100px;

    padding-top: 55px;

    border-top: 1px solid rgba(242, 232, 213, .1);
}


.masterplan-statement > span {
    color: #8c3b2a;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.masterplan-statement h3 {
    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: clamp(30px, 4vw, 52px);

    font-weight: 400;

    line-height: 1.08;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .masterplan-layout {
        grid-template-columns: 1fr;
    }

    .masterplan-map {
        padding: 8px;
    }

    .map-image-wrap {
        aspect-ratio: 16 / 10;
    }

    .masterplan-sidebar {
        min-height: auto;

        padding: 45px 40px;
    }

    .sidebar-main h3 {
        font-size: 45px;
    }

    .property-list {
        margin-top: 30px;
    }

    .sidebar-bottom {
        margin-top: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .rajvana-masterplan {
        padding: 90px 0;
    }

    .rajvana-masterplan .container {
        width: calc(100% - 30px);
    }


    .masterplan-intro {
        margin-bottom: 45px;
    }


    .masterplan-intro h2 {
        font-size: 46px;

        letter-spacing: -1px;
    }


    .masterplan-intro p {
        font-size: 13px;
    }


    /* Map */

    .masterplan-map {
        padding: 5px;
    }


    .map-image-wrap {
        aspect-ratio: 4 / 5;
    }


    .masterplan-image {
        object-fit: cover;
    }


    .map-top-label {
        top: 15px;

        left: 17px;
    }


    .map-top-label span {
        font-size: 18px;
    }


    .map-top-label strong {
        font-size: 6px;

        letter-spacing: 2px;
    }


    .map-controls {
        right: 12px;

        bottom: 12px;
    }


    .map-control {
        width: 31px;

        height: 31px;
    }


    .map-location {
        bottom: 13px;

        font-size: 7px;
    }


    /* Sidebar */

    .masterplan-sidebar {
        padding: 35px 23px;
    }


    .sidebar-brand {
        margin-top: 35px;
    }


    .sidebar-main h3 {
        font-size: 41px;
    }


    .sidebar-main p {
        font-size: 12px;
    }


    .property-list {
        grid-template-columns: 1fr 1fr;

        column-gap: 15px;

        margin-top: 30px;
    }


    .property-name {
        font-size: 8px;
    }


    .masterplan-statement {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 70px;

        padding-top: 40px;
    }


    .masterplan-statement h3 {
        font-size: 34px;
    }

}
/* =========================================
   RAJVANA GALLERY
========================================= */

.rajvana-gallery {
    position: relative;

    padding: 150px 0 130px;

    background: #0c0a0a;

    color: #f2e8d5;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.gallery-container {
    width: min(1380px, calc(100% - 70px));

    margin: 0 auto;
}


/* =========================================
   INTRO
========================================= */

.gallery-intro {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 75px;
}


.gallery-intro-left {
    max-width: 750px;
}


.gallery-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: #c56d55;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.gallery-eyebrow::before {
    content: "";

    width: 38px;

    height: 1px;

    background: #8c3b2a;
}


.gallery-intro h2 {
    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: clamp(55px, 7vw, 94px);

    font-weight: 400;

    line-height: .9;

    letter-spacing: -3px;
}


.gallery-intro h2 span {
    color: #8c3b2a;

    font-style: italic;
}


.gallery-intro-right {
    max-width: 300px;

    padding-bottom: 5px;
}


.gallery-intro-right p {
    margin: 0;

    color: rgba(242, 232, 213, .5);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


.gallery-count {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

    color: rgba(242, 232, 213, .45);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 2px;
}


.gallery-count span:first-child {
    color: #8c3b2a;
}


.gallery-count i {
    width: 40px;

    height: 1px;

    background: rgba(242, 232, 213, .2);
}


/* =========================================
   GALLERY GRID
========================================= */

.rajvana-gallery-grid {
    display: grid;

    grid-template-columns:
        1.15fr
        .85fr
        .85fr;

    grid-template-rows:
        280px
        300px
        230px
        320px;

    gap: 13px;
}


/* =========================================
   GALLERY ITEMS
========================================= */

.gallery-item {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    padding: 0;

    border: 0;

    background: #151211;

    overflow: hidden;

    cursor: pointer;

    text-align: left;
}


.gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2, .7, .2, 1);
}


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


/* =========================================
   GRID POSITIONS
========================================= */

.gallery-feature {
    grid-column: 1;

    grid-row: 1 / 3;
}


.gallery-top {
    grid-column: 2;

    grid-row: 1;
}


.gallery-middle {
    grid-column: 3;

    grid-row: 1 / 3;
}


.gallery-lower-left {
    grid-column: 1;

    grid-row: 3;
}


.gallery-lower-center {
    grid-column: 2;

    grid-row: 2 / 4;
}


.gallery-lower-right {
    grid-column: 3;

    grid-row: 3;
}


.gallery-vertical {
    grid-column: 1 / 2;

    grid-row: 4;
}


.gallery-final {
    grid-column: 2 / 4;

    grid-row: 4;
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.gallery-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(12, 10, 10, 0) 40%,
            rgba(12, 10, 10, .7) 100%
        );

    opacity: .75;

    transition:
        opacity .4s ease;
}


.gallery-item:hover .gallery-image-overlay {
    opacity: .9;
}


/* =========================================
   FEATURE META
========================================= */

.gallery-image-meta {
    position: absolute;

    left: 27px;
    bottom: 24px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    color: #f2e8d5;
}


.gallery-image-meta span {
    color: #c56d55;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 2px;
}


.gallery-image-meta strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 27px;

    font-weight: 400;
}


/* =========================================
   SMALL LABELS
========================================= */

.gallery-small-label {
    position: absolute;

    left: 18px;
    bottom: 17px;

    color: #f2e8d5;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


/* =========================================
   OPEN ICON
========================================= */

.gallery-open {
    position: absolute;

    top: 20px;
    right: 20px;

    display: grid;

    place-items: center;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(242, 232, 213, .45);

    border-radius: 50%;

    background: rgba(12, 10, 10, .25);

    color: #f2e8d5;

    font-size: 15px;

    opacity: 0;

    transform:
        translateY(8px);

    transition:
        opacity .35s ease,
        transform .35s ease;
}


.gallery-feature:hover .gallery-open {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================
   FINAL IMAGE
========================================= */

.gallery-final-text {
    position: absolute;

    left: 28px;
    bottom: 23px;

    display: flex;

    align-items: baseline;

    gap: 13px;

    color: #f2e8d5;
}


.gallery-final-text span {
    color: #c56d55;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 2px;
}


.gallery-final-text strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 28px;

    font-weight: 400;
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.gallery-statement {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 35px;

    align-items: center;

    margin-top: 110px;

    padding-top: 55px;

    border-top: 1px solid rgba(242, 232, 213, .1);
}


.gallery-statement-line {
    width: 1px;

    height: 105px;

    background: #8c3b2a;

    justify-self: center;
}


.gallery-statement span {
    display: block;

    margin-bottom: 14px;

    color: #8c3b2a;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 3px;
}


.gallery-statement h3 {
    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: clamp(32px, 4vw, 55px);

    font-weight: 400;

    line-height: 1.05;
}


/* =========================================
   LIGHTBOX
========================================= */

.rajvana-lightbox {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 50px;

    background: rgba(12, 10, 10, .97);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}


.rajvana-lightbox.active {
    opacity: 1;

    visibility: visible;
}


.lightbox-content {
    position: relative;

    width: min(1000px, 85vw);

    height: min(78vh, 750px);
}


.lightbox-content img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


.lightbox-caption {
    position: absolute;

    left: 0;

    bottom: -35px;

    display: flex;

    align-items: center;

    gap: 15px;

    color: #f2e8d5;
}


.lightbox-caption span {
    color: #8c3b2a;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 2px;
}


.lightbox-caption strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 19px;

    font-weight: 400;
}


/* =========================================
   LIGHTBOX BUTTONS
========================================= */

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    display: grid;

    place-items: center;

    border: 1px solid rgba(242, 232, 213, .25);

    background: transparent;

    color: #f2e8d5;

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease;
}


.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #8c3b2a;

    border-color: #8c3b2a;
}


.lightbox-close {
    top: 28px;

    right: 35px;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    font-size: 24px;

    font-weight: 300;
}


.lightbox-prev,
.lightbox-next {
    top: 50%;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    transform: translateY(-50%);

    font-size: 17px;
}


.lightbox-prev {
    left: 30px;
}


.lightbox-next {
    right: 30px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .rajvana-gallery {
        padding: 110px 0;
    }

    .gallery-intro {
        display: block;
    }

    .gallery-intro-right {
        max-width: 450px;

        margin-top: 25px;
    }

    .rajvana-gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            420px
            260px
            300px
            360px;
    }

    .gallery-feature {
        grid-column: 1;

        grid-row: 1;
    }

    .gallery-top {
        grid-column: 2;

        grid-row: 1;
    }

    .gallery-middle {
        grid-column: 1;

        grid-row: 2 / 4;
    }

    .gallery-lower-left {
        grid-column: 2;

        grid-row: 2;
    }

    .gallery-lower-center {
        grid-column: 2;

        grid-row: 3;
    }

    .gallery-lower-right {
        grid-column: 1;

        grid-row: 4;
    }

    .gallery-vertical {
        grid-column: 2;

        grid-row: 4;
    }

    .gallery-final {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .rajvana-gallery {
        padding: 85px 0 90px;
    }

    .gallery-container {
        width: calc(100% - 30px);
    }


    .gallery-intro {
        margin-bottom: 45px;
    }


    .gallery-intro h2 {
        font-size: 48px;

        letter-spacing: -1px;
    }


    .gallery-intro-right {
        margin-top: 25px;
    }


    /* =========================
       MOBILE GALLERY
    ========================= */

    .rajvana-gallery-grid {
        display: flex;

        flex-direction: column;

        gap: 9px;
    }


    .gallery-item {
        width: 100%;

        height: auto;

        min-height: 300px;

        flex-shrink: 0;
    }


    .gallery-feature {
        height: 500px;
    }


    .gallery-top {
        height: 300px;
    }


    .gallery-middle {
        height: 440px;
    }


    .gallery-lower-left,
    .gallery-lower-center,
    .gallery-lower-right {
        height: 320px;
    }


    .gallery-vertical {
        height: 430px;
    }


    .gallery-final {
        display: block;

        height: 330px;
    }


    .gallery-image-meta {
        left: 20px;

        bottom: 19px;
    }


    .gallery-image-meta strong {
        font-size: 24px;
    }


    .gallery-open {
        opacity: 1;

        transform: none;

        top: 15px;

        right: 15px;
    }


    /* =========================
       STATEMENT
    ========================= */

    .gallery-statement {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-top: 70px;

        padding-top: 45px;
    }


    .gallery-statement-line {
        width: 40px;

        height: 1px;

        justify-self: start;
    }


    .gallery-statement h3 {
        font-size: 35px;
    }


    /* =========================
       LIGHTBOX
    ========================= */

    .rajvana-lightbox {
        padding: 20px;
    }


    .lightbox-content {
        width: 100%;

        height: 65vh;
    }


    .lightbox-prev,
    .lightbox-next {
        top: auto;

        bottom: 25px;

        width: 42px;

        height: 42px;
    }


    .lightbox-prev {
        left: 20px;
    }


    .lightbox-next {
        right: 20px;
    }


    .lightbox-close {
        top: 18px;

        right: 18px;
    }


    .lightbox-caption {
        bottom: -32px;
    }

}
/* =========================================
   RAJVANA TIGER SECTION
========================================= */

.rajvana-tiger-section {
    position: relative;

    padding: 150px 0;

    background: #0c0a0a;

    color: #f2e8d5;

    overflow: hidden;
}


/* subtle atmospheric circle */

.rajvana-tiger-section::before {
    content: "";

    position: absolute;

    width: 800px;
    height: 800px;

    top: -500px;
    right: -300px;

    border: 1px solid rgba(242, 232, 213, .035);

    border-radius: 50%;

    pointer-events: none;
}


.rajvana-tiger-section::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    bottom: -400px;
    left: -300px;

    border: 1px solid rgba(140, 59, 42, .1);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.tiger-container {
    position: relative;

    z-index: 2;

    width: min(1320px, calc(100% - 70px));

    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.tiger-section-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(242, 232, 213, .1);
}


.tiger-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #c56d55;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.tiger-eyebrow::before {
    content: "";

    width: 35px;

    height: 1px;

    background: #8c3b2a;
}


.tiger-header-location {
    color: rgba(242, 232, 213, .4);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================
   MAIN
========================================= */

.tiger-main {
    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 100px;

    padding: 110px 0;
}


/* =========================================
   COUNT
========================================= */

.tiger-count-area {
    padding-top: 15px;
}


.tiger-count-label {
    color: rgba(242, 232, 213, .45);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.tiger-count {
    display: flex;

    align-items: flex-start;

    margin-top: 10px;
}


.tiger-number {
    font-family:
        "Playfair Display",
        serif;

    font-size: clamp(160px, 17vw, 250px);

    font-weight: 400;

    line-height: .75;

    letter-spacing: -12px;

    color: #f2e8d5;
}


.tiger-plus {
    margin-top: 10px;

    color: #8c3b2a;

    font-family:
        "Playfair Display",
        serif;

    font-size: 65px;

    line-height: 1;
}


.tiger-count-title {
    margin-top: 25px;

    color: #8c3b2a;

    font-family:
        "Playfair Display",
        serif;

    font-size: 31px;

    font-style: italic;
}


.tiger-count-description {
    max-width: 380px;

    margin-top: 25px;

    color: rgba(242, 232, 213, .5);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


.tiger-stat-line {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;
}


.tiger-stat-line span {
    width: 30px;

    height: 1px;

    background: #8c3b2a;
}


.tiger-stat-line small {
    color: rgba(242, 232, 213, .35);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 7px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================
   LINEAGE AREA
========================================= */

.tiger-lineage-area {
    position: relative;

    padding-left: 20px;
}


.lineage-heading {
    margin-bottom: 50px;
}


.lineage-heading > span {
    color: rgba(242, 232, 213, .4);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.lineage-heading h2 {
    margin: 12px 0 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: clamp(45px, 5vw, 65px);

    font-weight: 400;

    line-height: .95;
}


.lineage-heading h2 em {
    color: #8c3b2a;

    font-style: italic;
}


/* =========================================
   LINEAGE
========================================= */

.tiger-lineage {
    position: relative;

    padding-left: 20px;
}


.lineage-item {
    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    min-height: 65px;
}


.lineage-marker {
    position: relative;

    z-index: 2;

    display: grid;

    place-items: center;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border: 1px solid rgba(242, 232, 213, .25);

    border-radius: 50%;

    background: #0c0a0a;

    color: #f2e8d5;

    font-family:
        "Playfair Display",
        serif;

    font-size: 19px;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}


.lineage-item:hover .lineage-marker {
    background: #8c3b2a;

    border-color: #8c3b2a;

    color: #f2e8d5;
}


.lineage-content {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.lineage-number {
    color: rgba(242, 232, 213, .35);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 7px;

    letter-spacing: 1.5px;
}


.lineage-content h3 {
    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px;

    font-weight: 400;
}


.lineage-content p {
    margin: 0;

    color: rgba(242, 232, 213, .4);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 9px;
}


/* =========================================
   CONNECTOR
========================================= */

.lineage-connector {
    position: relative;

    width: 1px;

    height: 45px;

    margin-left: 24px;

    background: rgba(140, 59, 42, .65);
}


/* =========================================
   BRANCH
========================================= */

.lineage-branch {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin-top: 15px;

    padding-left: 35px;
}


.lineage-branch::before {
    content: "";

    position: absolute;

    top: 32px;

    left: 0;

    width: 35px;

    height: 1px;

    background: #8c3b2a;
}


.lineage-child {
    padding: 15px 15px;

    border: 1px solid rgba(242, 232, 213, .08);

    background: rgba(242, 232, 213, .025);

    transition:
        border-color .3s ease,
        transform .3s ease;
}


.lineage-child:hover {
    border-color: rgba(140, 59, 42, .55);

    transform: translateY(-4px);
}


/* =========================================
   BOTTOM
========================================= */

.tiger-bottom {
    display: grid;

    grid-template-columns: 60px 1fr auto;

    align-items: center;

    gap: 30px;

    padding-top: 45px;

    border-top: 1px solid rgba(242, 232, 213, .1);
}


.tiger-bottom-line {
    width: 1px;

    height: 70px;

    background: #8c3b2a;

    justify-self: center;
}


.tiger-bottom p {
    max-width: 600px;

    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: 24px;

    font-weight: 400;

    line-height: 1.35;
}


.tiger-bottom > span {
    color: #8c3b2a;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .tiger-main {
        grid-template-columns: 1fr;

        gap: 80px;
    }

    .tiger-number {
        font-size: 190px;
    }

    .tiger-lineage-area {
        padding-left: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .rajvana-tiger-section {
        padding: 90px 0;
    }


    .tiger-container {
        width: calc(100% - 30px);
    }


    .tiger-section-header {
        align-items: flex-start;

        gap: 20px;
    }


    .tiger-header-location {
        text-align: right;
    }


    .tiger-main {
        padding: 75px 0;

        gap: 80px;
    }


    .tiger-number {
        font-size: 145px;

        letter-spacing: -8px;
    }


    .tiger-plus {
        font-size: 45px;
    }


    .tiger-count-title {
        font-size: 28px;
    }


    .tiger-count-description {
        font-size: 12px;
    }


    .lineage-heading h2 {
        font-size: 45px;
    }


    .tiger-lineage {
        padding-left: 0;
    }


    .lineage-branch {
        grid-template-columns: 1fr;

        gap: 10px;

        padding-left: 20px;
    }


    .lineage-branch::before {
        left: 0;

        width: 20px;
    }


    .lineage-child {
        padding: 14px;
    }


    .tiger-bottom {
        grid-template-columns: 35px 1fr;

        gap: 20px;
    }


    .tiger-bottom > span {
        grid-column: 2;
    }


    .tiger-bottom p {
        font-size: 21px;
    }

}

body::before {
    content: "";

    position: fixed;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    opacity: .45;

    background:

        radial-gradient(
            circle at 10% 15%,
            rgba(66, 87, 48, .14) 0,
            transparent 18%
        ),

        radial-gradient(
            circle at 90% 20%,
            rgba(49, 73, 45, .12) 0,
            transparent 20%
        ),

        radial-gradient(
            circle at 25% 70%,
            rgba(46, 65, 39, .10) 0,
            transparent 22%
        ),

        radial-gradient(
            circle at 80% 85%,
            rgba(67, 57, 34, .10) 0,
            transparent 20%
        );

    filter: blur(35px);
}
body::after {
    content: "";

    position: fixed;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    opacity: .12;

    background-image:

        radial-gradient(
            ellipse at 15% 100%,
            #31472f 0,
            transparent 32%
        ),

        radial-gradient(
            ellipse at 40% 110%,
            #263a27 0,
            transparent 30%
        ),

        radial-gradient(
            ellipse at 70% 105%,
            #31472f 0,
            transparent 35%
        ),

        radial-gradient(
            ellipse at 95% 100%,
            #263a27 0,
            transparent 30%
        );

    filter: blur(12px);
}

/* =========================================
   RAJVANA BOOKING PLATFORMS
========================================= */

.rajvana-booking-platforms {
    position: relative;

    padding: 125px 0 115px;

    background: #0c0a0a;

    color: #f2e8d5;

    overflow: hidden;
}


.rajvana-booking-platforms::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: -450px;
    right: -220px;

    border: 1px solid rgba(242, 232, 213, .035);

    border-radius: 50%;

    pointer-events: none;
}


.rajvana-booking-platforms::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    bottom: -350px;
    left: -220px;

    border: 1px solid rgba(140, 59, 42, .09);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.booking-platforms-container {
    position: relative;

    z-index: 2;

    width: min(1250px, calc(100% - 60px));

    margin: 0 auto;
}


/* =========================================
   INTRO
========================================= */

.booking-platforms-intro {
    text-align: center;

    max-width: 650px;

    margin: 0 auto 60px;
}


.booking-platforms-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: #c56d55;

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.booking-platforms-eyebrow::before,
.booking-platforms-eyebrow::after {
    content: "";

    width: 28px;

    height: 1px;

    background: #8c3b2a;
}


.booking-platforms-intro h2 {
    margin: 18px 0 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: clamp(42px, 5vw, 65px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -1.5px;
}


.booking-platforms-intro h2 em {
    color: #8c3b2a;

    font-style: italic;
}


.booking-platforms-intro p {
    max-width: 450px;

    margin: 20px auto 0;

    color: rgba(242, 232, 213, .48);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================
   SLIDER
========================================= */

.booking-slider-wrap {
    position: relative;

    display: flex;

    align-items: center;

    gap: 25px;
}


.booking-slider {
    width: 100%;

    overflow: hidden;
}


.booking-track {
    display: flex;

    width: max-content;

    transition:
        transform .65s cubic-bezier(.22, .61, .36, 1);
}


/* =========================================
   PLATFORM
========================================= */

.booking-platform {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 220px;

    min-height: 170px;

    padding: 25px 20px;

    margin-right: 12px;

    border: 1px solid rgba(242, 232, 213, .1);

    background: rgba(242, 232, 213, .025);

    color: #f2e8d5;

    text-decoration: none;

    transition:
        background .35s ease,
        border-color .35s ease,
        transform .35s ease;
}


.booking-platform:hover {
    background: #f2e8d5;

    border-color: #f2e8d5;

    color: #0c0a0a;

    transform: translateY(-5px);
}


/* =========================================
   LOGO
========================================= */

.booking-logo-box {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 150px;

    height: 70px;

    margin-bottom: 15px;
}


.booking-logo-box img {
    display: block;

    max-width: 240px;

    max-height: 100px;

    width: auto;

    height: auto;

    object-fit: contain;
border-radius: 10px;
   

    opacity: .85;

    transition:
        filter .35s ease,
        opacity .35s ease,
        transform .35s ease;
}


.booking-platform:hover
.booking-logo-box img {
    filter: none;

    opacity: 1;

    transform: scale(1.04);
}


/* =========================================
   PLATFORM NAME
========================================= */

.booking-platform-name {
    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


/* =========================================
   ARROW
========================================= */

.booking-platform-arrow {
    position: absolute;

    top: 15px;

    right: 15px;

    color: #8c3b2a;

    font-size: 15px;

    opacity: 0;

    transform:
        translate(-3px, 3px);

    transition:
        opacity .3s ease,
        transform .3s ease;
}


.booking-platform:hover
.booking-platform-arrow {
    opacity: 1;

    transform:
        translate(0, 0);
}


/* =========================================
   NAVIGATION BUTTONS
========================================= */

.booking-slider-btn {
    display: grid;

    place-items: center;

    flex: 0 0 auto;

    width: 42px;

    height: 42px;

    padding: 0;

    border: 1px solid rgba(242, 232, 213, .2);

    border-radius: 50%;

    background: transparent;

    color: #f2e8d5;

    cursor: pointer;

    font-size: 16px;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}


.booking-slider-btn:hover {
    background: #8c3b2a;

    border-color: #8c3b2a;

    color: #f2e8d5;
}


/* =========================================
   DOTS
========================================= */

.booking-slider-dots {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;

    margin-top: 28px;
}


.booking-dot {
    width: 5px;

    height: 5px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(242, 232, 213, .2);

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}


.booking-dot.active {
    width: 24px;

    border-radius: 10px;

    background: #8c3b2a;
}


/* =========================================
   NOTE
========================================= */

.booking-platform-note {
    margin-top: 25px;

    text-align: center;

    color: rgba(242, 232, 213, .25);

    font-family:
        "Neue Haas Grotesk Display Pro",
        Arial,
        sans-serif;

    font-size: 7px;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .booking-platform {
        width: 190px;
    }

    .booking-logo-box {
        width: 135px;
    }

    .booking-logo-box img {
        max-width: 125px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .rajvana-booking-platforms {
        padding: 90px 0;
    }


    .booking-platforms-container {
        width: calc(100% - 30px);
    }


    .booking-platforms-intro {
        margin-bottom: 40px;
    }


    .booking-platforms-intro h2 {
        font-size: 43px;
    }


    .booking-platforms-intro p {
        font-size: 12px;
    }


    .booking-slider-wrap {
        gap: 10px;
    }


    .booking-slider-btn {
        width: 34px;

        height: 34px;

        font-size: 13px;
    }


    .booking-platform {
        width: calc(
            100vw - 100px
        );

        min-height: 155px;

        margin-right: 8px;

        padding: 20px 15px;
    }


    .booking-logo-box {
        width: 125px;

        height: 60px;
    }


    .booking-logo-box img {
        max-width: 115px;

        max-height: 48px;
    }


    .booking-platform-name {
        font-size: 8px;
    }


    .booking-platform-arrow {
        opacity: 1;

        transform: none;
    }

}
.booking-track {
    display: flex;

    width: max-content;

    transition:
        transform .7s cubic-bezier(.22, .61, .36, 1);

    will-change: transform;
}

.booking-slider {
    overflow: hidden;
    touch-action: pan-y;
}