:root {
    --ink: #151515;
    --muted: #77736d;
    --paper: #f3f1ec;
    --white: #fff;
    --accent: #ef6b31;
    --dark: #141915;
    --radius-xl: 38px;
    --radius-lg: 30px;
    --radius-md: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    font: inherit;
}

.site-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    padding: 0 clamp(24px, 5.5vw, 86px);
    display: flex;
    align-items: center;
    gap: 34px;
    color: #fff;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.brand-mark {
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    font-size: 17px;
    letter-spacing: -.025em;
}

.brand-copy small {
    margin-top: 5px;
    opacity: .58;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    gap: 29px;
    font-size: 12px;
    font-weight: 650;
}

.desktop-nav a {
    position: relative;
    opacity: .72;
    transition: opacity .22s ease;
}

.desktop-nav a:hover {
    opacity: 1;
}

.header-cta {
    padding: 13px 20px;
    border: 1px solid rgba(255,255,255,.36);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(14px);
    font-size: 12px;
    font-weight: 750;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.11);
    backdrop-filter: blur(13px);
}

.menu-button span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 5px auto;
    background: #fff;
}

.hero-slider {
    position: relative;
    min-height: min(930px, calc(100vh - 16px));
    margin: 8px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #141915;
    color: #fff;
}

.hero-stage {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .85s cubic-bezier(.22,.61,.36,1),
        visibility .85s;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-position: center center;
    background-size: cover;
    transform: scale(1.11);
    transition:
        transform 7s cubic-bezier(.16,1,.3,1),
        filter .9s ease;
    filter: saturate(.93) contrast(1.03);
}

.hero-slide.is-active .hero-media {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7,10,8,.80) 0%,
            rgba(7,10,8,.59) 32%,
            rgba(7,10,8,.19) 68%,
            rgba(7,10,8,.05) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5,8,6,.58) 0%,
            transparent 44%
        );
}

.hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: min(930px, calc(100vh - 16px));
    display: flex;
    align-items: center;
    padding:
        clamp(135px, 17vh, 190px)
        clamp(28px, 7vw, 110px)
        155px;
}

.hero-copy {
    width: min(780px, 63vw);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 26px;
    opacity: 0;
    transform: translateY(16px);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .21em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    overflow: hidden;
    font-size: clamp(68px, 8.1vw, 128px);
    line-height: .82;
    letter-spacing: -.066em;
    font-weight: 680;
}

.hero h1 span {
    display: block;
    opacity: 0;
    transform: translateY(105%);
}

.hero h1 .line-accent {
    padding-bottom: .09em;
    font-weight: 300;
    font-style: italic;
}

.hero-copy p {
    max-width: 570px;
    margin: 32px 0 30px;
    opacity: 0;
    transform: translateY(18px);
    color: rgba(255,255,255,.78);
    font-size: clamp(15px, 1.3vw, 19px);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    opacity: 0;
    transform: translateY(16px);
}

.hero-slide.is-active .eyebrow {
    animation: revealUp .65s .16s forwards;
}

.hero-slide.is-active h1 .line-primary {
    animation: revealTitle .82s .22s forwards;
}

.hero-slide.is-active h1 .line-accent {
    animation: revealTitle .82s .30s forwards;
}

.hero-slide.is-active .hero-copy p {
    animation: revealUp .7s .42s forwards;
}

.hero-slide.is-active .hero-actions {
    animation: revealUp .7s .52s forwards;
}

