/* ============================================
   XPLORE NEW ZEALAND — DESIGN SYSTEM TOKENS
   Single source of truth for all sections.
   ============================================ */

:root {
    /* ---- Fonts ---- */
    --xp-font-display: 'Fraunces', Georgia, serif;
    --xp-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* ---- Brand Colors ---- */
    --xp-orange: #E67E22;
    --xp-orange-hover: #D96C12;
    --xp-orange-light: #F6A64B;
    --xp-orange-subtle: rgba(230, 126, 34, 0.12);
    --xp-teal: #2A8C8C;
    --xp-navy: #16212B;
    --xp-navy-dark: #0E1512;

    /* ---- Neutral Colors ---- */
    /* Warm, premium neutrals (brighter + warmer than the previous cool-grey set) */
    --xp-heading: #29241F;
    --xp-body: #6B6459;
    --xp-muted: #A39B8E;
    --xp-bg: #FCFBF8;
    --xp-bg-alt: #F8F7F4;
    --xp-surface: #FFFFFF;
    --xp-surface-cool: #F5F3EF;
    --xp-dark-bg: #10120F;
    --xp-border: rgba(40, 30, 20, 0.08);

    /* ---- Shadows (elevation scale) — warm, softer than before ---- */
    --xp-shadow-sm: 0 2px 8px rgba(40, 32, 20, 0.045);
    --xp-shadow-md: 0 8px 24px rgba(40, 32, 20, 0.07);
    --xp-shadow-lg: 0 20px 60px rgba(40, 32, 20, 0.09);
    --xp-shadow-xl: 0 36px 90px rgba(40, 32, 20, 0.14);

    /* ---- Glass ---- */
    --xp-glass-light: rgba(255, 255, 255, 0.75);
    --xp-glass-light-border: rgba(255, 255, 255, 0.55);
    --xp-glass-dark: rgba(20, 17, 13, 0.80);
    --xp-glass-dark-border: rgba(255, 255, 255, 0.09);
    --xp-blur: blur(20px);

    /* ---- Border Radius ---- */
    --xp-radius-sm: 8px;
    --xp-radius-md: 14px;
    --xp-radius-lg: 20px;
    --xp-radius-xl: 28px;
    --xp-radius-pill: 999px;

    /* ---- Spacing ---- */
    --xp-space-xs: 0.5rem;
    --xp-space-sm: 1rem;
    --xp-space-md: 1.5rem;
    --xp-space-lg: 2.5rem;
    --xp-space-xl: 4rem;
    --xp-space-2xl: clamp(4rem, 6vw, 6rem);
    --xp-space-3xl: clamp(5rem, 8vh, 8rem);
    --xp-container: min(90vw, 2600px);

    /* ---- Motion ---- */
    --xp-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --xp-duration: 0.4s;
    --xp-duration-slow: 0.6s;

    /* ---- Template Overrides ---- */
    --body-font: var(--xp-font-body);
    --heading-font: var(--xp-font-display);
    --display: var(--xp-font-display);
    --util: var(--xp-font-body);
    --ease: var(--xp-ease);

    /* ---- Typography Scale ---- */
    --xp-eyebrow-size: 0.72rem;
    --xp-eyebrow-weight: 600;
    --xp-eyebrow-tracking: 0.20em;

    --xp-heading-size: clamp(2.2rem, 3.4vw, 3.8rem);
    --xp-heading-weight: 300;
    --xp-heading-leading: 1.06;

    --xp-body-size: clamp(0.95rem, 1.1vw, 1.06rem);
    --xp-body-leading: 1.62;
    --xp-body-max-width: 36rem;
}

/* ============================================
   Xplore — Trusted By Travel Professionals
   ============================================ */
.wwa {
    position: relative;
    min-height: 650px;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--xp-bg);
}

/* ---- layered background ---- */
.wwa__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.wwa__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(140% 120% at 18% 0%, rgba(232, 161, 77, 0.04) 0%, transparent 55%),
        linear-gradient(160deg, #faf8f5 0%, #f5f2ed 55%, #f0ece6 100%);
}

.wwa__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    mix-blend-mode: screen;
}

.wwa__glow--warm {
    width: 46vw;
    height: 46vw;
    right: -8vw;
    top: -10vw;
    background: radial-gradient(circle, rgba(232, 161, 77, 0.12) 0%, transparent 68%);
    animation: wwaGlowWarm 16s var(--ease) infinite alternate;
}

.wwa__glow--cool {
    width: 40vw;
    height: 40vw;
    left: -6vw;
    bottom: -14vw;
    background: radial-gradient(circle, rgba(45, 120, 130, 0.08) 0%, transparent 70%);
    animation: wwaGlowCool 20s var(--ease) infinite alternate;
}

@keyframes wwaGlowWarm {
    from {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    to {
        transform: translate(-3vw, 2vw) scale(1.08);
        opacity: 0.7;
    }
}

@keyframes wwaGlowCool {
    from {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    to {
        transform: translate(2vw, -2vw) scale(1.12);
        opacity: 0.6;
    }
}

.wwa__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: radial-gradient(120% 90% at 30% 40%, #000 0%, transparent 75%);
    opacity: 0.35;
}

.wwa__noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- container / two columns ---- */
.wwa__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--xp-container);
    margin: 0 auto;
    padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 6rem);
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
}

/* ---- LEFT ---- */
.wwa__left {
    max-width: 36rem;
}

.wwa__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--xp-font-body);
    font-size: 20px;
    font-weight: var(--xp-eyebrow-weight);
    letter-spacing: var(--xp-eyebrow-tracking);
    text-transform: uppercase;
    color: rgb(249 130 37);
    margin-bottom: 1.4rem;
}

.wwa__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--xp-orange);
    box-shadow: 0 0 0 4px var(--xp-orange-subtle);
    animation: wwaPulse 3s var(--xp-ease) infinite;
}

@keyframes wwaPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(212, 114, 46, 0.15);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(212, 114, 46, 0.06);
    }
}

.wwa__heading {
    font-family: var(--xp-font-display);
    font-weight: var(--xp-heading-weight);
    font-size: var(--xp-heading-size);
    line-height: var(--xp-heading-leading);
    letter-spacing: -0.022em;
    color: var(--xp-heading);
    /* white-space: pre-line; */
}

.wwa__accent {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(100deg, var(--xp-orange-hover) 10%, var(--xp-orange) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.wwa__lede {
    margin-top: 1.7rem;
    max-width: var(--xp-body-max-width);
    font-size: var(--xp-body-size);
    line-height: var(--xp-body-leading);
    color: var(--xp-body);
}

/* ---- CTA ---- */
.wwa__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2.2rem;
    padding: 0.95rem 1.5rem 0.95rem 1.75rem;
    border-radius: var(--xp-radius-pill);
    text-decoration: none;
    font-family: var(--xp-font-body);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    color: #fff;
    background: var(--xp-orange);
    box-shadow: 0 12px 30px -10px rgba(230, 126, 34, 0.35);
    transition: transform var(--xp-duration) var(--xp-ease), box-shadow var(--xp-duration) var(--xp-ease), background var(--xp-duration) var(--xp-ease);
}

.wwa__cta-arrow {
    display: inline-flex;
    width: 1.55rem;
    height: 1.55rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    overflow: hidden;
}

.wwa__cta-arrow svg {
    width: 0.95rem;
    height: 0.95rem;
    transition: transform 0.5s var(--ease);
}

.wwa__cta:hover {
    transform: translateY(-2px);
    background: var(--xp-orange-hover);
    box-shadow: 0 18px 40px -12px rgba(230, 126, 34, 0.45);
}

.wwa__cta:hover .wwa__cta-arrow svg {
    transform: translateX(3px);
}

.wwa__cta:focus-visible {
    outline: 2px solid var(--xp-orange);
    outline-offset: 3px;
}

/* ---- trust badges (glass) ---- */
.wwa__badges {
    list-style: none;
    display: flex;
    gap: 0.8rem;
    margin-top: 2.6rem;
    flex-wrap: wrap;
}

.wwa__badge {
    flex: 1 1 0;
    min-width: 7rem;
    padding: 1rem 1.1rem;
    border-radius: var(--xp-radius-md);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.5));
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wwa__badge-value {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--xp-heading);
    letter-spacing: -0.01em;
}

.wwa__badge-label {
    font-family: var(--util);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--xp-muted);
}

/* ---- RIGHT (showcase) ---- */
.wwa__right {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwa__showcase {
    position: relative;
    width: 100%;
    aspect-ratio: 10 / 9;
    max-height: 82vh;
    perspective: 1200px;
}

/* ---- Parallax via CSS custom properties ---- */
[data-wwa-depth] {
    --px: 0px;
    --py: 0px;
    margin-left: var(--px);
    margin-top: var(--py);
}

/* ---- Ambient glow orbs ---- */
.wwa__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.wwa__orb--1 {
    width: 280px;
    height: 280px;
    top: -8%;
    right: -5%;
    background: radial-gradient(circle, rgba(232, 135, 77, 0.18) 0%, transparent 70%);
    animation: wwaOrbFloat1 8s ease-in-out infinite alternate;
}

.wwa__orb--2 {
    width: 220px;
    height: 220px;
    bottom: 5%;
    left: -8%;
    background: radial-gradient(circle, rgba(106, 160, 200, 0.15) 0%, transparent 70%);
    animation: wwaOrbFloat2 10s ease-in-out infinite alternate;
}

.wwa__orb--3 {
    width: 160px;
    height: 160px;
    top: 40%;
    right: 20%;
    background: radial-gradient(circle, rgba(212, 114, 46, 0.1) 0%, transparent 70%);
    animation: wwaOrbFloat3 12s ease-in-out infinite alternate;
}

@keyframes wwaOrbFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-20px, 15px) scale(1.1);
    }
}

@keyframes wwaOrbFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(15px, -20px) scale(1.15);
    }
}

@keyframes wwaOrbFloat3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-10px, 10px) scale(0.9);
    }
}

