:root {

    /* =========================
       PRIMARY — DEEP BURGUNDY
    ========================= */

    --primary: #7A1830;
    --primary-dark: #541020;
    --accent: #C9A96E;


    /* =========================
       BACKGROUNDS
    ========================= */

    --cream: #F5F1EA;
    --white: #FFFFFF;

    --dark-bg: #0D0B0C;
    --dark-surface: #161213;
    --burgundy-bg: #241116;


    /* =========================
       DARK / TEXT
    ========================= */

    --dark: #111011;
    --text: #2A2526;
    --muted: #766D6D;

    --light-text: #F5F1EA;
    --light-muted: #B8ADAE;


    /* =========================
       GOLD
    ========================= */

    --gold: #C9A96E;
    --gold-light: #E0C994;
    --gold-dark: #9D7D46;


    /* =========================
       BORDERS
    ========================= */

    --border: #E4DDD4;
    --dark-border: rgba(201, 169, 110, 0.20);


    /* =========================
       RADIUS
    ========================= */

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;


    /* =========================
       SHADOW
    ========================= */

    --shadow:
        0 18px 50px rgba(0, 0, 0, 0.12);

    --shadow-dark:
        0 20px 60px rgba(0, 0, 0, 0.40);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--cream);
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
}

a{
    text-decoration: none !important;
}

/* ========================================================= HEADER ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ========================================================= HEADER CONTAINER ========================================================= */
.header-container {
    width: 100%;
    max-width: 1320px;
    min-height: 82px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ========================================================= LOGO ========================================================= */
.logo-main {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-main img {
    display: block;
    width: auto;
    max-width: 170px;
    height: auto;
}

/* ========================================================= DESKTOP NAVIGATION ========================================================= */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;

}

/* Normal navigation links */
.desktop-nav>.nav-link,
.nav-dropdown>.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease;
}

/* Hover / active */
.desktop-nav>.nav-link:hover,
.desktop-nav>.nav-link.active,
.nav-dropdown>.nav-link:hover {
    color: var(--accent);
}

/* ========================================================= DESKTOP DROPDOWNS ========================================================= */
.nav-dropdown {
    position: relative;
}

/* Arrow */
.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--gold);
    transition: transform 0.25s ease;
}

/* Dropdown panel */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 210px;
    padding: 10px;
    background: #161213;
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

/* Dropdown links */
.nav-dropdown-menu a {
    display: block;
    padding: 10px 13px;
    color: rgba(245, 241, 234, 0.78);
    font-size: 13px;
    text-decoration: none;
    border-radius: 7px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

/* Dropdown hover */
.nav-dropdown-menu a:hover {
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
}

/* Invisible bridge between trigger and dropdown */
.nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
    background: transparent;
}

/* Show dropdown through JS */
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Rotate arrow when open */
.nav-dropdown.is-open .dropdown-arrow {
    transform: rotate(180deg);
}

/* ========================================================= APPOINTMENT BUTTON ========================================================= */
.header-appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-height: 42px;
    padding: 0 20px;
    color: #fff;
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.header-appointment-btn:hover {
    color: #fff;
    background: #a88954;
    border-color: #a88954;
    transform: translateY(-1px);
}

/* ========================================================= MOBILE MENU BUTTON ========================================================= */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.mobile-menu-btn i {
    font-size: 20px;
}

.mobile-menu-btn:hover {
    color: #111;
    background: var(--gold);
}

/* =========================================================
   MOBILE OVERLAY
========================================================= */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    z-index: 1050;

    background: rgba(0, 0, 0, 0.55);

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0s linear 0.3s;
}

.mobile-menu-overlay.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    transition:
        opacity 0.3s ease,
        visibility 0s linear 0s;
}

/* =========================================================
   MOBILE OFF-CANVAS
========================================================= */

.mobile-offcanvas {
    position: fixed;
    top: 10px;
    right: 10px;
    bottom: 10px;

    z-index: 1100;

    width: min(320px, calc(100vw - 20px));

    padding: 24px;

    background: #161213;
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 18px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);

    overflow-y: auto;

    /* Hidden */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transform: translateX(calc(100% + 20px));

    transition:
        transform 0.35s ease,
        opacity 0.25s ease,
        visibility 0s linear 0.35s;
}


/* OPEN */
.mobile-offcanvas.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    transform: translateX(0);

    transition:
        transform 0.35s ease,
        opacity 0.25s ease,
        visibility 0s linear 0s;
}

/* ========================================================= MOBILE MENU HEADER ========================================================= */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 7px;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.mobile-menu-close:hover {
    color: #111;
    background: var(--gold);
}

/* ========================================================= MOBILE NAVIGATION ========================================================= */
.mobile-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-nav-link,
.mobile-nav-dropdown-trigger {
    width: 100%;
    min-height: 54px;
    padding: 15px 5px;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-dropdown-trigger:hover {
    color: var(--gold);
    padding-left: 10px;
}

/* ========================================================= MOBILE DROPDOWN ========================================================= */
.mobile-nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-dropdown.is-open .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-nav-dropdown.is-open .mobile-nav-submenu {
    max-height: 500px;
    opacity: 1;
}

.mobile-nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-arrow {
    color: var(--gold);
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.25s ease;
}

/* Submenu */
.mobile-nav-submenu {
    max-height: 0;
    overflow: hidden;
    padding-left: 12px;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
}

.mobile-nav-submenu a {
    display: block;
    padding: 11px 5px;
    color: rgba(255, 255, 255, 0.72);
    opacity: 1;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-nav-submenu a:hover {
    color: var(--gold);
    padding-left: 8px;
}

/* ========================================================= MOBILE APPOINTMENT BUTTON ========================================================= */
.mobile-appointment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 25px;
    padding: 0 18px;
    color: #fff;
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.mobile-appointment-btn:hover {
    color: #fff;
    background: #a88954;
    transform: translateY(-1px);
}

/* =========================================================
   FORCE DROPDOWN TEXT COLORS
========================================================= */

.nav-dropdown-menu a {
    color: #f5f1ea !important;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
    color: var(--gold) !important;
}

.nav-dropdown-menu a {
    color: #f5f1ea !important;
    opacity: 1 !important;
}



/* --------------------------------------------------------- MOBILE MENU OPEN --------------------------------------------------------- */
.mobile-offcanvas.is-open {
    transform: translateX(0);
}

/* --------------------------------------------------------- OVERLAY VISIBLE --------------------------------------------------------- */
.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* --------------------------------------------------------- PREVENT PAGE SCROLLING --------------------------------------------------------- */
body.menu-open {
    overflow: hidden;
}

/* =========================================================
   DESKTOP: COMPLETELY HIDE MOBILE OFFCANVAS
========================================================= */

.mobile-offcanvas,
.mobile-menu-overlay {
    display: none;
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991px) {

    .mobile-menu-overlay {
        display: block;
    }

    .mobile-offcanvas {
        display: block;
    }

}

/* BUTTON */

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-outline-light {
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}


/* ========================================================= MOBILE BREAKPOINT ========================================================= */
@media (max-width: 991px) {
    .header-container {
        min-height: 70px;
        padding: 0 18px;
    }

    /* Hide desktop navigation */
    .desktop-nav,
    .btn-primary-custom {
        display: none;
    }

    /* Show hamburger */
    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }

    /* Slightly smaller logo */
    .logo-main img {
        max-width: 150px;
    }




}

/* HERO */

.hero-section {
    max-height: 580px;

    background:
        url("../images/testing-hero.webp") center center / cover no-repeat;

    position: relative;

    display: flex;
    align-items: center;
}


.hero-content {
    position: relative;
    max-width: 650px;
    color: #fff;
    padding: 100px 0;
}

.eyebrow,
.section-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: clamp(42px, 6vw, 56px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-content h1 span {
    display: block;
    color: #E6B88A;
}

.hero-content p {
    max-width: 540px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}


/* SECTIONS */

section {
    padding: 50px 0;
}

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--muted);
}

