/* Wanderlust Luxury Design System */
:root {
    --navy: #071B2F;
    --navy-light: #0C2A45;
    --midnight: #030F1A;
    --gold: #C8A96A;
    --gold-luxury: #C5A059;
    --gold-light: #E8D5A8;
    --gold-hover: #EADCB9;
    --alabaster: #FAFAF8;
    --text: #1A1A1A;
    --text-muted: #5C6670;
    --bg: #FFFFFF;
    --bg-soft: #F7F8FA;
    --glass: rgba(255, 255, 255, 0.72);
    --glass-dark: rgba(7, 27, 47, 0.85);
    --radius: 20px;
    --shadow-soft: 0 8px 40px rgba(7, 27, 47, 0.08);
    --shadow-luxury: 0 24px 80px rgba(7, 27, 47, 0.14);
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
    --text: #F5F5F5;
    --text-muted: #A8B0B8;
    --bg: #051220;
    --bg-soft: #0A1E32;
    --glass: rgba(10, 30, 50, 0.78);
    --shadow-soft: 0 8px 40px rgba(0, 0, 0, 0.35);
}

html { scroll-behavior: smooth; }

body.luxury-site {
    background: var(--bg);
    color: var(--text);
    transition: background 0.3s ease, color 0.3s ease;
}

.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.btn-luxury-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold) 0%, #B89450 100%);
    color: var(--navy);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 8px 24px rgba(200, 169, 106, 0.35);
}

.btn-luxury-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 169, 106, 0.45);
}

.btn-luxury-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}

.btn-luxury-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--gold);
}

.luxury-nav { transition: all var(--transition); }

.luxury-nav.is-scrolled {
    background: var(--glass-dark) !important;
    backdrop-filter: blur(16px);
    border-color: rgba(200, 169, 106, 0.12) !important;
    box-shadow: var(--shadow-soft);
}

.hero-cinematic {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

.hero-cinematic video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cinematic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,27,47,0.35) 0%, rgba(7,27,47,0.55) 45%, rgba(7,27,47,0.92) 100%);
}

.hero-cinematic-content { position: relative; z-index: 2; }

/* ─── Cinematic Hero Search Bar (high-contrast alabaster on video) ─── */
.hero-glass-panel {
    background: rgba(250, 250, 248, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 1rem;
    box-shadow: 0 24px 64px rgba(3, 15, 26, 0.28);
}

.hero-search-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #030F1A;
}

.hero-search-input,
.hero-search-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0.75rem;
    border: 1px solid #d6d3d1;
    background: #ffffff;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #030F1A;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-search-input::placeholder {
    color: #78716c;
}

.hero-search-select {
    padding-right: 2.5rem;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23030F1A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    cursor: pointer;
    color: #030F1A;
}

.hero-search-select option {
    background: #ffffff;
    color: #030F1A;
}

.hero-search-input:focus,
.hero-search-select:focus {
    border-color: #C5A059;
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.28);
}

.hero-search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3rem;
    border-radius: 0.75rem;
    border: 1px solid #030F1A;
    background: #030F1A;
    padding: 0.875rem 1.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C5A059;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-search-submit:hover {
    background: #0C2A45;
    border-color: #C5A059;
    color: #EADCB9;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(3, 15, 26, 0.35);
}

/* ─── Light editorial cards (destinations, blog) — never theme-flip ─── */
.luxury-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--alabaster);
    border: 1px solid rgba(7, 27, 47, 0.06);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

.luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-luxury);
}

.luxury-card img { transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.luxury-card:hover img { transform: scale(1.06); }

/* Midnight package card — solid dark, forced readable typography */
.pkg-luxury-card,
.pkg-luxury {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(197, 160, 89, 0.22);
    background: #030F1A;
    box-shadow: 0 8px 40px rgba(3, 15, 26, 0.2);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.35s ease;
    color: #ffffff;
}

.pkg-luxury-card:hover,
.pkg-luxury:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: 0 24px 80px rgba(3, 15, 26, 0.4);
}