/* ---- Particles canvas ---- */
.wwa__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ---- Main hero photo ---- */
.wwa__main-photo {
    position: absolute;
    top: 8%;
    left: 12%;
    width: 62%;
    z-index: 4;
    border-radius: var(--xp-radius-lg);
    overflow: hidden;
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    transform: rotateY(-4deg) rotateX(2deg);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.wwa__main-photo:hover {
    transform: rotateY(-1deg) rotateX(1deg) scale(1.02);
    box-shadow:
        0 40px 100px -25px rgba(0, 0, 0, 0.25),
        0 12px 35px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.wwa__main-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.wwa__main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.wwa__main-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px 6px 10px;
    border-radius: var(--xp-radius-pill);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.wwa__main-badge svg {
    flex-shrink: 0;
    stroke: #fff;
}

/* ---- Satellite photos ---- */
.wwa__sat {
    position: absolute;
    z-index: 5;
    border-radius: 19px;
    overflow: hidden;
    box-shadow:
        0 22px 65px -14px rgba(0, 0, 0, 0.22),
        0 6px 22px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    cursor: pointer;
}

.wwa__sat:hover {
    transform: translateY(-6px) scale(1.05) !important;
    box-shadow:
        0 30px 75px -16px rgba(0, 0, 0, 0.26),
        0 8px 26px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.wwa__sat img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.wwa__sat-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: var(--xp-radius-pill);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.wwa__sat--1 {
    top: 0%;
    right: 0%;
    width: 38%;
    transform: rotate(3deg);
}

.wwa__sat--2 {
    bottom: 8%;
    left: 0%;
    width: 35%;
    transform: rotate(-2deg);
}

.wwa__sat--3 {
    bottom: 12%;
    right: 6%;
    width: 30%;
    transform: rotate(1.5deg);
}

/* ---- Glass service pills ---- */
.wwa__pill {
    position: absolute;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 12px;
    border-radius: var(--xp-radius-pill);
    background: var(--xp-glass-light);
    backdrop-filter: var(--xp-blur);
    -webkit-backdrop-filter: var(--xp-blur);
    border: 1px solid var(--xp-glass-light-border);
    box-shadow: var(--xp-shadow-sm);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--xp-heading);
    white-space: nowrap;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.wwa__pill:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.15);
}

.wwa__pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--xp-orange-light), var(--xp-orange));
    color: #fff;
    font-size: 0.8rem;
}

.wwa__pill--1 {
    top: 0%;
    left: 0%;
}

.wwa__pill--2 {
    top: 52%;
    right: -2%;
}

.wwa__pill--3 {
    bottom: 0%;
    left: 30%;
}

/* ---- Glass stat cards ---- */
.wwa__glass-stat {
    position: absolute;
    z-index: 7;
    padding: 18px 26px;
    border-radius: 18px;
    background: var(--xp-glass-light);
    backdrop-filter: var(--xp-blur);
    -webkit-backdrop-filter: var(--xp-blur);
    border: 1px solid var(--xp-glass-light-border);
    box-shadow: var(--xp-shadow-md);
    text-align: center;
    transition: transform var(--xp-duration) var(--xp-ease);
    will-change: transform;
}

.wwa__glass-stat:hover {
    transform: translateY(-4px) scale(1.04) !important;
}

.wwa__gs-num {
    font-family: var(--display, 'Georgia', serif);
    font-size: 1.95rem;
    font-weight: 500;
    color: var(--xp-orange);
    line-height: 1;
    letter-spacing: -0.02em;
}

.wwa__gs-num sup {
    font-size: 0.7em;
    font-weight: 400;
}

.wwa__gs-label {
    margin-top: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--xp-body);
}

.wwa__gs--1 {
    top: 44%;
    left: -8%;
}

.wwa__gs--2 {
    bottom: -4%;
    right: -2%;
}

/* ---- Decorative rings ---- */
.wwa__ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 114, 46, 0.12);
    pointer-events: none;
    z-index: 2;
}

.wwa__ring--1 {
    width: 320px;
    height: 320px;
    top: -10%;
    left: -5%;
    animation: wwaRingSpin 30s linear infinite;
}

.wwa__ring--2 {
    width: 200px;
    height: 200px;
    bottom: -5%;
    right: -3%;
    border-color: rgba(106, 160, 200, 0.1);
    animation: wwaRingSpin 24s linear infinite reverse;
}

@keyframes wwaRingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ---- SVG connectors ---- */
.wwa__connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.wwa__dot {
    fill: rgba(212, 114, 46, 0.35);
}

.wwa__conn-line {
    stroke: rgba(212, 114, 46, 0.08);
    stroke-width: 1;
    stroke-dasharray: 4 4;
}

/* =============================================================
   TAIL placeholder
============================================================= */
.tail {
    padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 6vw, 7rem);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-family: var(--util);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--xp-muted);
}

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1024px) {
    .wwa {
        height: auto;
        min-height: 0;
        padding: clamp(4rem, 10vw, 7rem) 0;
    }

    .wwa__container {
        grid-template-columns: 1fr;
        gap: clamp(2.5rem, 6vw, 4rem);
    }

    .wwa__left {
        max-width: none;
        order: 1;
    }

    .wwa__right {
        order: 2;
    }

    .wwa__showcase {
        aspect-ratio: 10 / 9;
        max-height: 60vh;
    }
}

@media (max-width: 560px) {
    .wwa__badges {
        gap: 0.55rem;
    }

    .wwa__badge {
        min-width: 0;
        padding: 0.85rem 0.8rem;
    }

    .wwa__badge-value {
        font-size: 1.25rem;
    }

    .wwa__showcase {
        aspect-ratio: 3 / 4;
    }

    .wwa__main-photo {
        left: 8%;
        width: 70%;
    }

    .wwa__sat--1 {
        width: 43%;
    }

    .wwa__sat--2 {
        width: 40%;
    }

    .wwa__sat--3 {
        width: 38%;
    }

    .wwa__pill {
        font-size: 0.78rem;
        padding: 8px 16px 8px 10px;
    }

    .wwa__pill-icon {
        width: 27px;
        height: 27px;
        font-size: 0.66rem;
    }

    .wwa__gs-num {
        font-size: 1.55rem;
    }

    .wwa__gs-label {
        font-size: 0.6rem;
    }

    .wwa__ring {
        display: none;
    }
}

/* =============================================================
   ACCESSIBILITY
============================================================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


.heading-2 {
    position: relative;
    bottom: clamp(20px, 3vw, 40px);
}

/* --- Hero Three.js Atmosphere --- */
.xp-hero-atmos {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.xp-hero-atmos canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* --- Hero Typography Override --- */
.hs-1 .text-shape {
    z-index: 1;
    font-family: "Georgia", "Times New Roman", serif !important;
    font-weight: 300 !important;
    font-style: italic;
    font-size: clamp(60px, 14vw, 280px) !important;
    letter-spacing: clamp(6px, 1.2vw, 22px) !important;
    text-transform: lowercase !important;
    opacity: 0.09 !important;
    text-shadow: none !important;
    color: rgba(255, 255, 255, 0.6) !important;
    top: 50% !important;
    transform: translateX(-50%) translateY(-55%) !important;
    pointer-events: none;
    white-space: nowrap;
}

@media (max-width:767px) {
    .hs-1 .text-shape {
        opacity: 0.06 !important;
    }
}

.hs-1 .heading-2 {
    z-index: 2;
}

/* --- Hero B2B Messaging --- */
.xp-hero-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(13px, 1.1vw, 19px);
    line-height: 1.75;
    font-weight: 400;
    font-family: var(--body-font);
    max-width: 460px;
    margin: 0 0 1.5rem;
}

.xp-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.xp-hero-badges span {
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--xp-radius-pill);
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.8px;
    font-family: var(--body-font);
    text-transform: uppercase;
}

.xp-hero-btn2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: var(--body-font);
    letter-spacing: 0.3px;
    transition: color 0.3s ease, gap 0.3s ease;
    padding: 12px 0;
}

.xp-hero-btn2:hover {
    color: var(--theme-color);
    gap: 12px;
}

.xp-hero-btn2 svg {
    transition: transform 0.3s ease;
}

.xp-hero-btn2:hover svg {
    transform: translateX(3px);
}

/* --- Hero Glass Panel (Right) --- */
.xp-hero-glass {
    background: rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    backdrop-filter: blur(28px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--xp-radius-lg);
    padding: 32px 30px;
    position: relative;
    z-index: 5;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2), inset 0 0 0 0.5px rgba(255, 255, 255, 0.04);
}

.xp-hg-header {
    margin-bottom: 20px;
}

.xp-hg-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--theme-color);
    text-transform: uppercase;
    font-family: var(--body-font);
    margin-bottom: 14px;
}

.xp-hg-line {
    width: 30px;
    height: 1px;
    background: var(--theme-color);
    opacity: 0.5;
}

.xp-hg-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.xp-hg-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
}

.xp-hg-item:last-child {
    border-bottom: none;
}

.xp-hg-item:hover {
    padding-left: 6px;
}

.xp-hg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--xp-radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.xp-hg-item:hover .xp-hg-icon {
    color: var(--theme-color);
    border-color: rgba(249, 130, 37, 0.2);
    background: rgba(249, 130, 37, 0.06);
}

.xp-hg-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body-font);
    letter-spacing: 0.2px;
    transition: color 0.35s ease;
}

.xp-hg-item:hover .xp-hg-text {
    color: #fff;
}

.xp-hg-arrow {
    color: rgba(255, 255, 255, 0.15);
    transition: all 0.35s ease;
    transform: translateX(-4px);
    opacity: 0;
}

.xp-hg-item:hover .xp-hg-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--theme-color);
}

@media (max-width:1199px) {
    .xp-hero-glass {
        padding: 26px 24px;
    }

    .xp-hg-text {
        font-size: 13px;
    }

    .xp-hg-item {
        padding: 12px 0;
    }
}

/* --- Hero Bottom Trust Strip --- */
.xp-hero-trust {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8;
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.xp-ht-inner {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2vw, 40px);
    max-width: min(90vw, 2200px);
    margin: 0 auto;
    padding: 14px 30px;
}

.xp-ht-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-family: var(--body-font);
    white-space: nowrap;
    flex-shrink: 0;
}

.xp-ht-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    overflow: hidden;
}

.xp-ht-logo {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.2);
    font-family: "Georgia", "Times New Roman", serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-style: italic;
}

.xp-ht-logo:hover {
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width:991px) {
    .xp-ht-inner {
        padding: 12px 24px;
        gap: 20px;
    }

    .xp-ht-logos {
        gap: 20px;
    }

    .xp-ht-logo {
        font-size: 11px;
    }
}

@media (max-width:767px) {
    .xp-hero-desc {
        margin-bottom: 16px;
        max-width: 100%;
    }

    .xp-hero-badges span {
        font-size: 9px;
        padding: 4px 10px;
    }

    .xp-hero-badges {
        gap: 5px;
        margin-bottom: 6px;
    }

    .xp-hero-btn2 {
        font-size: 13px;
    }

    .xp-ht-label {
        display: none;
    }

    .xp-ht-inner {
        justify-content: center;
        padding: 10px 16px;
    }

    .xp-ht-logos {
        gap: 16px;
    }

    .xp-ht-logo {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* --- Trust Section --- */
.xp-trust-area {
    position: relative;
    padding: 10px;
    overflow: hidden;
    background: var(--color-white);
}

@media all and (max-width: 991px) {
    .xp-trust-area {
        padding: 3.5rem 0 3rem;
    }
}

@media all and (max-width: 767px) {
    .xp-trust-area {
        padding: 2.5rem 0 2rem;
    }
}

/* --- World Map Background (subtle dot grid) --- */
.xp-trust-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 100%;
    background-image: radial-gradient(circle, var(--color-dark) 0.6px, transparent 0.6px);
    background-size: 28px 28px;
    opacity: 0.028;
    pointer-events: none;
}

/* --- Premium Divider (hero → trust transition) --- */
.xp-trust-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--xp-orange), transparent);
    opacity: 0.4;
}