/* =========================================================
   FEATURED PROFILES
========================================================= */

.featured-section {
    padding: 50px 0;
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 14px;

    color: var(--dark);

    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.section-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.featured-slider-wrapper {
    position: relative;
    width: 100%;

    display: flex;
    align-items: center;
}


/* =========================================================
   SLIDER
========================================================= */

.featured-slider {
    display: flex;

    width: 100%;

    gap: 24px;

    overflow-x: auto;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
    -ms-overflow-style: none;

    padding: 8px 4px 20px;
}

.featured-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   CARD
========================================================= */

.featured-card {

    flex: 0 0 calc((100% - 72px) / 4);

    min-width: 0;

    border-radius: var(--radius-lg);

    overflow: hidden;

    scroll-snap-align: start;

    background: var(--lavender);

    box-shadow: var(--shadow);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.featured-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 20px 50px rgba(70, 48, 95, 0.18);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.featured-card-image {

    position: relative;

    width: 100%;

    height: 270px;

    overflow: hidden;

    background: var(--lavender);
}


/* =========================================================
   IMAGE
========================================================= */

.featured-card-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: top center;

    transition:
        transform 0.6s ease;
}

.featured-card:hover .featured-card-image img {

    transform: scale(1.06);
}


/* =========================================================
   DARK GRADIENT OVERLAY
========================================================= */

.featured-card-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(33, 27, 43, 0.92) 0%,
            rgba(33, 27, 43, 0.65) 18%,
            rgba(33, 27, 43, 0.15) 45%,
            rgba(33, 27, 43, 0) 65%);

    pointer-events: none;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.featured-card-content {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    padding: 28px 20px 20px;
}


/* =========================================================
   DETAILS
========================================================= */

.featured-card-details {

    min-width: 0;
}

.featured-card-details h3 {

    margin: 0 0 7px;

    color: var(--white);

    font-size: 23px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.2px;
}


/* =========================================================
   LOCATION
========================================================= */

.featured-location {

    display: flex;

    align-items: center;

    gap: 6px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 13px;

    font-weight: 500;
}

.featured-location i {

    color: var(--accent);

    font-size: 12px;
}


/* =========================================================
   ARROW BUTTON
========================================================= */