.pkg-luxury-card__media {
    position: relative;
    z-index: 1;
}

.pkg-luxury-card__body {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.pkg-luxury-card__meta {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C5A059;
}

.pkg-luxury-card__title {
    margin-top: 0.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
}

.pkg-luxury-card__duration {
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    color: #a8a29e;
}

.pkg-luxury-card__price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
}

.pkg-luxury-card__price-old {
    font-size: 0.75rem;
    color: #78716c;
    text-decoration: line-through;
}

.pkg-luxury-card__price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #C5A059;
}

.pkg-luxury-card__price-unit {
    font-size: 0.6875rem;
    color: #a8a29e;
}

.pkg-luxury-card__token {
    margin-top: 0.375rem;
    font-size: 0.6875rem;
    color: #a8a29e;
}

.pkg-luxury-card__token strong {
    color: #C5A059;
    font-weight: 600;
}

.pkg-luxury-card__media img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pkg-luxury-card:hover .pkg-luxury-card__media img,
.pkg-luxury:hover .pkg-luxury-card__media img {
    transform: scale(1.05);
}

.pkg-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(3, 15, 26, 0.85);
    backdrop-filter: blur(8px);
    padding: 0.35rem 0.85rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}

.pkg-badge--off {
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--gold-luxury);
}

.pkg-itinerary-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.65rem;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgb(168 162 158);
}

.pkg-btn-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: var(--gold-luxury);
    padding: 0.625rem 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--midnight);
    transition: background 0.3s ease, transform 0.3s ease;
}

.pkg-btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

.pkg-btn-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    padding: 0.625rem 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.pkg-btn-ghost:hover {
    border-color: rgba(197, 160, 89, 0.45);
    background: rgba(255, 255, 255, 0.1);
}

/* Premium coupon badge */
.luxury-coupon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(3, 15, 26, 0.55);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.125rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-luxury);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.luxury-coupon-badge:hover {
    border-color: var(--gold-luxury);
    background: rgba(3, 15, 26, 0.75);
    transform: translateY(-1px);
}

.luxury-coupon-badge__code {
    font-weight: 700;
    letter-spacing: 0.22em;
}

.luxury-coupon-badge__sep {
    width: 1px;
    height: 0.75rem;
    background: rgba(197, 160, 89, 0.35);
}

.luxury-coupon-badge__label {
    font-weight: 500;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.55);
}

.luxury-coupon-badge--card {
    margin-top: 0.75rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.5625rem;
    letter-spacing: 0.14em;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(197, 160, 89, 0.45);
}

.luxury-coupon-badge--card .luxury-coupon-badge__label {
    color: #a8a29e;
}

.luxury-coupon-badge--surface {
    background: #ffffff;
    border-color: rgba(197, 160, 89, 0.35);
    color: #030F1A;
}

.luxury-coupon-badge--surface .luxury-coupon-badge__code {
    color: #030F1A;
}

.luxury-coupon-badge--surface .luxury-coupon-badge__label {
    color: #78716c;
}

.luxury-coupon-badge--surface .luxury-coupon-badge__sep {
    background: rgba(3, 15, 26, 0.15);
}

.filter-chip-active {
    border-color: var(--gold) !important;
    background: var(--navy) !important;
    color: var(--gold) !important;
}

.gallery-masonry { columns: 2; column-gap: 1rem; }
@media (min-width: 768px) { .gallery-masonry { columns: 3; } }

.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
}

.gallery-masonry-item:hover img { transform: scale(1.05); }

.faq-item.is-open .faq-answer { max-height: 400px; opacity: 1; padding-top: 0.75rem; }
.faq-answer { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.4s ease; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

#search-overlay.is-open { opacity: 1; visibility: visible; }
#search-overlay.is-open .search-panel { transform: translateY(0); opacity: 1; }
#plan-modal.is-visible { opacity: 1; visibility: visible; }
#plan-modal.is-visible .plan-panel { opacity: 1; transform: scale(1) translateY(0); }
#back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top { opacity: 0; visibility: hidden; transform: translateY(12px); transition: all var(--transition); }

.luxury-section { padding: 5rem 0; }
@media (min-width: 768px) { .luxury-section { padding: 7rem 0; } }

.section-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
}