@media all and (max-width: 767px) {
    .xp-trust-divider {
        height: 40px;
    }
}

/* --- Heading Area --- */
.xp-trust-heading {
    text-align: center;
    margin-bottom: 70px;
}

@media all and (max-width: 767px) {
    .xp-trust-heading {
        margin-bottom: 45px;
    }
}

.xp-trust-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--theme-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--body-font);
    position: relative;
    padding: 0 24px;
}

.xp-trust-label::before,
.xp-trust-label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 14px;
    height: 1px;
    background: var(--theme-color);
    opacity: 0.5;
}

.xp-trust-label::before {
    left: 0;
}

.xp-trust-label::after {
    right: 0;
}

.xp-trust-title {
    font-size: clamp(28px, 3.1vw, 56px);
    font-weight: 600;
    color: var(--color-dark);
    font-family: var(--body-font);
    line-height: 1.15;
    margin-bottom: 18px;
}


.xp-trust-desc {
    font-size: clamp(15px, 1.2vw, 21px);
    color: var(--body-text-color);
    line-height: 1.75;
    max-width: clamp(400px, 42vw, 700px);
    margin: 0 auto;
    font-weight: 400;
}


/* --- Partner Logos --- */
.xp-partners {
    margin-bottom: 70px;
}

@media all and (max-width: 767px) {
    .xp-partners {
        margin-bottom: 45px;
    }
}

.xp-partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.xp-partner-item {
    flex: 0 0 20%;
    max-width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    position: relative;
    transition: var(--transition2);
}

@media all and (max-width: 991px) {
    .xp-partner-item {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media all and (max-width: 575px) {
    .xp-partner-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 20px 15px;
    }
}

.xp-partner-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border-info-color);
    transition: var(--transition2);
}

.xp-partner-item:last-child::after {
    display: none;
}

@media all and (max-width: 991px) {
    .xp-partner-item:nth-child(3)::after {
        display: none;
    }
}

@media all and (max-width: 575px) {
    .xp-partner-item::after {
        height: 30px;
    }

    .xp-partner-item:nth-child(2)::after,
    .xp-partner-item:nth-child(4)::after {
        display: none;
    }

    .xp-partner-item:nth-child(3)::after {
        display: block;
    }
}

.xp-partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    filter: grayscale(100%);
    opacity: 0.45;
    transition: all 0.4s ease;
    cursor: default;
}

.xp-partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.xp-partner-logo svg {
    flex-shrink: 0;
}

.xp-partner-logo .xp-logo-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    font-family: var(--body-font);
}

.xp-partner-logo .xp-logo-sub {
    display: block;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--body-text-color);
    text-transform: uppercase;
    margin-top: 1px;
}

/* --- Horizontal Rule --- */
.xp-trust-rule {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-info-color), transparent);
    margin: 0;
}

@media all and (max-width: 767px) {
    .xp-trust-rule {
        margin: 0 0 2rem;
    }
}

/* --- Statistics --- */
.xp-stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.xp-stat-col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

@media all and (max-width: 767px) {
    .xp-stat-col {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 35px;
    }

    .xp-stat-col:nth-last-child(-n+2) {
        margin-bottom: 0;
    }
}

.xp-stat-item {
    text-align: center;
    position: relative;
}

.xp-stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.xp-stat-value {
    font-size: clamp(38px, 3.5vw, 72px);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
    font-family: var(--body-font);
}

.xp-stat-suffix {
    font-size: clamp(22px, 2vw, 42px);
    font-weight: 600;
    color: var(--theme-color);
    line-height: 1;
}

.xp-stat-label {
    font-size: clamp(13px, 1.1vw, 20px);
    color: var(--body-text-color);
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}


/* --- Stat Dividers (vertical lines between stats) --- */
.xp-stat-col+.xp-stat-col .xp-stat-item::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: var(--border-info-color);
}

@media all and (max-width: 767px) {
    .xp-stat-col+.xp-stat-col .xp-stat-item::before {
        display: none;
    }
}


/* --- Floating Image Stack (Hero Right Side) — Premium Editorial --- */
.xp-fl-stack {
    position: relative;
    width: 100%;
    height: clamp(380px, 36vw, 820px);
    z-index: 5;
    perspective: 1200px;
    transform-style: preserve-3d;
    margin-top: -30px;
}

/* Atmosphere behind stack */
.xp-fl-atmos {
    position: absolute;
    inset: -60px;
    z-index: 0;
    pointer-events: none;
}

.xp-fl-ray {
    position: absolute;
    border-radius: 50%;
}

.xp-fl-ray0 {
    top: -8%;
    left: 10%;
    width: 280px;
    height: 460px;
    background: linear-gradient(135deg, rgba(249, 130, 37, 0.035) 0%, transparent 55%);
    transform: rotate(-15deg);
    animation: xpFlRay0 14s ease-in-out infinite;
}

.xp-fl-ray1 {
    bottom: -5%;
    right: 5%;
    width: 220px;
    height: 360px;
    background: linear-gradient(225deg, rgba(55, 114, 252, 0.02) 0%, transparent 55%);
    transform: rotate(22deg);
    animation: xpFlRay1 18s ease-in-out infinite;
}

@keyframes xpFlRay0 {

    0%,
    100% {
        opacity: 0.5;
        transform: rotate(-15deg) scale(1);
    }

    50% {
        opacity: 1;
        transform: rotate(-10deg) scale(1.12);
    }
}

@keyframes xpFlRay1 {

    0%,
    100% {
        opacity: 0.4;
        transform: rotate(22deg) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: rotate(27deg) scale(1.08);
    }
}

.xp-fl-fog {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.08) 0%, transparent 65%);
    filter: blur(40px);
}

.xp-fl-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(249, 130, 37, 0.045) 0%, transparent 60%);
    animation: xpFlGlow 10s ease-in-out infinite;
}

@keyframes xpFlGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.18);
    }
}

/* Card base */
.xp-fl-card {
    position: absolute;
    border-radius: var(--xp-radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.04);
    cursor: default;
    will-change: transform;
    transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.6s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.xp-fl-card:hover {
    border-color: rgba(249, 130, 37, 0.3);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 45px rgba(249, 130, 37, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.07);
}

/* Shimmer reflection */
.xp-fl-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 255, 255, 0.02) 44%,
            rgba(255, 255, 255, 0.055) 50%,
            rgba(255, 255, 255, 0.02) 56%,
            transparent 70%);
    z-index: 4;
    pointer-events: none;
    transform: translateX(-120%);
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.xp-fl-card:hover .xp-fl-shimmer {
    transform: translateX(120%);
}

/* 4-card editorial composition — spaced, layered, minimal overlap */
.xp-fl-c0 {
    width: 52%;
    aspect-ratio: 29 / 20;
    top: 3.8%;
    left: 3.6%;
    z-index: 4;
    transform: translateZ(60px) rotate(-1.5deg);
}

.xp-fl-c1 {
    width: 41%;
    aspect-ratio: 23 / 16;
    top: 1.9%;
    left: 59%;
    z-index: 3;
    transform: translateZ(30px) rotate(2deg);
}

.xp-fl-c2 {
    width: 45%;
    aspect-ratio: 25 / 17;
    top: 47%;
    left: 9%;
    z-index: 2;
    transform: translateZ(10px) rotate(1.5deg);
}

.xp-fl-c3 {
    width: 36%;
    aspect-ratio: 10 / 7;
    top: 50%;
    left: 55%;
    z-index: 1;
    transform: translateZ(-20px) rotate(-2deg);
}

/* Image */
.xp-fl-img {
    position: absolute;
    inset: 0;
}

.xp-fl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.7s ease;
}

.xp-fl-card:hover .xp-fl-img img {
    transform: scale(1.03);
}

/* Gradient overlay */
.xp-fl-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
    z-index: 1;
    transition: background 0.5s ease;
}

.xp-fl-card:hover::after {
    background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.82) 100%);
}

/* Info labels */
.xp-fl-info {
    position: absolute;
    left: 14px;
    bottom: 12px;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.xp-fl-card:hover .xp-fl-info {
    transform: translateY(-3px);
}

.xp-fl-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: var(--body-font);
    line-height: 1.2;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.xp-fl-tag {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--heading-font);
    letter-spacing: 0.4px;
    margin-top: 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* --- Responsive: XL --- */
@media (max-width:1399px) {
    .xp-fl-stack {
        margin-top: -20px;
    }
}

/* --- Responsive: Large tablet --- */
@media (max-width:1199px) {
    .xp-fl-stack {
        margin-top: -20px;
    }

    .xp-fl-name {
        font-size: 12px;
    }

    .xp-fl-tag {
        font-size: 9px;
    }

    .xp-fl-info {
        left: 10px;
        bottom: 9px;
    }
}

/* Stack hidden on tablet & below — hero col is d-none d-lg-block */


/* ============================================
   Xplore — Expertise Section
   ============================================ */

/* --- Section Shell --- */
.xp-exp-area {
    position: relative;
    padding: clamp(70px, 10vw, 180px) 0 clamp(60px, 8vw, 160px);
    background: var(--color-dark);
    overflow: hidden;
}

.xp-exp-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    pointer-events: none;
}

@media all and (max-width: 991px) {
    .xp-exp-area {
        padding: 90px 0 80px;
    }
}

@media all and (max-width: 767px) {
    .xp-exp-area {
        padding: 70px 0 60px;
    }
}

.xp-exp-inner {
    max-width: min(90vw, 2400px);
    margin: 0 auto;
    padding: 0 clamp(20px, 2vw, 40px);
}

/* --- Header --- */
.xp-exp-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
}

@media all and (max-width: 991px) {
    .xp-exp-header {
        margin-bottom: 50px;
    }
}

@media all and (max-width: 767px) {
    .xp-exp-header {
        margin-bottom: 40px;
    }
}

.xp-exp-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--theme-color);
    text-transform: uppercase;
    margin-bottom: 22px;
    font-family: var(--body-font);
    position: relative;
    padding: 0 24px;
}

.xp-exp-label::before,
.xp-exp-label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 14px;
    height: 1px;
    background: var(--theme-color);
    opacity: 0.5;
}

