@font-face {
    font-family: 'TheaAmelia'; text-transform: none;
    src: url('assets/font/TheaAmelia.otf') format('opentype');
    font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', system-ui, sans-serif; color: #0a1f2e; background: #f8fafc; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Preview banner ───────────────────────────────────────────── */
.preview-banner {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 999;
    background: #0a1f2e;
    color: #fff;
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.preview-banner__left { display: inline-flex; align-items: center; gap: 10px; }
.preview-banner__tag {
    background: #0093a5; padding: 2px 8px; border-radius: 4px;
    font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
}
.preview-banner__right { font-size: 11px; opacity: 0.7; }

/* ── Section base ─────────────────────────────────────────────── */
/* IMPORTANT: use `overflow: clip` (not `hidden`) so that position:sticky
   on descendants still works. `hidden` creates a scroll container and
   silently breaks every sticky element inside the section. */
.section { position: relative; overflow: clip; }
@supports not (overflow: clip) {
    /* Fallback: older browsers — sticky still wins (no clipping) on the
       sample-week section; other sections keep the clip. */
    .section { overflow: hidden; }
    .week { overflow: visible; }
}
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.divider-bottom { position: absolute; left: 0; right: 0; bottom: -1px; height: clamp(40px, 6vw, 90px); pointer-events: none; z-index: 6; }
.divider-bottom svg { width: 100%; height: 100%; display: block; }
/* Hero-specific: strict, slim, full-width strip — leaves the scroll cue uncluttered above */
.divider-bottom--hero {
    height: clamp(28px, 3.2vw, 46px);
    z-index: 6;
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ═════════════════════ 01 — HERO ═════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    background: #012f3f;
    color: #fff;
    padding-top: 38px; /* preview banner offset */
}
.hero__bg { position: absolute; inset: 0; z-index: 1; background: #012f3f; }
.hero__bg video,
.hero__bg-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: 65% center;
}
.hero__bg video { display: block; }

/* Foreground djellaba surfer — parallax */
.hero__foreground {
    position: absolute; inset: 0; z-index: 4;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.1s linear;
}
.hero__foreground img {
    position: absolute; left: 0; right: 0; bottom: 0;
    width: 100%; max-height: 100vh;
    object-fit: cover; object-position: bottom center;
    display: block;
}
@media (max-width: 767px) {
    .hero__foreground img { min-height: 60vh; }
}
/* Bottom fade — keeps the foreground figure grounded without a hard edge */
.hero__bottom-fade {
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 180px; z-index: 5;
    background: linear-gradient(to bottom, transparent 0%, rgba(1,47,63,0.85) 70%, #012f3f 100%);
    pointer-events: none;
}
.hero__overlay {
    position: absolute; inset: 0; z-index: 2;
    background:
        linear-gradient(100deg,
            rgba(1,47,63,0.82) 0%,
            rgba(1,47,63,0.55) 30%,
            rgba(1,47,63,0.10) 60%,
            rgba(1,47,63,0.00) 80%),
        linear-gradient(180deg, transparent 60%, rgba(1,47,63,0.55) 100%);
    pointer-events: none;
}
.hero__inner {
    position: relative; z-index: 5;
    max-width: 1400px; margin: 0 auto;
    padding: 5rem 2rem 4.5rem;
    min-height: calc(100vh - 38px);
    display: grid; grid-template-columns: minmax(0, 1fr);
    align-items: center;
}
.hero__content { max-width: 560px; }
.hero__pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.45rem 0.95rem; border-radius: 9999px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.28);
    font-size: 0.62rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 1.2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}
.hero__pill i { color: #5eead4; font-size: 0.85em; }
.hero__eyebrow {
    font-family: 'TheaAmelia', 'Brush Script MT', cursive; text-transform: none;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    color: #5eead4;
    line-height: 1; margin-bottom: 0.3rem;
    text-shadow: 0 1px 4px rgba(1,47,63,0.45);
}
.hero__title {
    font-weight: 900; text-transform: uppercase;
    letter-spacing: -0.025em; line-height: 0.92;
    margin-bottom: 1.3rem;
}
.hero__title-l1, .hero__title-l2 {
    display: block;
    font-size: clamp(2.4rem, 6.5vw, 4.6rem);
}
/* White line keeps a small dark shadow for legibility against bright water. */
.hero__title-l1 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(1,47,63,0.55);
}
/* Teal line picks up a teal-tinted shadow that blends with the brand rather
   than fighting the blue water with a heavy black halo. */
.hero__title-l2 {
    color: #0093a5;
    margin-top: -0.06em;
    text-shadow: 0 2px 14px rgba(1,47,63,0.55), 0 0 24px rgba(0,147,165,0.25);
}
.hero__desc {
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    line-height: 1.6; max-width: 440px;
    margin-bottom: 1.8rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 3px rgba(0,0,0,0.55);
}
.hero__ctas {
    display: flex; align-items: center; gap: 1.4rem;
    flex-wrap: wrap; margin-bottom: 2.4rem;
}
.hero__price {
    position: relative;
    display: inline-flex; align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem 0.5rem 1.4rem;
    background: #fff; color: #0a1f2e;
    border-radius: 9999px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.85) inset,
        0 18px 44px -16px rgba(0,0,0,0.55),
        0 0 0 1px rgba(15,23,42,0.04);
    transition: transform 0.5s cubic-bezier(0.19,1,0.22,1),
                box-shadow 0.5s ease;
}
.hero__price::before {
    content: '';
    position: absolute; inset: -3px;
    border-radius: 9999px;
    background: linear-gradient(120deg, rgba(94,234,212,0.55), rgba(0,147,165,0.55) 50%, rgba(94,234,212,0.55));
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.5s ease;
}
.hero__price:hover {
    transform: translateY(-4px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.95) inset,
        0 28px 52px -16px rgba(0,147,165,0.55),
        0 0 0 1px rgba(0,147,165,0.18);
}
.hero__price:hover::before { opacity: 1; }