.featured-card-arrow {

    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(111, 85, 150, 0.35);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.featured-card-arrow i {

    font-size: 15px;

    transition:
        transform 0.3s ease;
}

.featured-card-arrow:hover {

    background: var(--primary-dark);

    transform: scale(1.08);

    box-shadow:
        0 10px 25px rgba(111, 85, 150, 0.45);
}

.featured-card-arrow:hover i {

    transform: translateX(3px);
}


/* =========================================================
   SLIDER NAVIGATION BUTTONS
========================================================= */

.slider-btn {

    position: absolute;

    z-index: 10;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: var(--white);

    color: var(--primary);

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(70, 48, 95, 0.14);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.slider-btn:hover {

    background: var(--primary);

    color: var(--white);

    transform: scale(1.08);
}

.slider-prev {
    left: -24px;
}

.slider-next {
    right: -24px;
}


/* =========================================================
   DOTS
========================================================= */

.slider-dots {

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 7px;

    margin-top: 24px;
}

.slider-dot {

    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: var(--border);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.slider-dot.active {

    width: 25px;

    border-radius: 20px;

    background: var(--primary);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .featured-card {

        flex: 0 0 calc((100% - 48px) / 3);
    }

    .featured-card-image {
        height: 440px;
    }
}


/* =========================================================
   TABLET SMALL
========================================================= */

@media (max-width: 991px) {

    .featured-section {
        padding: 80px 0;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .featured-card {

        flex: 0 0 calc((100% - 24px) / 2);
    }

    .featured-card-image {
        height: 450px;
    }

    .slider-prev {
        left: -12px;
    }

    .slider-next {
        right: -12px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .featured-section {
        padding: 70px 0;
    }

    .section-heading {

        margin-bottom: 38px;

        padding: 0 15px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .featured-slider {

        gap: 16px;

        padding-left: 3px;
        padding-right: 3px;
    }

    .featured-card {

        flex: 0 0 82%;
    }

    .featured-card-image {
        height: 460px;
    }

    .featured-card-content {
        padding: 25px 17px 17px;
    }

    .featured-card-details h3 {
        font-size: 21px;
    }

    .featured-card-arrow {

        width: 43px;
        height: 43px;

        flex-basis: 43px;
    }

    .slider-btn {

        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 4px;
    }

    .slider-next {
        right: 4px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .featured-card {

        flex: 0 0 88%;
    }

    .featured-card-image {
        height: 440px;
    }

    .featured-card-details h3 {
        font-size: 20px;
    }

    .featured-location {
        font-size: 12px;
    }

}

/* =========================================================
   PROFILE SECTION
========================================================= */

.profiles-section {
    padding: 50px 0;

}


/* =========================================================
   PROFILE GRID
========================================================= */

.profiles-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   PROFILE CARD
========================================================= */

.profile-card {
    position: relative;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.profile-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(70, 48, 95, 0.17);
}


/* =========================================================
   IMAGE
========================================================= */

.profile-image {
    position: relative;

    width: 100%;

    height: 390px;

    overflow: hidden;

    background: var(--lavender);
}


.profile-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.profile-card:hover .profile-image img {
    transform: scale(1.05);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.profile-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(33, 27, 43, 0) 50%,
            rgba(33, 27, 43, 0.65) 100%);

    opacity: 0;

    transition:
        opacity 0.35s ease;
}

.profile-card:hover .profile-image-overlay {
    opacity: 1;
}


/* =========================================================
   NEW BADGE
========================================================= */

.profile-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 4;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 6px 11px;

    border-radius: 30px;

    background: var(--primary);

    color: var(--white);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   QUICK ACTIONS
========================================================= */

.profile-quick-actions {

    position: absolute;

    left: 50%;
    bottom: 20px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 9px;

    transform:
        translate(-50%, 25px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}


.profile-card:hover .profile-quick-actions {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0);
}


/* =========================================================
   QUICK ACTION
========================================================= */

.quick-action {

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(33, 27, 43, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.quick-action:hover {

    transform:
        translateY(-4px) scale(1.05);

    box-shadow:
        0 12px 25px rgba(33, 27, 43, 0.30);
}


.quick-action i {
    font-size: 17px;
}


/* =========================================================
   ACTION COLORS
========================================================= */

.quick-action.whatsapp {
    background: #20c76a;
}

.quick-action.call {
    background: var(--primary);
}

.quick-action.booking {
    background: #c55fa4;
}


/* =========================================================
   PROFILE CONTENT
========================================================= */

.profile-content {

    padding: 21px 20px 20px;

    background: var(--white);
}


/* =========================================================
   NAME ROW
========================================================= */

.profile-name-row {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 7px;
}


.profile-name-row h3 {

    margin: 0;

    color: var(--dark);

    font-size: 22px;

    line-height: 1.2;

    font-weight: 700;
}


/* =========================================================
   STATUS
========================================================= */

.profile-status {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: var(--muted);

    font-size: 11px;

    white-space: nowrap;
}


.profile-status span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #38a169;

    box-shadow:
        0 0 0 3px rgba(56, 161, 105, 0.10);
}


/* =========================================================
   LOCATION
========================================================= */

.profile-location {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 13px;

    color: var(--muted);

    font-size: 13px;
}


.profile-location i {

    color: var(--primary);

    font-size: 12px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.profile-content p {

    min-height: 42px;

    margin: 0 0 18px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   VIEW PROFILE
========================================================= */

.profile-link {

    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 11px 14px;

    border-radius: 12px;

    background: var(--lavender-light);

    color: var(--primary-dark);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.profile-link i {

    font-size: 12px;

    transition:
        transform 0.25s ease;
}


.profile-link:hover {

    background: var(--primary);

    color: var(--white);
}


.profile-link:hover i {

    transform:
        translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .profiles-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 24px;
    }

}


/* =========================================================
   TABLET SMALL
========================================================= */

@media (max-width: 800px) {

    .profiles-section {
        padding: 80px 0;
    }

    .profiles-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .profile-image {
        height: 400px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .profiles-section {
        padding: 70px 0;
    }

    .profiles-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;
    }

    .profile-image {
        height: 290px;
    }

    .profile-content {
        padding: 16px 14px;
    }

    
    .profile-name-row h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .profile-status {
        font-size: 10px;
    }

    .profile-location {
        font-size: 11px;
    }

    .profile-content p {
        font-size: 11px;
        min-height: auto;
        margin-bottom: 13px;
    }

    .profile-link {
        padding: 9px 11px;
        font-size: 11px;
    }

    /*
       No hover on mobile, therefore
       show the quick actions.
    */

    .profile-quick-actions {

        opacity: 1;

        visibility: visible;

        transform:
            translate(-50%, 0);

        bottom: 13px;
    }

    .quick-action {

        width: 36px;
        height: 36px;
    }

    .quick-action i {
        font-size: 14px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .profiles-grid {
        gap: 10px;
    }

    .profile-image {
        height: 250px;
    }

    .profile-content {
        padding: 14px 11px;
    }

    .profile-name-row h3 {
        font-size: 16px;
    }

    .profile-content p {
        display: none;
    }

    .quick-action {
        width: 32px;
        height: 32px;
    }

    .quick-action i {
        font-size: 12px;
    }

}

/* CTA */

.cta-section {
    position: relative;
    padding: 90px 0;

    background:
        url("../images/testing-hero.webp") center center / cover;

    color: #fff;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(50, 15, 25, .72);
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin: auto;
}

.cta-content h2 {
    font-size: 48px;
}

.cta-content p {
    color: rgba(255, 255, 255, .8);
    margin: 20px auto 30px;
}


/* ABOUT */

.about-section {
    background: var(--white);
}

.about-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.about-content p {
    color: var(--muted);
    line-height: 2;
    margin-bottom: 20px;
}


/* LOCATIONS */

.locations-section {
    background: var(--cream);
}

.location-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.location-pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;

    padding: 12px 20px;

    color: var(--text);
    background: #fff;

    border: 1px solid var(--border);
    border-radius: 100px;

    text-decoration: none;

    transition: .25s;
}

.location-pill:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}


/* FOOTER */

.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 70px 0 40px;
}


.site-footer p {
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
    line-height: 1.8;
}

.site-footer h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: #E6B88A;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, .1);

    display: flex;
    justify-content: space-between;

    color: rgba(255, 255, 255, .4);
    font-size: 14px;
}

.footer-brand {
    padding-right: 150px;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .category-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-section {
        min-height: 550px;
    }

    .footer-brand {
        padding-right: 0;
    }

}

@media (max-width: 575px) {

    section {
        padding: 65px 0;
    }

    .hero-content {
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .category-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        height: 180px;
    }

    .profile-image {
        height: 250px;
    }

    .profile-content {
        padding: 14px;
    }

    .profile-content h3 {
        font-size: 19px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}

/* =========================================================
   FINAL DARK LUXURY THEME
   Added as the final override layer so the existing layout,
   slider and responsive rules remain intact.
========================================================= */

:root {
    --primary: #7A1830;
    --primary-dark: #541020;
    --accent: #C9A96E;

    --cream: #0D0B0C;
    --white: #FFFFFF;

    --dark-bg: #0D0B0C;
    --dark-surface: #161213;
    --burgundy-bg: #241116;

    --dark: #F5F1EA;
    --text: #F5F1EA;
    --muted: #B8ADAE;
    --light-text: #F5F1EA;
    --light-muted: #B8ADAE;

    --gold: #C9A96E;
    --gold-light: #E0C994;
    --gold-dark: #9D7D46;

    --border: rgba(255, 255, 255, .09);
    --dark-border: rgba(201, 169, 110, .20);

    --lavender: #161213;
    --lavender-light: #1D1719;

    --shadow: 0 18px 50px rgba(0, 0, 0, .35);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, .45);
}

/* GLOBAL */
html {
    background: var(--dark-bg);
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    background:
        radial-gradient(circle at 15% 5%, rgba(122, 24, 48, .10), transparent 28%),
        var(--dark-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--light-text);
}

section {
    background: var(--dark-bg);
}

/* HEADER */
.site-header {
    background: rgba(13, 11, 12, .94);
    border-bottom: 1px solid var(--dark-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Header now supports an image logo */
.logo-main {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--gold);
    line-height: 1;
}

.logo-main img {
    display: block;
    width: auto;
    height: 58px;
    max-width: 320px;
    object-fit: cover;
}

.logo-sub {
    color: var(--light-muted);
}

.nav-link {
    color: rgba(245, 241, 234, .78);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

/* HERO */
.hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(13, 11, 12, .92),
            rgba(13, 11, 12, .58),
            rgba(13, 11, 12, .22));
}

.hero-content,
.hero-content h1 {
    color: var(--light-text);
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    color: rgba(245, 241, 234, .72);
}

/* SECTION HEADINGS */
.section-heading h2 {
    color: var(--light-text);
}

.section-heading p {
    color: var(--light-muted);
}

.section-eyebrow,
.eyebrow {
    color: var(--gold);
}

/* FEATURED */
.featured-section {
    background: black;
}

.featured-card {
    background: var(--dark-surface);
    border-color: rgba(201, 169, 110, .12);
    box-shadow: var(--shadow-dark);
}

.featured-card:hover {
    border-color: rgba(201, 169, 110, .30);
    box-shadow: 0 25px 65px rgba(0, 0, 0, .55);
}

.featured-card-image {
    background: var(--dark-surface);
}

.featured-card-overlay {
    background:
        linear-gradient(to top,
            rgba(13, 11, 12, .98) 0%,
            rgba(13, 11, 12, .78) 18%,
            rgba(13, 11, 12, .20) 52%,
            rgba(13, 11, 12, 0) 70%);
}

.featured-card-details h3 {
    color: var(--light-text);
}

.featured-location {
    color: rgba(245, 241, 234, .70);
}

.featured-location i {
    color: var(--gold);
}

.featured-card-arrow {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(122, 24, 48, .35);
}

.featured-card-arrow:hover {
    background: var(--gold);
    color: #171214;
}

.slider-btn {
    background: #1A1517;
    border-color: rgba(201, 169, 110, .20);
    color: var(--gold);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .40);
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #171214;
}

.slider-dot {
    background: rgba(255, 255, 255, .16);
}

.slider-dot.active {
    background: var(--gold);
}

/* PROFILE DIRECTORY */
.profiles-section {
    background: linear-gradient(180deg, #120D0F 0%, #0D0B0C 100%);
}

.profile-card {
    background: var(--dark-surface);
    border-color: rgba(201, 169, 110, .13);
    box-shadow: var(--shadow-dark);
}

.profile-card:hover {
    border-color: rgba(201, 169, 110, .32);
    box-shadow: 0 25px 65px rgba(0, 0, 0, .55);
}

.profile-image {
    background: #1A1517;
}

.profile-image-overlay {
    background:
        linear-gradient(to top,
            rgba(13, 11, 12, .95) 0%,
            rgba(13, 11, 12, .40) 35%,
            rgba(13, 11, 12, 0) 65%);
}

.profile-badge {
    background: var(--primary);
    color: var(--white);
    border-color: rgba(201, 169, 110, .35);
}

.profile-content {
    background: var(--dark-surface);
}

.profile-name-row h3 {
    color: var(--light-text);
}

.profile-status,
.profile-location,
.profile-content p {
    color: var(--light-muted);
}

.profile-location i {
    color: var(--gold);
}

.profile-link {
    background: rgba(122, 24, 48, .18);
    border-color: rgba(201, 169, 110, .12);
    color: var(--gold);
}

.profile-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* QUICK ACTIONS */
.quick-action {
    border-color: rgba(255, 255, 255, .10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.quick-action.whatsapp {
    background: #20C76A;
}

.quick-action.call {
    background: var(--primary);
}

.quick-action.booking {
    background: var(--gold);
    color: #171214;
}

/* ABOUT */
.about-section {
    background: var(--dark-bg);
}

.about-content p {
    color: var(--light-muted);
}

/* LOCATIONS */
.locations-section {
    background: #120D0F;
}

.nearby-locations-section {
    background: #050505;
}

.location-pill {
    color: var(--light-text);
    background: var(--dark-surface);
    border-color: rgba(201, 169, 110, .15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .20);
}

.location-pill:hover {
    color: #171214;
    background: var(--gold);
    border-color: var(--gold);
}

/* CTA */
.cta-section {
    background-color: var(--dark-bg);
}

.cta-overlay {
    background:
        linear-gradient(90deg,
            rgba(36, 17, 22, .94),
            rgba(13, 11, 12, .72));
}

.cta-content h2 {
    color: var(--light-text);
}

.cta-content p {
    color: var(--light-muted);
}

/* FOOTER */
.site-footer {
    background: #080707;
    border-top: 1px solid rgba(201, 169, 110, .15);
}

/* Footer now supports an image logo */
.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--gold);
    line-height: 1;
}

.footer-logo img {
    display: block;
    width: auto;
    height: 54px;
    max-width: 240px;
    object-fit: contain;
}

.site-footer p {
    color: rgba(245, 241, 234, .55);
}

.site-footer h5 {
    color: var(--light-text);
}

.site-footer a {
    color: rgba(245, 241, 234, .55);
}

.site-footer a:hover {
    color: var(--gold);
}

.social-links a {
    color: var(--light-text);
    border-color: rgba(201, 169, 110, .20);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-bottom {
    border-top-color: rgba(201, 169, 110, .12);
    color: rgba(245, 241, 234, .38);
}

/* FORMS */
input,
textarea,
select {
    color: var(--light-text);
    background: var(--dark-surface);
    border-color: rgba(201, 169, 110, .16);
}

input::placeholder,
textarea::placeholder {
    color: rgba(184, 173, 174, .65);
}

input:focus,
textarea:focus,
select:focus {
    color: var(--light-text);
    background: #1B1517;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, .10);
}

/* MOBILE LOGOS */
@media (max-width: 575px) {
    .logo-main img {
        height: 40px;
        max-width: 175px;
    }

    .footer-logo img {
        height: 46px;
        max-width: 200px;
    }
}

/* =========================================================
   COMMON PAGE BREADCRUMB
========================================================= */

.page-breadcrumb {

    position: relative;

    padding: 75px 0 70px;

    background:
        linear-gradient(135deg,
            #0D0B0C 0%,
            #1A0D11 55%,
            #241116 100%);

    border-bottom:
        1px solid rgba(201, 169, 110, 0.14);

    overflow: hidden;
}


/* Decorative glow */

.page-breadcrumb::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -250px;
    right: -100px;

    background:
        radial-gradient(circle,
            rgba(122, 24, 48, 0.20),
            transparent 70%);

    pointer-events: none;
}


/* Content */

.breadcrumb-content {

    position: relative;

    z-index: 2;

    text-align: center;
}


/* Eyebrow */

.breadcrumb-eyebrow {

    display: inline-block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* Page title */

.breadcrumb-title {

    margin: 0 0 18px;

    color: var(--light-text);

    font-family: "Playfair Display", serif;

    font-size: clamp(34px,
            5vw,
            50px);

    line-height: 1.1;

    font-weight: 600;
}
/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* Every breadcrumb item */

.breadcrumb-item {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    line-height: 1;
}


/* Links */

.breadcrumb-item a {
    display: inline-flex;
    align-items: center;

    margin: 0;
    padding: 0;

    color: rgba(245, 241, 234, 0.60);

    font-size: 13px;
    line-height: 1.2;

    text-decoration: none;

    transition: color 0.25s ease;
}


.breadcrumb-item a:hover {
    color: var(--gold);
}


/* Link text */

.breadcrumb-item a span {
    display: inline-flex;
    align-items: center;

    margin: 0;
    padding: 0;
}


/* Separator */

.breadcrumb-separator {
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    color: var(--gold);

    font-size: 8px;
    line-height: 1;

    opacity: 0.75;
}


/* Current page */

.breadcrumb-current {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    color: var(--gold);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
}


/* Current page text */

.breadcrumb-current span {
    display: inline-flex;
    align-items: center;

    margin: 0;
    padding: 0;
}
/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .page-breadcrumb {

        padding: 55px 0 50px;
    }

    .breadcrumb-title {

        font-size: 34px;

        margin-bottom: 15px;
    }

    .breadcrumb-list {

        gap: 8px;
    }

    .breadcrumb-list a,
    .breadcrumb-current {

        font-size: 12px;
    }

}

/* =========================================
   ABOUT HERO
========================================= */

.about-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 40%,
            rgba(122, 24, 48, 0.20),
            transparent 35%),
        linear-gradient(135deg,
            #0D0B0C 0%,
            #160D10 55%,
            #241116 100%);
    border-bottom: 1px solid rgba(201, 169, 110, 0.14);
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -250px;
    top: -180px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    border-radius: 50%;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: 40px;
    bottom: -250px;
    background: radial-gradient(circle,
            rgba(122, 24, 48, 0.22),
            transparent 70%);
    pointer-events: none;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(13, 11, 12, 0.98) 0%,
            rgba(13, 11, 12, 0.88) 42%,
            rgba(13, 11, 12, 0.25) 100%);
    pointer-events: none;
}

/* Content */

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 590px;
    padding: 70px 0;
}

.about-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;

    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-hero-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.about-hero-content h1 {
    margin: 0 0 24px;

    color: var(--light-text);
    font-family: "Playfair Display", serif;
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1px;
}

.about-hero-content h1 span {
    display: block;
    color: var(--gold);
}

.about-hero-content p {
    max-width: 520px;
    margin: 0 0 34px;

    color: var(--light-muted);
    font-size: 13px;
    line-height: 1.8;
}

/* Actions */

.about-hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.about-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.about-hero-actions .btn i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.about-hero-actions .btn:hover i {
    transform: translateX(4px);
}

.about-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: rgba(245, 241, 234, 0.75);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;

    transition: color 0.25s ease;
}

.about-hero-link i {
    color: var(--gold);
    font-size: 11px;
}

.about-hero-link:hover {
    color: var(--gold);
}


/* =========================================
   HERO VISUAL
========================================= */

.about-hero-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-image-main {
    position: relative;
    z-index: 2;

    width: 390px;
    height: 520px;

    overflow: hidden;

    border-radius: 190px 190px 18px 18px;

    border: 1px solid rgba(201, 169, 110, 0.28);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(122, 24, 48, 0.15);
}

.about-hero-image-main::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 55%,
            rgba(13, 11, 12, 0.35) 100%);

    pointer-events: none;
}

.about-hero-image-main img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}