.button {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.button-primary {
    background: var(--accent);
    color: #fff;
}

.button-glass {
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
    color: #fff;
    backdrop-filter: blur(12px);
}

.button-dark {
    background: var(--dark);
    color: #fff;
}

.hero-ui {
    position: absolute;
    z-index: 8;
    right: clamp(24px, 5.5vw, 88px);
    bottom: 34px;
    left: clamp(24px, 7vw, 110px);
    pointer-events: none;
}

.hero-card-rail {
    position: absolute;
    right: 0;
    bottom: 84px;
    width: min(355px, 30vw);
    display: grid;
    gap: 9px;
    pointer-events: auto;
}

.destination-card {
    width: 100%;
    min-height: 86px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 21px;
    display: flex;
    align-items: flex-end;
    gap: 17px;
    text-align: left;
    color: #fff;
    background: rgba(11,15,12,.22);
    backdrop-filter: blur(15px);
    cursor: pointer;
    transition:
        transform .35s cubic-bezier(.16,1,.3,1),
        background .35s ease,
        border-color .35s ease;
}

.destination-card:hover {
    background: rgba(255,255,255,.12);
}

.destination-card.is-active {
    transform: translateX(-18px);
    border-color: rgba(255,255,255,.27);
    background: rgba(255,255,255,.15);
}

.destination-number {
    padding-bottom: 2px;
    opacity: .46;
    font-size: 10px;
    font-weight: 750;
}

.destination-copy {
    display: grid;
}

.destination-copy small {
    margin-bottom: 5px;
    opacity: .56;
    font-size: 10px;
}

.destination-copy strong {
    font-size: 15px;
    letter-spacing: -.015em;
}

.hero-bottom-bar {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    pointer-events: auto;
}

.hero-progress {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 10px;
    font-weight: 700;
}

.current-slide {
    min-width: 18px;
}

.total-slides {
    opacity: .48;
}

.progress-track {
    width: clamp(80px, 10vw, 145px);
    height: 1px;
    overflow: hidden;
    background: rgba(255,255,255,.25);
}

.progress-fill {
    display: block;
    width: 33.333%;
    height: 100%;
    background: #fff;
    transform-origin: left center;
    transition: transform .65s cubic-bezier(.16,1,.3,1);
}

.hero-arrows {
    display: flex;
    gap: 7px;
}

.slider-arrow {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.19);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: background .2s ease;
}

.slider-arrow:hover {
    background: rgba(255,255,255,.17);
}

.intro {
    padding:
        clamp(100px, 12vw, 165px)
        clamp(24px, 8vw, 130px)
        80px;
}

.section-label {
    display: block;
    margin-bottom: 34px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(300px,.62fr);
    gap: 9vw;
    align-items: end;
}

.intro h2 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(52px, 6.4vw, 92px);
    line-height: .92;
    letter-spacing: -.06em;
}

.intro h2 span {
    display: block;
    font-weight: 330;
}

.intro-copy p {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 800;
}

.text-link span {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
}

.category-grid {
    padding: 0 clamp(18px, 6vw, 95px) 120px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 13px;
}

.category-card {
    position: relative;
    min-height: 310px;
    padding: 28px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 18px 65px rgba(35,29,20,.035);
}

.category-card.featured {
    color: #fff;
    background: var(--dark);
}

