/* =========================================================
   HEADER - FIXED / STICKY
========================================================= */

#header-placeholder {
    width: 100%;
    height: 92px;
    margin: 0;
    padding: 0;
}


/* Actual header */

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 92px !important;
    min-height: 92px !important;

    z-index: 999999 !important;

    display: block;

    background: rgba(11, 10, 9, 0.97) !important;

    border-bottom: 1px solid rgba(199, 161, 90, 0.22);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-sizing: border-box;

    margin: 0 !important;
    padding: 0 !important;
}


/* Header inner */

.site-header .header-inner {
    width: calc(100% - 40px) !important;
    max-width: 1180px !important;

    height: 92px !important;
    min-height: 92px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 30px;

    box-sizing: border-box;
}


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

.site-header .logo {
    display: inline-flex !important;
    align-items: center !important;

    flex-shrink: 0;

    text-decoration: none !important;
}

.site-header .logo img {
    display: block !important;

    width: 190px !important;
    max-width: 190px !important;

    height: auto !important;
    max-height: 65px !important;

    object-fit: contain;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.site-header .main-nav {
    display: flex !important;

    align-items: center !important;

    gap: 30px;

    margin-left: auto !important;
    padding: 0 !important;
}

.site-header .main-nav a {
    display: inline-block !important;

    position: relative;

    color: #c7c1b9 !important;

    font-size: 11px !important;
    font-weight: 600 !important;

    line-height: 1.2 !important;

    letter-spacing: 1.2px !important;

    text-transform: uppercase;

    white-space: nowrap;

    text-decoration: none !important;

    transition: color .3s ease;
}

.site-header .main-nav a:hover {
    color: #c7a15a !important;
}


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

.site-header .header-button {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    padding: 12px 19px !important;

    border: 1px solid rgba(199, 161, 90, .30) !important;

    background: transparent !important;

    color: #fff !important;

    font-size: 10px !important;
    font-weight: 700 !important;

    letter-spacing: 1px;

    text-transform: uppercase;

    white-space: nowrap;

    text-decoration: none !important;
}

.site-header .header-button:hover {
    background: #c7a15a !important;

    border-color: #c7a15a !important;

    color: #0b0a09 !important;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.site-header .menu-toggle {
    display: none;

    width: 42px !important;
    height: 42px !important;

    padding: 0 !important;

    margin: 0 !important;

    border: 1px solid rgba(199, 161, 90, .35) !important;

    background: transparent !important;

    cursor: pointer;

    position: relative;

    z-index: 1000001;
}

.site-header .menu-toggle span {
    display: block !important;

    width: 20px !important;
    height: 1px !important;

    margin: 5px auto !important;

    background: #fff !important;

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


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

@media (max-width: 1000px) {

    #header-placeholder {
        height: 78px;
    }

    .site-header {
        height: 78px !important;
        min-height: 78px !important;
    }

    .site-header .header-inner {
        width: calc(100% - 30px) !important;

        height: 78px !important;
        min-height: 78px !important;

        gap: 15px;
    }


    /* Logo */

    .site-header .logo img {
        width: 145px !important;
        max-width: 145px !important;

        max-height: 55px !important;
    }


    /* Hide desktop navigation */

    .site-header .main-nav {
        display: none !important;
    }


    /* Hide desktop button */

    .site-header .header-button {
        display: none !important;
    }


    /* Show hamburger */

    .site-header .menu-toggle {
        display: block !important;

        margin-left: auto !important;
    }


    /* =====================================================
       MOBILE NAV OPEN
    ===================================================== */

    .site-header .main-nav.mobile-open {
        display: flex !important;

        position: fixed !important;

        top: 78px !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        height: auto !important;
        max-height: calc(100vh - 78px);

        overflow-y: auto;

        margin: 0 !important;
        padding: 25px 25px 30px !important;

        flex-direction: column !important;

        align-items: stretch !important;

        gap: 0 !important;

        background: rgba(11, 10, 9, .99) !important;

        border-top: 1px solid rgba(199, 161, 90, .15);

        border-bottom: 1px solid rgba(199, 161, 90, .20);

        box-shadow: 0 15px 40px rgba(0,0,0,.5);

        z-index: 1000000 !important;
    }


    .site-header .main-nav.mobile-open a {
        display: block !important;

        width: 100% !important;

        padding: 15px 5px !important;

        border-bottom: 1px solid rgba(199,161,90,.12);

        color: #fff !important;

        font-size: 13px !important;

        text-align: left !important;
    }


    .site-header .main-nav.mobile-open a:hover {
        color: #c7a15a !important;
    }


    /* Hamburger -> X */

    .site-header .menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .site-header .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}


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

@media (max-width: 480px) {

    #header-placeholder {
        height: 72px;
    }

    .site-header {
        height: 72px !important;
        min-height: 72px !important;
    }

    .site-header .header-inner {
        height: 72px !important;
        min-height: 72px !important;
    }

    .site-header .logo img {
        width: 125px !important;
        max-width: 125px !important;
    }

    .site-header .menu-toggle {
        width: 38px !important;
        height: 38px !important;
    }

    .site-header .main-nav.mobile-open {
        top: 72px !important;
        max-height: calc(100vh - 72px);
    }
}

/* =====================================================
   SECTION 2
   WHAT MAKES OUR CALL GIRLS DIFFERENT
===================================================== */

.different-section {
    padding: 50px 0;
    background: #11100e;
}