/* Small overlapping image */

.about-hero-image-small {
    position: absolute;
    z-index: 4;

    left: 20px;
    bottom: 70px;

    width: 155px;
    height: 190px;

    padding: 6px;

    background: #161213;
    border: 1px solid rgba(201, 169, 110, 0.30);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.about-hero-image-small img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
}


/* Gold glow */

.about-hero-glow {
    position: absolute;
    z-index: 1;

    width: 420px;
    height: 420px;

    background: radial-gradient(circle,
            rgba(201, 169, 110, 0.12),
            transparent 68%);

    filter: blur(10px);
}


/* Stat card */

.about-hero-stat {
    position: absolute;
    z-index: 5;

    right: 10px;
    bottom: 90px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 22px;

    background: rgba(22, 18, 19, 0.90);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(201, 169, 110, 0.20);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.stat-number {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1;
}

.stat-label {
    color: var(--light-muted);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-hero {
        min-height: auto;
    }

    .about-hero-content {
        max-width: 700px;
        padding: 90px 0 30px;
        text-align: center;
        margin: auto;
    }

    .about-hero-eyebrow {
        justify-content: center;
    }

    .about-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-actions {
        justify-content: center;
    }

    .about-hero-visual {
        min-height: 600px;
    }

    .about-hero-image-main {
        width: 350px;
        height: 470px;
    }

    .about-hero-image-small {
        left: calc(50% - 250px);
    }

    .about-hero-stat {
        right: calc(50% - 250px);
    }
}


@media (max-width: 575px) {

    .about-hero-content {
        padding: 70px 0 15px;
    }

    .about-hero-content h1 {
        font-size: 42px;
        letter-spacing: -0.5px;
    }

    .about-hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-hero-actions {
        gap: 18px;
    }

    .about-hero-visual {
        min-height: 500px;
    }

    .about-hero-image-main {
        width: 280px;
        height: 390px;
    }

    .about-hero-image-small {
        width: 105px;
        height: 135px;
        left: 10px;
        bottom: 50px;
    }

    .about-hero-stat {
        right: 5px;
        bottom: 55px;
        padding: 13px 15px;
        gap: 10px;
    }

    .stat-number {
        font-size: 25px;
    }

    .stat-label {
        font-size: 8px;
    }
}


/* =========================================
   SECTION
========================================= */

.profile-detail-section {
    position: relative;

    min-height: 100vh;

    padding: 55px 0 100px;

    overflow: hidden;
}


/* Decorative glow */

.profile-detail-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -150px;

    background:
        radial-gradient(circle,
            rgba(122, 24, 48, 0.20),
            transparent 70%);

    pointer-events: none;
}