.xp-exp-label::before {
    left: 0;
}

.xp-exp-label::after {
    right: 0;
}

.xp-exp-title {
    font-size: clamp(28px, 3.4vw, 62px);
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--body-font);
    line-height: 1.15;
    margin-bottom: 22px;
}


.xp-exp-subtitle {
    font-size: clamp(15px, 1.2vw, 21px);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    font-weight: 400;
    max-width: 560px;
    margin: 0 auto;
}


/* --- Bento Grid --- */
.xp-bento {
    display: grid;
    grid-template-columns: 7fr 5fr;
    grid-template-rows: clamp(220px, 20vw, 400px) clamp(220px, 20vw, 400px) auto clamp(220px, 20vw, 400px) clamp(220px, 20vw, 400px) clamp(220px, 20vw, 400px);
    gap: 16px;
    grid-template-areas:
        "fit      luxury"
        "fit      group"
        "stmt     stmt"
        "mice     drive"
        "honey    drive"
        "cruise   support";
}

/* --- Panel Base --- */
.xp-bp {
    position: relative;
    overflow: hidden;
    border-radius: var(--xp-radius-sm);
    cursor: default;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.xp-bp.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Right-column stagger */
.xp-bp--luxury,
.xp-bp--group,
.xp-bp--drive,
.xp-bp--support {
    transition-delay: 0.12s;
}

/* --- Grid Placement --- */
.xp-bp--fit {
    grid-area: fit;
}

.xp-bp--luxury {
    grid-area: luxury;
}

.xp-bp--group {
    grid-area: group;
}

.xp-bp--mice {
    grid-area: mice;
}

.xp-bp--drive {
    grid-area: drive;
}

.xp-bp--honey {
    grid-area: honey;
}

.xp-bp--cruise {
    grid-area: cruise;
}

.xp-bp--support {
    grid-area: support;
}

/* --- Panel Image --- */
.xp-bp-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.xp-bp:hover .xp-bp-img {
    transform: scale(1.08);
}

/* --- Panel Gradient Overlay --- */
.xp-bp::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.2) 45%,
            rgba(0, 0, 0, 0.06) 100%);
    z-index: 1;
    pointer-events: none;
    transition: background 0.5s ease;
}

.xp-bp:hover::after {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 100%);
}

/* --- Panel Content --- */
.xp-bp-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
}

/* Accent line */
.xp-bp-content::before {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: var(--theme-color);
    margin-bottom: 14px;
    transition: width 0.5s ease;
}

.xp-bp:hover .xp-bp-content::before {
    width: 50px;
}

.xp-bp-name {
    display: block;
    font-size: clamp(18px, 1.5vw, 28px);
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--body-font);
    line-height: 1.2;
}

.xp-bp-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    font-weight: 400;
    font-family: var(--body-font);
    margin-top: 8px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.08s, transform 0.4s ease 0.08s;
}

.xp-bp:hover .xp-bp-desc {
    opacity: 1;
    transform: translateY(0);
}

/* --- Statement Panel --- */
.xp-bento-stmt {
    grid-area: stmt;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 30px;
    border-top: 1px solid var(--border-white-color2);
    border-bottom: 1px solid var(--border-white-color2);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 1s ease 0.15s, transform 1s ease 0.15s;
}

.xp-bento-stmt.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.xp-bs-text {
    font-size: clamp(22px, 2.2vw, 42px);
    font-weight: 500;
    color: var(--color-white);
    text-align: center;
    letter-spacing: 0.5px;
    font-family: var(--body-font);
    line-height: 1.3;
    margin: 0;
}

.xp-bs-text em {
    font-style: normal;
    font-family: var(--heading-font);
    color: var(--theme-color);
    font-size: clamp(26px, 2.6vw, 50px);
}

/* --- Responsive: Tablet --- */
@media all and (max-width: 991px) {
    .xp-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas: none;
        gap: 12px;
    }

    .xp-bp {
        grid-area: auto !important;
        min-height: 260px;
    }

    .xp-bp--luxury,
    .xp-bp--group,
    .xp-bp--drive,
    .xp-bp--support {
        transition-delay: 0s;
    }

    .xp-bento-stmt {
        grid-area: auto !important;
        grid-column: 1 / -1;
        padding: 40px 24px;
    }

    .xp-bp-desc {
        opacity: 1;
        transform: translateY(0);
    }

    .xp-bp-content {
        padding: 24px;
    }
}

/* --- Responsive: Mobile --- */
@media all and (max-width: 767px) {
    .xp-bs-text {
        font-size: 22px;
    }

    .xp-bs-text em {
        font-size: 26px;
    }
}

@media all and (max-width: 575px) {
    .xp-bento {
        grid-template-columns: 1fr;
    }

    .xp-bp {
        min-height: 300px;
    }

    .xp-bento-stmt {
        grid-column: auto;
    }

    .xp-bp-name {
        font-size: 18px;
    }
}


/* ============================================
   Xplore — Partnership Command Center
   ============================================ */

.xp-cmd-area {
    position: relative;
}

.xp-cmd-pin {
    position: relative;
    height: 100vh;
    background: #0a141c;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.xp-cmd-pin::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.018) 0.5px, transparent 0.5px);
    background-size: 28px 28px;
    pointer-events: none;
}

.xp-cmd-pin::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(55, 114, 252, 0.045) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Chrome --- */
.xp-cmd-chrome {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 50px;
    z-index: 10;
    pointer-events: none;
}

.xp-cmd-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-family: var(--body-font);
}

.xp-cmd-count {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--body-font);
    letter-spacing: 1px;
}

.xp-cmd-count span {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.xp-cmd-count i {
    font-style: normal;
    margin: 0 4px;
}

/* --- Stage --- */
.xp-cmd-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 3.5vw, 70px);
    padding: clamp(60px, 5.5vw, 100px) clamp(30px, 3vw, 60px) clamp(40px, 3.5vw, 70px);
    position: relative;
    z-index: 5;
}

/* --- Node Columns --- */
.xp-cmd-col {
    flex: 0 0 clamp(150px, 14vw, 260px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* --- Node --- */
.xp-cmd-node {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--xp-radius-sm);
    cursor: default;
    transition: all 0.5s var(--xp-ease);
}

.xp-cmd-node-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.5s ease;
}

.xp-cmd-node-icon svg {
    width: 16px;
    height: 16px;
}

.xp-cmd-node-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--body-font);
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: color 0.5s ease;
}

.xp-cmd-node.is-active {
    background: rgba(249, 130, 37, 0.07);
    border-color: rgba(249, 130, 37, 0.22);
    box-shadow: 0 0 28px rgba(249, 130, 37, 0.12), inset 0 0 20px rgba(249, 130, 37, 0.03);
}

.xp-cmd-node.is-active .xp-cmd-node-icon {
    color: var(--theme-color);
}

.xp-cmd-node.is-active .xp-cmd-node-name {
    color: rgba(255, 255, 255, 0.9);
}

/* --- Connection Lines --- */
.xp-cmd-left .xp-cmd-node::after {
    content: "";
    position: absolute;
    right: clamp(-70px, -3.5vw, -30px);
    top: 50%;
    width: clamp(30px, 3.5vw, 70px);
    height: 1px;
    background: rgba(255, 255, 255, 0.035);
    transition: all 0.6s ease;
    pointer-events: none;
}

.xp-cmd-left .xp-cmd-node.is-active::after {
    background: linear-gradient(90deg, rgba(249, 130, 37, 0.25), rgba(249, 130, 37, 0));
    box-shadow: 0 0 8px rgba(249, 130, 37, 0.08);
}

.xp-cmd-right .xp-cmd-node::before {
    content: "";
    position: absolute;
    left: clamp(-70px, -3.5vw, -30px);
    top: 50%;
    width: clamp(30px, 3.5vw, 70px);
    height: 1px;
    background: rgba(255, 255, 255, 0.035);
    transition: all 0.6s ease;
    pointer-events: none;
}

.xp-cmd-right .xp-cmd-node.is-active::before {
    background: linear-gradient(-90deg, rgba(249, 130, 37, 0.25), rgba(249, 130, 37, 0));
    box-shadow: 0 0 8px rgba(249, 130, 37, 0.08);
}

/* --- Center Hub --- */
.xp-cmd-hub {
    flex: 0 0 clamp(320px, 28vw, 520px);
    max-width: clamp(320px, 28vw, 520px);
    background: rgba(255, 255, 255, 0.035);
    -webkit-backdrop-filter: blur(32px) saturate(1.3);
    backdrop-filter: blur(32px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--xp-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.25), 0 0 0 0.5px rgba(255, 255, 255, 0.04) inset;
}

.xp-cmd-hub-photo {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.xp-cmd-hub-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.xp-cmd-hub-reveal {
    position: absolute;
    inset: 0;
    background: #0a141c;
    transform: scaleX(0);
    transform-origin: left center;
    z-index: 2;
    will-change: transform;
}

.xp-cmd-hub-body {
    padding: 24px 28px 28px;
}

.xp-cmd-hub-tag {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--theme-color);
    text-transform: uppercase;
    font-family: var(--body-font);
    margin-bottom: 10px;
}

.xp-cmd-hub-title {
    font-size: clamp(22px, 2vw, 36px);
    font-weight: 700;
    color: #fff;
    font-family: var(--body-font);
    line-height: 1.15;
    margin: 0 0 14px;
}

.xp-cmd-hub-line {
    width: 32px;
    height: 2px;
    background: var(--theme-color);
    border-radius: 2px;
    margin-bottom: 14px;
}

.xp-cmd-hub-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    font-weight: 400;
    font-family: var(--body-font);
    margin: 0 0 20px;
}

.xp-cmd-hub-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 22px;
}

.xp-cmd-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.xp-cmd-stat-val {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    font-family: var(--body-font);
    line-height: 1;
}

.xp-cmd-stat-lbl {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--body-font);
    letter-spacing: 0.3px;
}

.xp-cmd-hub-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-color);
    text-decoration: none;
    font-family: var(--body-font);
    letter-spacing: 0.3px;
    transition: gap 0.3s ease;
}

.xp-cmd-hub-cta:hover {
    gap: 14px;
    color: var(--theme-color);
}

.xp-cmd-hub-cta svg {
    transition: transform 0.3s ease;
}

.xp-cmd-hub-cta:hover svg {
    transform: translateX(3px);
}

/* --- Progress --- */
.xp-cmd-prog {
    position: absolute;
    bottom: 28px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    z-index: 10;
}

.xp-cmd-prog-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
    border-radius: 2px;
}

/* --- GSAP States --- */
.xp-cmd-hub-tag,
.xp-cmd-hub-title,
.xp-cmd-hub-line,
.xp-cmd-hub-desc,
.xp-cmd-hub-stats,
.xp-cmd-hub-cta {
    will-change: opacity, transform;
}