.card-index,
.category-card small {
    font-size: 10px;
    font-weight: 780;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.card-index {
    color: var(--accent);
}

.category-card small {
    color: var(--muted);
}

.category-card.featured small {
    color: rgba(255,255,255,.52);
}

.category-card h3 {
    margin: 10px 0 13px;
    font-size: clamp(26px, 2.2vw, 35px);
    line-height: 1;
    letter-spacing: -.045em;
}

.category-card p {
    max-width: 380px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.category-card.featured p {
    color: rgba(255,255,255,.62);
}

.category-card > a {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--paper);
    font-size: 14px;
}

.category-card.featured > a {
    color: var(--dark);
    background: var(--accent);
}

.plan-strip {
    margin: 8px;
    padding:
        clamp(54px, 7vw, 90px)
        clamp(26px, 7vw, 110px);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    background: #e5e1d8;
}

.plan-strip small {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.plan-strip strong {
    font-size: clamp(34px, 4vw, 62px);
    letter-spacing: -.052em;
}

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

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

@media (max-width: 900px) {

    .site-header {
        position: absolute;
        height: 76px;
        padding:
            env(safe-area-inset-top)
            18px
            0;
        gap: 12px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }

    .brand-copy strong {
        font-size: 15px;
    }

    .menu-button {
        display: block;
    }

    .hero-slider {
        min-height: 100svh;
        margin: 0;
        border-radius: 0 0 28px 28px;
    }

    .hero-inner {
        min-height: 100svh;
        padding:
            130px
            20px
            255px;
        align-items: flex-end;
    }

    .hero-copy {
        width: 100%;
    }

    .eyebrow {
        margin-bottom: 18px;
        font-size: 9px;
    }

    .hero h1 {
        max-width: 96%;
        font-size: clamp(56px, 16.4vw, 82px);
        line-height: .86;
    }

    .hero-copy p {
        max-width: 92%;
        margin: 22px 0;
        font-size: 14px;
        line-height: 1.62;
    }

    .button {
        min-height: 48px;
        padding: 0 19px;
        font-size: 11px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(6,9,7,.88) 0%,
                rgba(6,9,7,.55) 43%,
                rgba(6,9,7,.15) 75%
            ),
            linear-gradient(
                90deg,
                rgba(6,9,7,.25),
                transparent 70%
            );
    }

    .hero-ui {
        right: 0;
        bottom: 24px;
        left: 0;
    }

    .hero-card-rail {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        padding-left: 20px;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(230px, 72vw);
        gap: 9px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
    }

    .hero-card-rail::-webkit-scrollbar {
        display: none;
    }

    .destination-card {
        min-height: 88px;
        scroll-snap-align: start;
    }

    .destination-card.is-active {
        transform: none;
    }

    .hero-bottom-bar {
        padding: 14px 20px 0;
    }

    .hero-arrows {
        display: none;
    }

    .progress-track {
        width: 94px;
    }

    .intro {
        padding: 88px 20px 55px;
    }

    .section-label {
        margin-bottom: 25px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .intro h2 {
        font-size: clamp(46px, 13vw, 66px);
    }

    .intro-copy p {
        max-width: 94%;
        font-size: 15px;
    }

    .category-grid {
        padding: 0 12px 75px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .category-card {
        min-height: 245px;
        padding: 24px;
    }

    .category-card h3 {
        font-size: 30px;
    }

    .plan-strip {
        margin: 0 8px 8px;
        padding: 50px 22px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* =====================================================
   AL BADI HERO V2
   ===================================================== */

.destination-card {
    position: relative;
    grid-template-columns: 62px 30px 1fr;
    align-items: center;
    min-height: 94px;
    padding: 14px 18px 14px 14px;
    overflow: hidden;
}

.destination-thumb {
    width: 62px;
    height: 62px;
    min-width: 62px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.08);
    box-shadow:
        0 10px 30px rgba(0,0,0,.18),
        inset 0 0 0 1px rgba(255,255,255,.08);
    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        border-color .35s ease;
}

.destination-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 5s ease;
}

.destination-card:hover .destination-thumb img,
.destination-card.is-active .destination-thumb img {
    transform: scale(1.14);
}

.destination-card.is-active .destination-thumb {
    transform: scale(1.055);
    border-color: rgba(255,255,255,.62);
}

.destination-card.is-active {
    background:
        linear-gradient(
            110deg,
            rgba(255,255,255,.21),
            rgba(255,255,255,.11)
        );
}

.destination-indicator {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}

.destination-indicator i {
    display: block;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,.90);
}

.destination-card.is-active .destination-indicator i {
    animation: cardProgress 4.2s linear forwards;
}

.hero-slide {
    transition:
        opacity .68s cubic-bezier(.22,.61,.36,1),
        visibility .68s;
}

.hero-media {
    transition:
        transform 5s cubic-bezier(.16,1,.3,1),
        filter .68s ease;
}

.hero-slide.is-active .hero-media {
    transform: scale(1.025);
}

.progress-fill {
    width: 100%;
    transform: scaleX(.2);
}

@keyframes cardProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 900px) {

    .hero-card-rail {
        grid-auto-columns: minmax(278px, 79vw);
    }

    .destination-card {
        grid-template-columns: 58px 28px 1fr;
        min-height: 90px;
        padding: 13px 16px 13px 13px;
    }

    .destination-thumb {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .destination-copy strong {
        font-size: 14px;
    }

    .hero-inner {
        padding-bottom: 270px;
    }
}

@media (max-width: 420px) {

    .hero-card-rail {
        grid-auto-columns: 82vw;
    }

    .destination-card {
        min-height: 86px;
    }

    .destination-thumb {
        width: 54px;
        height: 54px;
        min-width: 54px;
    }
}

/* =====================================================
   AL BADI HERO V4 — RESPONSIVE LAYOUT
   ===================================================== */

.hero-slider {
    --hero-transition: 520ms;
}

/*
 * Hero UI now fills the whole hero.
 * This lets the card rail use a real top position
 * instead of calculating from the bottom.
 */
.hero-ui {
    top: 0 !important;
    right: clamp(22px, 5.5vw, 88px) !important;
    bottom: 0 !important;
    left: clamp(22px, 7vw, 110px) !important;
}

/* Bottom navigation always stays at hero bottom */
.hero-bottom-bar {
    position: absolute !important;
    right: 0;
    bottom: 28px;
    left: 0;
}

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

.hero-card-rail {
    position: absolute !important;

    top: clamp(118px, 14vh, 150px) !important;
    right: 0 !important;
    bottom: auto !important;

    width: min(340px, 28vw) !important;
    max-height: calc(100% - 245px);

    display: grid !important;
    grid-auto-flow: row !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;

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

    overflow: hidden !important;
    transform: none !important;
}

/*
 * Slightly smaller cards allow five slides
 * to fit without reaching the header.
 */
.destination-card {
    position: relative;

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

    padding: 9px 15px 9px 9px !important;

    grid-template-columns: 54px 28px minmax(0, 1fr) !important;
    gap: 11px !important;

    border-radius: 21px !important;

    transform: none !important;

    transition:
        background-color var(--hero-transition) ease,
        border-color var(--hero-transition) ease,
        opacity var(--hero-transition) ease,
        box-shadow var(--hero-transition) ease !important;
}

.destination-card.is-active {
    transform: none !important;

    border-color: rgba(255,255,255,.35) !important;

    background:
        linear-gradient(
            110deg,
            rgba(255,255,255,.22),
            rgba(255,255,255,.10)
        ) !important;

    box-shadow:
        0 18px 42px rgba(0,0,0,.15);
}

.destination-thumb {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;

    border-radius: 50% !important;

    border: 2px solid rgba(255,255,255,.38) !important;
}

.destination-number {
    font-size: 10px !important;
}

.destination-copy {
    min-width: 0;
}

.destination-copy small {
    margin-bottom: 4px !important;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-copy strong {
    display: block;

    font-size: 14px !important;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*
 * Faster visual change.
 */
.hero-slide {
    transition:
        opacity var(--hero-transition) cubic-bezier(.22,.61,.36,1),
        visibility var(--hero-transition) !important;
}

.hero-slide.is-active .hero-media {
    transform: scale(1.035) !important;
}

.hero-media {
    transition:
        transform 3.8s cubic-bezier(.16,1,.3,1),
        filter var(--hero-transition) ease !important;
}


/* ============================================
   COMPACT DESKTOP / TABLET
   ============================================ */

@media (max-width: 1180px) {

    /*
     * Menu becomes compact earlier.
     * Prevents header from becoming crowded.
     */
    .desktop-nav,
    .header-cta {
        display: none !important;
    }

    .menu-button {
        display: block !important;
    }

    /*
     * Cards become horizontal instead of
     * being forced into a vertical stack.
     */
    .hero-card-rail {
        top: auto !important;
        right: 0 !important;
        bottom: 88px !important;
        left: 0 !important;

        width: auto !important;
        max-height: none !important;

        display: grid !important;

        grid-auto-flow: column !important;
        grid-template-columns: none !important;

        grid-auto-columns:
            minmax(250px, 32vw) !important;

        gap: 9px !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .hero-card-rail::-webkit-scrollbar {
        display: none;
    }

    .destination-card {
        width: auto !important;

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

        scroll-snap-align: start;
    }

    /*
     * Hero text must leave room for card rail.
     */
    .hero-inner {
        padding-bottom: 205px !important;
    }

    .hero-bottom-bar {
        bottom: 25px;
    }
}


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

@media (max-width: 900px) {

    .site-header {
        height: 76px !important;

        padding:
            max(12px, env(safe-area-inset-top))
            18px
            0 !important;
    }

    .hero-slider {
        min-height: 100svh !important;

        margin: 0 !important;

        border-radius:
            0 0 28px 28px !important;
    }

    .hero-ui {
        right: 0 !important;
        left: 0 !important;
    }

    /*
     * Mobile shows roughly one card plus
     * part of the next one.
     */
    .hero-card-rail {
        right: 0 !important;
        bottom: 76px !important;
        left: 0 !important;

        width: 100% !important;

        padding-left: 18px !important;
        padding-right: 18px !important;

        grid-auto-columns:
            minmax(250px, 78vw) !important;

        gap: 9px !important;
    }

    .destination-card {
        min-height: 78px !important;
        height: 78px !important;

        padding: 9px 13px 9px 9px !important;

        grid-template-columns:
            52px 26px minmax(0,1fr) !important;

        border-radius: 20px !important;
    }

    .destination-thumb {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
    }

    .destination-copy strong {
        font-size: 14px !important;
    }

    .hero-inner {
        min-height: 100svh !important;

        padding:
            118px
            18px
            190px !important;

        align-items: flex-end !important;
    }

    /*
     * Mobile typography is deliberately smaller
     * so it doesn't compete with slide cards.
     */
    .hero h1 {
        max-width: 96%;

        font-size:
            clamp(48px, 14vw, 72px) !important;

        line-height: .87 !important;
    }

    .hero-copy p {
        max-width: 94% !important;

        margin:
            18px 0 20px !important;

        font-size: 14px !important;

        line-height: 1.58 !important;
    }

    .hero-actions {
        gap: 8px !important;
    }

    .button {
        min-height: 46px !important;

        padding:
            0 17px !important;
    }

    .hero-bottom-bar {
        right: 18px !important;
        bottom: 22px !important;
        left: 18px !important;
    }

    .hero-arrows {
        display: none !important;
    }
}


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

@media (max-width: 520px) {

    .brand-copy small {
        display: none;
    }

    .hero-inner {
        padding:
            108px
            16px
            184px !important;
    }

    .hero h1 {
        font-size:
            clamp(43px, 13.5vw, 60px) !important;
    }

    .hero-card-rail {
        bottom: 72px !important;

        padding-left: 14px !important;

        grid-auto-columns:
            minmax(238px, 82vw) !important;
    }

    .destination-card {
        min-height: 74px !important;
        height: 74px !important;

        grid-template-columns:
            48px 24px minmax(0,1fr) !important;
    }

    .destination-thumb {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
    }

    .destination-copy small {
        font-size: 9px !important;
    }

    .destination-copy strong {
        font-size: 13px !important;
    }
}


/* ============================================
   SHORT SCREENS / LAPTOP HEIGHT
   ============================================ */

@media (min-width: 1181px) and (max-height: 790px) {

    .hero-card-rail {
        top: 105px !important;

        gap: 6px !important;
    }

    .destination-card {
        min-height: 68px !important;
        height: 68px !important;
    }

    .destination-thumb {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
    }

    .hero-inner {
        padding-top: 120px !important;
        padding-bottom: 110px !important;
    }
}

/* =====================================================
   END HERO V4
   ===================================================== */
