/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER
   PREMIUM / STABLE DROPDOWNS / MOBILE FRIENDLY
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   CONTACT BAR
========================================================= */

.header-info {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    min-height: 52px;

    padding: 7px 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 28px;

    background: #000;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 2000;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 6px 10px;

    color: #fff;

    text-decoration: none;

    font-size: .86rem;
    font-weight: 600;

    border-radius: 999px;

    transition:
        background .2s ease,
        color .2s ease;
}

.contact-item a:hover {
    background: rgba(255, 255, 255, .08);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: fixed;

    top: 52px;
    left: 0;

    width: 100%;

    min-height: 82px;

    padding: 9px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: rgba(0, 0, 0, .96);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 1500;

    transition:
        min-height .3s ease,
        padding .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.main-header.header-scrolled {
    min-height: 68px;

    padding: 7px 32px;

    background: #000;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.logo img {
    display: block;

    width: 180px;
    height: auto;

    object-fit: contain;

    transition:
        width .3s ease,
        transform .3s ease;
}

.logo:hover img {
    transform: scale(1.015);
}

.header-scrolled .logo img {
    width: 150px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex: 1;

    min-width: 0;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 4px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.menu-items {
    position: relative;

    list-style: none;

    flex-shrink: 0;
}


/* =========================================================
   MAIN NAVIGATION LINKS
========================================================= */

.menu-items > a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 8px 10px;

    color: #fff;

    text-decoration: none;

    white-space: nowrap;

    font-size: clamp(.78rem, 1vw, .98rem);

    font-weight: 600;

    transition:
        color .2s ease,
        background .2s ease;
}

.menu-items > a:hover {
    color: #aaa;
}


/* =========================================================
   NAVIGATION UNDERLINE
========================================================= */

.menu-items > a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #fff;

    border-radius: 99px;

    transform: translateX(-50%);

    transition: width .25s ease;
}

.menu-items > a:hover::after {
    width: 55%;
}


/* =========================================================
   DESKTOP DROPDOWNS
========================================================= */

.sub-menu {
    position: absolute;

    /*
       IMPORTANT:
       No 5px gap here.
       The dropdown touches the navigation item.
    */
    top: 100%;
    left: 0;

    width: 250px;

    max-height: 65vh;

    overflow-y: auto;
    overflow-x: hidden;

    padding: 7px 0;

    margin: 0;

    list-style: none;

    background: #fff;

    border-radius: 13px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .35);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity .22s ease,
        transform .22s ease,
        visibility .22s ease;

    z-index: 3000;
}


/* =========================================================
   INVISIBLE HOVER BRIDGE
   Prevents dropdown from disappearing while moving
   the mouse from the menu item into the dropdown.
========================================================= */

.sub-menu::before {
    content: "";

    position: absolute;

    top: -10px;
    left: 0;

    width: 100%;
    height: 10px;

    background: transparent;
}


/* =========================================================
   DESKTOP DROPDOWN OPEN STATE
========================================================= */