.hero__price-text {
    display: inline-flex; flex-direction: column; justify-content: center;
    line-height: 1; padding: 0.55rem 0.55rem 0.55rem 0;
}
.hero__price-from {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.58rem; letter-spacing: 0.22em;
    text-transform: uppercase; font-weight: 700;
    color: #0093a5; margin-bottom: 0.4rem;
}
.hero__price-from::before {
    content: ''; width: 14px; height: 1.5px;
    background: #0093a5; opacity: 0.7;
}
.hero__price-row { display: inline-flex; align-items: baseline; gap: 0.45rem; }
.hero__price-amount {
    font-size: 1.55rem; font-weight: 900;
    letter-spacing: -0.025em; color: #0a1f2e;
    background: linear-gradient(180deg, #0a1f2e 0%, #1e3a5f 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__price-strike {
    font-size: 0.78rem; font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: rgba(220,38,38,0.55);
    text-decoration-thickness: 1.5px;
}
.hero__price-per { font-size: 0.72rem; font-weight: 600; color: #64748b; }

.hero__price-circle {
    position: relative;
    width: 2.65rem; height: 2.65rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #0093a5 0%, #015f85 100%);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 18px -6px rgba(0,147,165,0.65),
                0 1px 0 rgba(255,255,255,0.35) inset;
    transition: transform 0.55s cubic-bezier(0.19,1,0.22,1);
}
.hero__price-circle::after {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%;
    border: 1.5px solid rgba(94,234,212,0.6);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.19,1,0.22,1);
}
.hero__price:hover .hero__price-circle {
    transform: rotate(-12deg) scale(1.05);
}
.hero__price:hover .hero__price-circle::after {
    opacity: 1; transform: scale(1);
}
.hero__price-circle i { font-size: 0.95rem; }
.hero__price-tag {
    position: absolute; top: -10px; right: 12px;
    background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
    color: #fff;
    font-size: 0.56rem; font-weight: 800;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 9999px;
    box-shadow: 0 6px 16px -6px rgba(225,29,72,0.6);
    transform: rotate(2deg);
}

/* Secondary CTA — glass-pill that mirrors the .hero__price shape so the two
   buttons read as siblings rather than a chunky primary + dangling secondary. */
.hero__secondary {
    position: relative;
    display: inline-flex; align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem 0.5rem 1.4rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    border-radius: 9999px;
    font: inherit;
    cursor: pointer;
    text-align: left;
    transition: transform 0.5s cubic-bezier(0.19,1,0.22,1),
                background 0.4s ease, border-color 0.4s ease,
                box-shadow 0.4s ease;
}
.hero__secondary:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 18px 36px -14px rgba(0,0,0,0.45);
}
.hero__secondary-text {
    display: inline-flex; flex-direction: column;
    justify-content: center;
    line-height: 1;
}
.hero__secondary-label {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.58rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: #5eead4; margin-bottom: 0.4rem;
}
.hero__secondary-label::before {
    content: ''; width: 14px; height: 1.5px;
    background: #5eead4; opacity: 0.7;
}
.hero__secondary-title {
    font-size: 1rem; font-weight: 800;
    letter-spacing: -0.01em; color: #fff;
}
.hero__secondary-circle {
    width: 2.65rem; height: 2.65rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.4s ease, transform 0.55s cubic-bezier(0.19,1,0.22,1);
}
.hero__secondary-circle i { font-size: 0.85rem; }
.hero__secondary:hover .hero__secondary-circle {
    background: rgba(94,234,212,0.18);
    transform: scale(1.06);
}

.hero__trust {
    display: flex; gap: 1.1rem; flex-wrap: wrap;
}
.hero__trust-item {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.74rem; color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}
.hero__trust-icon {
    width: 2rem; height: 2rem; border-radius: 50%;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.22);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
}
.hero__trust-divider {
    width: 1px; height: 1.5rem;
    background: rgba(255,255,255,0.18);
}
/* ── Floating rating pill (bottom-right, desktop only) ── */
.hero__reviews {
    position: absolute;
    right: clamp(1.5rem, 4vw, 3rem);
    bottom: clamp(5rem, 8vw, 6.5rem);
    z-index: 7;
    display: inline-flex; align-items: center; gap: 0.85rem;
    padding: 0.6rem 1.2rem 0.6rem 0.6rem;
    background: rgba(10,31,46,0.55);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 9999px;
    box-shadow: 0 18px 40px -14px rgba(0,0,0,0.55);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.3s ease;
}
.hero__reviews:hover {
    transform: translateY(-3px);
    background: rgba(10,31,46,0.72);
    box-shadow: 0 24px 50px -14px rgba(0,0,0,0.65);
}
.hero__reviews-badge {
    width: 2.4rem; height: 2.4rem;
    border-radius: 50%;
    background: #fff;
    color: #4285f4;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 6px 14px -4px rgba(0,0,0,0.4);
}
.hero__reviews-text {
    display: inline-flex; flex-direction: column;
    line-height: 1.1; min-width: 0;
}
.hero__reviews-top {
    display: inline-flex; align-items: baseline; gap: 0.4rem;
    margin-bottom: 0.2rem;
}
.hero__reviews-score {
    font-size: 1.05rem; font-weight: 900;
    color: #fff; letter-spacing: -0.01em;
    line-height: 1;
}
.hero__reviews-stars {
    color: #fbbf24;
    font-size: 0.74rem;
    letter-spacing: 2px;
    line-height: 1;
}
.hero__reviews-label {
    font-size: 0.66rem; font-weight: 600;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.06em;
    line-height: 1.3;
}

/* On mobile / narrow screens, the absolute card would collide with the trust row.
   Hide it — the trust badges + scroll cue already do enough work down there. */
@media (max-width: 900px) {
    .hero__reviews { display: none; }
}