/* --- Responsive: Tablet --- */
@media all and (max-width: 991px) {
    .xp-cmd-chrome {
        padding: 28px 28px;
    }

    .xp-cmd-stage {
        gap: 30px;
        padding: 75px 24px 45px;
    }

    .xp-cmd-col {
        flex: 0 0 160px;
        gap: 10px;
    }

    .xp-cmd-node {
        padding: 9px 12px;
        gap: 8px;
    }

    .xp-cmd-node-name {
        font-size: 12px;
    }

    .xp-cmd-node-icon svg {
        width: 14px;
        height: 14px;
    }

    .xp-cmd-hub {
        flex: 0 0 340px;
        max-width: 340px;
    }

    .xp-cmd-hub-photo {
        height: 150px;
    }

    .xp-cmd-hub-body {
        padding: 20px 22px 22px;
    }

    .xp-cmd-prog {
        left: 28px;
        right: 28px;
    }
}

/* --- Responsive: Mobile --- */
@media all and (max-width: 767px) {
    .xp-cmd-stage {
        flex-direction: column;
        gap: 16px;
        padding: 70px 20px 50px;
    }

    .xp-cmd-col {
        flex: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        width: 100%;
    }

    .xp-cmd-node {
        padding: 7px 12px;
        gap: 6px;
        border-radius: var(--xp-radius-sm);
    }

    .xp-cmd-node-name {
        font-size: 11px;
    }

    .xp-cmd-node-icon {
        width: 20px;
        height: 20px;
    }

    .xp-cmd-node-icon svg {
        width: 12px;
        height: 12px;
    }

    .xp-cmd-left .xp-cmd-node::after,
    .xp-cmd-right .xp-cmd-node::before {
        display: none;
    }

    .xp-cmd-hub {
        flex: none;
        max-width: 100%;
        width: 100%;
        order: -1;
    }

    .xp-cmd-hub-photo {
        height: 140px;
    }

    .xp-cmd-hub-body {
        padding: 18px 20px 20px;
    }

    .xp-cmd-hub-title {
        margin-bottom: 10px;
    }

    .xp-cmd-hub-desc {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .xp-cmd-stat-val {
        font-size: 18px;
    }

    .xp-cmd-hub-stats {
        margin-bottom: 16px;
    }

    .xp-cmd-chrome {
        padding: 20px 20px;
    }

    .xp-cmd-prog {
        left: 20px;
        right: 20px;
        bottom: 16px;
    }
}


/* ============================================
   Xplore — Signature Destinations (3D)
   ============================================ */

.xp-dest-area {
    position: relative;
}

.xp-dest-pin {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #0a141c;
}

.xp-dest-pin canvas {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
}

/* --- Chrome --- */
.xp-dest-chrome {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    z-index: 10;
    pointer-events: none;
}

.xp-dest-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    font-family: var(--body-font);
}

.xp-dest-counter {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--body-font);
    letter-spacing: 1px;
}

.xp-dest-counter span {
    color: var(--color-white);
    font-size: 22px;
    font-weight: 700;
}

.xp-dest-counter i {
    font-style: normal;
    margin: 0 4px;
}

/* --- Info Panel --- */
.xp-dest-info {
    position: absolute;
    left: clamp(28px, 3.5vw, 70px);
    bottom: clamp(60px, 5.5vw, 100px);
    max-width: clamp(360px, 32vw, 560px);
    z-index: 10;
    padding: 0 36px 36px;
    background: rgba(255, 255, 255, 0.035);
    -webkit-backdrop-filter: var(--xp-blur) saturate(1.3);
    backdrop-filter: var(--xp-blur) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--xp-radius-lg);
    overflow: hidden;
}

.xp-dest-info>* {
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.xp-dest-info .xp-dest-photo {
    transition-delay: 0s;
}

.xp-dest-info .xp-dest-name {
    transition-delay: 0.06s;
}

.xp-dest-info .xp-dest-tagline {
    transition-delay: 0.12s;
}

.xp-dest-info .xp-dest-accent {
    transition-delay: 0.16s;
}

.xp-dest-info .xp-dest-story {
    transition-delay: 0.22s;
}

.xp-dest-info .xp-dest-hl {
    transition-delay: 0.28s;
}

.xp-dest-info.is-out>* {
    opacity: 0;
    transform: translateY(14px);
    transition-delay: 0s !important;
}

/* Photo strip inside panel */
.xp-dest-photo {
    margin: 0 -36px 24px;
    height: 160px;
    overflow: hidden;
}

.xp-dest-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.xp-dest-info:not(.is-out) .xp-dest-photo img {
    transform: scale(1.06);
}

.xp-dest-name {
    font-size: clamp(28px, 3.2vw, 58px);
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--body-font);
    line-height: 1.05;
    margin: 0 0 6px;
}

.xp-dest-tagline {
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-color);
    font-family: var(--heading-font);
    letter-spacing: 0.5px;
    margin: 0;
}

.xp-dest-accent {
    width: 36px;
    height: 2px;
    background: var(--theme-color);
    margin: 16px 0;
    border-radius: 2px;
}

.xp-dest-story {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-weight: 400;
    font-family: var(--body-font);
    margin: 0 0 20px;
}

.xp-dest-hl {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.xp-dest-hl span {
    padding: 5px 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--xp-radius-pill);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
    font-family: var(--body-font);
}

/* --- Nav Dots --- */
.xp-dest-nav {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.xp-dest-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    outline: none;
}

.xp-dest-nav button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
}

.xp-dest-nav button.is-active {
    background: var(--theme-color);
    transform: scale(1.4);
    box-shadow: 0 0 14px rgba(249, 130, 37, 0.45);
}

.xp-dest-nav button span {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--body-font);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.xp-dest-nav button:hover span,
.xp-dest-nav button.is-active span {
    opacity: 1;
}

/* --- Progress --- */
.xp-dest-prog {
    position: absolute;
    bottom: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 2px;
    z-index: 10;
}

.xp-dest-prog-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
    border-radius: 2px;
}

/* --- Responsive --- */
@media all and (max-width: 991px) {
    .xp-dest-chrome {
        padding: 28px 28px;
    }

    .xp-dest-info {
        left: 28px;
        bottom: 65px;
        max-width: 380px;
        padding: 0 28px 28px;
    }

    .xp-dest-photo {
        margin: 0 -28px 20px;
        height: 130px;
    }

    .xp-dest-nav {
        right: 22px;
        gap: 12px;
    }

    .xp-dest-nav button span {
        display: none;
    }

    .xp-dest-prog {
        left: 28px;
        right: 28px;
    }
}

@media all and (max-width: 767px) {
    .xp-dest-chrome {
        padding: 22px 18px;
    }

    .xp-dest-info {
        left: 16px;
        right: 16px;
        bottom: 50px;
        max-width: 100%;
        padding: 0 20px 22px;
        border-radius: 12px;
    }

    .xp-dest-photo {
        margin: 0 -20px 16px;
        height: 110px;
    }

    .xp-dest-tagline {
        font-size: 14px;
    }

    .xp-dest-story {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .xp-dest-nav {
        right: 14px;
        gap: 10px;
    }

    .xp-dest-nav button {
        width: 8px;
        height: 8px;
    }

    .xp-dest-prog {
        left: 16px;
        right: 16px;
        bottom: 18px;
    }
}


/* ============================================
   Xplore — Services Showcase (Scroll Storytelling)
   ============================================ */

.xp-sv-area {
    position: relative;
}

.xp-sv-pin {
    position: relative;
    height: 100vh;
    background: var(--xp-bg-alt);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* --- Top Bar --- */
.xp-sv-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    z-index: 10;
    pointer-events: none;
}

.xp-sv-label {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: rgb(249 130 37);
    text-transform: uppercase;
    font-family: var(--body-font);
}

.xp-sv-count {
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.3);
    font-family: var(--body-font);
    letter-spacing: 1px;
}

.xp-sv-count span {
    color: var(--xp-heading);
    font-size: 22px;
    font-weight: 700;
}

.xp-sv-count i {
    font-style: normal;
    margin: 0 4px;
}

/* --- Stage --- */
.xp-sv-stage {
    flex: 1;
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 5;
}

/* --- Left Content --- */
.xp-sv-content {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(80px, 7vw, 140px) clamp(36px, 4vw, 80px) clamp(60px, 6vw, 110px) clamp(50px, 5.5vw, 120px);
    position: relative;
    z-index: 2;
}

.xp-sv-watermark {
    position: absolute;
    top: 50%;
    left: clamp(30px, 3.5vw, 80px);
    transform: translateY(-50%);
    font-size: clamp(100px, 16vw, 340px);
    font-weight: 800;
    color: var(--xp-heading);
    opacity: 0.035;
    line-height: 0.85;
    font-family: var(--body-font);
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 0;
}

.xp-sv-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.xp-sv-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--xp-radius-sm);
    background: var(--xp-orange-subtle);
    border: 1px solid rgba(230, 126, 34, 0.15);
    color: var(--xp-orange);
}

.xp-sv-icon svg {
    width: 18px;
    height: 18px;
}

.xp-sv-tag {
    font-size: var(--xp-eyebrow-size);
    font-weight: var(--xp-eyebrow-weight);
    letter-spacing: var(--xp-eyebrow-tracking);
    color: var(--xp-orange);
    text-transform: uppercase;
    font-family: var(--xp-font-body);
}

.xp-sv-title {
    font-size: clamp(32px, 3.8vw, 82px);
    font-weight: 700;
    color: var(--xp-heading);
    font-family: var(--xp-font-body);
    line-height: 1.08;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}

.xp-sv-accent {
    width: 45px;
    height: 2px;
    background: var(--xp-orange);
    margin-bottom: 24px;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.xp-sv-desc {
    font-size: clamp(14px, 1.2vw, 18px);
    color: var(--xp-body);
    line-height: 1.75;
    font-weight: 400;
    font-family: var(--xp-font-body);
    margin: 0 0 28px;
    max-width: var(--xp-body-max-width);
    position: relative;
    z-index: 1;
}

.xp-sv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.xp-sv-tags span {
    padding: 6px 16px;
    background: var(--xp-glass-light);
    border: 1px solid var(--xp-border);
    border-radius: var(--xp-radius-pill);
    font-size: 12px;
    font-weight: 500;
    color: var(--xp-body);
    letter-spacing: 0.3px;
    font-family: var(--xp-font-body);
    box-shadow: var(--xp-shadow-sm);
}

.xp-sv-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--xp-orange);
    text-decoration: none;
    letter-spacing: 0.5px;
    min-height: 44px;
    font-family: var(--xp-font-body);
    transition: gap var(--xp-duration) var(--xp-ease);
    position: relative;
    z-index: 1;
}