@media (min-width: 901px) {

    .menu-items:hover > .sub-menu,
    .menu-items:focus-within > .sub-menu {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }

}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.sub-menu li {
    position: relative;

    list-style: none;
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.sub-menu a {
    display: block;

    width: 100%;

    padding: 11px 17px;

    color: #000 !important;

    text-decoration: none !important;

    font-size: .92rem;

    font-weight: 550;

    line-height: 1.4;

    transition:
        background .2s ease,
        padding-left .2s ease,
        color .2s ease;
}

.sub-menu a:hover {
    background: #f1f1f1;

    padding-left: 22px;
}


/* =========================================================
   DROPDOWN SCROLLBAR
========================================================= */

.sub-menu::-webkit-scrollbar {
    width: 6px;
}

.sub-menu::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.sub-menu::-webkit-scrollbar-thumb {
    background: #bbb;

    border-radius: 20px;
}


/* =========================================================
   RIGHT-SIDE DROPDOWN
   Prevents dropdown from leaving the screen.
========================================================= */

@media (min-width: 901px) {

    .menu-items:last-child > .sub-menu {
        left: auto;
        right: 0;
    }

}


/* =========================================================
   HIDE DONATE
   Code can remain in HTML.
========================================================= */

.donate-menu-item {
    display: none !important;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #fff;

    cursor: pointer;

    font-size: 1.65rem;

    line-height: 1;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.menu-toggle::before {
    content: "☰";
}

.menu-toggle.active::before {
    content: "✕";
}


/* =========================================================
   DROPDOWN ICON
========================================================= */

.dropdown-icon {
    display: none;

    margin-left: auto;

    font-size: .7rem;

    transition: transform .3s ease;
}


/* =========================================================
   HEADER IMAGE / CONTENT AFTER HEADER
========================================================= */

.header-after {
    width: 100%;

    margin-top: 154px;

    overflow: hidden;
}

.header-after img {
    display: block;

    width: 100%;

    height: auto;

    min-height: 280px;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .main-header {
        padding: 8px 22px;

        gap: 18px;
    }

    .main-header.header-scrolled {
        padding: 7px 22px;
    }

    .logo img {
        width: 160px;
    }

    .header-scrolled .logo img {
        width: 145px;
    }

    .menu {
        gap: 2px;
    }

    .menu-items > a {
        padding: 8px 7px;

        font-size: .79rem;
    }

    .sub-menu {
        width: 235px;
    }

    .header-after {
        margin-top: 146px;
    }
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 900px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 48px;

        padding: 6px 12px;

        gap: 8px;
    }

    .contact-item a {
        font-size: .72rem;

        padding: 5px 8px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 48px;

        min-height: 72px;

        padding: 8px 18px;

        gap: 15px;
    }

    .main-header.header-scrolled {
        min-height: 63px;

        padding: 6px 18px;
    }


    /* LOGO */

    .logo img {
        width: 150px;
    }

    .header-scrolled .logo img {
        width: 140px;
    }


    /* MOBILE BUTTON */

    .menu-toggle {
        display: flex;
    }


    /* MOBILE NAVIGATION */

    .navigation {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        max-height: calc(100vh - 120px);

        overflow-y: auto;

        padding: 6px 0 15px;

        background: #fff;

        border-bottom: 2px solid #000;

        box-shadow:
            0 18px 35px rgba(0, 0, 0, .25);

        z-index: 2500;
    }

    .navigation.active {
        display: block;
    }


    /* MOBILE MENU */

    .menu {
        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        width: 100%;
    }


    /* MENU ITEMS */

    .menu-items {
        width: 100%;
    }


    /* MAIN MOBILE LINKS */

    .menu-items > a {
        width: 100%;

        min-height: 56px;

        justify-content: flex-start;

        padding: 14px 20px;

        color: #000;

        background: #fff;

        border-bottom: 1px solid #ededed;

        font-size: .98rem;
    }

    .menu-items > a:hover {
        color: #000;

        background: #f5f5f5;
    }


    /* REMOVE DESKTOP UNDERLINE */

    .menu-items > a::after {
        display: none;
    }


    /* =====================================================
       MOBILE DROPDOWN
    ===================================================== */

    .sub-menu {
        position: static;

        display: none;

        width: 100%;

        max-height: none;

        overflow: visible;

        padding: 0;

        margin: 0;

        border-radius: 0;

        box-shadow: none;

        background: #f6f6f6;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: none;

        transition: none;
    }


    /* MOBILE DROPDOWN OPEN */

    .sub-menu.visible {
        display: block;
    }


    /* REMOVE HOVER BRIDGE ON MOBILE */

    .sub-menu::before {
        display: none;
    }


    /* MOBILE SUB LINKS */

    .sub-menu a {
        display: flex;

        align-items: center;

        width: 100%;

        min-height: 48px;

        padding: 12px 20px 12px 38px;

        color: #000 !important;

        background: #f6f6f6;

        font-size: .91rem;

        border-bottom: 1px solid #e6e6e6;
    }

    .sub-menu a:hover {
        padding-left: 43px;

        background: #e9e9e9;
    }


    /* DROPDOWN ICON */

    .dropdown-icon {
        display: inline-block;

        margin-left: auto;

        font-size: .7rem;

        color: #000;

        transition: transform .3s ease;
    }

    .menu-items.open .dropdown-icon {
        transform: rotate(180deg);
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 130px;
    }

    .header-after img {
        min-height: 250px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 44px;

        padding: 4px 6px;

        gap: 3px;
    }

    .contact-item a {
        min-height: 32px;

        padding: 4px 6px;

        font-size: .61rem;

        gap: 5px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 44px;

        min-height: 66px;

        padding: 7px 13px;
    }

    .main-header.header-scrolled {
        min-height: 58px;

        padding: 6px 13px;
    }


    /* LOGO */

    .logo img {
        width: 132px;
    }

    .header-scrolled .logo img {
        width: 125px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 42px;
        height: 42px;

        font-size: 1.55rem;
    }


    /* MENU */

    .menu-items > a {
        min-height: 54px;

        padding: 14px 17px;

        font-size: .94rem;
    }


    /* SUB MENU */

    .sub-menu a {
        min-height: 47px;

        padding: 12px 17px 12px 33px;

        font-size: .87rem;
    }

    .sub-menu a:hover {
        padding-left: 38px;
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 112px;
    }

    .header-after img {
        min-height: 210px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 41px;

        padding: 4px 5px;

        gap: 2px;
    }

    .contact-item a {
        font-size: .55rem;

        padding: 3px 5px;

        gap: 4px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 41px;

        min-height: 62px;

        padding: 6px 10px;
    }

    .main-header.header-scrolled {
        min-height: 55px;

        padding: 5px 10px;
    }


    /* LOGO */

    .logo img {
        width: 118px;
    }

    .header-scrolled .logo img {
        width: 112px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 40px;
        height: 40px;

        font-size: 1.45rem;
    }


    /* MAIN LINKS */

    .menu-items > a {
        min-height: 52px;

        padding: 13px 15px;

        font-size: .9rem;
    }


    /* SUB LINKS */

    .sub-menu a {
        min-height: 47px;

        padding: 11px 15px 11px 30px;

        font-size: .84rem;
    }

    .sub-menu a:hover {
        padding-left: 35px;
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 104px;
    }

    .header-after img {
        min-height: 180px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 340px) {

    /* CONTACT TEXT */

    .contact-item a span {
        display: none;
    }

    .contact-item a {
        width: 34px;
        height: 30px;

        padding: 0;

        justify-content: center;
    }


    /* LOGO */

    .logo img {
        width: 108px;
    }

    .header-scrolled .logo img {
        width: 104px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 38px;
        height: 38px;
    }
}


/* =========================================================
   ACCESSIBILITY / KEYBOARD
========================================================= */

.menu-items > a:focus-visible,
.sub-menu a:focus-visible,
.menu-toggle:focus-visible,
.contact-item a:focus-visible {
    outline: 2px solid #fff;

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER END
========================================================= */
 /* =========================================================
    ADVENTURE LEOPARDS — PARAGLIDING HOME SECTION
    WHITE BACKGROUND / PREMIUM / RESPONSIVE
 ========================================================= */

.home-paragliding {
    width: 100%;
    background: #fff;
    color: #111;
    padding: 110px 30px;
    overflow: hidden;
}

.home-paragliding-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}


/* =========================================================
   CONTENT
 ========================================================= */

.home-paragliding-content {
    width: 100%;
    max-width: 590px;
}

.home-paragliding-eyebrow {
    display: inline-block;

    margin-bottom: 16px;

    font-size: .78rem;
    font-weight: 700;

    letter-spacing: 3px;

    color: #587b52;
}

.home-paragliding-title {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: clamp(2.3rem, 4vw, 4.2rem);

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -1.8px;

    color: #111;
}

.home-paragliding-line {
    width: 70px;
    height: 3px;

    margin: 25px 0 27px;

    background: #587b52;

    border-radius: 20px;
}

.home-paragliding-lead {
    margin: 0 0 17px;

    font-size: 1.12rem;

    line-height: 1.8;

    font-weight: 500;

    color: #303030;
}

.home-paragliding-text {
    margin: 0;

    font-size: .98rem;

    line-height: 1.85;

    color: #666;
}


/* =========================================================
   HIGHLIGHTS
 ========================================================= */

.home-paragliding-highlights {
    display: grid;

    grid-template-columns: 1fr;

    gap: 13px;

    margin-top: 32px;

    padding-top: 25px;

    border-top: 1px solid #e5e5e5;
}

.home-paragliding-highlight {
    display: flex;

    align-items: center;

    gap: 14px;
}

.home-paragliding-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f5ef;

    color: #587b52;

    font-size: .95rem;
}

.home-paragliding-highlight div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.home-paragliding-highlight strong {
    font-size: .88rem;

    font-weight: 700;

    color: #1a1a1a;
}

.home-paragliding-highlight span {
    font-size: .78rem;

    color: #777;
}


/* =========================================================
   BUTTON
 ========================================================= */

.home-paragliding-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 35px;

    min-height: 52px;

    padding: 14px 25px;

    background: #111;

    color: #fff;

    text-decoration: none;

    border-radius: 5px;

    font-size: .88rem;

    font-weight: 600;

    letter-spacing: .2px;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.home-paragliding-button i {
    font-size: .78rem;

    transition: transform .25s ease;
}

.home-paragliding-button:hover {
    background: #587b52;

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(0, 0, 0, .15);
}

.home-paragliding-button:hover i {
    transform: translateX(5px);
}


/* =========================================================
   IMAGE
 ========================================================= */

.home-paragliding-visual {
    width: 100%;
}

.home-paragliding-image-wrap {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 4px;

    background: #f2f2f2;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .13);
}

.home-paragliding-image {
    display: block;

    width: 100%;

    height: auto;

    max-width: 100%;

    object-fit: contain;

    transition: transform .6s ease;
}

.home-paragliding-image-wrap:hover .home-paragliding-image {
    transform: scale(1.025);
}


/* =========================================================
   IMAGE LABEL
 ========================================================= */

.home-paragliding-image-label {
    position: absolute;

    left: 20px;
    bottom: 20px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 12px 17px;

    background: rgba(0, 0, 0, .82);

    color: #fff;

    border-radius: 4px;

    backdrop-filter: blur(8px);
}

.home-paragliding-image-label > span {
    font-size: .72rem;

    font-weight: 700;

    letter-spacing: 1px;

    color: #a8c69f;
}

.home-paragliding-image-label div {
    display: flex;

    flex-direction: column;

    gap: 1px;
}

.home-paragliding-image-label strong {
    font-size: .84rem;

    font-weight: 600;
}

.home-paragliding-image-label small {
    font-size: .68rem;

    color: #ccc;
}


/* =========================================================
   LARGE LAPTOP
 ========================================================= */

@media (max-width: 1100px) {

    .home-paragliding {
        padding: 90px 25px;
    }

    .home-paragliding-container {
        gap: 55px;
    }

    .home-paragliding-title {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
    }

}


/* =========================================================
   TABLET
 ========================================================= */

@media (max-width: 900px) {

    .home-paragliding {
        padding: 80px 22px;
    }

    .home-paragliding-container {
        grid-template-columns: 1fr;

        gap: 50px;

        max-width: 760px;
    }

    .home-paragliding-content {
        max-width: 100%;
    }

    .home-paragliding-title {
        font-size: clamp(2.3rem, 7vw, 3.5rem);
    }

    .home-paragliding-visual {
        width: 100%;
    }

}


/* =========================================================
   MOBILE
 ========================================================= */

@media (max-width: 600px) {

    .home-paragliding {
        padding: 65px 17px;
    }

    .home-paragliding-container {
        gap: 38px;
    }

    .home-paragliding-eyebrow {
        margin-bottom: 13px;

        font-size: .7rem;

        letter-spacing: 2.2px;
    }

    .home-paragliding-title {
        font-size: clamp(2rem, 10vw, 2.8rem);

        letter-spacing: -1px;

        line-height: 1.08;
    }

    .home-paragliding-line {
        width: 55px;

        margin: 20px 0 22px;
    }

    .home-paragliding-lead {
        font-size: 1rem;

        line-height: 1.7;
    }

    .home-paragliding-text {
        font-size: .9rem;

        line-height: 1.75;
    }

    .home-paragliding-highlights {
        margin-top: 27px;

        padding-top: 21px;

        gap: 14px;
    }

    .home-paragliding-highlight {
        gap: 11px;
    }

    .home-paragliding-icon {
        width: 39px;
        height: 39px;

        font-size: .85rem;
    }

    .home-paragliding-highlight strong {
        font-size: .82rem;
    }

    .home-paragliding-highlight span {
        font-size: .72rem;
    }

    .home-paragliding-button {
        width: 100%;

        margin-top: 29px;

        min-height: 51px;

        padding: 13px 20px;
    }

    .home-paragliding-image-wrap {
        border-radius: 3px;
    }

    .home-paragliding-image-label {
        left: 12px;
        bottom: 12px;

        padding: 9px 12px;

        gap: 9px;
    }

    .home-paragliding-image-label strong {
        font-size: .75rem;
    }

    .home-paragliding-image-label small {
        font-size: .6rem;
    }

}


/* =========================================================
   SMALL PHONES
 ========================================================= */

@media (max-width: 420px) {

    .home-paragliding {
        padding: 55px 14px;
    }

    .home-paragliding-title {
        font-size: 2rem;
    }

    .home-paragliding-lead {
        font-size: .94rem;
    }

    .home-paragliding-text {
        font-size: .86rem;
    }

    .home-paragliding-highlight {
        align-items: flex-start;
    }

    .home-paragliding-icon {
        width: 36px;
        height: 36px;
    }

    .home-paragliding-image-label {
        left: 9px;
        bottom: 9px;

        padding: 8px 10px;
    }

}


/* =========================================================
   VERY SMALL PHONES
 ========================================================= */

@media (max-width: 340px) {

    .home-paragliding {
        padding: 48px 12px;
    }

    .home-paragliding-title {
        font-size: 1.8rem;
    }

    .home-paragliding-eyebrow {
        font-size: .63rem;
    }

    .home-paragliding-button {
        font-size: .82rem;
    }

}


/* =========================================================
   REDUCED MOTION
 ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-paragliding-image,
    .home-paragliding-button,
    .home-paragliding-button i {
        transition: none !important;
    }

}
/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM HERO — PURE WHITE / CENTERED
========================================================= */

.hero-section {
    position: relative;
    width: 100%; 

    height: clamp(620px, 80vh, 900px);

    overflow: hidden;

    background: #ffffff;
    isolation: isolate;
}


/* =========================================================
   SLIDES
========================================================= */

.hero-section .slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 1s ease,
        visibility 1s ease;
}