.hero__scroll {
    position: absolute; left: 50%; bottom: clamp(5.5rem, 8vw, 7rem);
    transform: translateX(-50%); z-index: 7;
    display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; color: rgba(255,255,255,0.85);
}
.hero__scroll-circle {
    width: 2.4rem; height: 2.4rem; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.55);
    display: inline-flex; align-items: center; justify-content: center;
    animation: bob 2.2s ease-in-out infinite;
}
.hero__scroll-circle i { font-size: 0.8rem; color: #fff; }
.hero__scroll-label {
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.32em; text-transform: uppercase;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

@media (max-width: 767px) {
    .hero__overlay { background: linear-gradient(180deg, rgba(1,47,63,0.55) 0%, rgba(1,47,63,0.25) 35%, rgba(1,47,63,0.55) 70%, rgba(1,47,63,0.88) 100%); }

    /* Tighter overall scale so the hero fits within 100vh on most phones */
    .hero__inner { padding: 3.5rem 1.25rem 9rem; gap: 0; }
    .hero__pill { font-size: 0.58rem; padding: 0.4rem 0.85rem; margin-bottom: 0.85rem; }
    .hero__eyebrow { font-size: 1.5rem; margin-bottom: 0.2rem; text-shadow: none; }
    .hero__title { margin-bottom: 1rem; line-height: 0.94; }
    .hero__title-l1, .hero__title-l2 { font-size: clamp(2.4rem, 11vw, 3.6rem); text-shadow: none; }
    .hero__desc { font-size: 0.88rem; margin-bottom: 1.3rem; max-width: 320px; line-height: 1.55; text-shadow: none; }

    /* CTAs row stays inline on mobile; matching pills shrink slightly */
    .hero__ctas { gap: 0.7rem; margin-bottom: 1.5rem; }
    .hero__price { padding: 0.45rem 0.45rem 0.45rem 1.2rem; }
    .hero__price-amount { font-size: 1.3rem; }
    .hero__price-strike { font-size: 0.7rem; }
    .hero__price-per { font-size: 0.65rem; }
    .hero__price-circle { width: 2.4rem; height: 2.4rem; }
    .hero__price-tag { font-size: 0.5rem; padding: 0.18rem 0.5rem; top: -8px; right: 10px; }
    .hero__secondary { padding: 0.45rem 0.45rem 0.45rem 1.2rem; }
    .hero__secondary-title { font-size: 0.88rem; }
    .hero__secondary-circle { width: 2.4rem; height: 2.4rem; }
    .hero__secondary-circle i { font-size: 0.75rem; }

    /* Trust row — 3 columns with vertical dividers and circular glass icons */
    .hero__trust {
        display: flex;
        gap: 0;
        justify-content: space-between;
        align-items: stretch;
        width: 100%;
    }
    .hero__trust-item {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.55rem;
        font-size: 0.68rem;
        font-weight: 500;
        line-height: 1.25;
        padding: 0 0.35rem;
    }
    .hero__trust-icon {
        width: 2.6rem; height: 2.6rem;
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(18px) saturate(180%);
        -webkit-backdrop-filter: blur(18px) saturate(180%);
        border: 1px solid rgba(255,255,255,0.22);
        font-size: 0.85rem;
    }
    .hero__trust-divider {
        display: block !important;
        width: 1px; height: auto; min-height: 2.8rem;
        background: rgba(255,255,255,0.16);
        align-self: stretch;
    }

    /* Reviews pill hidden on mobile — trust badges + scroll cue are enough below the hero */
    .hero__reviews { display: none !important; }

    .hero__scroll { bottom: 1.25rem; }
    .hero__scroll-circle { width: 2.1rem; height: 2.1rem; }
    .hero__scroll-label { font-size: 0.55rem; }
}

/* ═════════════════════ 02 — READY (brand block — ported from live) ═════════════════════ */
.ready {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 0;
    overflow: hidden;
}
.ready__grid {
    max-width: 1400px; margin: 0 auto;
    padding: 0 2rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
}
.ready__text {
    z-index: 2;
    text-align: left;
    display: flex; flex-direction: column; align-items: flex-start;
}
.ready__eyebrow {
    font-family: 'TheaAmelia', cursive; text-transform: none;
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    color: #0093a5;
    line-height: 1;
    margin-bottom: 1rem;
}
.ready__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}
.ready__title-accent { color: #0093a5; }
.ready__desc {
    color: #64748b;
    font-size: 0.95rem; line-height: 1.7;
    max-width: 520px;
    margin: 0 0 1.8rem;
}
.ready__desc strong { color: #334155; font-weight: 600; }
.ready__chips {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    justify-content: flex-start;
    margin-bottom: 2rem;
}
.ready__chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(15,23,42,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ready__chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,147,165,0.15);
}
.ready__chip-icon {
    width: 1.55rem; height: 1.55rem; border-radius: 50%;
    background: rgba(0,147,165,0.10);
    color: #0093a5;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
}
.ready__chip-text {
    font-size: 0.7rem; font-weight: 600;
    color: #334155;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
/* Single polished pill CTA — mirrors the hero pill shape with a dark-navy
   fill so it pops against the light Ready section background. */
.ready__cta-wrap { margin-top: 0.4rem; }
.ready__cta {
    display: inline-flex; align-items: center;
    gap: 0.8rem;
    padding: 0.55rem 0.55rem 0.55rem 1.5rem;
    background: #0a1f2e;
    color: #fff;
    border-radius: 9999px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.10) inset,
        0 22px 44px -16px rgba(10,31,46,0.45);
    transition: transform 0.5s cubic-bezier(0.19,1,0.22,1),
                background 0.4s ease,
                box-shadow 0.4s ease;
}
.ready__cta:hover {
    transform: translateY(-4px);
    background: #0e2740;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.12) inset,
        0 30px 54px -16px rgba(0,147,165,0.55);
}
.ready__cta-text {
    display: inline-flex; flex-direction: column;
    line-height: 1;
}
.ready__cta-label {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.58rem; letter-spacing: 0.22em;
    text-transform: uppercase; font-weight: 700;
    color: #5eead4;
    margin-bottom: 0.45rem;
}
.ready__cta-label::before {
    content: ''; width: 14px; height: 1.5px;
    background: #5eead4; opacity: 0.7;
}
.ready__cta-title {
    font-size: 1.08rem; font-weight: 800;
    letter-spacing: -0.01em; color: #fff;
}
.ready__cta-circle {
    width: 2.85rem; height: 2.85rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #0093a5, #5eead4);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.55s cubic-bezier(0.19,1,0.22,1);
    box-shadow: 0 6px 16px -4px rgba(0,147,165,0.55);
}
.ready__cta:hover .ready__cta-circle {
    transform: rotate(-12deg) scale(1.06);
}
.ready__cta-circle i { font-size: 0.95rem; }

/* Wave bg + girl overlay — mimics the live site exactly.
   Outer wrapper is a centring flex box (preserves natural image height);
   the wave img keeps its 1:1 ratio (height auto) and the girl is absolutely
   positioned centred on top of it. */
.ready__visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ready__stage {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.ready__waves {
    width: 100%;
    height: auto;
    display: block;
}
.ready__girl-wrap {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 51%;
    max-width: 238px;
    z-index: 2;
    pointer-events: none;
    animation: readyFloat 6s ease-in-out infinite;
}
.ready__girl {
    width: 100%; height: auto; display: block;
}
@keyframes readyFloat {
    0%, 100% { transform: translate(-50%, -50%); }
    50%      { transform: translate(-50%, calc(-50% - 10px)); }
}
@media (max-width: 900px) {
    .ready__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .ready__text { text-align: center; align-items: center; }
    .ready__desc { margin: 0 auto 1.8rem; }
    .ready__chips { justify-content: center; }
    .ready__visual { order: -1; }
    .ready__stage { max-width: 320px; }
    .ready__girl-wrap { width: 42.5%; max-width: 153px; }
}

/* ═════════════════════ 02b — STORY VIDEO MODAL (lazy-loaded) ═════════════════════ */
.story-modal {
    position: fixed; inset: 0; z-index: 1100;
    background: rgba(5, 14, 22, 0);
    display: flex; align-items: center; justify-content: center;
    padding: clamp(1rem, 3vw, 2.5rem);
    transition: background 0.25s ease;
}
.story-modal[hidden] { display: none; }
.story-modal.is-open { background: rgba(5, 14, 22, 0.88); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.story-modal__frame {
    position: relative;
    width: 100%; max-width: 1100px;
    aspect-ratio: 16 / 9;
    background: #0a1f2e;
    border-radius: clamp(14px, 2vw, 22px);
    overflow: hidden;
    box-shadow: 0 40px 90px -20px rgba(0,0,0,0.6);
    transform: scale(0.96); opacity: 0;
    transition: transform 0.25s cubic-bezier(0.19,1,0.22,1), opacity 0.25s ease;
}
.story-modal.is-open .story-modal__frame { transform: scale(1); opacity: 1; }
.story-modal__player { position: absolute; inset: 0; }
.story-modal__player iframe { width: 100%; height: 100%; border: 0; display: block; }
.story-modal__close {
    position: absolute; top: clamp(0.75rem, 2vw, 1.4rem); right: clamp(0.75rem, 2vw, 1.4rem);
    width: 2.5rem; height: 2.5rem; border-radius: 50%;
    background: rgba(255,255,255,0.94); color: #0a1f2e;
    border: 0; cursor: pointer; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 24px -6px rgba(0,0,0,0.45);
    transition: transform 0.25s ease, background 0.25s ease;
}
.story-modal__close:hover { background: #fff; transform: scale(1.05); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ═════════════════════ 03b — FULL SCHEDULE MODAL ═════════════════════ */
.xp__full-cta-wrap {
    text-align: center;
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    padding: 0 1.5rem;
}
.xp__full-cta {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1rem 2rem;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.10);
    border-radius: 9999px;
    color: #0a1f2e;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    cursor: pointer;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.4s ease;
    box-shadow: 0 14px 32px -16px rgba(15,23,42,0.25);
}
.xp__full-cta:hover {
    background: #0a1f2e; color: #fff; border-color: #0a1f2e;
    transform: translateY(-3px);
    box-shadow: 0 22px 40px -16px rgba(0,147,165,0.45);
}
.xp__full-cta i { color: #0093a5; transition: color 0.35s ease, transform 0.4s ease; }
.xp__full-cta:hover i { color: #5eead4; transform: translateX(3px); }
.xp__full-cta-hint {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.72rem;
    color: #64748b;
    letter-spacing: 0.04em;
}

/* Modal overlay — z-index above navbar (nav is around 50, preloader 1000).
   Set to 99999 so the modal floats above absolutely everything on the page. */
.sched-modal-overlay {
    position: fixed; inset: 0;
    z-index: 99999;
    background: rgba(2, 14, 26, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: stretch; justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    padding: 0;
}
.sched-modal-overlay.is-open {
    display: flex;
    opacity: 1;
}
@media (min-width: 900px) {
    .sched-modal-overlay { padding: 1.5rem; }
}
body.sched-modal-locked { overflow: hidden; }

.sched-modal {
    position: relative;
    background: #fafbfc;
    width: 100%; height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.19,1,0.22,1);
    -webkit-overflow-scrolling: touch;
}
.sched-modal-overlay.is-open .sched-modal { transform: translateY(0); }
@media (min-width: 900px) {
    .sched-modal {
        max-width: 1320px;
        max-height: calc(100vh - 3rem);
        height: auto;
        border-radius: 22px;
        box-shadow: 0 40px 80px -20px rgba(0,0,0,0.55);
    }
}

.sched-modal-bar {
    position: sticky; top: 0; z-index: 4;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.4rem;
    background: rgba(250,251,252,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #e8edf1;
}
.sched-modal-title {
    display: inline-flex; align-items: center; gap: 0.8rem;
    font-size: 0.78rem; font-weight: 700;
    color: #0a1f2e;
    letter-spacing: 0.16em; text-transform: uppercase;
}
.sched-modal-title i { color: #0093a5; }
.sched-modal-title-sub {
    display: inline-block;
    margin-left: 0.6rem;
    font-size: 0.7rem; font-weight: 500;
    color: #64748b;
    letter-spacing: 0.04em;
    text-transform: none;
}
.sched-modal-close {
    width: 2.4rem; min-width: 2.4rem; max-width: 2.4rem;
    height: 2.4rem; min-height: 2.4rem; max-height: 2.4rem;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    background: #0a1f2e; color: #fff;
    border: 0;
    padding: 0;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.3s ease, transform 0.4s ease;
}
.sched-modal-close:hover { background: #0093a5; transform: rotate(90deg); }

/* ── scoped schedule styles (ported from package-schedule-v3-preview.html) ── */
.sched-modal .sched {
    position: relative;
    overflow: visible;
    background: linear-gradient(180deg, #fafbfc 0%, #f4f8fb 100%);
    padding: 3.5rem 0 4rem;
}
.sched-modal .sched__layout,
.sched-modal .sched__cards,
.sched-modal .sched__detail { overflow: visible; }
.sched-modal .sched__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}
.sched-modal .sched__eyebrow {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: #0093a5;
    margin-bottom: 0.7rem;
    padding: 5px 14px;
    background: rgba(0,147,165,0.08);
    border-radius: 9999px;
}
.sched-modal .sched__title {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #0a1f2e;
    margin-bottom: 0.8rem;
}
.sched-modal .sched__title em {
    font-style: italic;
    font-family: 'TheaAmelia', cursive; text-transform: none;
    font-weight: 400;
    color: #0093a5;
}
.sched-modal .sched__lede {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.6;
}
.sched-modal .sched__layout {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    position: relative;
}
.sched-modal .sched__layout::before {
    content: '';
    position: absolute;
    top: 12px; bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #e8edf1;
    border-radius: 999px;
}
.sched-modal .sched__progress-line {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 7%;
    background: linear-gradient(180deg, #0093a5 0%, #5eead4 100%);
    border-radius: 999px;
    transition: height 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 12px rgba(0, 147, 165, 0.35);
}
.sched-modal .sched__progress-line::after {
    content: '';
    position: absolute;
    bottom: -7px; left: -7px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #5eead4;
    box-shadow:
        0 0 0 4px rgba(94, 234, 212, 0.18),
        0 0 16px rgba(94, 234, 212, 0.6);
}
.sched-modal .sched__cards {
    display: flex; flex-direction: column;
    gap: 4rem;
    padding-right: 2rem;
    position: relative;
}
.sched-modal .sched__card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 8px 22px -12px rgba(15,23,42,0.12);
    border: 1px solid #e8edf1;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s ease, border-color 0.4s ease;
}
.sched-modal .sched__card.is-active {
    box-shadow: 0 2px 4px rgba(15,23,42,0.04), 0 22px 50px -22px rgba(15,23,42,0.22);
    border-color: rgba(0, 147, 165, 0.25);
    transform: translateY(-2px);
}
.sched-modal .sched__card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8edf1;
    border-radius: 20px 20px 0 0;
}
.sched-modal .sched__card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 6s ease-out;
}
.sched-modal .sched__card.is-active .sched__card-img img { transform: scale(1.08); }
.sched-modal .sched__card-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(2,14,26,0.45) 100%);
    pointer-events: none;
}
.sched-modal .sched__card-pill {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 13px;
    background: #fff;
    border-radius: 9999px;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: #0093a5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.sched-modal .sched__card-body { padding: 1.2rem 1.4rem 1.4rem; }
.sched-modal .sched__card-meta {
    font-size: 0.66rem; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: #94a3b8; margin-bottom: 0.35rem;
}
.sched-modal .sched__card-title {
    font-size: 1.15rem; font-weight: 700;
    color: #0a1f2e; letter-spacing: -0.01em;
}
.sched-modal .sched__detail { padding-left: 2rem; }
.sched-modal .sched__detail-pin {
    position: sticky;
    top: 5.5rem;
    align-self: start;
    background: transparent;
    padding: 0;
    min-height: 460px;
}
.sched-modal .sched__detail-bg-letter {
    position: absolute;
    top: -2.5rem; right: -1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 9rem;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: #0093a5;
    opacity: 0.045;
    user-select: none;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.sched-modal .sched__detail-num {
    font-family: 'TheaAmelia', cursive; text-transform: none;
    font-size: 1.4rem; color: #94a3b8;
    line-height: 1; margin-bottom: 0.6rem;
}
.sched-modal .sched__detail-bar {
    display: flex; align-items: center; gap: 0.6rem;
    margin-bottom: 1.5rem; max-width: 240px;
}
.sched-modal .sched__detail-bar-track {
    flex: 1; height: 2px;
    background: #e8edf1;
    border-radius: 999px;
    overflow: hidden; position: relative;
}
.sched-modal .sched__detail-bar-fill {
    height: 100%; width: 14%;
    background: linear-gradient(90deg, #0093a5, #5eead4);
    border-radius: 999px;
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.sched-modal .sched__detail-bar-pct {
    font-size: 0.7rem; font-weight: 600;
    color: #64748b; min-width: 30px;
}
.sched-modal .sched__detail-day {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: #0093a5; margin-bottom: 0.6rem;
}
.sched-modal .sched__detail-title {
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    font-weight: 800; color: #0a1f2e;
    line-height: 1.05; letter-spacing: -0.025em;
    margin-bottom: 0.9rem;
    transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}
.sched-modal .sched__detail-desc {
    font-size: 0.95rem; color: #64748b;
    line-height: 1.7; margin-bottom: 1.6rem;
    max-width: 460px;
    transition: opacity 0.35s ease;
    position: relative;
}
.sched-modal .sched__detail-acts {
    list-style: none;
    border-left: 1.5px solid #e8edf1;
    padding-left: 1.5rem;
    transition: opacity 0.35s ease;
    position: relative;
}
.sched-modal .sched__detail-acts li {
    position: relative;
    padding: 0.6rem 0;
    font-size: 0.9rem; color: #1e293b;
    line-height: 1.4;
}
.sched-modal .sched__detail-acts li::before {
    content: '';
    position: absolute;
    left: -1.83rem; top: 0.9rem;
    width: 11px; height: 11px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0093a5;
    box-shadow: 0 0 0 3px rgba(0,147,165,0.08);
}
.sched-modal .sched__detail-acts li b {
    color: #0a1f2e; font-weight: 600; margin-right: 4px;
}
.sched-modal .sched__note {
    margin: 3.5rem auto 0;
    max-width: 720px;
    padding: 1.1rem 1.4rem;
    background: rgba(0,147,165,0.08);
    border-left: 3px solid #0093a5;
    border-radius: 12px;
    color: #1e293b;
    font-size: 0.85rem; line-height: 1.6;
}
.sched-modal .sched__note b { color: #0a1f2e; font-weight: 600; }
.sched-modal .sched__card-mobile-detail { display: none; }
@media (max-width: 900px) {
    .sched-modal .sched__layout {
        grid-template-columns: 1fr; gap: 0;
        padding-left: 3rem; padding-right: 1.25rem;
    }
    .sched-modal .sched__layout::before,
    .sched-modal .sched__progress-line {
        left: 0.6rem; transform: none;
    }
    .sched-modal .sched__cards { padding-right: 0; gap: 2.5rem; }
    .sched-modal .sched__detail { display: none; }
    .sched-modal .sched__card-mobile-detail {
        display: block; padding: 0 1.4rem 1.4rem;
    }
    .sched-modal .sched__card-mobile-detail p {
        font-size: 0.85rem; color: #64748b; margin-bottom: 0.8rem;
    }
    .sched-modal .sched__card-mobile-detail ul {
        list-style: none; border-top: 1px solid #e8edf1; padding-top: 0.75rem;
    }
    .sched-modal .sched__card-mobile-detail li {
        font-size: 0.8rem; color: #1e293b; padding: 0.25rem 0;
    }
    .sched-modal .sched__card-mobile-detail li b {
        color: #0093a5; margin-right: 6px; font-weight: 600;
    }
}

/* ═════════════════════ 03 — TODAY AT NOMAD (live, day-aware) ═════════════════════ */
.xp__today-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    background: rgba(34,197,94,0.10);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 9999px;
    color: #15803d;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
}
.xp__today-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
    animation: xpLivePulse 2s ease-in-out infinite;
}
@keyframes xpLivePulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.xp__today-time {
    font-size: 0.78rem; color: #475569;
    font-weight: 600; letter-spacing: 0.02em;
    margin-top: -0.4rem;
    margin-bottom: 0.6rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.xp__today-time b { color: #0a1f2e; font-weight: 700; }
.xp__card--now {
    box-shadow: 0 0 0 3px #22c55e, 0 22px 50px -22px rgba(34,197,94,0.35);
}
.xp__card-live-badge {
    position: absolute; top: 1.1rem; right: 1.1rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    background: #22c55e;
    color: #fff;
    border-radius: 9999px;
    font-size: 0.6rem; font-weight: 800;
    letter-spacing: 0.18em; text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 8px 18px -4px rgba(34,197,94,0.6);
}
.xp__card-live-badge .xp__today-dot { background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
@keyframes xpLivePulseWhite {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.xp__card-live-badge .xp__today-dot { animation-name: xpLivePulseWhite; }

/* ═════════════════════ 03 — EXPERIENCE (sticky activities) ═════════════════════ */
.xp {
    background:
        radial-gradient(900px circle at 0% 0%, rgba(0,147,165,0.06), transparent 60%),
        radial-gradient(900px circle at 100% 100%, rgba(94,234,212,0.06), transparent 60%),
        #ffffff;
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
    position: relative;
}
.xp__header {
    max-width: 720px;
    padding: 0 2rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.xp__eyebrow {
    font-family: 'TheaAmelia', cursive; text-transform: none;
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    color: #0093a5;
    margin-bottom: 0.3rem;
    line-height: 1;
}
.xp__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #0a1f2e;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.xp__title em {
    font-style: italic; font-family: 'TheaAmelia', cursive; text-transform: none;
    font-weight: 400; text-transform: none;
    color: #0093a5;
}
.xp__lede {
    font-size: 1rem; color: #475569;
    max-width: 540px; line-height: 1.7;
}
.xp__grid {
    max-width: 1400px; margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
}
/* CRITICAL: the parent .xp section inherits overflow: clip from .section.
   That works in modern browsers but breaks sticky on Safari + any browser
   that falls back to overflow: hidden. Force visible here. */
/* CRITICAL: overflow MUST stay visible on every ancestor of position:sticky elements.
   The site-wide style.css used to set body,html { overflow-x: hidden } which silently broke
   every sticky on the site. We belt-and-braces here so the fix is page-level too. */
html, body { overflow-x: clip !important; }
@supports not (overflow-x: clip) { html, body { overflow-x: hidden; } }
#main-content,
.xp.section,
.xp__grid,
.xp__list,
.sched-modal .sched,
.sched-modal .sched__layout,
.sched-modal .sched__cards,
.sched-modal .sched__detail { overflow: visible !important; }

.xp__pin {
    position: sticky;
    top: 7rem;
    align-self: start;
}
.xp__pin-step {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: #0093a5;
    margin-bottom: 0.9rem;
}
.xp__pin-step::before {
    content: ''; width: 22px; height: 1.5px;
    background: #0093a5; opacity: 0.6;
}
.xp__pin-counter {
    font-family: 'TheaAmelia', cursive; text-transform: none;
    font-size: 1.55rem; color: #94a3b8;
    line-height: 1; margin-left: 0.4rem;
    letter-spacing: 0.02em;
}
.xp__pin-progress {
    height: 2px; background: #e2e8f0;
    border-radius: 999px; overflow: hidden;
    margin-bottom: 1.6rem; max-width: 220px;
}
.xp__pin-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0093a5, #5eead4);
    width: 14%;
    transition: width 0.6s cubic-bezier(0.19,1,0.22,1);
}
.xp__pin-title {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 800; color: #0a1f2e;
    line-height: 1.1; letter-spacing: -0.02em;
    margin-bottom: 1rem;
    min-height: 5rem;
    transition: opacity 0.3s ease;
}
.xp__pin-body {
    font-size: 0.95rem; color: #475569;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-width: 440px;
    min-height: 5rem;
    transition: opacity 0.3s ease;
}
.xp__pin-meta {
    display: inline-flex; align-items: center; gap: 0.55rem;
    padding: 0.45rem 0.95rem;
    background: rgba(0,147,165,0.10);
    border-radius: 9999px;
    color: #0093a5;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    transition: opacity 0.3s ease;
}
.xp__pin-meta i { font-size: 0.8em; }
.xp__list {
    display: flex; flex-direction: column;
    gap: clamp(1.2rem, 2.5vw, 2.2rem);
}
.xp__card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: clamp(300px, 40vw, 480px);
    box-shadow: 0 22px 50px -22px rgba(15,23,42,0.35);
    transition: transform 0.6s cubic-bezier(0.19,1,0.22,1), box-shadow 0.6s ease;
}
.xp__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -22px rgba(15,23,42,0.45);
}
.xp__card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 6s ease-out;
}
.xp__card.is-in img { transform: scale(1.08); }
.xp__card-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 30%, rgba(0,0,0,0.70) 100%);
    pointer-events: none;
}
.xp__card-eyebrow {
    position: absolute; top: 1.1rem; left: 1.1rem;
    padding: 0.4rem 0.85rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: #0a1f2e;
}
.xp__card-eyebrow i { margin-right: 0.45rem; color: #0093a5; }
.xp__card-label {
    position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.65);
}
.xp__card-label-title {
    font-size: 1.25rem; font-weight: 800;
    line-height: 1.2; margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}
.xp__card-label-sub {
    font-size: 0.8rem; font-weight: 500; opacity: 0.92;
}
@media (max-width: 900px) {
    .xp__grid { grid-template-columns: 1fr; }
    .xp__pin { position: static; margin-bottom: 1.2rem; }
}

/* ═════════════════════ 04 — REVIEWS (trust block + dual marquee) ═════════════════════ */
.rev {
    background:
        radial-gradient(900px circle at 0% 0%, rgba(0,147,165,0.05), transparent 60%),
        radial-gradient(900px circle at 100% 100%, rgba(94,234,212,0.05), transparent 60%),
        #fbf8f3;
    color: #0f172a;
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6.5rem);
    position: relative;
    overflow: hidden;
}
.rev__inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}
.rev__head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    max-width: 580px; margin-left: auto; margin-right: auto;
}
.rev__eyebrow {
    font-family: 'TheaAmelia', cursive; text-transform: none;
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    color: #0093a5;
    line-height: 1; margin-bottom: 0.4rem;
}
.rev__title {
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    font-weight: 900;
    line-height: 1; letter-spacing: -0.025em;
    color: #0f172a;
    text-transform: uppercase;
}
.rev__title em {
    font-style: italic; font-family: 'TheaAmelia', cursive; text-transform: none;
    font-weight: 400; text-transform: none;
    color: #0093a5;
}

/* TRUST BLOCK — big score + per-platform breakdown */
.rev__trust {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.6fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 24px;
    padding: clamp(1.6rem, 3.5vw, 2.6rem) clamp(1.6rem, 3.5vw, 2.8rem);
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    box-shadow: 0 1px 0 rgba(15,23,42,0.03), 0 22px 50px -28px rgba(15,23,42,0.18);
}
.rev__trust-score {
    display: flex; align-items: flex-start; gap: 1.4rem;
}
.rev__trust-num {
    font-size: clamp(3.6rem, 7vw, 5.4rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.04em;
    line-height: 0.85;
}
.rev__trust-detail {
    display: flex; flex-direction: column;
    padding-top: 0.3rem;
}
.rev__trust-out {
    font-size: 0.85rem; font-weight: 600;
    color: #94a3b8; margin-bottom: 0.4rem;
}
.rev__trust-stars {
    color: #f59e0b; font-size: 1.05rem;
    letter-spacing: 4px;
    margin-bottom: 0.7rem;
}
.rev__trust-meta {
    font-size: 0.82rem; color: #475569;
    font-weight: 500; line-height: 1.5;
}
.rev__trust-meta b { color: #0f172a; font-weight: 700; }
.rev__trust-platforms {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    border-left: 1px solid rgba(15,23,42,0.08);
    padding-left: clamp(1.5rem, 3vw, 3rem);
}
.rev__plat {
    display: flex; flex-direction: column;
    gap: 0.45rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.19,1,0.22,1);
}
.rev__plat:hover { transform: translateY(-3px); }
.rev__plat-logo {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-size: 0.9rem; font-weight: 700;
    color: #0f172a;
}
.rev__plat-logo i {
    font-size: 1.15rem;
    width: 1.7rem; height: 1.7rem;
    border-radius: 50%;
    background: #f8fafc;
    display: inline-flex; align-items: center; justify-content: center;
}
.rev__plat--google .rev__plat-logo i { color: #4285f4; }
.rev__plat--tripadvisor .rev__plat-logo i { color: #00aa6c; }
.rev__plat--airbnb .rev__plat-logo i { color: #ff385c; }
.rev__plat-score {
    display: inline-flex; align-items: baseline; gap: 0.35rem;
    font-size: 1.5rem; font-weight: 900; color: #0f172a;
    letter-spacing: -0.02em; line-height: 1;
}
.rev__plat-score-stars {
    color: #f59e0b; font-size: 0.72rem; letter-spacing: 2px;
}
.rev__plat-count {
    font-size: 0.72rem; color: #64748b;
    font-weight: 500;
}
.rev__plat-count b { color: #0f172a; font-weight: 700; }

@media (max-width: 880px) {
    .rev__trust { grid-template-columns: 1fr; gap: 1.5rem; }
    .rev__trust-platforms {
        border-left: none; padding-left: 0;
        padding-top: 1.4rem;
        border-top: 1px solid rgba(15,23,42,0.08);
        grid-template-columns: 1fr; gap: 1rem;
    }
    .rev__plat { flex-direction: row; align-items: center; gap: 1rem; flex-wrap: wrap; }
    .rev__plat-logo { min-width: 130px; }
}

/* DUAL MARQUEE — two rows, opposite directions, infinite */
.rev__marquee-wrap {
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    padding: 0.5rem 0;
}
.rev__marquee-wrap::before,
.rev__marquee-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: clamp(40px, 8vw, 120px);
    z-index: 3; pointer-events: none;
}
.rev__marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fbf8f3 0%, rgba(251,248,243,0) 100%);
}
.rev__marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fbf8f3 0%, rgba(251,248,243,0) 100%);
}
.rev__marquee {
    display: flex; gap: 1.2rem;
    width: max-content;
    padding: 0.5rem 0;
    animation: revMarquee 60s linear infinite;
}
.rev__marquee--reverse { animation-direction: reverse; animation-duration: 70s; }
.rev__marquee:hover { animation-play-state: paused; }
@keyframes revMarquee {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

/* Review ticket — clean, typographic, no photos */
.rev__ticket {
    flex-shrink: 0;
    width: clamp(280px, 30vw, 360px);
    background: #fff;
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 16px;
    padding: 1.4rem 1.5rem;
    display: flex; flex-direction: column; gap: 0.85rem;
    box-shadow: 0 1px 0 rgba(15,23,42,0.03), 0 14px 28px -20px rgba(15,23,42,0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.rev__ticket:hover {
    transform: translateY(-4px);
    box-shadow: 0 1px 0 rgba(15,23,42,0.05), 0 22px 40px -20px rgba(15,23,42,0.25);
}
.rev__ticket-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.8rem;
}
.rev__ticket-stars {
    color: #f59e0b;
    font-size: 0.92rem; letter-spacing: 3px;
}
.rev__ticket-source {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #64748b;
}
.rev__ticket-source i { font-size: 0.95em; }
.rev__ticket-source--google i { color: #4285f4; }
.rev__ticket-source--tripadvisor i { color: #00aa6c; }
.rev__ticket-source--airbnb i { color: #ff385c; }
.rev__ticket-quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #334155;
    flex: 1;
    /* clamp to keep card heights uniform */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rev__ticket-author {
    display: flex; align-items: center; gap: 0.7rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(15,23,42,0.06);
}
.rev__ticket-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    color: #fff; font-weight: 800;
    font-size: 0.85rem;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.rev__ticket-meta {
    display: flex; flex-direction: column; min-width: 0;
}
.rev__ticket-name {
    font-size: 0.85rem; font-weight: 700;
    color: #0f172a; line-height: 1.2;
}
.rev__ticket-sub {
    font-size: 0.7rem; color: #94a3b8;
    font-weight: 500; margin-top: 0.15rem;
}

/* Footer CTA */
.rev__footer {
    margin-top: clamp(2rem, 4vw, 3rem);
    text-align: center;
}
.rev__footer-cta {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.10);
    border-radius: 9999px;
    color: #0f172a;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, transform 0.35s ease, border-color 0.3s ease;
}
.rev__footer-cta:hover {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
    transform: translateY(-2px);
}
.rev__footer-cta i { color: #4285f4; }
.rev__footer-cta:hover i { color: #5eead4; }

/* — keep .week styles below removed — */
.week {
    display: none;
}
.week__header {
    text-align: left;
    max-width: 720px;
    padding: 0 2rem;
    margin-bottom: 3rem;
}
.week__eyebrow {
    font-family: 'TheaAmelia', cursive; text-transform: none;
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    color: #0093a5;
    margin-bottom: 0.3rem;
    line-height: 1;
}
.week__title {
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    font-weight: 900;
    color: #0a1f2e;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}
.week__title em {
    font-style: italic; font-family: 'TheaAmelia', cursive; text-transform: none;
    font-weight: 400; text-transform: none;
    color: #0093a5;
}
.week__lede {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: #475569;
    max-width: 540px;
}

.week__grid {
    max-width: 1400px; margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
}

.week__pin {
    position: sticky;
    top: 8rem;
    align-self: start;
}
.week__pin-num {
    font-family: 'TheaAmelia', cursive; text-transform: none;
    font-size: 1.6rem;
    color: #94a3b8;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 0.8rem;
}
.week__pin-progress {
    height: 2px; background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden; margin-bottom: 1.6rem;
    max-width: 200px;
}
.week__pin-progress-fill {
    height: 100%; background: linear-gradient(90deg, #0093a5, #5eead4);
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    width: 14%;
}
.week__pin-title {
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 800;
    color: #0a1f2e;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    min-height: 5rem;
    transition: opacity 0.3s ease;
}
.week__pin-body {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    max-width: 440px;
    min-height: 5rem;
    transition: opacity 0.3s ease;
}
.week__pin-meta {
    display: inline-flex; align-items: center; gap: 0.55rem;
    padding: 0.4rem 0.85rem;
    background: rgba(0,147,165,0.10);
    border-radius: 9999px;
    color: #0093a5;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}
.week__pin-meta i { font-size: 0.8em; }

.week__days {
    display: flex; flex-direction: column;
    gap: clamp(1.2rem, 2.5vw, 2.2rem);
}
.week__day {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: clamp(280px, 38vw, 460px);
    box-shadow: 0 18px 40px -20px rgba(15,23,42,0.35);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s ease;
}
.week__day:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 54px -20px rgba(15,23,42,0.45);
}
.week__day img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 6s ease-out;
}
.week__day.is-in img {
    /* Ken Burns slow zoom while in view */
    transform: scale(1.08);
}
.week__day-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}
.week__day-eyebrow {
    position: absolute; top: 1.1rem; left: 1.1rem;
    padding: 0.35rem 0.8rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #0a1f2e;
}
.week__day-label {
    position: absolute; left: 1.1rem; bottom: 1.1rem; right: 1.1rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.65);
}
.week__day-label-title {
    font-size: 1.1rem; font-weight: 700; line-height: 1.2;
    margin-bottom: 0.25rem;
}
.week__day-label-sub {
    font-size: 0.75rem; font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .week__grid { grid-template-columns: 1fr; }
    .week__pin { position: static; margin-bottom: 1rem; }
}

/* ═════════════════════ 03 — REAL STORIES ═════════════════════ */
.stories {
    background: linear-gradient(180deg, #020e1a 0%, #0a1f2e 60%, #0a2a3e 100%);
    color: #fff;
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 6vw, 6rem);
    position: relative;
}
.stories__bg-glow-1, .stories__bg-glow-2 {
    position: absolute; pointer-events: none; border-radius: 50%; filter: blur(80px);
}
.stories__bg-glow-1 {
    top: 10%; left: -10%; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,147,165,0.20) 0%, transparent 70%);
}
.stories__bg-glow-2 {
    bottom: 5%; right: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(94,234,212,0.12) 0%, transparent 70%);
}

.stories__inner {
    max-width: 1100px; margin: 0 auto;
    padding: 0 2rem; position: relative;
}
.stories__header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}
.stories__rating {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.55rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 9999px;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}
.stories__rating-stars {
    color: #5eead4;
    letter-spacing: 2px;
    font-size: 0.9rem;
}
.stories__rating b { font-weight: 700; }
.stories__rating span { opacity: 0.65; }
.stories__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.stories__title em {
    font-family: 'TheaAmelia', cursive; text-transform: none;
    font-style: normal;
    font-weight: 400;
    color: #5eead4;
    text-transform: none;
}
.stories__lede {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin: 0 auto;
}

.stories__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.2rem, 2vw, 1.8rem);
}
.story {
    position: relative;
    padding: 2rem 1.6rem 1.6rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    display: flex; flex-direction: column;
}
.story__quote-mark {
    position: absolute; top: -10px; left: 18px;
    font-family: serif;
    font-size: 3rem;
    line-height: 1;
    color: #5eead4;
    opacity: 0.6;
}
.story__quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
    margin-bottom: 1.3rem;
    flex: 1;
}
.story__meta {
    display: flex; align-items: center; gap: 0.8rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.story__avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #0093a5 0%, #5eead4 100%);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.story__author {
    flex: 1; min-width: 0;
}
.story__author-name {
    font-size: 0.88rem; font-weight: 600;
    color: #fff; margin-bottom: 0.15rem;
}
.story__author-meta {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
}
.story__via {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    background: rgba(94,234,212,0.10);
    border: 1px solid rgba(94,234,212,0.15);
    border-radius: 6px;
    color: #5eead4;
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.story__via i { font-size: 0.75em; }

/* ═════════════════════ 04 — PACKAGES (live 3D carousel) ═════════════════════ */
.pkgs {
    background: #0a1628;
    padding: clamp(5rem, 9vw, 7rem) 0 clamp(4rem, 6vw, 6rem);
    position: relative;
    overflow: hidden;
}
.pkgs__head { text-align: center; max-width: 620px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); padding: 0 1.5rem; }
.pkgs__eyebrow {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: #0093a5;
    margin-bottom: 0.9rem;
}
.pkgs__title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}
.pkgs__lede {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

#nomad-carousel-viewport {
    position: relative;
    height: 560px;
    perspective: 1200px;
    overflow: visible;
    width: 100%;
}
#nomad-carousel-track {
    position: absolute;
    width: 100%; height: 100%;
    transform-style: preserve-3d;
}