/* =========================================
   BREADCRUMB
========================================= */

.profile-breadcrumb {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 38px;

    font-size: 12px;
}

.profile-breadcrumb a {
    color: rgba(245, 241, 234, 0.55);

    text-decoration: none;

    transition: color .25s ease;
}

.profile-breadcrumb a:hover {
    color: var(--gold);
}

.profile-breadcrumb i {
    color: var(--gold);
    font-size: 8px;
    opacity: .7;
}

.profile-breadcrumb span {
    color: var(--gold);
    font-weight: 600;
}


/* =========================================
   IMAGE GALLERY
========================================= */

.profile-gallery {
    position: relative;
}


/* Main image */

.profile-main-image {
    position: relative;

    width: 100%;
    height: 520px;

    overflow: hidden;

    border-radius: 22px;

    background: var(--dark-surface);

    border: 1px solid var(--border-dark);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .45);
}

.profile-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* Image overlay */

.profile-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 60%,
            rgba(13, 11, 12, .55) 100%);

    pointer-events: none;
}


/* Verification */

.profile-verified {
    position: absolute;

    left: 20px;
    bottom: 20px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 15px;

    color: #18120E;

    background: var(--gold);

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .30);
}

.profile-verified i {
    font-size: 13px;
}


/* =========================================
   TWO IMAGE GALLERY
========================================= */

.profile-gallery-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-top: 14px;
}

.profile-gallery-image {
    height: 140px;

    overflow: hidden;

    border-radius: 15px;

    border: 1px solid var(--border-dark);

    background: var(--dark-surface);
}

.profile-gallery-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease,
        filter .45s ease;
}

.profile-gallery-image:hover img {
    transform: scale(1.05);

    filter: brightness(1.08);
}


/* =========================================
   MAIN CONTENT
========================================= */

.profile-main-content {
    padding: 10px 5px;
}


.profile-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.profile-main-content h1 {
    margin: 0;

    color: var(--light-text);

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 4vw, 58px);

    font-weight: 600;

    line-height: 1.05;
}


/* Location */

.profile-location {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-top: 12px;

    color: var(--light-muted);

    font-size: 13px;
}