.hero-section .slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   IMAGE
========================================================= */

.hero-section .slide > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.035);

    transition:
        transform 8s cubic-bezier(.16, 1, .3, 1);
}

.hero-section .slide.active > img {
    transform: scale(1);
}


/* =========================================================
   CLEAN IMAGE DEPTH
========================================================= */

.hero-section .slide::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.16),
            transparent 45%,
            rgba(0,0,0,.12)
        );

    pointer-events: none;
}

.hero-section .slide::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.22),
            transparent 40%
        );

    pointer-events: none;
}


/* =========================================================
   OVERLAY
========================================================= */

.hero-section .overlay {
    position: absolute;
    inset: 0;

    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        50px
        7vw;

    box-sizing: border-box;
}


/* =========================================================
   CENTERED HERO LAYOUT
========================================================= */

.hero-layout {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
}


/* =========================================================
   SIDE NUMBER
========================================================= */

.hero-side-mark {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 12px;

    width: 25px;

    margin-right: 20px;

    color: #ffffff;

    font-size: .58rem;
    font-weight: 800;

    letter-spacing: .12em;

    text-shadow:
        0 2px 12px rgba(0,0,0,.35);
}

.hero-side-mark div {
    width: 1px;
    height: 75px;

    background:
        rgba(255,255,255,.75);
}