.different-header {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.different-header h2 {
    margin: 20px 0 25px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 60px;
    font-weight: 400;
    line-height: 1.1;
}

.different-header h2 em {
    color: #c7a15a;
    font-style: italic;
}

.different-intro {
    max-width: 720px;

    margin: 0 auto 15px;

    color: #aaa49b;

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


/* =========================
   CARDS GRID
========================= */

.different-grid {
    display: grid;

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

    gap: 1px;

    background: rgba(199, 161, 90, 0.25);

    border: 1px solid rgba(199, 161, 90, 0.25);
}


/* =========================
   CARD
========================= */

.different-card {
    position: relative;

    min-height: 420px;

    padding: 40px 35px 70px;

    background: #11100e;

    transition: 0.3s ease;
}

.different-card:hover {
    background: #191713;
}


/* =========================
   NUMBER
========================= */

.card-number {
    position: absolute;

    top: 30px;
    left: 35px;

    color: #c7a15a;

    font-family: Georgia, serif;

    font-size: 14px;
}


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

.card-icon {
    position: absolute;

    top: 22px;
    right: 30px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(199, 161, 90, 0.4);

    border-radius: 50%;

    color: #c7a15a;
}


/* =========================
   TITLE
========================= */

.different-card h3 {
    max-width: 280px;

    margin-top: 75px;
    margin-bottom: 22px;

    font-family: Georgia, "Times New Roman", serif;

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

    line-height: 1.2;
}


/* =========================
   TEXT
========================= */

.different-card p {
    margin-bottom: 15px;

    color: #918b83;

    font-size: 14px;

    line-height: 1.8;
}


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

.card-line {
    position: absolute;

    left: 35px;
    bottom: 35px;

    width: 45px;
    height: 1px;

    background: #c7a15a;

    transition: 0.3s ease;
}

.different-card:hover .card-line {
    width: 90px;
}


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

@media (max-width: 1000px) {

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

}


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

@media (max-width: 600px) {

    .different-section {
        padding: 80px 0;
    }

    .different-header h2 {
        font-size: 42px;
    }

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

    .different-card {
        min-height: 390px;

        padding: 35px 27px 70px;
    }

    .card-number {
        left: 27px;
    }

    .card-icon {
        right: 25px;
    }

    .card-line {
        left: 27px;
    }

}
/* =====================================================
   SECTION 3 — EXPLORE HYDERABAD
===================================================== */

.places-section {
    position: relative;

    padding: 130px 0;

    background: #171410;

    overflow: hidden;
}


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

.places-intro {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 100px;

    align-items: end;

    margin-bottom: 75px;
}


.places-intro-left .eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: #c7a15a;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.places-intro-left .eyebrow span {
    width: 30px;

    height: 1px;

    background: #c7a15a;
}


.places-intro h2 {
    max-width: 700px;

    margin: 0;

    color: #f1ece4;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -2px;
}


.places-intro h2 em {
    color: #c7a15a;

    font-style: italic;
}


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

.places-intro-right {
    padding-bottom: 5px;
}


.places-intro-right p {
    margin: 0 0 35px;

    color: #aaa49b;

    font-size: 14px;

    line-height: 1.9;
}


.places-stat {
    display: flex;

    align-items: center;

    gap: 18px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(199,161,90,0.3);
}


.places-stat strong {
    color: #c7a15a;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;

    font-weight: 400;
}


.places-stat span {
    color: #80796f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =====================================================
   FEATURED LOCATIONS
===================================================== */

.featured-places {
    display: grid;

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

    gap: 0;

    border-top:
        1px solid
        rgba(199,161,90,0.3);

    border-left:
        1px solid
        rgba(199,161,90,0.3);
}


.featured-place {
    position: relative;

    min-height: 350px;

    padding: 38px 45px 55px;

    border-right:
        1px solid
        rgba(199,161,90,0.3);

    border-bottom:
        1px solid
        rgba(199,161,90,0.3);

    transition:
        background 0.35s ease;
}


.featured-place:hover {
    background: #0f0e0c;
}


/* =====================================================
   FEATURE NUMBER
===================================================== */

.featured-place-number {
    margin-bottom: 55px;

    color: #c7a15a;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;

    letter-spacing: 2px;
}


/* =====================================================
   CATEGORY
===================================================== */

.featured-place-content > span {
    display: block;

    margin-bottom: 12px;

    color: #80796f;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =====================================================
   TITLE
===================================================== */

.featured-place-content h3 {
    margin: 0 0 18px;

    color: #f1ece4;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32px;

    font-weight: 400;

    line-height: 1.15;

    transition:
        color 0.3s ease;
}


.featured-place:hover
.featured-place-content h3 {
    color: #c7a15a;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.featured-place-content p {
    max-width: 450px;

    margin: 0;

    color: #918b83;

    font-size: 13px;

    line-height: 1.8;
}


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

.featured-place-arrow {
    position: absolute;

    right: 35px;

    top: 35px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(199,161,90,0.3);

    border-radius: 50%;

    color: #c7a15a;

    font-size: 17px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.featured-place:hover
.featured-place-arrow {
    background: #c7a15a;

    color: #171410;

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


/* =====================================================
   OTHER PLACES
===================================================== */

.other-places {
    display: grid;

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

    margin-top: 45px;

    border-top:
        1px solid
        rgba(255,255,255,0.08);
}


.other-place {
    position: relative;

    display: grid;

    grid-template-columns: 35px 1fr;

    column-gap: 12px;

    padding: 28px 25px;

    border-right:
        1px solid
        rgba(255,255,255,0.08);

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);
}


.other-place:nth-child(3n) {
    border-right: none;
}


.other-place > span {
    grid-row: span 2;

    color: #c7a15a;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 12px;
}


.other-place strong {
    color: #e8e2d9;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;

    font-weight: 400;
}


.other-place small {
    margin-top: 5px;

    color: #777169;

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


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

@media (max-width: 900px) {

    .places-section {
        padding: 100px 0;
    }


    .places-intro {
        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }


    .places-intro h2 {
        font-size: 50px;
    }


    .featured-place {
        min-height: 370px;

        padding: 32px;
    }


    .featured-place-content h3 {
        font-size: 28px;
    }


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


    .other-place:nth-child(3n) {
        border-right:
            1px solid
            rgba(255,255,255,0.08);
    }


    .other-place:nth-child(2n) {
        border-right: none;
    }

}


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

@media (max-width: 650px) {

    .places-section {
        padding: 80px 0;
    }


    .places-intro {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 50px;
    }


    .places-intro h2 {
        font-size: 42px;

        letter-spacing: -1px;
    }


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


    .featured-places {
        grid-template-columns: 1fr;
    }


    .featured-place {
        min-height: 320px;

        padding: 30px 25px 45px;
    }


    .featured-place-number {
        margin-bottom: 45px;
    }


    .featured-place-content h3 {
        font-size: 27px;
    }


    .featured-place-content p {
        font-size: 13px;
    }


    .featured-place-arrow {
        top: 25px;

        right: 25px;

        width: 38px;

        height: 38px;
    }


    .other-places {
        grid-template-columns: 1fr;
    }


    .other-place,
    .other-place:nth-child(2n),
    .other-place:nth-child(3n) {
        border-right: none;
    }

}

/* =====================================================
   SECTION 4 — PERSONALITIES
===================================================== */

.personalities-section {
    position: relative;

    padding: 130px 0;

    background: #0c0b0a;

    overflow: hidden;
}


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

.personalities-intro {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 90px;

    align-items: end;

    margin-bottom: 75px;

    padding-bottom: 55px;

    border-bottom:
        1px solid
        rgba(199, 161, 90, 0.25);
}


/* =====================================================
   EYEBROW
===================================================== */

.personalities-heading .eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    color: #c7a15a;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.personalities-heading .eyebrow span {
    width: 30px;

    height: 1px;

    background: #c7a15a;
}


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

.personalities-heading h2 {
    max-width: 750px;

    margin: 0;

    color: #f0ece5;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    font-weight: 400;

    line-height: 1.04;

    letter-spacing: -2px;
}


.personalities-heading h2 em {
    color: #c7a15a;

    font-style: italic;
}


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

.personalities-description {
    max-width: 470px;

    padding-bottom: 5px;
}


.personalities-description p {
    margin: 0 0 18px;

    color: #969087;

    font-size: 14px;

    line-height: 1.85;
}


.personalities-description p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   PERSONALITY GRID
===================================================== */

.personality-grid {
    display: grid;

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

    gap: 55px 28px;
}


/* =====================================================
   PERSONALITY CARD
===================================================== */

.personality-card {
    position: relative;

    min-width: 0;
}


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

.personality-image {
    position: relative;

    width: 100%;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background: #181613;
}


.personality-image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.personality-card:hover
.personality-image img {
    transform: scale(1.06);
}


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

.personality-gradient {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.50) 30%,
            rgba(0, 0, 0, 0.05) 65%,
            rgba(0, 0, 0, 0.08) 100%
        );

    pointer-events: none;
}


/* =====================================================
   NUMBER
===================================================== */

.personality-number {
    position: absolute;

    top: 22px;

    left: 22px;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    border:
        1px solid
        rgba(255, 255, 255, 0.35);

    color: #f1ece4;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 11px;

    letter-spacing: 1px;

    background:
        rgba(10, 9, 8, 0.35);

    backdrop-filter:
        blur(5px);
}


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

.personality-image-title {
    position: absolute;

    z-index: 2;

    left: 25px;

    right: 65px;

    bottom: 25px;
}


.personality-image-title span {
    display: block;

    margin-bottom: 9px;

    color: #c7a15a;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.8px;

    line-height: 1.4;
}


.personality-image-title h3 {
    margin: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;

    font-weight: 400;

    line-height: 1.1;
}


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

.personality-arrow {
    position: absolute;

    z-index: 3;

    right: 22px;

    bottom: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    border:
        1px solid
        rgba(199, 161, 90, 0.55);

    border-radius: 50%;

    color: #c7a15a;

    font-size: 16px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.personality-card:hover
.personality-arrow {
    background: #c7a15a;

    color: #0c0b0a;

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


/* =====================================================
   TEXT BELOW IMAGE
===================================================== */

.personality-text {
    padding:
        20px
        5px
        0;
}


.personality-text p {
    margin: 0;

    color: #817b73;

    font-size: 12.5px;

    line-height: 1.8;
}


/* =====================================================
   GOLD LINE UNDER CARD
===================================================== */

.personality-text::before {
    content: "";

    display: block;

    width: 35px;

    height: 1px;

    margin-bottom: 17px;

    background: #c7a15a;

    opacity: 0.65;
}


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

.personalities-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 85px;

    padding-top: 35px;

    border-top:
        1px solid
        rgba(199, 161, 90, 0.22);
}


.personalities-bottom p {
    margin: 0;

    color: #918b83;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;

    font-style: italic;
}


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

.personalities-bottom .button {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding:
        15px
        23px;

    color: #0c0b0a;

    background: #c7a15a;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.personalities-bottom .button span {
    font-size: 17px;

    line-height: 1;
}


.personalities-bottom .button:hover {
    background: #dfc17b;

    transform:
        translateY(-2px);
}


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

@media (max-width: 950px) {

    .personalities-section {
        padding: 100px 0;
    }


    .personalities-intro {
        grid-template-columns: 1fr 1fr;

        gap: 45px;

        margin-bottom: 60px;
    }


    .personalities-heading h2 {
        font-size: 48px;

        letter-spacing: -1.5px;
    }


    .personality-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px 22px;
    }


    .personality-image-title h3 {
        font-size: 25px;
    }

}


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

@media (max-width: 650px) {

    .personalities-section {
        padding: 80px 0;
    }


    .personalities-intro {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 50px;

        padding-bottom: 40px;
    }


    .personalities-heading h2 {
        font-size: 41px;

        line-height: 1.07;

        letter-spacing: -1px;
    }


    .personalities-description {
        max-width: 100%;
    }


    .personalities-description p {
        font-size: 13px;

        line-height: 1.8;
    }


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

        gap: 50px;
    }


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


    .personality-image-title {
        left: 22px;

        bottom: 22px;
    }


    .personality-image-title h3 {
        font-size: 29px;
    }


    .personality-number {
        top: 18px;

        left: 18px;
    }


    .personality-arrow {
        right: 18px;

        bottom: 18px;
    }


    .personality-text {
        padding-top: 18px;
    }


    .personality-text p {
        font-size: 13px;
    }


    .personalities-bottom {
        align-items: flex-start;

        flex-direction: column;

        margin-top: 65px;

        padding-top: 30px;
    }


    .personalities-bottom p {
        font-size: 19px;
    }

}


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

@media (max-width: 400px) {

    .personalities-section {
        padding: 65px 0;
    }


    .personalities-heading h2 {
        font-size: 36px;
    }


    .personality-image-title h3 {
        font-size: 25px;
    }


    .personality-text p {
        font-size: 12.5px;
    }

}

/* =====================================================
   SECTION 5 — BENEFITS EDITORIAL TIMELINE
===================================================== */

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




/* =====================================================
   LEFT SIDE
===================================================== */

.benefits-header-left {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 500px;
}


/* =====================================================
   EYEBROW
===================================================== */

.benefits-header-left .eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 210px;

    color: #c7a15a;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.benefits-header-left .eyebrow span {
    display: block;

    width: 26px;

    height: 1px;

    background: #c7a15a;
}


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