.profile-location i {
    color: var(--gold);
}


/* Status */

.profile-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 10px;
    margin-bottom: 10px;

    color: #49c987;

    font-size: 13px;
    font-weight: 600;
}

.status-dot {
    width: 7px;
    height: 7px;

    display: inline-block;

    border-radius: 50%;

    background: #35c779;

    box-shadow:
        0 0 0 4px rgba(53, 199, 121, .10);
}


/* Description */

.profile-description {
    margin: 0;

    color: var(--light-muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================
   TAGS
========================================= */

.profile-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 27px;
}

.profile-tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 9px 12px;

    color: rgba(245, 241, 234, .72);

    background: rgba(255, 255, 255, .035);

    border: 1px solid rgba(201, 169, 110, .12);

    border-radius: 30px;

    font-size: 11px;
}

.profile-tags i {
    color: var(--gold);
}


/* =========================================
   HIGHLIGHTS
========================================= */

.profile-highlights {
    margin-top: 36px;
}

.profile-highlights h3 {
    margin: 0 0 18px;

    color: var(--light-text);

    font-family: "Playfair Display", serif;

    font-size: 22px;

    font-weight: 500;
}

.highlight-list {
    display: flex;

    flex-direction: row;
    flex-wrap: wrap;

    gap: 13px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--light-muted);

    font-size: 13px;
}

.highlight-item i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--gold);

    background: rgba(201, 169, 110, .07);

    border: 1px solid rgba(201, 169, 110, .12);

    border-radius: 50%;

    font-size: 12px;
}


/* =========================================
   ACTION BUTTONS
========================================= */

.profile-actions {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 9px;

    margin-top: 34px;
}