.xp-sv-cta:hover {
    gap: 16px;
    color: var(--xp-orange-hover);
}

.xp-sv-cta svg {
    transition: transform 0.3s ease;
}

.xp-sv-cta:hover svg {
    transform: translateX(3px);
}

/* --- Right Visual --- */
.xp-sv-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.xp-sv-img-wrap {
    position: absolute;
    inset: 40px 0 40px 0;
    border-radius: var(--xp-radius-lg) 0 0 var(--xp-radius-lg);
    overflow: hidden;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.06);
}

.xp-sv-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(245, 242, 237, 0.45) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.xp-sv-img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.xp-sv-reveal {
    position: absolute;
    inset: 40px 0 40px 0;
    background: var(--xp-bg-alt);
    border-radius: var(--xp-radius-lg) 0 0 var(--xp-radius-lg);
    z-index: 2;
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

/* --- Progress --- */
.xp-sv-prog {
    position: absolute;
    bottom: 28px;
    left: 80px;
    right: 50px;
    height: 2px;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 2px;
    z-index: 10;
}

.xp-sv-prog-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--xp-orange), #2d7882);
    border-radius: 2px;
}

/* --- Nav Dots --- */
.xp-sv-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.xp-sv-dots button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    outline: none;
}

.xp-sv-dots button:hover {
    background: rgba(0, 0, 0, 0.35);
    transform: scale(1.3);
}

.xp-sv-dots button.is-active {
    background: var(--xp-orange);
    transform: scale(1.5);
    box-shadow: 0 0 12px rgba(212, 114, 46, 0.35);
}

/* --- Responsive: Tablet --- */
@media all and (max-width: 991px) {
    .xp-sv-bar {
        padding: 28px 28px;
    }

    .xp-sv-content {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 90px 36px 70px 36px;
    }

    .xp-sv-watermark {
        font-size: 160px;
        left: 20px;
    }

    .xp-sv-img-wrap {
        inset: 30px 0 30px 0;
        border-radius: 12px 0 0 12px;
    }

    .xp-sv-reveal {
        inset: 30px 0 30px 0;
        border-radius: 12px 0 0 12px;
    }

    .xp-sv-prog {
        left: 36px;
        right: 36px;
    }

    .xp-sv-dots {
        right: 16px;
        gap: 8px;
    }

    .xp-sv-dots button {
        width: 6px;
        height: 6px;
    }
}

/* --- Responsive: Mobile --- */
@media all and (max-width: 767px) {
    .xp-sv-stage {
        flex-direction: column-reverse;
    }

    .xp-sv-content {
        flex: 1;
        max-width: 100%;
        padding: 0 24px 60px;
        justify-content: flex-end;
        z-index: 5;
    }

    .xp-sv-visual {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .xp-sv-img-wrap {
        inset: 0;
        border-radius: 0;
    }

    .xp-sv-img-wrap::after {
        background:
            linear-gradient(180deg, rgba(245, 242, 237, 0.25) 0%, rgba(245, 242, 237, 0.05) 30%, rgba(245, 242, 237, 0.92) 100%),
            linear-gradient(90deg, rgba(245, 242, 237, 0.5) 0%, transparent 60%);
    }

    .xp-sv-reveal {
        inset: 0;
        border-radius: 0;
    }

    .xp-sv-title {
        margin-bottom: 14px;
    }

    .xp-sv-accent {
        margin-bottom: 18px;
    }

    .xp-sv-desc {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .xp-sv-tags span {
        font-size: 11px;
        padding: 5px 12px;
    }

    .xp-sv-tags {
        margin-bottom: 24px;
    }

    .xp-sv-bar {
        padding: 20px 20px;
    }

    .xp-sv-prog {
        left: 20px;
        right: 20px;
        bottom: 18px;
    }

    .xp-sv-dots {
        display: none;
    }
}

/* =================================================================
   XPLORE NEW ZEALAND — JOURNAL / EDITORIAL SECTION
   Namespaced .jrnl-* — append to existing xplore.css.
   Uses ONLY the locked brand design system.
================================================================== */

:root {
    --jrnl-orange: var(--xp-orange);
    --jrnl-orange-hover: var(--xp-orange-hover);
    --jrnl-orange-light: var(--xp-orange-light);
    --jrnl-navy: var(--xp-navy);
    --jrnl-navy-dark: var(--xp-navy-dark);
    --jrnl-teal: var(--xp-teal);
    --jrnl-sky: #BFDFF2;
    --jrnl-bg: var(--xp-bg);
    --jrnl-bg-2: var(--xp-bg-alt);
    --jrnl-surface: var(--xp-surface);
    --jrnl-alt: var(--xp-surface-cool);
    --jrnl-heading: var(--xp-heading);
    --jrnl-para: var(--xp-body);
    --jrnl-muted: var(--xp-muted);
    --jrnl-border: var(--xp-border);
    --jrnl-shadow: var(--xp-shadow-lg);
    --jrnl-shadow-lift: var(--xp-shadow-xl);
    --jrnl-glass-bg: var(--xp-glass-light);
    --jrnl-glass-border: 1px solid var(--xp-glass-light-border);
    --jrnl-ease: var(--xp-ease);
}

/* ---------- Shell ---------- */
.jrnl {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    padding: var(--xp-space-3xl) clamp(1.25rem, 5vw, 5.5rem);
    background: var(--xp-bg);
    color: var(--jrnl-heading);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Ambient background ---------- */
.jrnl-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.jrnl-bg__wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, #FAF9F7 0%, #F6F3EE 48%, #F2F5F7 100%);
}

.jrnl-bg__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
}

.jrnl-bg__glow--a {
    width: 46vw;
    height: 46vw;
    top: -14vw;
    right: -8vw;
    background: radial-gradient(circle at 50% 50%,
            rgba(246, 166, 75, .30), rgba(246, 166, 75, 0) 68%);
}

.jrnl-bg__glow--b {
    width: 42vw;
    height: 42vw;
    bottom: -16vw;
    left: -10vw;
    background: radial-gradient(circle at 50% 50%,
            rgba(191, 223, 242, .42), rgba(191, 223, 242, 0) 68%);
}

.jrnl-bg__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
}

.jrnl-bg__grain {
    position: absolute;
    inset: 0;
    opacity: .4;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

/* ---------- Inner ---------- */
.jrnl-inner {
    position: relative;
    width: 100%;
    max-width: var(--xp-container);
    margin-inline: auto;
}

/* ---------- Header ---------- */
.jrnl-head {
    max-width: 50rem;
    margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.jrnl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font: 600 20px/1 "Inter", sans-serif;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--jrnl-teal);
    margin-bottom: 1.1rem;
}

.jrnl-eyebrow__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--jrnl-orange);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, .14);
}

.jrnl-title {
    font: 300 clamp(2.4rem, 5vw, 4rem)/1.04 "Fraunces", serif;
    letter-spacing: -.015em;
    color: var(--jrnl-heading);
    margin: 0 0 1rem;
}

.jrnl-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--jrnl-orange);
}

.jrnl-lede {
    font: 400 clamp(1rem, 1.4vw, 1.18rem)/1.6 "Inter", sans-serif;
    color: var(--jrnl-para);
    max-width: 40rem;
    margin: 0;
}

/* ---------- Grid ---------- */
.jrnl-grid {
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    gap: clamp(1.25rem, 2.2vw, 2rem);
    align-items: stretch;
}

/* ===== Badges ===== */
.jrnl-badge {
    display: inline-flex;
    align-items: center;
    padding: .42rem .8rem;
    font: 600 .68rem/1 "Inter", sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--jrnl-navy);
    background: var(--jrnl-glass-bg);
    border: var(--jrnl-glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 100px;
    box-shadow: 0 6px 18px rgba(15, 30, 46, .10);
}

.jrnl-badge--sm {
    padding: .34rem .66rem;
    font-size: .62rem;
    letter-spacing: .12em;
}

/* ===== Featured article ===== */
.jrnl-feature {
    position: relative;
    border-radius: var(--xp-radius-xl);
    overflow: hidden;
    background: var(--jrnl-surface);
    box-shadow: var(--jrnl-shadow);
    border: 1px solid var(--jrnl-border);
    transition: box-shadow .5s var(--jrnl-ease), transform .5s var(--jrnl-ease);
    will-change: transform;
}

.jrnl-feature__link {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: clamp(28rem, 52vh, 40rem);
    text-decoration: none;
    color: inherit;
}

.jrnl-feature__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.jrnl-feature__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 1.1s var(--jrnl-ease);
}

.jrnl-feature__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 19, 31, 0) 30%, rgba(8, 19, 31, .18) 55%, rgba(8, 19, 31, .62) 100%);
}

.jrnl-feature__panel {
    position: relative;
    margin-top: auto;
    margin: auto 1rem 1rem;
    margin-top: auto;
    padding: clamp(1.4rem, 2.4vw, 2.1rem);
    border-radius: var(--xp-radius-lg);
    background: var(--jrnl-glass-bg);
    border: var(--jrnl-glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 50px rgba(8, 19, 31, .28);
}

.jrnl-feature__top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.jrnl-feature__kicker {
    font: 600 .68rem/1 "Inter", sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--jrnl-teal);
}

.jrnl-feature__title {
    font: 400 clamp(1.5rem, 2.5vw, 2.15rem)/1.12 "Fraunces", serif;
    letter-spacing: -.01em;
    color: var(--jrnl-heading);
    margin: 0 0 .85rem;
}

.jrnl-feature__excerpt {
    font: 400 clamp(.95rem, 1.1vw, 1.04rem)/1.62 "Inter", sans-serif;
    color: var(--jrnl-para);
    margin: 0 0 1.4rem;
    max-width: 42rem;
}

.jrnl-feature__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.jrnl-meta {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .6rem;
    margin: 0;
    padding: 0;
    font: 500 .82rem/1 "Inter", sans-serif;
    color: var(--jrnl-muted);
}

.jrnl-meta__sep {
    color: var(--jrnl-border);
}

/* feature CTA */
.jrnl-cta {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font: 600 .9rem/1 "Inter", sans-serif;
    color: var(--jrnl-orange);
    cursor: pointer;
}

.jrnl-cta svg {
    width: 18px;
    height: 18px;
    transition: transform .4s var(--jrnl-ease);
}

.jrnl-cta--feature::after {
    content: "";
    display: block;
}

.jrnl-feature__link:hover .jrnl-cta svg {
    transform: translateX(5px);
}

.jrnl-feature__link:hover .jrnl-feature__img {
    transform: scale(1.1);
}

/* ===== Right-side stories ===== */
.jrnl-stories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: clamp(1.25rem, 2.2vw, 2rem);
}