.benefits-intro {
    max-width: 390px;

    margin-top: auto;
}


.benefits-intro p {
    margin: 0 0 22px;

    color: #77736d;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.8;
}


.benefits-intro p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   RIGHT SIDE
===================================================== */

.benefits-header-right {
    padding-top: 55px;
}


.benefits-header-right h2 {
    max-width: 510px;

    margin: 0;

    color: #eee9e1;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(55px, 5.2vw, 78px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -3px;
}


.benefits-header-right h2 em {
    color: #c7a15a;

    font-style: italic;
}


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

.benefits-divider {
    width: 100%;

    height: 1px;

    margin-top: 20px;

    background: rgba(199, 161, 90, 0.20);
}


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

@media (max-width: 900px) {

    .benefits-header {
        grid-template-columns: 1fr 1fr;

        gap: 50px;

        min-height: 500px;
    }


    .benefits-header-left {
        min-height: 450px;
    }


    .benefits-header-left .eyebrow {
        margin-top: 170px;
    }


    .benefits-header-right {
        padding-top: 45px;
    }


    .benefits-header-right h2 {
        font-size: 52px;

        letter-spacing: -2px;
    }

}


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

@media (max-width: 700px) {

    .benefits-header {
        display: block;

        min-height: auto;
    }


    .benefits-header-left {
        min-height: auto;
    }


    .benefits-header-left .eyebrow {
        margin-top: 0;

        margin-bottom: 50px;
    }


    .benefits-header-right {
        padding-top: 0;

        margin-bottom: 50px;
    }


    .benefits-header-right h2 {
        max-width: 100%;

        font-size: 48px;

        line-height: 1;

        letter-spacing: -2px;
    }


    .benefits-intro {
        max-width: 100%;

        margin-top: 50px;
    }


    .benefits-intro p {
        font-size: 12px;

        line-height: 1.85;
    }


    .benefits-divider {
        margin-top: 60px;
    }

}


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