.dest-scroll::-webkit-scrollbar { height: 4px; }
.dest-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }

.dest-scroll .pkg-luxury-card {
    width: 300px;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.dest-grid .pkg-luxury-card {
    width: 100%;
}

/* Destination collection — fill row width (no right gap) */
.dest-collection-section {
    padding: 0.5rem 0;
}

.dest-collection-section:nth-child(even) {
    background: linear-gradient(180deg, rgba(247, 248, 250, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 2rem 0;
    margin: 0 -0.25rem;
}

.dest-grid {
    display: grid;
    gap: 1.5rem;
    width: 100%;
}

.dest-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dest-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dest-grid--4 {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

#packages-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

/* Solo destination: card + editorial panel fills full width */
.dest-showcase--solo {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
}

.dest-showcase__cards .pkg-luxury-card {
    height: 100%;
}

.dest-showcase__panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(197, 160, 89, 0.22);
    min-height: 100%;
    background: #030F1A;
}

.dest-showcase__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--dest-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transform: scale(1.02);
}

.dest-showcase__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 15, 26, 0.92) 0%, rgba(7, 27, 47, 0.78) 55%, rgba(3, 15, 26, 0.88) 100%);
}

.dest-showcase__panel-inner {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    min-height: 28rem;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.25rem;
    color: #ffffff;
}

.dest-showcase__eyebrow {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C5A059;
}

.dest-showcase__heading {
    margin-top: 0.75rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
}

.dest-showcase__tagline {
    margin-top: 0.75rem;
    max-width: 28rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.dest-showcase__perks {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.625rem;
    list-style: none;
    padding: 0;
}

.dest-showcase__perks li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.88);
}

.dest-showcase__perks li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #C5A059;
    font-size: 0.625rem;
}

.dest-showcase__meta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #a8a29e;
}

.dest-showcase__price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #C5A059;
}

.dest-showcase__sep {
    opacity: 0.45;
}

.dest-showcase__cta {
    margin-top: 1.75rem;
    align-self: flex-start;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.45);
    background: rgba(197, 160, 89, 0.12);
    padding: 0.75rem 1.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C5A059;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dest-showcase__cta:hover {
    background: #C5A059;
    color: #030F1A;
    transform: translateY(-1px);
}

@media (max-width: 1023px) {
    .dest-showcase--solo {
        grid-template-columns: 1fr;
    }

    .dest-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .dest-grid--2,
    .dest-grid--3 {
        grid-template-columns: 1fr;
    }

    .dest-showcase__panel-inner {
        min-height: 22rem;
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    body.luxury-site.has-sticky-cta { padding-bottom: 5rem; }
}

/* Hero destination chips */
.hero-chips-wrap {
    animation: heroChipsIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

@keyframes heroChipsIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-chip {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.45rem 0.95rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    transition: all var(--transition);
    white-space: nowrap;
}

.hero-chip:hover {
    border-color: var(--gold);
    background: rgba(200, 169, 106, 0.18);
    color: #fff;
    transform: translateY(-1px);
}

.hero-chip-active {
    border-color: var(--gold) !important;
    background: var(--gold) !important;
    color: var(--navy) !important;
    box-shadow: 0 8px 24px rgba(200, 169, 106, 0.35);
}

.hero-chip-trending::after {
    content: ' · Hot';
    color: var(--gold-light);
    font-size: 0.6em;
}

/* Shimmer skeleton loaders */
.shimmer-block {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.08) 40%, rgba(255,255,255,0.04) 80%);
    background-size: 200% 100%;
    animation: shimmerSlide 1.4s ease-in-out infinite;
}

.shimmer-text {
    height: 0.75rem;
    border-radius: 6px;
}

.shimmer-title {
    height: 1.25rem;
    border-radius: 8px;
    width: 75%;
}

.shimmer-media {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
}