.ncarousel-card {
    position: absolute;
    width: 380px;
    height: 520px;
    border-radius: 28px;
    overflow: hidden;
    backface-visibility: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    background: #0d1f3c;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.ncard-badge {
    position: absolute; top: 14px; left: 14px;
    background: #0093a5;
    color: #fff;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}
.ncard-off-badge {
    position: absolute; top: 12px; right: 12px;
    background: #fff; color: #0f172a;
    padding: 5px 13px;
    border-radius: 100px;
    font-size: 11px; font-weight: 800;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.ncard-features-scroll::-webkit-scrollbar { width: 4px; }
.ncard-features-scroll::-webkit-scrollbar-track { background: transparent; }
.ncard-features-scroll::-webkit-scrollbar-thumb { background: rgba(0,147,165,0.4); border-radius: 2px; }
.ncard-features-scroll::-webkit-scrollbar-thumb:hover { background: rgba(0,147,165,0.7); }
.ncard-book-btn {
    transition: background 0.2s, transform 0.2s;
}
.ncard-book-btn:hover {
    background: #007a8c !important;
    transform: scale(1.05);
}

.pkgs__nav {
    display: flex; align-items: center; justify-content: center;
    gap: 24px; margin-top: 48px; padding: 0 24px;
}
.ncarousel-arrow {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
.ncarousel-arrow:hover {
    background: #0093a5;
    border-color: #0093a5;
}
#nomad-carousel-dots { display: flex; gap: 8px; }
.ncarousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s; cursor: pointer;
}
.ncarousel-dot-active {
    background: #0093a5 !important;
    width: 28px !important;
    border-radius: 4px !important;
}
.pkgs__cta-wrap { text-align: center; margin-top: 40px; }
.pkgs__cta-all {
    display: inline-block;
    padding: 14px 44px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.pkgs__cta-all:hover {
    background: #0093a5;
    border-color: #0093a5;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .ncarousel-card { width: 300px; height: 480px; }
    #nomad-carousel-viewport { height: 520px !important; }
}

/* ═════════════════════ 06 — FINAL CTA ═════════════════════ */
.cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: clamp(5rem, 10vw, 9rem) 2rem;
    text-align: center;
    background: #0a1f2e;
}
.cta__bg { position: absolute; inset: 0; z-index: 1; }
.cta__bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 35%;
    opacity: 0.55;
}
.cta__bg-grade {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,31,46,0.7) 0%, rgba(10,31,46,0.55) 40%, rgba(10,31,46,0.9) 100%),
        radial-gradient(ellipse at 50% 20%, rgba(94,234,212,0.18) 0%, transparent 65%);
}
.cta__inner {
    position: relative; z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}