@media (max-width: 400px) {

    .benefits-header-right h2 {
        font-size: 41px;
    }

}

.benefits-section {
    position: relative;
    padding: 0px 0 150px;
    background: #11100e;
    overflow: hidden;
}


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

.benefits-header {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 90px;
    align-items: end;

    padding-bottom: 75px;
    
}


.benefits-header .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;

    color: #c7a15a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.benefits-header .eyebrow span {
    display: block;
    width: 32px;
    height: 1px;
    background: #c7a15a;
}


.benefits-header h2 {
    max-width: 700px;
    margin: 0;

    color: #f0ece5;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(46px, 5.5vw, 76px);
    font-weight: 400;
    line-height: 1.02;

    letter-spacing: -2.5px;
}


.benefits-header h2 em {
    color: #c7a15a;
    font-style: italic;
}


.benefits-intro {
    max-width: 480px;
}


.benefits-intro p {
    margin: 0 0 20px;

    color: #8f8981;

    font-size: 14px;
    line-height: 1.9;
}


.benefits-intro p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   TIMELINE
===================================================== */

.benefits-timeline {
    position: relative;

    padding-top: 110px;
}


/*
   Central timeline line
*/

.benefits-timeline::before {
    content: "";

    position: absolute;

    top: 110px;
    bottom: 0;

    left: 50%;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(199, 161, 90, 0.65),
            rgba(199, 161, 90, 0.12)
        );
}


/* =====================================================
   BENEFIT ITEM
===================================================== */

.benefit-item {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 100px;

    align-items: center;

    min-height: 440px;

    margin-bottom: 10px;
}


.benefit-item:last-child {
    margin-bottom: 0;
}


/* =====================================================
   CONTENT
===================================================== */

.benefit-content {
    position: relative;

    padding-right: 35px;
}


.benefit-item-reverse .benefit-content {
    order: 2;

    padding-right: 0;
    padding-left: 35px;
}


.benefit-number {
    position: absolute;

    top: -70px;
    left: -25px;

    color: rgba(199, 161, 90, 0.08);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 150px;

    font-weight: 400;

    line-height: 1;

    pointer-events: none;
}


.benefit-copy {
    position: relative;
    z-index: 2;
}


.benefit-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #c7a15a;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.benefit-copy h3 {
    max-width: 520px;

    margin: 0 0 25px;

    color: #f0ece5;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(31px, 3vw, 46px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -1px;
}


.benefit-copy p {
    max-width: 540px;

    margin: 0 0 18px;

    color: #89837b;

    font-size: 13px;

    line-height: 1.9;
}


.benefit-copy p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   CENTER DOT
===================================================== */

.benefit-item::before {
    content: "";

    position: absolute;

    z-index: 5;

    left: 50%;

    top: 50%;

    width: 13px;
    height: 13px;

    margin-left: -6px;
    margin-top: -6px;

    border: 2px solid #11100e;

    border-radius: 50%;

    background: #c7a15a;

    box-shadow:
        0 0 0 7px rgba(199, 161, 90, 0.10);
}


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

.benefit-visual {
    position: relative;

    width: 100%;

    height: 350px;

    overflow: hidden;

    background: #191714;
}


.benefit-visual::after {
    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid
        rgba(199, 161, 90, 0.18);

    pointer-events: none;
}


.benefit-visual img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.benefit-item:hover
.benefit-visual img {
    transform: scale(1.045);
}


/* =====================================================
   REVERSE ITEM
===================================================== */

.benefit-item-reverse .benefit-visual {
    order: 1;
}


.benefit-item-reverse .benefit-number {
    left: auto;
    right: -25px;
}


/* =====================================================
   IMAGE DECORATIVE FRAME
===================================================== */

.benefit-visual::before {
    content: "";

    position: absolute;

    z-index: 2;

    top: 18px;
    left: 18px;

    width: 55px;
    height: 55px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.5);

    border-left:
        1px solid
        rgba(255, 255, 255, 0.5);

    pointer-events: none;
}


/* =====================================================
   DESKTOP IMAGE OFFSET
===================================================== */

.benefit-item:nth-child(odd)
.benefit-visual {
    transform: translateY(-20px);
}


.benefit-item:nth-child(even)
.benefit-visual {
    transform: translateY(20px);
}


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

@media (max-width: 950px) {

    .benefits-section {
        padding: 110px 0 120px;
    }


    .benefits-header {
        grid-template-columns: 1fr 1fr;

        gap: 45px;

        padding-bottom: 60px;
    }


    .benefits-header h2 {
        font-size: 52px;
    }


    .benefits-timeline {
        padding-top: 80px;
    }


    .benefits-timeline::before {
        top: 80px;
    }


    .benefit-item {
        gap: 55px;

        min-height: 450px;

        margin-bottom: 70px;
    }


    .benefit-visual {
        height: 430px;
    }


    .benefit-copy h3 {
        font-size: 34px;
    }


    .benefit-number {
        font-size: 110px;
    }

}


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

@media (max-width: 650px) {

    .benefits-section {
        padding: 80px 0 90px;
    }


    /* Header */

    .benefits-header {
        display: block;

        padding-bottom: 45px;
    }


    .benefits-header h2 {
        font-size: 42px;

        line-height: 1.06;

        letter-spacing: -1px;

        margin-bottom: 35px;
    }


    .benefits-intro {
        max-width: none;
    }


    .benefits-intro p {
        font-size: 13px;

        line-height: 1.8;
    }


    /* Timeline */

    .benefits-timeline {
        padding-top: 70px;

        padding-left: 25px;
    }


    .benefits-timeline::before {
        top: 70px;

        left: 6px;
    }


    /* Items */

    .benefit-item,
    .benefit-item-reverse {
        display: flex;

        flex-direction: column;

        gap: 35px;

        min-height: 0;

        margin-bottom: 75px;

        align-items: stretch;
    }


    /* Remove desktop ordering */

    .benefit-item .benefit-content,
    .benefit-item-reverse .benefit-content,
    .benefit-item .benefit-visual,
    .benefit-item-reverse .benefit-visual {
        order: initial;

        padding-left: 0;
        padding-right: 0;

        transform: none;
    }


    /* Timeline dot */

    .benefit-item::before {
        left: -19px;

        top: 5px;

        width: 11px;
        height: 11px;

        margin: 0;
    }


    /* Number */

    .benefit-number,
    .benefit-item-reverse .benefit-number {
        position: relative;

        top: auto;
        left: auto;
        right: auto;

        display: block;

        margin-bottom: -30px;

        color: rgba(199, 161, 90, 0.13);

        font-size: 90px;
    }


    .benefit-label {
        margin-bottom: 13px;
    }


    .benefit-copy h3 {
        font-size: 32px;

        line-height: 1.1;

        margin-bottom: 20px;
    }


    .benefit-copy p {
        font-size: 13px;

        line-height: 1.85;
    }


    /* Image */

    .benefit-visual {
        width: 100%;

        height: 380px;
    }


    .benefit-visual::before {
        top: 14px;
        left: 14px;

        width: 42px;
        height: 42px;
    }

}


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