@keyframes shimmerSlide {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Cursor spotlight on luxury cards */
.luxury-card.spotlight-card,
.pkg-luxury-card.spotlight-card,
.pkg-luxury.spotlight-card {
    --spot-x: 50%;
    --spot-y: 50%;
}

.luxury-card.spotlight-card::before,
.pkg-luxury-card.spotlight-card::before,
.pkg-luxury.spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(197, 160, 89, 0.12), transparent 55%);
}

.luxury-card.spotlight-card:hover::before,
.pkg-luxury-card.spotlight-card:hover::before,
.pkg-luxury.spotlight-card:hover::before {
    opacity: 1;
}

/* Packages section — dark cards on soft cream need breathing room */
#packages .pkg-luxury-card,
#destination-sections .pkg-luxury-card {
    isolation: isolate;
}

/* Dark theme — keep hero search + package cards readable */
[data-theme="dark"] .hero-glass-panel {
    background: rgba(250, 250, 248, 0.96);
    border-color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .hero-search-label,
[data-theme="dark"] .hero-search-input,
[data-theme="dark"] .hero-search-select {
    color: #030F1A;
}

[data-theme="dark"] .hero-search-input,
[data-theme="dark"] .hero-search-select {
    background: #ffffff;
    border-color: #d6d3d1;
}

[data-theme="dark"] .pkg-luxury-card,
[data-theme="dark"] .pkg-luxury {
    background: #030F1A;
    color: #ffffff;
}

[data-theme="dark"] .pkg-luxury-card__title {
    color: #ffffff;
}

[data-theme="dark"] .pkg-luxury-card__meta,
[data-theme="dark"] .pkg-luxury-card__token strong,
[data-theme="dark"] .pkg-luxury-card__price {
    color: #C5A059;
}

[data-theme="dark"] .pkg-luxury-card__duration,
[data-theme="dark"] .pkg-luxury-card__price-unit,
[data-theme="dark"] .pkg-luxury-card__price-old,
[data-theme="dark"] .pkg-luxury-card__token {
    color: #a8a29e;
}

/* Parallax layers */
[data-parallax] {
    will-change: transform;
}

/* Plan modal multi-step */
.plan-step { display: none; }
.plan-step.is-active { display: block; animation: planStepIn 0.45s cubic-bezier(0.22, 1, 0.36, 1); }

@keyframes planStepIn {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.plan-progress-dot {
    height: 4px;
    flex: 1;
    border-radius: 999px;
    background: rgba(7, 27, 47, 0.12);
    transition: background 0.3s ease;
}

.plan-progress-dot.is-done { background: var(--gold); }

.plan-mood-tag {
    border-radius: 999px;
    border: 1px solid rgba(7, 27, 47, 0.12);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.plan-mood-tag.is-selected {
    border-color: var(--gold);
    background: rgba(200, 169, 106, 0.12);
    color: var(--navy);
}

.plan-budget-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--navy-light), var(--gold));
    outline: none;
}

.plan-budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(7, 27, 47, 0.2);
    cursor: pointer;
}

/* Package detail editorial */
.pkg-editorial-sticky {
    position: sticky;
    top: 6rem;
}

.pkg-media-stack img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-luxury);
}

.pkg-itinerary-node {
    position: relative;
    padding-left: 2rem;
}

.pkg-itinerary-node::before {
    content: '';
    position: absolute;
    left: 0.4rem;
    top: 2rem;
    bottom: -1rem;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), rgba(200, 169, 106, 0.15));
}

.pkg-itinerary-node:last-child::before { display: none; }

.pkg-floating-summary {
    position: sticky;
    top: 5.5rem;
}

@media (max-width: 1023px) {
    .pkg-floating-summary-mobile {
        position: fixed;
        inset-inline: 0;
        bottom: 0;
        z-index: 45;
        border-top: 1px solid rgba(200, 169, 106, 0.25);
        background: rgba(7, 27, 47, 0.96);
        backdrop-filter: blur(16px);
        padding: 0.85rem 1rem;
        box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
    }

    body.has-pkg-summary-bar { padding-bottom: 5.5rem; }
}