.cta__eyebrow {
    font-family: 'TheaAmelia', cursive; text-transform: none;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #5eead4;
    line-height: 1;
    margin-bottom: 0.7rem;
}
.cta__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}
.cta__title-accent { color: #5eead4; }
.cta__lede {
    font-size: 1.05rem; line-height: 1.7;
    color: rgba(255,255,255,0.82);
    max-width: 560px; margin: 0 auto 2.4rem;
}
.cta__lede b { color: #fff; font-weight: 700; }
.cta__ctas {
    display: flex; align-items: center; justify-content: center;
    gap: 1.4rem; flex-wrap: wrap;
}
.cta__primary {
    position: relative;
    display: inline-flex; align-items: center; gap: 0.55rem;
    padding: 0.6rem 0.6rem 0.6rem 1.6rem;
    background: #fff;
    color: #0a1f2e;
    border-radius: 9999px;
    box-shadow: 0 28px 60px -22px rgba(0,0,0,0.55);
    transition: transform 0.45s cubic-bezier(0.19,1,0.22,1), box-shadow 0.45s ease;
}
.cta__primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 36px 70px -22px rgba(94,234,212,0.5);
}
.cta__primary-text {
    display: inline-flex; flex-direction: column;
    align-items: flex-start; justify-content: center;
    line-height: 1;
}
.cta__primary-from {
    font-size: 0.58rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: #0093a5; margin-bottom: 0.4rem;
}
.cta__primary-row { display: inline-flex; align-items: baseline; gap: 0.4rem; }
.cta__primary-amount {
    font-size: 1.85rem; font-weight: 900;
    letter-spacing: -0.02em; color: #0a1f2e;
}
.cta__primary-strike {
    font-size: 0.78rem; font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: rgba(220,38,38,0.55);
    text-decoration-thickness: 1.5px;
}
.cta__primary-per { font-size: 0.78rem; font-weight: 600; color: #64748b; }
.cta__primary-circle {
    width: 3.2rem; height: 3.2rem; border-radius: 50%;
    background: linear-gradient(135deg, #0093a5 0%, #015f85 100%);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.19,1,0.22,1);
    box-shadow: 0 6px 18px -4px rgba(0,147,165,0.6);
}
.cta__primary:hover .cta__primary-circle { transform: rotate(-12deg) scale(1.06); }
.cta__primary-circle i { font-size: 1.05rem; }

.cta__whatsapp {
    display: inline-flex; align-items: center; gap: 0.85rem;
    padding: 0.55rem 1.4rem 0.55rem 0.6rem;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 9999px;
    color: #fff;
    transition: background 0.3s ease, transform 0.35s ease, border-color 0.3s ease;
}
.cta__whatsapp:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(94,234,212,0.45);
    transform: translateY(-3px);
}
.cta__whatsapp-circle {
    width: 2.8rem; height: 2.8rem; border-radius: 50%;
    background: #25d366;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.05rem;
    flex-shrink: 0;
}
.cta__whatsapp-text {
    display: inline-flex; flex-direction: column;
    align-items: flex-start; line-height: 1.2;
}
.cta__whatsapp-label {
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.02em;
}
.cta__whatsapp-sub {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.08em;
    margin-top: 0.15rem;
}
.cta__reassure {
    margin-top: 1.8rem;
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.78);
}
.cta__reassure i { color: #5eead4; font-size: 0.85em; }

/* ═════════════════════ Footer ═════════════════════ */
.footer-mini {
    background: #020e1a; color: rgba(255,255,255,0.6);
    padding: 2.2rem 2rem;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}
.footer-mini b { color: #fff; font-weight: 600; }
.footer-mini__line2 { margin-top: 0.4rem; font-size: 0.7rem; opacity: 0.65; }

@media (prefers-reduced-motion: reduce) {
    .hero__scroll-circle, .week__day, .ncarousel-card, .hero__price-circle, .reveal, .week__day img {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
    .reveal { opacity: 1 !important; }
}