.jrnl-card {
    position: relative;
    border-radius: var(--xp-radius-lg);
    overflow: hidden;
    background: var(--jrnl-surface);
    border: 1px solid var(--jrnl-border);
    box-shadow: var(--jrnl-shadow);
    transition: box-shadow .5s var(--jrnl-ease), transform .5s var(--jrnl-ease);
    will-change: transform;
}

.jrnl-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.jrnl-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.jrnl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 1s var(--jrnl-ease);
}

.jrnl-card__body {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    padding: 1.05rem 1.15rem 1.15rem;
    flex: 1;
}

.jrnl-card__body .jrnl-badge {
    align-self: flex-start;
}

.jrnl-card__title {
    font: 400 clamp(1.02rem, 1.25vw, 1.18rem)/1.22 "Fraunces", serif;
    color: var(--jrnl-heading);
    margin: 0;
}

.jrnl-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: .55rem;
}

.jrnl-card__date {
    font: 500 .78rem/1 "Inter", sans-serif;
    color: var(--jrnl-muted);
}

.jrnl-card__arrow {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--jrnl-navy);
    background: var(--jrnl-alt);
    border: 1px solid var(--jrnl-border);
    transition: background .4s var(--jrnl-ease), color .4s var(--jrnl-ease), transform .4s var(--jrnl-ease);
}

.jrnl-card__arrow svg {
    width: 16px;
    height: 16px;
}

/* card hover */
.jrnl-card__link:hover .jrnl-card__img {
    transform: scale(1.1);
}

.jrnl-card__link:hover .jrnl-card__arrow {
    background: var(--jrnl-orange);
    color: #fff;
    border-color: var(--jrnl-orange);
    transform: rotate(0) translate(2px, -2px);
}

/* lift on hover (feature + cards) */
.jrnl-feature:hover,
.jrnl-card:hover {
    box-shadow: var(--jrnl-shadow-lift);
}

/* ===== Bottom CTA ===== */
.jrnl-allwrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(2.5rem, 4.5vw, 4rem);
}

.jrnl-all {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    padding: .95rem 1.1rem .95rem 1.6rem;
    text-decoration: none;
    font: 600 .96rem/1 "Inter", sans-serif;
    color: var(--jrnl-navy);
    background: var(--jrnl-glass-bg);
    border: var(--jrnl-glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 100px;
    box-shadow: var(--jrnl-shadow);
    overflow: hidden;
    transition: color .4s var(--jrnl-ease), box-shadow .4s var(--jrnl-ease), transform .35s var(--jrnl-ease);
    will-change: transform;
}

.jrnl-all::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, var(--jrnl-orange), var(--jrnl-orange-hover));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--jrnl-ease);
}

.jrnl-all:hover {
    color: #fff;
    box-shadow: var(--jrnl-shadow-lift);
}

.jrnl-all:hover::before {
    transform: scaleX(1);
}

.jrnl-all__arrow {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--jrnl-orange);
    color: #fff;
    transition: background .4s var(--jrnl-ease), transform .4s var(--jrnl-ease);
}

.jrnl-all:hover .jrnl-all__arrow {
    background: rgba(255, 255, 255, .22);
}

.jrnl-all__arrow svg {
    width: 18px;
    height: 18px;
    transition: transform .4s var(--jrnl-ease);
}

.jrnl-all:hover .jrnl-all__arrow svg {
    transform: translateX(4px);
}

/* ---------- Reveal (GSAP sets final state; this is the from-state fallback) ---------- */
[data-jrnl-reveal] {
    opacity: 0;
    transform: translateY(34px);
}

.jrnl--ready [data-jrnl-reveal] {
    opacity: 1;
    transform: none;
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width:1180px) {
    .jrnl-grid {
        grid-template-columns: 1.05fr .95fr;
    }
}

/* Tablet — feature on top, 2x2 stories below */
@media (max-width:920px) {
    .jrnl {
        min-height: auto;
    }

    .jrnl-grid {
        grid-template-columns: 1fr;
    }

    .jrnl-feature__link {
        min-height: clamp(24rem, 46vh, 32rem);
    }
}

/* Small tablet / large phone — stories become a single staggered column,
   but sizes alternate so they never read as identical stacked cards */
@media (max-width:620px) {
    .jrnl {
        padding-inline: 1.15rem;
    }

    .jrnl-stories {
        grid-template-columns: 1fr;
    }

    .jrnl-card:nth-child(odd) .jrnl-card__media {
        aspect-ratio: 16/9;
    }

    .jrnl-card:nth-child(even) .jrnl-card__media {
        aspect-ratio: 3/2;
    }

    .jrnl-card:nth-child(even) {
        margin-inline: 0;
    }

    .jrnl-feature__panel {
        margin: auto .65rem .65rem;
    }
}

/* Phone */
@media (max-width:420px) {
    .jrnl-title {
        font-size: 2.15rem;
    }

    .jrnl-all {
        width: 100%;
        justify-content: space-between;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce) {
    [data-jrnl-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }

    .jrnl-feature__img,
    .jrnl-card__img {
        transition: none;
    }

    .jrnl-bg__particles {
        display: none;
    }

    * {
        scroll-behavior: auto !important;
    }
}

/* =================================================================
   XPLORE NEW ZEALAND — HOW WE DELIVER EXCELLENCE
   Namespaced .hwd-* — append to existing xplore.css.
   Locked brand design system only.
================================================================== */

:root {
    --hwd-orange: var(--xp-orange);
    --hwd-orange-hover: var(--xp-orange-hover);
    --hwd-orange-light: var(--xp-orange-light);
    --hwd-navy: var(--xp-navy);
    --hwd-navy-dark: var(--xp-navy-dark);
    --hwd-teal: var(--xp-teal);
    --hwd-sky: #BFDFF2;
    --hwd-bg: var(--xp-bg);
    --hwd-bg-2: var(--xp-bg-alt);
    --hwd-surface: var(--xp-surface);
    --hwd-alt: var(--xp-surface-cool);
    --hwd-heading: var(--xp-heading);
    --hwd-para: var(--xp-body);
    --hwd-muted: var(--xp-muted);
    --hwd-border: var(--xp-border);
    --hwd-shadow: var(--xp-shadow-lg);
    --hwd-glass-bg: var(--xp-glass-light);
    --hwd-glass-border: 1px solid var(--xp-glass-light-border);
    --hwd-ease: var(--xp-ease);
}

/* ---------- Scroll shell (tall, scroll-driven) ---------- */
.hwd {
    position: relative;
    min-height: 650vh;
    /* scroll length that drives the story */
    padding-bottom: 0;
    background: var(--hwd-bg);
    color: var(--hwd-heading);
    -webkit-font-smoothing: antialiased;
}

/* Sticky stage pinned for the duration of the scroll */
.hwd-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

/* ---------- Ambient background ---------- */
.hwd-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hwd-bg__wash {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #FAF9F7 0%, #F6F3EE 50%, #F2F5F7 100%);
}

.hwd-bg__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform, opacity;
}

.hwd-bg__glow--warm {
    width: 50vw;
    height: 50vw;
    top: -12vw;
    right: -6vw;
    opacity: .5;
    background: radial-gradient(circle at 50% 50%, rgba(246, 166, 75, .40), rgba(246, 166, 75, 0) 68%);
}

.hwd-bg__glow--cool {
    width: 48vw;
    height: 48vw;
    bottom: -16vw;
    left: -12vw;
    opacity: .55;
    background: radial-gradient(circle at 50% 50%, rgba(191, 223, 242, .50), rgba(191, 223, 242, 0) 68%);
}

.hwd-bg__grain {
    position: absolute;
    inset: 0;
    opacity: .35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

/* ---------- Layout: 40 / 60 split ---------- */
.hwd-stage__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: stretch;
    max-width: var(--xp-container);
    margin-inline: auto;
    padding: clamp(1.5rem, 3.5vh, 2.75rem) clamp(1.25rem, 4vw, 4rem);
}

/* ===== LEFT PANEL ===== */
.hwd-left {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: clamp(1rem, 3vw, 3rem);
}

.hwd-panel {
    position: relative;
    width: 100%;
    padding: clamp(1.75rem, 2.8vw, 2.75rem);
    border-radius: var(--xp-radius-xl);
    background: var(--hwd-glass-bg);
    border: var(--hwd-glass-border);
    backdrop-filter: var(--xp-blur);
    -webkit-backdrop-filter: var(--xp-blur);
    box-shadow: var(--hwd-shadow);
}

.hwd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font: 600 15px/1 "Inter", sans-serif;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--hwd-teal);
    margin-bottom: 1.1rem;
}

.hwd-eyebrow__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hwd-orange);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, .14);
}

.hwd-heading {
    font: 300 clamp(1.9rem, 3vw, 2.9rem)/1.08 "Fraunces", serif;
    letter-spacing: -.015em;
    color: var(--hwd-heading);
    margin: 0 0 1.1rem;
}

.hwd-heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--hwd-orange);
}

.hwd-intro {
    font: 400 clamp(.95rem, 1.1vw, 1.04rem)/1.62 "Inter", sans-serif;
    color: var(--hwd-para);
    margin: 0 0 1.75rem;
    max-width: 34rem;
}

/* live step readout */
.hwd-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 0 1.5rem;
    border-top: 1px solid var(--hwd-border);
    border-bottom: 1px solid var(--hwd-border);
    margin-bottom: 1.5rem;
    min-height: 8.5rem;
}

.hwd-step__num {
    font: 300 clamp(2.2rem, 3.4vw, 3rem)/1 "Fraunces", serif;
    color: var(--hwd-orange);
    font-variant-numeric: tabular-nums;
}

.hwd-step__title {
    font: 500 clamp(1.1rem, 1.5vw, 1.35rem)/1.2 "Fraunces", serif;
    color: var(--hwd-heading);
    margin: .2rem 0 .5rem;
}

.hwd-step__desc {
    font: 400 .92rem/1.6 "Inter", sans-serif;
    color: var(--hwd-para);
    margin: 0;
}

/* progress */
.hwd-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hwd-progress__bar {
    flex: 1;
    height: 3px;
    border-radius: 3px;
    background: var(--hwd-alt);
    overflow: hidden;
}

.hwd-progress__fill {
    display: block;
    height: 100%;
    width: 16.66%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--hwd-orange-light), var(--hwd-orange));
    transition: width .2s linear;
}

.hwd-progress__count {
    font: 600 .9rem/1 "Inter", sans-serif;
    color: var(--hwd-heading);
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em;
}

.hwd-progress__total {
    color: var(--hwd-muted);
}

/* CTA */
.hwd-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem .85rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font: 600 .95rem/1 "Inter", sans-serif;
    color: #fff;
    background: var(--hwd-orange);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(230, 126, 34, .30);
    transition: background .35s var(--hwd-ease), box-shadow .35s var(--hwd-ease), transform .3s var(--hwd-ease);
    will-change: transform;
}