@media (max-width: 400px) {

    .benefits-header h2 {
        font-size: 36px;
    }


    .benefit-copy h3 {
        font-size: 28px;
    }


    .benefit-visual {
        height: 330px;
    }


    .benefit-copy p {
        font-size: 12.5px;
    }

}

/* =====================================================
   SECTION 6 — FAQ
===================================================== */

.faq-section {
    position: relative;

    padding: 140px 0 150px;

    background: #0d0c0b;

    overflow: hidden;
}


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

.faq-layout {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 110px;

    align-items: start;
}


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

.faq-intro {
    position: sticky;

    top: 100px;
}


.faq-intro .eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: #c7a15a;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.faq-intro .eyebrow span {
    display: block;

    width: 32px;

    height: 1px;

    background: #c7a15a;
}


.faq-intro h2 {
    margin: 0;

    color: #f0ece5;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 72px);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -2px;
}


.faq-intro h2 em {
    color: #c7a15a;

    font-style: italic;
}


.faq-intro .gold-line {
    width: 65px;

    height: 1px;

    margin: 30px 0;
    
    background: #c7a15a;
}


.faq-intro > p {
    max-width: 420px;

    margin: 0;

    color: #858079;

    font-size: 13px;

    line-height: 1.9;
}


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

.faq-note {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid
        rgba(199, 161, 90, 0.2);
}


.faq-note-number {
    color: #c7a15a;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 42px;

    line-height: 1;
}


.faq-note strong {
    display: block;

    margin-bottom: 5px;

    color: #e9e4dc;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.faq-note small {
    display: block;

    color: #6f6a64;

    font-size: 11px;
}


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

.faq-list {
    border-top: 1px solid
        rgba(199, 161, 90, 0.25);
}


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

.faq-item {
    border-bottom: 1px solid
        rgba(255, 255, 255, 0.09);
}


/* =====================================================
   QUESTION
===================================================== */

.faq-item summary {
    display: grid;

    grid-template-columns: 55px 1fr 35px;

    align-items: center;

    gap: 20px;

    min-height: 92px;

    cursor: pointer;

    list-style: none;

    color: #e7e2da;

    transition:
        color 0.25s ease,
        padding 0.3s ease;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item summary::marker {
    display: none;
}


.faq-item summary:hover {
    color: #c7a15a;
}


/* =====================================================
   NUMBER
===================================================== */

.faq-number {
    color: #6d665e;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;

    letter-spacing: 1px;

    transition: color 0.25s ease;
}


.faq-item summary:hover .faq-number,
.faq-item[open] .faq-number {
    color: #c7a15a;
}


/* =====================================================
   QUESTION TEXT
===================================================== */

.faq-question {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;

    font-weight: 400;

    line-height: 1.3;
}


/* =====================================================
   PLUS ICON
===================================================== */

.faq-plus {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;

    height: 30px;

    border: 1px solid
        rgba(199, 161, 90, 0.3);

    border-radius: 50%;

    color: #c7a15a;

    font-size: 19px;

    font-weight: 300;

    line-height: 1;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


/* =====================================================
   OPEN STATE
===================================================== */

.faq-item[open] summary {
    color: #c7a15a;

    padding-bottom: 20px;
}


.faq-item[open] .faq-plus {
    transform: rotate(45deg);

    background: #c7a15a;

    color: #0d0c0b;
}


/* =====================================================
   ANSWER
===================================================== */

.faq-answer {
    padding:

        0

        75px

        30px

        75px;
}


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

    margin: 0;

    color: #817b74;

    font-size: 13px;

    line-height: 1.9;
}


/* =====================================================
   SUBTLE OPEN ACCENT
===================================================== */

.faq-item[open] {
    border-bottom-color:
        rgba(199, 161, 90, 0.25);
}


.faq-item[open]::before {
    content: "";

    position: absolute;
}


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

@media (max-width: 950px) {

    .faq-section {
        padding: 110px 0 120px;
    }


    .faq-layout {
        grid-template-columns: 0.7fr 1.3fr;

        gap: 60px;
    }


    .faq-intro h2 {
        font-size: 50px;
    }


    .faq-question {
        font-size: 18px;
    }


    .faq-answer {
        padding-left: 75px;

        padding-right: 30px;
    }

}


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

@media (max-width: 700px) {

    .faq-section {
        padding: 85px 0 90px;
    }


    .faq-layout {
        display: block;
    }


    .faq-intro {
        position: static;

        margin-bottom: 60px;
    }


    .faq-intro h2 {
        font-size: 43px;

        letter-spacing: -1px;
    }


    .faq-intro > p {
        max-width: none;
    }


    .faq-note {
        margin-top: 35px;
    }


    .faq-item summary {
        grid-template-columns: 40px 1fr 30px;

        gap: 12px;

        min-height: 82px;
    }


    .faq-question {
        font-size: 17px;
    }


    .faq-number {
        font-size: 12px;
    }


    .faq-plus {
        width: 27px;

        height: 27px;

        font-size: 17px;
    }


    .faq-answer {
        padding:

            0

            20px

            28px

            52px;
    }


    .faq-answer p {
        font-size: 13px;

        line-height: 1.85;
    }

}


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

@media (max-width: 400px) {

    .faq-intro h2 {
        font-size: 37px;
    }


    .faq-question {
        font-size: 15px;
    }


    .faq-item summary {
        grid-template-columns: 32px 1fr 28px;

        gap: 10px;
    }


    .faq-answer {
        padding-left: 42px;
    }

}

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

.site-footer {
    position: relative;

    overflow: hidden;

    padding: 110px 0 30px;

    background: #0b0a09;

    border-top: 1px solid rgba(199, 161, 90, 0.18);
}


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

.footer-top {
    display: grid;

    grid-template-columns: 1.15fr 1fr;

    gap: 100px;

    padding-bottom: 90px;
}


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

.footer-brand {
    max-width: 620px;
}


.footer-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

    color: #c7a15a;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.footer-eyebrow span {
    display: block;

    width: 28px;

    height: 1px;

    background: #c7a15a;
}


.footer-brand h2 {
    margin: 0 0 30px;

    color: #eee9e1;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 56px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -3px;
}


.footer-brand h2 em {
    color: #c7a15a;

    font-style: italic;
}


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

    margin: 0 0 35px;

    color: #77736d;

    font-size: 13px;

    line-height: 1.8;
}


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