/* =========================================================
   PREMIUM WHITE CARD
========================================================= */

.hero-card {
    position: relative;

    width: min(700px, 100%);

    box-sizing: border-box;

    padding:
        clamp(28px, 3.2vw, 45px);

    border:
        1px solid
        rgba(0,0,0,.14);

    border-radius: 30px;

    background: #ffffff;

    color: #111111;

    box-shadow:
        0 28px 80px rgba(0,0,0,.20),
        0 5px 22px rgba(0,0,0,.08);

    opacity: 0;

    transform:
        translateY(28px)
        scale(.985);

    transition:
        opacity .8s ease .15s,
        transform .9s cubic-bezier(.16,1,.3,1);
}

.hero-section .slide.active .hero-card {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   CARD TOP
========================================================= */

.hero-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding-bottom: 18px;

    border-bottom:
        1px solid
        #e6e6e6;
}

.hero-category {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #6b6b6b;

    font-size: .61rem;
    font-weight: 800;

    letter-spacing: .18em;

    text-transform: uppercase;
}

.hero-category::before {
    content: "";

    width: 25px;
    height: 1px;

    background: #111111;
}

.hero-place {
    color: #333333;

    font-size: .61rem;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    text-align: right;
}


/* =========================================================
   CONTENT
========================================================= */

.hero-content {
    padding-top: 33px;
}


/* =========================================================
   TITLE
========================================================= */

.hero-content h1 {
    margin: 0;

    max-width: 650px;

    color: #050505;

    font-size:
        clamp(4rem, 6.6vw, 7.3rem);

    line-height: .82;

    letter-spacing: -.08em;

    font-weight: 850;
}

.hero-content h1 em {
    display: block;

    margin-top: 7px;

    color: #777777;

    font-style: normal;

    font-weight: 500;

    letter-spacing: -.075em;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-content p {
    max-width: 550px;

    margin:
        30px
        0
        0;

    color: #4a4a4a;

    font-size:
        clamp(.9rem, 1vw, 1rem);

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   CTA
========================================================= */

.hero-cta {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 29px;

    color: #111111;

    text-decoration: none;

    font-size: .68rem;
    font-weight: 800;

    letter-spacing: .10em;

    text-transform: uppercase;
}

.hero-cta i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 50%;

    background: #111111;

    color: #ffffff;

    font-size: .95rem;

    font-style: normal;

    transition:
        transform .3s ease,
        background .3s ease;
}

.hero-cta:hover i {
    transform:
        translate(4px,-4px);

    background: #333333;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.hero-card-bottom {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 35px;

    padding-top: 18px;

    border-top:
        1px solid
        #e6e6e6;

    color: #858585;

    font-size: .53rem;

    font-weight: 800;

    letter-spacing: .13em;

    text-transform: uppercase;
}

.hero-bottom-line {
    width: 44px;
    height: 1px;

    background: #aaaaaa;

    flex-shrink: 0;
}


/* =========================================================
   SLIDER BUTTONS
========================================================= */

.slider-button {
    position: absolute;

    top: 50%;

    z-index: 10;

    transform: translateY(-50%);
}

.slider-button.left {
    left: 28px;
}

.slider-button.right {
    right: 28px;
}

.slider-button button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    padding: 0;

    border:
        1px solid
        rgba(255,255,255,.75);

    border-radius: 50%;

    background:
        rgba(0,0,0,.20);

    color: #ffffff;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        border-color .3s ease;
}