.profile-action {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 10px;

    border-radius: 9px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.profile-action:hover {
    transform: translateY(-2px);
}


/* Call */

.call-action {
    color: #fff;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));
}

.call-action:hover {
    color: #fff;

    box-shadow:
        0 10px 25px rgba(122, 24, 48, .25);
}


/* WhatsApp */

.whatsapp-action {
    color: #fff;

    background: #1FBE62;
}

.whatsapp-action:hover {
    color: #fff;

    background: #25D366;

    box-shadow:
        0 10px 25px rgba(37, 211, 102, .18);
}


/* Enquiry */

.booking-action {
    color: #1A1510;

    background: var(--gold);
}

.booking-action:hover {
    color: #1A1510;

    background: var(--gold-light);

    box-shadow:
        0 10px 25px rgba(201, 169, 110, .20);
}


/* =========================================
   SIDEBAR
========================================= */

.profile-sidebar {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


/* Information Card */

.profile-info-card {
    padding: 25px;

    background:
        linear-gradient(145deg,
            rgba(36, 24, 25, .96),
            rgba(22, 18, 19, .96));

    border: 1px solid rgba(201, 169, 110, .13);

    border-radius: 18px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .25);
}


.info-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.info-card-heading i {
    font-size: 14px;
    opacity: .7;
}


.profile-info-card h3 {
    margin: 9px 0 22px;

    color: var(--light-text);

    font-family: "Playfair Display", serif;

    font-size: 23px;

    font-weight: 500;
}


/* Info list */

.info-list {
    display: flex;

    flex-direction: column;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.info-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    color: var(--light-muted);

    font-size: 11px;
}

.info-value {
    color: var(--light-text);

    font-size: 12px;
    font-weight: 600;

    text-align: right;
}


/* =========================================
   AVAILABILITY
========================================= */

.availability-status {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 14px;

    color: #42C77F;

    font-size: 12px;
    font-weight: 600;
}

.availability-card p {
    margin: 0;

    color: var(--light-muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================
   TRUST CARD
========================================= */

.profile-trust-card {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 20px;

    background:
        rgba(122, 24, 48, .12);

    border: 1px solid rgba(201, 169, 110, .14);

    border-radius: 16px;
}

.profile-trust-card>i {
    color: var(--gold);

    font-size: 20px;
}

.profile-trust-card strong {
    display: block;

    margin-bottom: 4px;

    color: var(--light-text);

    font-size: 12px;
}

.profile-trust-card span {
    display: block;

    color: var(--light-muted);

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .profile-main-image {
        height: 450px;
    }

    .profile-gallery-image {
        height: 150px;
    }

    .profile-actions {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 991px) {

    .profile-detail-section {
        padding-top: 40px;
    }

    .profile-main-image {
        height: 600px;
    }

    .profile-gallery-image {
        height: 220px;
    }

    .profile-main-content {
        padding: 10px 0;
    }

    .profile-sidebar {
        margin-top: 10px;
    }

    .profile-actions {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 767px) {

    .profile-detail-section {
        padding: 30px 0 70px;
    }

    .profile-breadcrumb {
        margin-bottom: 25px;
    }

    .profile-main-image {
        height: 520px;
    }

    .profile-gallery-image {
        height: 180px;
    }

    .profile-main-content h1 {
        font-size: 44px;
    }

    .profile-actions {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 575px) {

    .profile-main-image {
        height: 450px;

        border-radius: 16px;
    }

    .profile-gallery-grid {
        gap: 10px;
    }

    .profile-gallery-image {
        height: 145px;

        border-radius: 11px;
    }

    .profile-main-content h1 {
        font-size: 40px;
    }

    .profile-description {
        font-size: 13px;
    }

    .profile-info-card {
        padding: 21px;
    }

    .profile-breadcrumb {
        font-size: 10px;
    }

}

/* =========================================
   MODAL CONTAINER
========================================= */

.appointment-modal .modal-dialog {
    max-width: 680px;
    margin: 1.5rem auto;
}

.appointment-modal-content {
    position: relative;
    background:
        radial-gradient(circle at 100% 0%,
            rgba(122, 24, 48, 0.20),
            transparent 32%),
        linear-gradient(145deg,
            #1A1516 0%,
            #121011 100%);

    border: 1px solid rgba(201, 169, 110, 0.20);

    border-radius: 20px;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.65);

    color: var(--modal-text);
}


/* Gold top line */

.appointment-modal-content::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background:
        linear-gradient(90deg,
            var(--modal-burgundy),
            var(--modal-gold),
            var(--modal-burgundy));
}


/* =========================================
   CLOSE BUTTON
========================================= */

.appointment-close {
    position: absolute;

    top: 18px;
    right: 20px;

    z-index: 10;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.035);

    color: rgba(245, 241, 234, 0.70);

    font-size: 17px;

    cursor: pointer;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.appointment-close:hover {
    color: var(--modal-gold-light);

    background: rgba(201, 169, 110, 0.10);

    border-color: rgba(201, 169, 110, 0.30);

    transform: rotate(90deg);
}


/* =========================================
   HEADER
========================================= */

.appointment-header {
    padding: 18px 40px 14px;

    text-align: center;
}

.appointment-eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--modal-gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.appointment-header h2 {
    margin: 0;

    color: var(--modal-text);

    font-family: "Playfair Display", serif;

    font-size: 31px;
    font-weight: 600;

    line-height: 1.2;
}

.appointment-header p {
    max-width: 440px;

    margin: 10px auto 0;

    color: var(--modal-muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================
   FORM BODY
========================================= */

.appointment-body {
    padding: 10px 40px 18px;
}


/* =========================================
   FIELD
========================================= */

.appointment-field {
    margin-bottom: 18px;
}

.appointment-field label {
    display: block;

    margin-bottom: 5px;

    color: rgba(245, 241, 234, 0.82);

    font-size: 12px;
    font-weight: 600;
}

.appointment-field label span {
    color: var(--modal-gold);
}


/* Inputs */

.appointment-field input,
.appointment-field select,
.appointment-field textarea {
    width: 100%;

    display: block;

    padding: 10px 14px;

    color: var(--modal-text);

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 9px;

    outline: none;

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


/* Placeholder */

.appointment-field input::placeholder,
.appointment-field textarea::placeholder {
    color: rgba(184, 173, 174, 0.55);
}


/* Focus */

.appointment-field input:focus,
.appointment-field select:focus,
.appointment-field textarea:focus {
    border-color: rgba(201, 169, 110, 0.65);

    background: rgba(201, 169, 110, 0.035);

    box-shadow:
        0 0 0 3px rgba(201, 169, 110, 0.08);
}


/* Select */

.appointment-field select {
    appearance: none;

    padding-right: 42px;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--modal-gold) 50%),
        linear-gradient(135deg, var(--modal-gold) 50%, transparent 50%);

    background-position:
        calc(100% - 17px) 50%,
        calc(100% - 12px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.appointment-field select option {
    background: #1D1819;
    color: var(--modal-text);
}


/* Date input */

.appointment-field input[type="datetime-local"] {
    color-scheme: dark;
}


/* Textarea */

.appointment-field textarea {
    max-height: 65px;

    resize: vertical;
}



/* =========================================
   SUBMIT BUTTON
========================================= */

.appointment-submit {
    width: 100%;

    min-height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 0;

    border-radius: 9px;

    color: #FFFFFF;

    background: linear-gradient(135deg, var(--primary), var(--primary-dark));

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.appointment-submit:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: #171214;
    box-shadow:
        0 12px 30px rgba(201, 169, 110, 0.20);
}

.appointment-submit i {
    font-size: 11px;

    transition:
        transform .25s ease;
}

.appointment-submit:hover i {
    transform: translateX(4px);
}


/* =========================================
   BACKDROP
========================================= */

.modal-backdrop.show {
    background: #050405;

    opacity: .82;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .appointment-modal .modal-dialog {
        margin: 12px;
    }

    .appointment-modal-content {
        border-radius: 16px;
    }

    .appointment-header {
        padding: 32px 25px 20px;
    }

    .appointment-header h2 {
        font-size: 27px;
    }

    .appointment-body {
        padding: 8px 25px 28px;
    }

    .appointment-close {
        top: 14px;
        right: 14px;
    }

}


@media (max-width: 575px) {

    .appointment-modal .modal-dialog {
        margin: 8px;
    }

    .appointment-header {
        padding: 30px 20px 18px;
    }

    .appointment-header h2 {
        font-size: 25px;
    }

    .appointment-body {
        padding: 8px 20px 25px;
    }

    .appointment-field {
        margin-bottom: 15px;
    }

    .appointment-field input,
    .appointment-field select,
    .appointment-field textarea {
        padding: 11px 12px;
    }

    .appointment-submit {
        min-height: 50px;
    }

}

/* =========================================
   NON-SCROLLABLE APPOINTMENT MODAL
========================================= */

.appointment-modal .modal-dialog {
    height: auto;
    max-height: none;
}

.appointment-modal .modal-content {
    max-height: none;
}

.appointment-modal .modal-body {
    overflow: visible !important;
}

.appointment-modal .appointment-body {
    overflow: visible !important;
}

/* =========================================
   APPOINTMENT MODAL - NO SCROLL
========================================= */

/* Stop page behind modal */
html:has(body.modal-open),
body.modal-open {
    overflow: hidden !important;
}

/* Modal itself */
#appointmentModal {
    overflow: hidden !important;
}

#appointmentModal .modal-dialog {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

#appointmentModal .modal-content {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Remove all possible internal scrolling */
#appointmentModal .modal-body,
#appointmentModal .appointment-body {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Make sure Bootstrap isn't creating a scroll container */
#appointmentModal .modal-dialog-scrollable {
    max-height: none !important;
}

#appointmentModal .modal-dialog-scrollable .modal-content {
    max-height: none !important;
    overflow: visible !important;
}

#appointmentModal .modal-dialog-scrollable .modal-body {
    overflow: visible !important;
}


/* =========================================================
   LOCATIONS SECTION
========================================================= */

.locations-section {
    position: relative;

    padding: 90px 0 100px;

    background:
        radial-gradient(circle at 10% 20%,
            rgba(122, 24, 48, 0.10),
            transparent 30%),
        var(--dark-bg);

    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.locations-heading {
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}

.locations-heading .section-eyebrow {
    color: var(--gold);
}

.locations-heading h2 {
    color: var(--light-text);
}

.locations-heading p {
    color: var(--light-muted);
}


/* =========================================================
   LOCATIONS GRID
========================================================= */

.locations-grid {

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 24px;

    width: 100%;
}


/* =========================================================
   LOCATION CARD
========================================================= */

.locations-grid .featured-card {

    min-width: 0;

    width: 100%;

    border-radius: var(--radius-lg);

    overflow: hidden;

    background: var(--dark-surface);

    border: 1px solid rgba(201, 169, 110, 0.10);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.30);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.locations-grid .featured-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(201, 169, 110, 0.25);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.locations-grid .featured-card-image {

    position: relative;

    width: 100%;

    height: 330px;

    overflow: hidden;

    background: var(--dark-surface);
}


/* =========================================================
   IMAGE
========================================================= */

.locations-grid .featured-card-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.6s ease;
}


.locations-grid .featured-card:hover .featured-card-image img {

    transform: scale(1.06);
}


/* =========================================================
   DARK GRADIENT
========================================================= */

.locations-grid .featured-card-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(13, 11, 12, 0.96) 0%,
            rgba(13, 11, 12, 0.72) 18%,
            rgba(13, 11, 12, 0.18) 52%,
            rgba(13, 11, 12, 0) 70%);

    pointer-events: none;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.locations-grid .featured-card-content {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    padding: 30px 18px 18px;
}


/* =========================================================
   DETAILS
========================================================= */

.locations-grid .featured-card-details {

    min-width: 0;
}


.locations-grid .featured-card-details h3 {

    margin: 0 0 6px;

    color: var(--light-text);

    font-family: "Playfair Display", serif;

    font-size: 23px;

    line-height: 1.15;

    font-weight: 600;

    letter-spacing: -0.2px;
}


/* =========================================================
   LOCATION
========================================================= */

.locations-grid .featured-location {

    display: flex;

    align-items: center;

    gap: 6px;

    color:
        rgba(245, 241, 234, 0.76);

    font-size: 12px;

    font-weight: 500;
}


.locations-grid .featured-location i {

    color: var(--gold);

    font-size: 11px;
}


/* =========================================================
   ARROW
========================================================= */

.locations-grid .featured-card-arrow {

    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));

    color: var(--white);

    text-decoration: none;

    border: 1px solid rgba(201, 169, 110, 0.15);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.35);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.locations-grid .featured-card-arrow i {

    font-size: 14px;

    transition:
        transform 0.3s ease;
}


.locations-grid .featured-card-arrow:hover {

    background:
        linear-gradient(135deg,
            var(--gold),
            var(--gold-dark));

    color: #17110D;

    transform: scale(1.08);

    box-shadow:
        0 12px 30px rgba(201, 169, 110, 0.20);
}


.locations-grid .featured-card-arrow:hover i {

    transform: translateX(3px);
}

/* =========================================================
   RESPONSIVE LOCATIONS GRID
========================================================= */


/* -----------------------------------------
   Large Desktop
----------------------------------------- */

@media (max-width: 1199px) {

    .locations-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 22px;
    }

    .locations-grid .featured-card-image {

        height: 320px;
    }

}