.footer-cta {
    display: inline-flex;

    align-items: center;

    gap: 28px;

    padding: 14px 20px;

    color: #0b0a09;

    background: #c7a15a;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-decoration: none;

    transition: all .3s ease;
}


.footer-cta span {
    font-size: 18px;

    line-height: 1;
}


.footer-cta:hover {
    gap: 38px;

    background: #e0bd72;
}


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

.footer-navigation {
    display: grid;

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

    gap: 35px;

    padding-top: 10px;
}


.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h3 {
    margin: 0 0 25px;

    color: #eee9e1;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.footer-column a {
    position: relative;

    margin-bottom: 14px;

    color: #77736d;

    font-size: 12px;

    line-height: 1.5;

    text-decoration: none;

    transition: color .3s ease;
}


.footer-column a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -3px;

    width: 0;

    height: 1px;

    background: #c7a15a;

    transition: width .3s ease;
}


.footer-column a:hover {
    color: #c7a15a;
}


.footer-column a:hover::after {
    width: 100%;
}


/* =====================================================
   LARGE BRAND TEXT
===================================================== */

.footer-big-text {
    margin: 0;

    color: transparent;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(80px, 15vw, 220px);

    font-weight: 400;

    line-height: .75;

    letter-spacing: -10px;

    text-align: center;

    -webkit-text-stroke: 1px rgba(199, 161, 90, .28);

    user-select: none;

    white-space: nowrap;
}


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

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding-top: 28px;

    margin-top: 35px;

    border-top: 1px solid rgba(199, 161, 90, .15);
}


.footer-bottom p {
    margin: 0;

    color: #55514c;

    font-size: 10px;

    line-height: 1.5;
}


.footer-legal {
    display: flex;

    align-items: center;

    gap: 12px;
}


.footer-legal a {
    color: #55514c;

    font-size: 10px;

    text-decoration: none;

    transition: color .3s ease;
}


.footer-legal a:hover {
    color: #c7a15a;
}


.footer-legal span {
    color: #c7a15a;

    font-size: 8px;
}


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

@media (max-width: 900px) {

    .site-footer {
        padding-top: 80px;
    }


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

        gap: 70px;
    }


    .footer-navigation {
        max-width: 650px;
    }


    .footer-big-text {
        font-size: 15vw;

        letter-spacing: -6px;
    }

}


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

@media (max-width: 650px) {

    .site-footer {
        padding: 70px 0 25px;
    }


    .footer-top {
        gap: 55px;

        padding-bottom: 60px;
    }


    .footer-brand h2 {
        font-size: 48px;

        letter-spacing: -2px;
    }


    .footer-brand p {
        font-size: 12px;
    }


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

        gap: 45px 25px;
    }


    .footer-column:last-child {
        grid-column: span 2;
    }


    .footer-big-text {
        font-size: 22vw;

        letter-spacing: -4px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .footer-legal {
        flex-wrap: wrap;

        gap: 8px;
    }

}


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

@media (max-width: 400px) {

    .footer-brand h2 {
        font-size: 42px;
    }


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


    .footer-column:last-child {
        grid-column: auto;
    }


    .footer-big-text {
        font-size: 24vw;
    }

}

 /* =====================================================
           GLOBAL
        ===================================================== */

        :root {
            --black: #0b0a09;
            --black-soft: #11100e;
            --black-card: #171512;

            --gold: #c7a15a;
            --gold-light: #dfbf7b;

            --white: #ffffff;
            --text: #aaa49b;
            --text-light: #d8d2ca;

            --border: rgba(199, 161, 90, 0.22);

            --container: 1180px;
        }


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


        html {
            scroll-behavior: smooth;
        }


        body {
            background: var(--black);
            color: var(--white);

            font-family:
                Arial,
                Helvetica,
                sans-serif;

            line-height: 1.6;
        }


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


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


        button {
            font-family: inherit;
        }


        .container {
            width: min(
                calc(100% - 40px),
                var(--container)
            );

            margin: 0 auto;
        }


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

        .site-header {
            position: absolute;

            top: 0;
            left: 0;
            right: 0;

            z-index: 100;

            padding: 28px 0;

            border-bottom:
                1px solid
                rgba(255,255,255,0.06);
                
                position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    background: rgba(11, 10, 9, 0.88);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(199, 161, 90, 0.18);

    transition: all 0.3s ease;
        }


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

            gap: 30px;
        }


        .logo {
            display: flex;
            align-items: center;

            gap: 12px;
        }


        .logo-mark {
            width: 42px;
            height: 42px;

            display: grid;
            place-items: center;

            border: 1px solid var(--gold);

            color: var(--gold);

            font-family: Georgia, serif;
            font-size: 21px;
        }


        .logo-text {
            display: flex;
            flex-direction: column;

            font-size: 12px;
            font-weight: 700;

            letter-spacing: 2px;
        }


        .logo-text small {
            margin-top: 2px;

            color: var(--gold);

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

            letter-spacing: 2.5px;
        }


        .main-nav {
            display: flex;
            align-items: center;

            gap: 30px;
        }


        .main-nav a {
            position: relative;

            color: #c7c1b9;

            font-size: 11px;
            font-weight: 600;

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

            transition: color 0.3s ease;
        }


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


        .header-button {
            padding: 12px 19px;

            border: 1px solid var(--border);

            color: var(--white);

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

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

            transition: all 0.3s ease;
        }


        .header-button:hover {
            background: var(--gold);

            border-color: var(--gold);

            color: var(--black);
        }


        .menu-toggle {
            display: none;

            width: 40px;
            height: 40px;

            border: 1px solid var(--border);

            background: transparent;

            cursor: pointer;
        }


        .menu-toggle span {
            display: block;

            width: 18px;
            height: 1px;

            margin: 4px auto;

            background: var(--white);
        }


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

        .hero {
            position: relative;

            min-height: 100vh;

            display: flex;
            align-items: center;

            overflow: hidden;

            padding: 150px 0 100px;

            background:
                radial-gradient(
                    circle at 80% 35%,
                    rgba(199,161,90,0.12),
                    transparent 28%
                ),

                radial-gradient(
                    circle at 5% 90%,
                    rgba(199,161,90,0.06),
                    transparent 25%
                ),

                var(--black);
        }


        .hero-grid {
            display: grid;

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

            align-items: center;

            gap: 90px;
        }


        .hero-content {
            position: relative;

            z-index: 2;
        }


        .eyebrow {
            display: flex;
            align-items: center;

            gap: 12px;

            margin-bottom: 25px;

            color: var(--gold);

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

            letter-spacing: 3px;
        }


        .eyebrow span {
            display: block;

            width: 35px;
            height: 1px;

            background: var(--gold);
        }


        .hero h1 {
            max-width: 720px;

            margin-bottom: 30px;

            font-family:
                Georgia,
                "Times New Roman",
                serif;

            font-size: clamp(
                48px,
                5.2vw,
                76px
            );

            font-weight: 400;

            line-height: 1.03;

            letter-spacing: -2.5px;
        }


        .hero h1 em {
            color: var(--gold-light);

            font-style: italic;
        }


        .gold-line {
            width: 65px;
            height: 2px;

            margin-bottom: 28px;

            background: var(--gold);
        }


        .hero p {
            max-width: 680px;

            margin-bottom: 19px;

            color: var(--text);

            font-size: 15px;

            line-height: 1.85;
        }


        .hero .hero-large {
            color: var(--text-light);

            font-size: 17px;
        }


        .hero-actions {
            display: flex;
            align-items: center;

            gap: 28px;

            margin-top: 34px;
        }


        .button {
            display: inline-flex;
            align-items: center;

            gap: 18px;

            padding: 15px 24px;

            background: var(--gold);

            color: var(--black);

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

            letter-spacing: 1.5px;

            text-transform: uppercase;
        }


        .hero-visual {
            position: relative;

            min-height: 650px;

            display: flex;
            align-items: center;
            justify-content: center;
        }


        .image-frame {
            position: relative;

            width: min(100%, 430px);

            height: 590px;

            overflow: hidden;

            border:
                1px solid
                rgba(199,161,90,0.28);

            transform: rotate(2deg);

            background: #171411;
        }


        .image-frame img {
            width: 100%;
            height: 100%;

            object-fit: cover;
        }


        .image-overlay {
            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    to top,
                    rgba(5,4,3,0.65),
                    transparent 55%
                );
        }


        .experience-card {
            position: absolute;

            left: -10px;
            bottom: 55px;

            width: 310px;

            display: flex;
            align-items: center;

            gap: 18px;

            padding: 21px 23px;

            background:
                rgba(22,20,17,0.94);

            border:
                1px solid
                rgba(199,161,90,0.30);

            z-index: 5;
        }


        .experience-number {
            color: var(--gold);

            font-family: Georgia, serif;

            font-size: 34px;
        }


        .experience-card strong {
            display: block;

            margin-bottom: 4px;

            font-family: Georgia, serif;

            font-size: 17px;

            font-weight: 400;
        }


        .experience-card span {
            display: block;

            color: #8e8982;

            font-size: 10px;
        }


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

        @media (max-width: 1000px) {

            .main-nav {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .header-button {
                margin-left: auto;
            }

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

                gap: 70px;
            }

            .hero-content {
                max-width: 760px;

                margin: 0 auto;

                text-align: center;
            }

            .eyebrow {
                justify-content: center;
            }

            .gold-line {
                margin-left: auto;
                margin-right: auto;
            }

            .hero p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                justify-content: center;
            }

        }


        @media (max-width: 600px) {

            .container {
                width:
                    min(
                        calc(100% - 30px),
                        var(--container)
                    );
            }

            .site-header {
                padding: 20px 0;
            }

            .header-button {
                display: none;
            }

            .hero {
                min-height: auto;

                padding: 70px 0 20px;
            }

            .hero h1 {
                font-size: 45px;

                letter-spacing: -1.5px;
            }

            .hero p {
                font-size: 14px;
            }

            .hero .hero-large {
                font-size: 16px;
            }

            .hero-actions {
                flex-direction: column;

                align-items: stretch;
            }

            .button {
                justify-content: center;
            }

            .hero-visual {
                min-height: 500px;
            }

            .image-frame {
                width: 88%;

                height: 490px;
            }

            .experience-card {
                left: 0;
                bottom: 20px;

                width: calc(100% - 30px);

                padding: 17px;
            }

        }


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