.hwd-cta:hover {
    background: var(--hwd-orange-hover);
    box-shadow: 0 18px 40px rgba(217, 108, 18, .38);
}

.hwd-cta__arrow {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
}

.hwd-cta__arrow svg {
    width: 17px;
    height: 17px;
    transition: transform .4s var(--hwd-ease);
}

.hwd-cta:hover .hwd-cta__arrow svg {
    transform: translateX(4px);
}

/* ===== RIGHT PANEL (3D photo carousel) ===== */
.hwd-right {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: var(--xp-radius-xl);
}

.hwd-right::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background:
        radial-gradient(120% 90% at 70% 20%, rgba(246, 166, 75, .18), rgba(246, 166, 75, 0) 55%),
        radial-gradient(120% 100% at 25% 85%, rgba(191, 223, 242, .30), rgba(191, 223, 242, 0) 60%),
        linear-gradient(155deg, #FFFFFF 0%, #F6F3EE 55%, #F2F5F7 100%);
}

.hwd-right::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 120px rgba(15, 30, 46, .10);
}

.hwd-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
}

/* vertical step rail */
.hwd-rail {
    z-index: 3;
    position: absolute;
    right: clamp(.5rem, 1.5vw, 1.5rem);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hwd-rail__item {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font: 600 .68rem/1 "Inter", sans-serif;
    color: var(--hwd-muted);
    background: var(--hwd-glass-bg);
    border: var(--hwd-glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: color .4s var(--hwd-ease), background .4s var(--hwd-ease), transform .4s var(--hwd-ease), box-shadow .4s var(--hwd-ease);
}

.hwd-rail__item.is-active {
    color: #fff;
    background: var(--hwd-orange);
    transform: scale(1.12);
    box-shadow: 0 8px 22px rgba(230, 126, 34, .4);
}

/* scroll hint */
.hwd-hint {
    z-index: 3;
    position: absolute;
    left: 50%;
    bottom: clamp(1.25rem, 4vh, 2.5rem);
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    font: 500 .72rem/1 "Inter", sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--hwd-muted);
    transition: opacity .5s var(--hwd-ease);
}

.hwd-hint svg {
    width: 20px;
    height: 20px;
    animation: hwd-bob 1.8s var(--hwd-ease) infinite;
}

.hwd-hint.is-hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes hwd-bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(5px)
    }
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width:1180px) {
    .hwd-stage__inner {
        grid-template-columns: 42% 58%;
    }
}

/* Tablet & below — stack: panel over the 3D wheel.
   On mobile the JS switches the orbit to a horizontal wheel. */
@media (max-width:820px) {
    .hwd-stage__inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        align-items: start;
        padding: clamp(1.5rem, 5vh, 3rem) clamp(1.25rem, 4vw, 4rem) clamp(1.5rem, 3vh, 2rem);
        gap: 1rem;
    }

    .hwd-left {
        height: auto;
        padding-right: 0;
    }

    .hwd-panel {
        padding: 1.4rem;
    }

    .hwd-intro {
        display: none;
    }

    /* keep the panel compact above the wheel */
    .hwd-step {
        min-height: 7rem;
        padding: 1rem 0;
        margin-bottom: 1rem;
    }

    .hwd-right {
        min-height: 42vh;
    }

    .hwd-rail {
        right: .5rem;
        gap: .7rem;
    }

    .hwd-rail__item {
        width: 28px;
        height: 28px;
        font-size: .6rem;
    }
}

/* Phone */
@media (max-width:480px) {
    .hwd-heading {
        font-size: 1.7rem;
    }

    .hwd-panel {
        padding: 1.2rem;
    }

    .hwd-step__num {
        font-size: 2rem;
    }

    .hwd-cta {
        width: 100%;
        justify-content: space-between;
    }

    .hwd-rail {
        display: none;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce) {
    .hwd-hint svg {
        animation: none;
    }
}

/* =============================================================
   ULTRA-WIDE & LARGE DISPLAY RESPONSIVE SYSTEM
   Scales all sections proportionally for 1600px–3840px+
============================================================= */

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }

    .xp-sv-bar {
        padding: clamp(36px, 2.5vw, 50px) clamp(50px, 4vw, 70px);
    }

    .xp-sv-desc {
        max-width: 500px;
    }

    .xp-dest-chrome {
        padding: clamp(36px, 2.8vw, 52px) clamp(50px, 4vw, 70px);
    }

    .xp-dest-story {
        font-size: clamp(14px, 1vw, 18px);
    }

    .xp-cmd-chrome {
        padding: clamp(36px, 2.5vw, 50px) clamp(50px, 4vw, 70px);
    }

    .wwa__orb--1 {
        width: 340px;
        height: 340px;
    }

    .wwa__orb--2 {
        width: 260px;
        height: 260px;
    }

    .wwa__orb--3 {
        width: 200px;
        height: 200px;
    }

    .wwa__ring--1 {
        width: 380px;
        height: 380px;
    }

    .wwa__ring--2 {
        width: 240px;
        height: 240px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: min(85vw, 1800px);
    }

    .wwa__eyebrow {
        font-size: 1.65rem;
    }

    .wwa__lede {
        font-size: 1.15rem;
        max-width: 36rem;
    }

    .xp-sv-desc {
        max-width: 540px;
    }

    .jrnl-feature__link {
        min-height: clamp(32rem, 50vh, 44rem);
    }

    .xp-hero-badges span {
        font-size: 11px;
        padding: 6px 16px;
    }

    .xp-ht-logo {
        font-size: 15px;
    }

    .xp-ht-label {
        font-size: 10px;
    }

    .wwa__orb--1 {
        width: 400px;
        height: 400px;
    }

    .wwa__orb--2 {
        width: 300px;
        height: 300px;
    }

    .wwa__ring--1 {
        width: 440px;
        height: 440px;
    }

    .wwa__ring--2 {
        width: 280px;
        height: 280px;
    }

    .hwd-heading {
        font-size: 3.2rem;
    }

    .hwd-step__title {
        font-size: 1.45rem;
    }

    .hwd-intro {
        font-size: 1.1rem;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: min(82vw, 2200px);
    }

    .wwa__container {
        padding: 5rem 8rem;
        gap: 5rem;
    }

    .wwa__eyebrow {
        font-size: 1.8rem;
    }

    .wwa__lede {
        font-size: 1.25rem;
    }

    .xp-sv-tag {
        font-size: 14px;
    }

    .xp-sv-desc {
        max-width: 600px;
    }

    .jrnl {
        padding: 7rem 6rem;
    }

    .jrnl-title {
        font-size: 4.5rem;
    }

    .jrnl-feature__title {
        font-size: 2.6rem;
    }

    .jrnl-feature__link {
        min-height: 44rem;
    }

    .jrnl-card__title {
        font-size: 1.35rem;
    }

    .hwd-heading {
        font-size: 3.4rem;
    }

    .hwd-step__num {
        font-size: 3.5rem;
    }

    .hwd-step__title {
        font-size: 1.55rem;
    }

    .hwd-intro {
        font-size: 1.15rem;
    }

    .xp-hero-badges span {
        font-size: 12px;
        padding: 7px 18px;
    }

    .xp-hero-btn2 {
        font-size: 16px;
    }

    .xp-ht-logo {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .xp-ht-label {
        font-size: 11px;
    }

    .xp-ht-inner {
        padding: 18px 40px;
    }

    .xp-fl-name {
        font-size: 16px;
    }

    .xp-fl-tag {
        font-size: 12px;
    }

    .xp-bp-name {
        font-size: 24px;
    }

    .xp-bp-desc {
        font-size: 16px;
        max-width: 400px;
    }

    .xp-bp-content {
        padding: 40px;
    }

    .xp-cmd-node-name {
        font-size: 15px;
    }

    .xp-cmd-hub-desc {
        font-size: 16px;
    }

    .xp-cmd-stat-val {
        font-size: 26px;
    }

    .wwa__orb--1 {
        width: 500px;
        height: 500px;
    }

    .wwa__orb--2 {
        width: 380px;
        height: 380px;
    }

    .wwa__ring--1 {
        width: 520px;
        height: 520px;
    }

    .wwa__ring--2 {
        width: 340px;
        height: 340px;
    }
}

@media (min-width: 3440px) {
    .container {
        max-width: min(80vw, 2800px);
    }

    .wwa__container {
        padding: 6rem 10rem;
        gap: 6rem;
    }

    .wwa__heading {
        font-size: 5rem;
    }

    .wwa__lede {
        font-size: 1.35rem;
        max-width: 40rem;
    }

    .xp-sv-tag {
        font-size: 15px;
    }

    .xp-sv-desc {
        max-width: 700px;
    }

    .xp-sv-cta {
        font-size: 16px;
    }

    .jrnl {
        padding: 9rem 8rem;
    }

    .jrnl-title {
        font-size: 5rem;
    }

    .jrnl-lede {
        font-size: 1.3rem;
    }

    .jrnl-feature__title {
        font-size: 2.8rem;
    }

    .jrnl-feature__excerpt {
        font-size: 1.12rem;
    }

    .jrnl-card__title {
        font-size: 1.5rem;
    }

    .hwd-heading {
        font-size: 3.8rem;
    }

    .hwd-step__num {
        font-size: 4rem;
    }

    .hwd-step__title {
        font-size: 1.7rem;
    }

    .hwd-step__desc {
        font-size: 1.05rem;
    }

    .hwd-intro {
        font-size: 1.2rem;
    }

    .hwd-panel {
        padding: 3.5rem;
    }

    .xp-hero-badges span {
        font-size: 13px;
        padding: 8px 20px;
    }

    .xp-fl-name {
        font-size: 18px;
    }

    .xp-fl-tag {
        font-size: 13px;
    }

    .xp-bp-name {
        font-size: 28px;
    }

    .xp-bp-desc {
        font-size: 18px;
        max-width: 480px;
    }

    .xp-bp-content {
        padding: 48px;
    }

    .xp-cmd-node-name {
        font-size: 16px;
    }

    .xp-cmd-hub-desc {
        font-size: 17px;
    }

    .xp-cmd-stat-val {
        font-size: 28px;
    }

    .xp-dest-story {
        font-size: 16px;
    }

    .xp-dest-tagline {
        font-size: 18px;
    }

    .wwa__orb--1 {
        width: 600px;
        height: 600px;
    }

    .wwa__orb--2 {
        width: 460px;
        height: 460px;
    }

    .wwa__ring--1 {
        width: 640px;
        height: 640px;
    }

    .wwa__ring--2 {
        width: 420px;
        height: 420px;
    }
}