.slider-button button:hover {
    background: #ffffff;

    color: #111111;

    border-color: #ffffff;

    transform: scale(1.08);
}

.slider-button button:active {
    transform: scale(.95);
}

.slider-button button i {
    font-size: .76rem;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1500px) {

    .hero-section .overlay {
        padding-left: 8vw;
        padding-right: 8vw;
    }

    .hero-card {
        width: 750px;
    }

    .hero-content h1 {
        font-size: 7.6rem;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .hero-card {
        width: min(680px, 100%);
    }

    .hero-content h1 {
        font-size:clamp(3.8rem, 7vw, 6.7rem);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .hero-section {
        height: 76vh;
        min-height: 650px;
    }

    .hero-section .overlay {
        padding:
            35px
            5vw;
    }

    .hero-side-mark {
        display: none;
    }

    .hero-card {
        width: min(680px, 100%);
    }

    .hero-content h1 {
        font-size:
            clamp(3.5rem, 9vw, 6.2rem);
    }

    .slider-button.left {
        left: 17px;
    }

    .slider-button.right {
        right: 17px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero-section { 

        height: auto;
        min-height: 650px;
    }

    .hero-section .slide {
        min-height: 650px;
    }

    .hero-section .overlay {
        align-items: center;

        padding:
            25px
            12px
            75px;
    }

    .hero-card {
        width: 100%;

        padding:
            22px
            19px
            19px;

        border-radius: 23px;
    }


    /* Top */

    .hero-card-top {
        gap: 12px;

        padding-bottom: 14px;
    }

    .hero-category {
        max-width: 55%;

        font-size: .51rem;

        letter-spacing: .11em;
    }

    .hero-category::before {
        width: 15px;
    }

    .hero-place {
        max-width: 45%;

        font-size: .50rem;

        letter-spacing: .045em;
    }


    /* Content */

    .hero-content {
        padding-top: 22px;
    }

    .hero-content h1 {
        font-size:
            clamp(3rem, 14vw, 4.7rem);

        line-height: .86;
    }

    .hero-content h1 em {
        margin-top: 5px;
    }

    .hero-content p {
        margin-top: 20px;

        font-size: .79rem;

        line-height: 1.7;
    }


    /* CTA */

    .hero-cta {
        margin-top: 22px;

        font-size: .59rem;
    }

    .hero-cta i {
        width: 37px;
        height: 37px;

        font-size: .85rem;
    }


    /* Bottom */

    .hero-card-bottom {
        margin-top: 24px;

        padding-top: 14px;

        font-size: .45rem;

        letter-spacing: .075em;
    }

    .hero-bottom-line {
        width: 23px;
    }


    /* Controls */

    .slider-button {
        top: auto;

        bottom: 18px;

        transform: none;
    }

    .slider-button.left {
        left: 15px;
    }

    .slider-button.right {
        right: 15px;
    }

    .slider-button button {
        width: 42px;
        height: 42px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .hero-section,
    .hero-section .slide {
        min-height: 610px;
    }

    .hero-section .overlay {
        padding:
            18px
            9px
            70px;
    }

    .hero-card {
        padding:
            19px
            16px
            16px;

        border-radius: 20px;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-content p {
        font-size: .72rem;
    }

    .hero-card-bottom {
        display: none;
    }

}


/* =========================================================
   LANDSCAPE MOBILE
========================================================= */

@media (
    max-width: 900px
) and (
    orientation: landscape
) {

    .hero-section {
        height: 100vh;
        min-height: 500px;
    }

    .hero-section .overlay {
        padding:
            20px
            7vw;
    }

    .hero-card {
        width: min(600px, 82vw);

        padding: 22px 26px;
    }

    .hero-content {
        padding-top: 18px;
    }

    .hero-content h1 {
        font-size:
            clamp(2.7rem, 7vw, 4.7rem);
    }

    .hero-content p {
        margin-top: 15px;

        font-size: .72rem;
        line-height: 1.6;
    }

    .hero-cta {
        margin-top: 15px;
    }

    .hero-card-bottom {
        display: none;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.slider-button button:focus-visible,
.hero-cta:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 5px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-section .slide,
    .hero-section .slide > img,
    .hero-card,
    .hero-cta i,
    .slider-button button {
        transition: none !important;
    }

}
/* =========================================================
   ADVENTURE LEOPARDS
   DESTINATIONS PAGE
   PREMIUM WHITE / BLACK EDITORIAL DESIGN
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.destinations-page {
    width: 100%;
    background: #ffffff;
    color: #000000;
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.destinations-hero {
    position: relative;
    min-height: 820px;
    padding: 34px 4.2vw 100px;
    display: flex;
    align-items: center;
    background: #ffffff;
}


/* =========================================================
   HERO INNER
========================================================= */

.destinations-hero-inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(320px, 0.55fr);

    gap: 7vw;
    align-items: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.destinations-eyebrow {
    display: block;
    margin-bottom: 30px;

    color: #777777;

    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}


/* =========================================================
   HERO TITLE
========================================================= */

.destinations-title {
    margin: 0;
    max-width: 950px;

    font-size:
        clamp(
            4.5rem,
            8.3vw,
            9.5rem
        );

    line-height: 0.84;
    letter-spacing: -0.075em;
    font-weight: 850;

    color: #000000;
}

.destinations-title span {
    display: block;
}

.destinations-title em {
    display: block;
    font-style: normal;
    color: #b2b2b2;
}


/* =========================================================
   HERO RIGHT
========================================================= */

.destinations-hero-right {
    max-width: 560px;
    padding-top: 55px;
}

.destinations-hero-right p {
    margin: 0;

    font-size:
        clamp(
            0.95rem,
            1.35vw,
            1.12rem
        );

    line-height: 1.85;
    color: #333333;
}

.destinations-hero-lead {
    color: #666666 !important;
}

.destinations-hero-right strong {
    color: #000000;
    font-weight: 750;
}

.destinations-hero-text p {
    margin-top: 24px !important;
}


/* =========================================================
   SMALL HERO ACCENT
========================================================= */

.destinations-hero-right::before {
    content: "";
    display: block;

    width: 42px;
    height: 2px;

    margin-bottom: 28px;

    background: #000000;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.hero-scroll-indicator {
    position: absolute;

    left: 4.2vw;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 18px;

    color: #999999;

    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.scroll-line {
    width: 70px;
    height: 1px;
    background: #d8d8d8;
}


/* =========================================================
   SHOWCASE
========================================================= */

.destinations-showcase {
    position: relative;

    padding:
        115px 4.2vw
        140px;

    background: #ffffff;
}


/* =========================================================
   HEADER
========================================================= */

.destinations-showcase-header {
    max-width: 1500px;
    margin: 0 auto 60px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.4fr);

    gap: 80px;
    align-items: end;
}

.showcase-eyebrow {
    display: block;
    margin-bottom: 22px;

    color: #999999;

    font-size: 0.65rem;
    letter-spacing: 3px;
    font-weight: 800;
    text-transform: uppercase;
}


/* =========================================================
   SHOWCASE TITLE
========================================================= */

.destinations-showcase h2 {
    margin: 0;

    font-size:
        clamp(
            3rem,
            5.5vw,
            6.2rem
        );

    line-height: 0.9;
    letter-spacing: -0.06em;
    font-weight: 800;

    color: #000000;
}

.destinations-showcase h2 span {
    display: block;
    color: #b5b5b5;
}


/* =========================================================
   SHOWCASE DESCRIPTION
========================================================= */

.destinations-showcase-header > p {
    margin: 0;
    max-width: 430px;

    color: #555555;

    font-size: 0.95rem;
    line-height: 1.8;
}


/* =========================================================
   SLIDER
========================================================= */

.destination-slider {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================================
   VIEWPORT
========================================================= */

.destination-viewport {
    width: 100%;
    overflow: hidden;

    touch-action: pan-y;
    cursor: grab;
}

.destination-viewport:active {
    cursor: grabbing;
}


/* =========================================================
   TRACK
========================================================= */

.destination-track {
    display: flex;
    gap: 28px;

    will-change: transform;
}


/* =========================================================
   CARD
========================================================= */

.destination-card {
    position: relative;

    flex:
        0 0 calc(
            (100% - 56px) / 3
        );

    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        #e4e4e4;

    border-radius: 26px;

    background: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.06);

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

.destination-card:hover {
    transform: translateY(-8px);

    border-color: #cfcfcf;

    box-shadow:
        0 25px 65px
        rgba(0, 0, 0, 0.13);
}


/* =========================================================
   IMAGE
========================================================= */

.destination-photo {
    position: relative;

    display: block;

    height: 510px;

    overflow: hidden;

    color: #ffffff;
    text-decoration: none;

    background: #eeeeee;
}

.destination-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform
        1s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        );
}

.destination-card:hover
.destination-photo img {
    transform: scale(1.06);
}


/* =========================================================
   PHOTO OVERLAY
========================================================= */

.photo-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.08),
            transparent 42%,
            rgba(0,0,0,.60) 100%
        );
}


/* =========================================================
   META
========================================================= */

.destination-meta {
    position: absolute;

    top: 22px;
    left: 22px;
    right: 22px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destination-meta span:first-child {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.88);

    border:
        1px solid
        rgba(255,255,255,.7);

    backdrop-filter: blur(12px);

    color: #000000;

    font-size: .7rem;
    font-weight: 800;
}

.destination-meta span:last-child {
    padding: 8px 12px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.88);

    border:
        1px solid
        rgba(255,255,255,.7);

    backdrop-filter: blur(12px);

    color: #000000;

    font-size: .58rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* =========================================================
   PHOTO LABEL
========================================================= */

.photo-label {
    position: absolute;

    left: 22px;
    bottom: 22px;

    color:
        rgba(255,255,255,.85);

    font-size: .62rem;
    font-weight: 800;
    letter-spacing: 2px;

    text-transform: uppercase;

    opacity: 0;

    transform:
        translateY(10px);

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.destination-card:hover
.photo-label {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   CARD BOTTOM
========================================================= */

.destination-card-bottom {
    min-height: 125px;

    padding: 25px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    background: #ffffff;
}


/* =========================================================
   CARD CATEGORY
========================================================= */

.destination-card-bottom small {
    display: block;

    margin-bottom: 10px;

    color: #999999;

    font-size: .59rem;
    font-weight: 800;
    letter-spacing: 1.6px;

    text-transform: uppercase;
}


/* =========================================================
   CARD TITLE
========================================================= */

.destination-card-bottom h3 {
    margin: 0;

    color: #000000;

    font-size:
        clamp(
            1.35rem,
            2vw,
            1.7rem
        );

    line-height: 1;

    font-weight: 750;

    letter-spacing: -0.025em;
}


/* =========================================================
   CARD ARROW
========================================================= */

.destination-card-arrow {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        #000000;

    border-radius: 50%;

    background: #000000;

    color: #ffffff;

    text-decoration: none;

    font-size: 1.25rem;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}

.destination-card:hover
.destination-card-arrow {
    transform:
        rotate(8deg)
        scale(1.08);
}

.destination-card-arrow:hover {
    background: #ffffff;
    color: #000000;
}


/* =========================================================
   NAVIGATION
========================================================= */

.destination-nav {
    position: absolute;

    z-index: 10;

    top: 50%;

    width: 62px;
    height: 62px;

    transform:
        translateY(-50%);

    border:
        1px solid
        #d7d7d7;

    border-radius: 50%;

    background: #ffffff;

    color: #000000;

    font-size: 1.3rem;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.08);

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.destination-nav:hover {
    background: #000000;

    color: #ffffff;

    border-color: #000000;

    transform:
        translateY(-50%)
        scale(1.08);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.18);
}

.destination-prev {
    left: -31px;
}

.destination-next {
    right: -31px;
}


/* =========================================================
   SLIDER FOOTER
========================================================= */

.destination-slider-bottom {
    max-width: 1500px;

    margin: 26px auto 0;

    display: flex;
    align-items: center;

    gap: 25px;
}


/* =========================================================
   PROGRESS
========================================================= */

.destination-progress {
    flex: 1;

    height: 2px;

    background: #e4e4e4;

    overflow: hidden;
}

.destination-progress span {
    display: block;

    width: 5%;
    height: 100%;

    background: #000000;

    transition:
        width .7s
        cubic-bezier(
            .22,
            1,
            .36,
            1
        );
}


/* =========================================================
   COUNT
========================================================= */

.destination-count {
    display: flex;
    align-items: center;

    gap: 8px;

    min-width: 70px;

    justify-content: flex-end;

    color: #999999;

    font-size: .72rem;
    font-weight: 800;
}

.destination-count strong {
    color: #000000;
}


/* =========================================================
   BUTTON
========================================================= */

.destinations-button-wrap {
    margin-top: 60px;
    text-align: center;
}

.destinations-button {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding:
        7px 8px
        7px 23px;

    border:
        1px solid
        #000000;

    border-radius: 999px;

    background: #ffffff;

    color: #000000;

    text-decoration: none;

    font-size: .88rem;
    font-weight: 800;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.destinations-button b {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000000;

    color: #ffffff;

    font-size: 1.1rem;

    transition:
        background .35s ease,
        color .35s ease;
}

.destinations-button:hover {
    background: #000000;

    color: #ffffff;

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.15);
}

.destinations-button:hover b {
    background: #ffffff;
    color: #000000;
}


/* =========================================================
   SUBTLE SECTION DIVIDER
========================================================= */

.destinations-showcase::before {
    content: "";

    position: absolute;

    top: 0;
    left: 4.2vw;
    right: 4.2vw;

    height: 1px;

    background: #eeeeee;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .destinations-hero {
        min-height: auto;

        padding:
            90px 5vw
            100px;
    }

    .destinations-hero-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .destinations-hero-right {
        padding-top: 0;

        max-width: 760px;
    }

    .destinations-showcase {
        padding:
            80px 5vw
            110px;
    }

    .destinations-showcase-header {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .destination-card {
        flex:
            0 0 calc(
                (100% - 28px) / 2
            );
    }

    .destination-photo {
        height: 430px;
    }

    .destination-prev {
        left: -18px;
    }

    .destination-next {
        right: -18px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .destinations-hero {
        padding:
            65px 20px
            95px;
    }

    .destinations-eyebrow {
        margin-bottom: 25px;

        font-size: .59rem;

        letter-spacing: 2.7px;
    }

    .destinations-title {
        font-size:
            clamp(
                3.65rem,
                16vw,
                5rem
            );

        letter-spacing:
            -.065em;

        line-height: .88;
    }

    .destinations-hero-right {
        max-width: 100%;
    }

    .destinations-hero-right p {
        font-size: .92rem;
        line-height: 1.75;
    }

    .destinations-hero-right::before {
        margin-bottom: 22px;
    }

    .destinations-hero-text {
        margin-top: 18px !important;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .destinations-showcase {
        padding:
            55px 20px
            90px;
    }

    .destinations-showcase::before {
        left: 20px;
        right: 20px;
    }

    .destinations-showcase-header {
        margin-bottom: 35px;
    }

    .showcase-eyebrow {
        margin-bottom: 17px;
    }

    .destinations-showcase h2 {
        font-size:
            clamp(
                3rem,
                13vw,
                4.2rem
            );

        letter-spacing:
            -.055em;
    }

    .destinations-showcase-header > p {
        font-size: .88rem;
        line-height: 1.7;
    }

    .destination-track {
        gap: 18px;
    }

    .destination-card {
        flex:
            0 0 100%;

        border-radius: 23px;
    }

    .destination-photo {
        height: 410px;
    }

    .destination-card-bottom {
        min-height: 110px;

        padding: 20px;
    }

    .destination-card-arrow {
        width: 46px;
        height: 46px;
    }

    .destination-nav {
        width: 47px;
        height: 47px;

        font-size: 1rem;

        box-shadow:
            0 6px 20px
            rgba(0,0,0,.12);
    }

    .destination-prev {
        left: 12px;
    }

    .destination-next {
        right: 12px;
    }

    .destination-slider-bottom {
        margin-top: 20px;

        gap: 15px;
    }

    .destination-count {
        min-width: 58px;
    }

    .destinations-button-wrap {
        margin-top: 45px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .destinations-title {
        font-size: 3.35rem;
    }

    .destination-photo {
        height: 350px;
    }

    .destination-meta {
        top: 16px;
        left: 16px;
        right: 16px;
    }

    .destination-card-bottom {
        padding: 18px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .destination-track,
    .destination-photo img,
    .destination-card,
    .destination-nav,
    .destination-card-arrow,
    .destinations-button {

        transition: none !important;
    }
} 
/* =========================================================
   ADVENTURE LEOPARDS
   DESTINATIONS PAGE
   PREMIUM WHITE / BLACK EDITORIAL DESIGN
========================================================= */

/* =========================================
   ADVENTURE LEOPARDS — PREMIUM BLACK FOOTER
========================================= */

.premium-footer {
    position: relative;
    width: 100%;
    background: #000;
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(209, 209, 209, 0.7);
}

.footer-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    padding-top: 75px;
}

/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 0.8fr 1fr;
    gap: 80px;
    padding-bottom: 65px;
}

/* =========================================
   BRAND
========================================= */

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    width: 110px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-brand h2 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-description {
    max-width: 480px;
    margin: 0 0 22px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================
   DISCOVER LINK
========================================= */

.footer-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.footer-explore span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #555;
    border-radius: 50%;
    transition: 0.3s ease;
}

.footer-explore:hover {
    color: #ccc;
}

.footer-explore:hover span {
    transform: translateX(4px);
    border-color: #fff;
}

/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
    position: relative;
    margin: 5px 0 25px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #fff;
}

/* =========================================
   MENU LINKS
========================================= */

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 13px;
}

.footer-column li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-column li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* =========================================
   CONTACT
========================================= */

.footer-contact > p {
    max-width: 280px;
    margin: 0 0 20px;
    color: #999;
    font-size: 14px;
    line-height: 1.7;
}

.footer-email,
.footer-website {
    display: block;
    width: fit-content;
    margin-bottom: 11px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-email:hover,
.footer-website:hover {
    color: #fff;
}

/* =========================================
   BOTTOM BAR
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 85px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 12px;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    background: #000;
    border: 1px solid #333;
    border-radius: 50%;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: #fff;
    color: #000;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .footer-main {
        grid-template-columns: 1.5fr 1fr;
        gap: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 650px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .footer-container {
        width: 88%;
        padding-top: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 45px;
    }

    .footer-brand {
        grid-column: auto;
        max-width: 100%;
    }

    .footer-logo {
        width: 95px;
    }

    .footer-brand h2 {
        font-size: 30px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 25px 0;
        text-align: center;
    }

    .footer-socials {
        gap: 7px;
    }

    .footer-socials a {
        width: 35px;
        height: 35px;
    }
}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .footer-container {
        width: 86%;
    }

    .footer-brand h2 {
        font-size: 27px;
    }

    .footer-description {
        font-size: 12.5px;
    }
}
 
/* =========================================================
   ADVENTURE LEOPARDS
   OUR STORY — CLEAN PREMIUM WHITE DESIGN
========================================================= */

.left-image-section {
    width: 100%;
    padding: 140px 4.2vw 150px;
    background: #ffffff;
    color: #000000;
    overflow: hidden;
}


/* =========================================================
   WRAPPER
========================================================= */

.left-image-wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(400px, .75fr);

    gap: 7vw;
    align-items: center;
}


/* =========================================================
   IMAGE
========================================================= */

.left-image-box {
    position: relative;

    width: 100%;
    overflow: hidden;

    border-radius: 30px;

    background: #eeeeee;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, .11);
}


.left-image-box img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: cover;

    transition:
        transform 1.1s
        cubic-bezier(.16, 1, .3, 1);
}


.left-image-box:hover img {
    transform: scale(1.035);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.left-image-box::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            transparent 65%,
            rgba(0, 0, 0, .18)
        );
}


/* =========================================================
   CONTENT
========================================================= */

.left-image-content {
    max-width: 620px;
}


/* =========================================================
   TITLE
========================================================= */

.left-image-content h2 {
    position: relative;

    margin: 0;

    padding-top: 28px;

    color: #000000;

    font-size:
        clamp(
            3.5rem,
            5.5vw,
            6rem
        );

    line-height: .88;

    letter-spacing: -.065em;

    font-weight: 850;
}


/* =========================================================
   TITLE ACCENT
========================================================= */

.left-image-content h2::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 55px;
    height: 2px;

    background: #000000;
}