.logo {
    display: inline-flex;
    align-items: center;

    text-decoration: none;

    flex-shrink: 0;
}

.logo img {
    display: block;

    width: 190px;
    height: auto;

    max-height: 65px;

    object-fit: contain;
}


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

@media (max-width: 700px) {

    .logo img {
        width: 145px;
        max-height: 55px;
    }

}

/* =========================================================
   PROFILES SECTION
========================================================= */

.profiles-section {
    width: 100%;
    padding: 120px 0;
    background: var(--black-soft);
}


/* HEADER */

.profiles-header {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;

    color: var(--gold);

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

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

.profiles-header h2 {
    margin: 0 0 20px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(40px, 5vw, 65px);
    font-weight: 400;

    line-height: 1.08;
}

.profiles-header h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.profiles-header p {
    max-width: 650px;
    margin: 0 auto;

    color: var(--text);

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


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

.gallery-grid {
    display: grid;

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

    gap: 30px;

    width: 100%;
}


/* =========================================================
   CARD
========================================================= */

.profile-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    background: var(--black-card);

    border: 1px solid rgba(199, 161, 90, 0.18);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-6px);

    border-color: rgba(199, 161, 90, 0.55);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35);
}


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

.profile-image {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 2 / 3;

    overflow: hidden;

    background: #171411;
}

.profile-image img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    transition: transform 0.5s ease;
}

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


/* Dark image overlay */

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

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 35%;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.55),
            transparent
        );

    pointer-events: none;
}


/* =========================================================
   NEW BADGE
========================================================= */

.profile-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 2;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 6px 10px;

    background: var(--gold);

    color: var(--black);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   CARD INFO
========================================================= */

.profile-info {
    padding: 20px 20px 22px;
}

.profile-info h3 {
    margin: 0 0 8px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    line-height: 1.2;
}

.profile-price {
    margin-bottom: 7px;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.4px;
}

.profile-location {
    margin-bottom: 18px;

    color: #88827a;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   CTA
========================================================= */

.profile-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 12px 14px;

    border: 1px solid rgba(199, 161, 90, 0.35);

    background: transparent;

    color: var(--white);

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

    letter-spacing: 1.3px;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.profile-cta span {
    color: var(--gold);

    font-size: 16px;

    transition: transform 0.3s ease;
}

.profile-cta:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--black);
}

.profile-cta:hover span {
    color: var(--black);

    transform: translateX(4px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .gallery-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 28px;
    }

}


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

@media (max-width: 1100px) {

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

}


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