/* -----------------------------------------
   Tablet
----------------------------------------- */

@media (max-width: 991px) {

    .locations-section {

        padding: 75px 0 80px;
    }

    .locations-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .locations-grid .featured-card-image {

        height: 330px;
    }

}


/* -----------------------------------------
   Mobile
----------------------------------------- */

@media (max-width: 575px) {

    .locations-section {

        padding: 60px 0 70px;
    }

    .locations-heading {

        margin-bottom: 30px;
    }

    .locations-heading h2 {

        font-size: 30px;
    }

    .locations-heading p {

        font-size: 13px;
    }

    .locations-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .locations-grid .featured-card-image {

        height: 380px;
    }

}


/* -----------------------------------------
   Small Mobile
----------------------------------------- */

@media (max-width: 380px) {

    .locations-grid .featured-card-image {

        height: 350px;
    }

    .locations-grid .featured-card-details h3 {

        font-size: 21px;
    }

    .locations-grid .featured-card-arrow {

        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }

}

/* =========================================
   LOCATION DIRECTORY
========================================= */

.locations-directory {
    position: relative;

    padding: 100px 0;

    background: #0D0B0C;

    overflow: hidden;
}


/* Subtle burgundy glow */

.locations-directory::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -300px;
    left: -150px;

    background:
        radial-gradient(circle,
            rgba(122, 24, 48, 0.18),
            transparent 70%);

    pointer-events: none;
}


/* =========================================
   HEADING
========================================= */

.locations-directory-heading {
    position: relative;

    max-width: 650px;

    margin: 0 auto 55px;

    text-align: center;
}

.locations-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.locations-directory-heading h2 {
    margin: 0 0 15px;

    color: var(--light-text);

    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 5vw, 54px);

    font-weight: 600;

    line-height: 1.1;
}

.locations-directory-heading p {
    max-width: 520px;

    margin: auto;

    color: var(--light-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.location-directory-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================
   LOCATION CARD
========================================= */

.location-directory-card {

    position: relative;

    min-height: 155px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 25px;

    overflow: hidden;

    text-decoration: none;

    background:
        linear-gradient(145deg,
            #1A1516,
            #120F10);

    border: 1px solid rgba(201, 169, 110, 0.13);

    border-radius: 16px;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}


/* Gold top accent */

.location-directory-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 25px;

    width: 35px;
    height: 2px;

    background: var(--gold);

    opacity: .7;

    transition:
        width .35s ease;
}


/* Hover */

.location-directory-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(201, 169, 110, 0.35);

    background:
        linear-gradient(145deg,
            #241116,
            #161213);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .35);
}

.location-directory-card:hover::before {
    width: 65px;
}


/* =========================================
   NUMBER
========================================= */

.location-number {

    position: absolute;

    top: 18px;
    right: 22px;

    color:
        rgba(201, 169, 110, 0.14);

    font-family: "Playfair Display", serif;

    font-size: 48px;

    line-height: 1;

    font-weight: 600;

    transition:
        color .35s ease;
}

.location-directory-card:hover .location-number {

    color:
        rgba(201, 169, 110, 0.25);
}


/* =========================================
   CONTENT
========================================= */

.location-card-content {

    position: relative;

    z-index: 2;
}

.location-card-content h3 {

    margin: 0 0 6px;

    color: var(--light-text);

    font-family: "Playfair Display", serif;

    font-size: 23px;

    font-weight: 500;

    line-height: 1.2;
}

.location-card-content span {

    display: block;

    color: var(--light-muted);

    font-size: 11px;

    letter-spacing: .3px;
}


/* =========================================
   ARROW
========================================= */

.location-arrow {

    position: absolute;

    right: 22px;
    bottom: 22px;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--gold);

    background:
        rgba(201, 169, 110, 0.07);

    border: 1px solid rgba(201, 169, 110, 0.15);

    font-size: 11px;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.location-directory-card:hover .location-arrow {

    transform: translateX(4px);

    color: #17110D;

    background: var(--gold);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .locations-directory {
        padding: 80px 0;
    }

    .location-directory-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 575px) {

    .locations-directory {
        padding: 65px 0;
    }

    .locations-directory-heading {
        margin-bottom: 35px;
    }

    .locations-directory-heading h2 {
        font-size: 34px;
    }

    .locations-directory-heading p {
        font-size: 13px;
    }

    .location-directory-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .location-directory-card {
        min-height: 125px;
        padding: 22px;
    }

    .location-card-content h3 {
        font-size: 21px;
    }

    .location-number {
        font-size: 40px;
    }

}
/* =========================================
   HERO SLIDER
========================================= */

.hero-section {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #111;
}


/* Slides */

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


.hero-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 1s ease,
        visibility 1s ease;

    z-index: 1;
}


.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, .78) 0%,
            rgba(0, 0, 0, .55) 45%,
            rgba(0, 0, 0, .20) 100%);
}


/* Content */

.hero-slide .container {
    position: relative;
    z-index: 3;
}


.hero-content {
    max-width: 720px;
    padding: 100px 0;
}


.hero-content .eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--accent);
}


.hero-content h1 {
    margin: 0 0 24px;

    font-size: clamp(38px, 6vw, 56px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -2px;

    color: #fff;
}


.hero-content p {
    max-width: 580px;
    margin: 0 0 35px;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(255, 255, 255, .82);
}


/* Buttons */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}



/* =========================================
   ARROWS
========================================= */

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;

    background: rgba(0, 0, 0, .2);
    color: #fff;

    transform: translateY(-50%);

    cursor: pointer;

    transition: all .3s ease;
}


.hero-arrow:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff;
}


.hero-prev {
    left: 30px;
}


.hero-next {
    right: 30px;
}


/* =========================================
   DOTS
========================================= */

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;

    z-index: 10;

    display: flex;
    gap: 8px;

    transform: translateX(-50%);
}


.hero-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, .45);

    cursor: pointer;

    transition: all .3s ease;
}


.hero-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #fff;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero-section {
        min-height: 600px;
    }

    .hero-content {
        padding: 80px 0 70px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    .hero-dots {
        bottom: 20px;
    }
}