/* =========================================================
   TEXT
========================================================= */

.left-image-content p {
    margin: 32px 0 0;

    color: #555555;

    font-size: .97rem;

    line-height: 1.85;
}


/* =========================================================
   READ MORE
========================================================= */

.left-image-content .read-more-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 35px;

    padding:
        14px 26px;

    border:
        1px solid #000000;

    border-radius: 999px;

    background: #000000;

    color: #ffffff;

    text-decoration: none;

    font-size: .82rem;

    font-weight: 800;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.left-image-content .read-more-btn:hover {
    background: #ffffff;

    color: #000000;

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, .12);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .left-image-section {
        padding:
            110px 5vw
            120px;
    }

    .left-image-wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .left-image-content {
        max-width: 800px;
    }

    .left-image-box {
        max-width: 900px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .left-image-section {
        padding:
            80px 20px
            90px;
    }

    .left-image-wrapper {
        gap: 40px;
    }

    .left-image-box {
        border-radius: 23px;
    }

    .left-image-content h2 {
        font-size:
            clamp(
                3rem,
                13vw,
                4.3rem
            );

        letter-spacing: -.06em;

        padding-top: 24px;
    }

    .left-image-content h2::before {
        width: 45px;
    }

    .left-image-content p {
        margin-top: 25px;

        font-size: .9rem;

        line-height: 1.75;
    }

    .left-image-content .read-more-btn {
        margin-top: 28px;

        padding:
            13px 22px;

        font-size: .78rem;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .left-image-section {
        padding:
            65px 18px
            75px;
    }

    .left-image-content h2 {
        font-size: 3rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .left-image-box img,
    .left-image-content .read-more-btn {
        transition: none !important;
    }
}