@media (max-width: 800px) {

    .profiles-section {
        padding: 90px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .profile-info {
        padding: 16px;
    }

    .profile-info h3 {
        font-size: 21px;
    }

}


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

@media (max-width: 500px) {

    .profiles-section {
        padding: 70px 0;
    }

    .profiles-header {
        margin-bottom: 40px;
    }

    .profiles-header h2 {
        font-size: 38px;
    }

    .profiles-header p {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .profile-info {
        padding: 13px;
    }

    .profile-info h3 {
        font-size: 19px;
    }

    .profile-price {
        font-size: 10px;
    }

    .profile-location {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .profile-cta {
        padding: 10px;

        font-size: 8px;
        letter-spacing: 1px;
    }

    .profile-badge {
        top: 9px;
        left: 9px;

        padding: 5px 7px;

        font-size: 8px;
    }

}
/* =========================================================
   SITE WIDE CALL + WHATSAPP CTA
========================================================= */

.site-floating-cta {
    position: fixed;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    z-index: 999999;

    display: flex;
    gap: 8px;

    width: 430px;
    max-width: calc(100% - 24px);

    padding: 7px;

    background: rgba(10, 9, 8, 0.96);

    border: 1px solid rgba(199, 161, 90, 0.45);

    border-radius: 18px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.site-floating-cta a {

    flex: 1;

    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 12px;

    text-decoration: none !important;

    font-family: Arial, sans-serif;

    font-size: 14px;
    font-weight: 700;

    transition: all .2s ease;
}


.site-floating-cta a:hover {
    transform: translateY(-2px);
}


/* CALL */

.cta-call {

    color: #111 !important;

    background:
        linear-gradient(
            135deg,
            #d9ba73,
            #b99042
        );
}


.cta-phone-icon {
    font-size: 20px;
}


/* WHATSAPP */

.cta-whatsapp {

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #1b9652,
            #08743b
        );
}


.cta-whatsapp-icon {
    font-size: 17px;
}


/* MOBILE */

@media (max-width: 600px) {

    .site-floating-cta {

        left: 10px;
        right: 10px;

        bottom: 10px;

        transform: none;

        width: auto;
        max-width: none;

        padding: 6px;

        border-radius: 16px;
    }


    .site-floating-cta a {

        min-height: 48px;

        font-size: 13px;

        border-radius: 11px;
    }

}


/* SMALL MOBILE */

@media (max-width: 380px) {

    .site-floating-cta {

        left: 7px;
        right: 7px;

        bottom: 7px;
    }


    .site-floating-cta a {

        min-height: 45px;

        font-size: 12px;
    }

}


```css
/* =========================================================
   RATE CARD SECTION
========================================================= */

section.hc-rates {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 90px 0 !important;
    background: #000 !important;
    color: #fff !important;
    box-sizing: border-box !important;
}

section.hc-rates *,
section.hc-rates *::before,
section.hc-rates *::after {
    box-sizing: border-box !important;
}


/* CONTAINER */

.hc-rates-wrap {
    width: calc(100% - 40px) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}


/* HEADER */

.hc-rates-header {
    width: 100% !important;
    max-width: 850px !important;
    margin: 0 auto 48px !important;
    padding: 0 !important;
    text-align: center !important;
}

.hc-rates-label {
    display: inline-block !important;
    margin: 0 0 14px !important;
    color: #d92b67 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

.hc-rates-header h2 {
    margin: 0 0 15px !important;
    padding: 0 !important;
    color: #f7c53d !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 52px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
}

.hc-rates-header h2 em {
    color: #f7c53d !important;
    font-style: normal !important;
}

.hc-rates-header p {
    max-width: 760px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    color: #888 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
}


/* GRID */

.hc-rates-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* CARD */

.hc-rate-card {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #090909 !important;
    border: 1px solid #321421 !important;
    border-radius: 13px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 40px rgba(0,0,0,.4) !important;
    transition: all .3s ease !important;
}

.hc-rate-card:hover {
    transform: translateY(-5px);
    border-color: #d92b67 !important;
    box-shadow: 0 18px 45px rgba(217,43,103,.15) !important;
}


/* CARD HEADER */

.hc-rate-top {
    min-height: 78px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 18px 20px !important;
    background: #101010 !important;
    border-bottom: 2px solid #d92b67 !important;
}

.hc-rate-top h3 {
    margin: 0 !important;
    padding: 0 !important;
    color: #d92b67 !important;
    font-family: inherit !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.hc-rate-top span {
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 36px !important;
    padding: 0 10px !important;
    background: #ffd83f !important;
    color: #050505 !important;
    border-radius: 4px !important;
    font-size: 9px !important;
    font-weight: 800 !important;
}


/* TABLE */

.hc-rate-table {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hc-rate-row {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, .9fr) !important;

    align-items: center !important;

    min-height: 53px !important;

    gap: 8px !important;

    margin: 0 !important;
    padding: 0 14px !important;

    border-bottom: 1px solid #191919 !important;

    color: #bbb !important;

    font-size: 14px !important;
    line-height: 1.4 !important;
}

.hc-rate-row:last-child {
    border-bottom: 0 !important;
}

.hc-rate-row > div {
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #bbb !important;
}

.hc-rate-row > div:last-child {
    text-align: right !important;
}

.hc-rate-row strong {
    margin: 0 !important;
    padding: 0 !important;
    color: #d2d2d2 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}


/* TABLE HEADER */

.hc-rate-row.hc-rate-head {
    background: rgba(217,43,103,.08) !important;
}

.hc-rate-row.hc-rate-head > div {
    color: #eee !important;
    font-weight: 700 !important;
}


/* HOVER */

.hc-rate-row:not(.hc-rate-head):hover {
    background: rgba(255,255,255,.025) !important;
}

.hc-rate-row:not(.hc-rate-head):hover strong {
    color: #f7c53d !important;
}


/* TABLET */

@media screen and (max-width: 1050px) {

    section.hc-rates {
        padding: 75px 0 !important;
    }

    .hc-rates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }
}


/* MOBILE */

@media screen and (max-width: 650px) {

    section.hc-rates {
        padding: 60px 0 !important;
    }

    .hc-rates-wrap {
        width: calc(100% - 24px) !important;
    }

    .hc-rates-header {
        margin-bottom: 32px !important;
    }

    .hc-rates-header h2 {
        font-size: 34px !important;
    }

    .hc-rates-header p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .hc-rates-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .hc-rate-top {
        min-height: 70px !important;
        padding: 16px !important;
    }

    .hc-rate-top h3 {
        font-size: 18px !important;
    }

    .hc-rate-top span {
        min-height: 32px !important;
        padding: 0 8px !important;
        font-size: 8px !important;
    }

    .hc-rate-row {
        min-height: 54px !important;

        grid-template-columns:
            minmax(0,1fr)
            auto
            minmax(0,.85fr) !important;

        gap: 6px !important;

        padding: 0 12px !important;

        font-size: 13px !important;
    }

    .hc-rate-row strong {
        font-size: 13px !important;
    }
}


/* SMALL MOBILE */

@media screen and (max-width: 400px) {

    .hc-rates-wrap {
        width: calc(100% - 16px) !important;
    }

    .hc-rate-top {
        padding: 14px 11px !important;
    }

    .hc-rate-top h3 {
        font-size: 16px !important;
    }

    .hc-rate-top span {
        padding: 0 6px !important;
        font-size: 7px !important;
    }

    .hc-rate-row {
        padding: 0 9px !important;
        gap: 5px !important;
        font-size: 12px !important;
    }

    .hc-rate-row strong {
        font-size: 12px !important;
    }
}
```
