@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@400;500;600;700;800;900&family=Marcellus&family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
    --bg-primary: #f7f4ee;
    --bg-secondary: #ebe4d8;
    --bg-dark: #14171a;
    --bg-card: #ffffff;
    --bg-card-translucent: rgba(255, 255, 255, 0.88);
    --bg-dark-translucent: rgba(20, 23, 26, 0.88);

    --text-primary: #181c20;
    --text-secondary: #525b66;
    --text-muted: #86909c;
    --text-light: #f7f4ee;

    --accent-terracotta: #c4552a;
    --accent-terracotta-hover: #a8421a;
    --accent-gold: #c9a050;
    --accent-crimson: #7a1c2c;
    --accent-lapis: #2b5e7e;
    --accent-sage: #5f7466;

    --border-light: rgba(24, 28, 32, 0.1);
    --border-dark: rgba(247, 244, 238, 0.12);
    --border-gold: rgba(201, 160, 80, 0.35);

    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.14);
    --shadow-gold: 0 10px 30px rgba(201, 160, 80, 0.25);

    --font-logo: "Cinzel Decorative", serif;
    --font-serif: "Cinzel", serif;
    --font-heading: "Marcellus", serif;
    --font-sans: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: "Space Grotesk", sans-serif;

    --container-max: 1440px;
    --header-height: 90px;

    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.65;
    background-color: var(--bg-primary);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background-color: var(--accent-terracotta);
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-terracotta);
}

.cursor-dot,
.cursor-circle {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9999;
    transition:
        opacity 0.3s ease,
        transform 0.15s ease-out;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-terracotta);
    margin-top: -4px;
    margin-left: -4px;
}

.cursor-circle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--accent-gold);
    margin-top: -21px;
    margin-left: -21px;
    transition:
        transform 0.25s ease-out,
        border-color 0.3s ease,
        background-color 0.3s ease;
    backdrop-filter: blur(2px);
}

.cursor-active .cursor-circle {
    transform: scale(1.85);
    border-color: var(--accent-terracotta);
    background-color: rgba(196, 85, 42, 0.12);
}

@media (hover: none), (pointer: coarse) {
    .cursor-dot,
    .cursor-circle {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* Typography System */
h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.font-serif {
    font-family: var(--font-serif);
}

.font-display {
    font-family: var(--font-display);
}

.text-gold {
    color: var(--accent-gold);
}

.text-terracotta {
    color: var(--accent-terracotta);
}

.tag-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent-terracotta);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tag-label::before {
    display: none !important;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.header-navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: calc(100% - 32px);
    max-width: 1440px;
    height: 72px;
    z-index: 1000;
    border-radius: 40px;
    background: rgba(247, 244, 238, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(201, 160, 80, 0.35);
    box-shadow: 0 12px 35px rgba(20, 23, 26, 0.08);
    padding: 0 28px;
    will-change: transform, opacity;
    transition:
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.header-navbar.scrolled {
    top: 12px;
    height: 68px;
    background: rgba(247, 244, 238, 0.94);
    border-color: var(--accent-gold);
    box-shadow: 0 16px 40px rgba(20, 23, 26, 0.12);
}

.header-navbar.header-hidden {
    transform: translate3d(-50%, calc(-100% - 32px), 0);
    opacity: 0;
    pointer-events: none;
}

.header-navbar.header-visible {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
    pointer-events: all;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0;
    max-width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-emblem {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-family: var(--font-logo);
    font-size: 1.15rem;
    font-weight: 900;
    background: var(--bg-card-translucent);
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}

.nav-brand:hover .brand-emblem {
    transform: rotate(45deg) scale(1.1);
    border-color: var(--accent-terracotta);
    color: var(--accent-terracotta);
}

.brand-title {
    font-family: var(--font-logo);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.brand-sub {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    color: var(--text-secondary);
    display: block;
    margin-top: 1px;
}

.nav-status-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--border-light);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-item i {
    color: var(--accent-terracotta);
}

.status-divider {
    width: 1px;
    height: 12px;
    background-color: var(--border-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-audio-toggle {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.btn-audio-toggle:hover {
    border-color: #c4552a;
    color: #c4552a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196, 85, 42, 0.25);
}

.btn-audio-toggle.playing,
.btn-audio-toggle.active {
    background: #c4552a !important;
    color: #ffffff !important;
    border-color: #c4552a !important;
    box-shadow: 0 6px 20px rgba(196, 85, 42, 0.45) !important;
}

html.stargazing-mode,
body.stargazing-mode {
    --bg-primary: #0b0e13;
    --bg-secondary: #131822;
    --bg-dark: #06080b;
    --bg-card: #161c27;
    --bg-card-translucent: rgba(22, 28, 39, 0.92);
    --bg-dark-translucent: rgba(11, 14, 19, 0.94);

    --text-primary: #f5f2eb;
    --text-secondary: #b0bac8;
    --text-muted: #798699;
    --text-light: #ffffff;

    --accent-gold: #e2b866;
    --border-light: rgba(245, 242, 235, 0.12);
    --border-dark: rgba(226, 184, 102, 0.35);
    --border-gold: rgba(226, 184, 102, 0.45);

    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.9);
    --shadow-gold: 0 10px 30px rgba(226, 184, 102, 0.25);

    background-color: #0b0e13 !important;
    color: #f5f2eb !important;
}

/* Header Navbar in Dark Mode */
body.stargazing-mode .header-navbar {
    background: rgba(11, 14, 19, 0.88) !important;
    border-bottom: 1px solid rgba(226, 184, 102, 0.3) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6) !important;
}

body.stargazing-mode .header-navbar.scrolled {
    background: rgba(8, 10, 15, 0.96) !important;
    border-bottom-color: var(--accent-gold) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8) !important;
}

body.stargazing-mode .brand-title {
    color: #ffffff !important;
}

body.stargazing-mode .brand-tagline {
    color: var(--accent-gold) !important;
}

body.stargazing-mode .nav-link {
    color: #d1d9e6 !important;
}

body.stargazing-mode .nav-link:hover,
body.stargazing-mode .nav-link.active {
    color: var(--accent-gold) !important;
}

body.stargazing-mode .btn-theme-toggle,
body.stargazing-mode .btn-audio-toggle,
body.stargazing-mode .nav-status-badge {
    background: rgba(22, 28, 39, 0.85) !important;
    border-color: rgba(226, 184, 102, 0.35) !important;
    color: #f5f2eb !important;
}

body.stargazing-mode .btn-theme-toggle:hover,
body.stargazing-mode .btn-audio-toggle:hover {
    background: rgba(226, 184, 102, 0.2) !important;
    border-color: var(--accent-gold) !important;
    color: #ffffff !important;
}

body.stargazing-mode .menu-drawer-trigger span {
    background-color: #ffffff !important;
}

/* Comprehensive Dark Mode Section & Card Styling */
body.stargazing-mode section,
body.stargazing-mode .hero-section,
body.stargazing-mode .page-hero-section {
    background-color: #0b0e13;
    color: #f5f2eb;
}

body.stargazing-mode .hero-section {
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(226, 184, 102, 0.12) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(196, 85, 42, 0.1) 0%,
            transparent 50%
        ),
        #0b0e13 !important;
    border-bottom: 1px solid rgba(226, 184, 102, 0.2) !important;
}

body.stargazing-mode .altitude-section,
body.stargazing-mode .expeditions-section,
body.stargazing-mode .testimonials-section,
body.stargazing-mode .seasons-section,
body.stargazing-mode .concierge-section,
body.stargazing-mode .about-section {
    background-color: #10141d !important;
}

body.stargazing-mode .sanctuary-map-section,
body.stargazing-mode .gallery-section,
body.stargazing-mode .builder-section,
body.stargazing-mode .philosophy-section,
body.stargazing-mode .faq-section {
    background-color: #0b0e13 !important;
}

body.stargazing-mode .site-footer {
    background-color: #06080b !important;
    border-top: 1px solid rgba(226, 184, 102, 0.3) !important;
}

body.stargazing-mode .altitude-card,
body.stargazing-mode .travel-guide-card,
body.stargazing-mode .exped-dossier-card,
body.stargazing-mode .stage-quote-card,
body.stargazing-mode .builder-card,
body.stargazing-mode .season-detail-card,
body.stargazing-mode .quote-box,
body.stargazing-mode .contact-card,
body.stargazing-mode .package-hero-card,
body.stargazing-mode .bento-item,
body.stargazing-mode .concierge-feature-card,
body.stargazing-mode .builder-step-card {
    background: rgba(22, 28, 39, 0.92) !important;
    border: 1px solid rgba(226, 184, 102, 0.3) !important;
    color: #f5f2eb !important;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6) !important;
}

body.stargazing-mode .hero-badge-container,
body.stargazing-mode .page-badge-pill {
    background: rgba(22, 28, 39, 0.85) !important;
    border-color: rgba(226, 184, 102, 0.4) !important;
    color: #f5f2eb !important;
}

body.stargazing-mode .hero-title,
body.stargazing-mode .page-hero-title,
body.stargazing-mode .section-title-lg,
body.stargazing-mode .section-title-md,
body.stargazing-mode h1,
body.stargazing-mode h2,
body.stargazing-mode h3,
body.stargazing-mode h4 {
    color: #ffffff !important;
}

body.stargazing-mode .hero-description,
body.stargazing-mode .page-hero-subtitle,
body.stargazing-mode .section-subtitle,
body.stargazing-mode p {
    color: #b0bac8 !important;
}

body.stargazing-mode input[type="text"],
body.stargazing-mode input[type="email"],
body.stargazing-mode input[type="tel"],
body.stargazing-mode input[type="date"],
body.stargazing-mode textarea,
body.stargazing-mode select {
    background: rgba(16, 20, 29, 0.95) !important;
    border: 1px solid rgba(226, 184, 102, 0.35) !important;
    color: #ffffff !important;
}

body.stargazing-mode input:focus,
body.stargazing-mode textarea:focus,
body.stargazing-mode select:focus {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 15px rgba(226, 184, 102, 0.3) !important;
}

.pulse-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid #c4552a;
    border-radius: 50%;
    animation: pulse-ring 2s infinite ease-out;
    opacity: 0;
    display: none;
}

.btn-audio-toggle.playing .pulse-ring,
.btn-audio-toggle.active .pulse-ring {
    display: block;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.btn-luxury-cta {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 40px;
    background: var(--bg-dark);
    color: var(--bg-primary);
    border: 1px solid var(--bg-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-luxury-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-luxury-cta:hover::before {
    left: 100%;
}

.btn-luxury-cta:hover {
    background: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-luxury-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    padding: 13px 30px;
    border-radius: 40px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-luxury-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(201, 160, 80, 0.05);
}

.menu-drawer-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.menu-drawer-trigger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

.menu-drawer-trigger:hover span:first-child {
    width: 16px;
}

.menu-drawer-trigger:hover span:last-child {
    width: 20px;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(24, 28, 32, 0.35);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.drawer-content {
    position: fixed;
    top: 16px;
    right: 16px;
    bottom: 16px;
    width: 480px;
    max-width: calc(100vw - 32px);
    height: calc(100vh - 32px);
    background: rgba(247, 244, 238, 0.94);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    color: var(--text-primary);
    border-radius: 36px;
    border: 1px solid var(--border-gold);
    box-shadow:
        -20px 0 60px rgba(24, 28, 32, 0.14),
        0 0 30px rgba(201, 160, 80, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transform: translateX(110%) scale(0.96);
    transition:
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.4s ease,
        box-shadow 0.4s ease;
    z-index: 2001;
    overflow-y: auto;
}

.drawer-overlay.active .drawer-content {
    transform: translateX(0) scale(1);
}

.drawer-header-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.drawer-close-btn {
    position: absolute;
    top: 32px;
    right: 28px;
    background: rgba(24, 28, 32, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-close-btn:hover {
    border-color: var(--accent-terracotta);
    color: var(--accent-terracotta);
    background: rgba(196, 85, 42, 0.1);
    transform: rotate(90deg) scale(1.1);
    box-shadow: var(--shadow-sm);
}

.drawer-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    margin-top: 40px;
}

.drawer-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: var(--accent-terracotta);
}

.drawer-title-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(196, 85, 42, 0.3) 0%,
        transparent 100%
    );
}

.drawer-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    padding: 0;
    margin: 6px 0 16px;
}

.drawer-menu-item {
    margin: 0;
}

.drawer-menu-link {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: 18px;
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.drawer-menu-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(201, 160, 80, 0.15) 0%,
        rgba(201, 160, 80, 0.02) 100%
    );
    opacity: 0;
    transform: translateX(-100%);
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
    border-radius: 16px;
    z-index: 0;
}

.drawer-link-left {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-num {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-terracotta);
    letter-spacing: 0.15em;
    opacity: 0.85;
    transition: all 0.35s ease;
}

.link-icon {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: all 0.35s ease;
}

.link-text {
    font-weight: 500;
    transition: color 0.35s ease;
}

.link-arrow {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    opacity: 0;
    transform: translate(-10px, 10px) scale(0.7);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

/* Creative Link Hover Animation */
.drawer-menu-link:hover {
    color: var(--accent-terracotta);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-sm);
}

.drawer-menu-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.drawer-menu-link:hover .drawer-link-left {
    transform: translateX(8px);
}

.drawer-menu-link:hover .link-num {
    opacity: 1;
    transform: scale(1.2);
    color: var(--accent-terracotta);
}

.drawer-menu-link:hover .link-icon {
    color: var(--accent-terracotta);
    transform: rotate(-10deg) scale(1.15);
}

.drawer-menu-link:hover .link-arrow {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.drawer-menu-link.active {
    background: rgba(196, 85, 42, 0.1);
    border-color: var(--accent-terracotta);
    color: var(--accent-terracotta);
}

.drawer-menu-link.active .link-num,
.drawer-menu-link.active .link-icon {
    color: var(--accent-terracotta);
}

/* Concierge Footer Widget */
.drawer-footer-widget {
    margin-top: auto;
    padding: 20px 22px;
    background: rgba(235, 228, 216, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 20px;
}

.drawer-concierge-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    color: var(--accent-terracotta);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.drawer-contact-phone {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.drawer-contact-email {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Stargazing Dark Mode Aside Drawer Overrides */
body.stargazing-mode .drawer-overlay {
    background: rgba(11, 14, 18, 0.75);
}

body.stargazing-mode .drawer-content {
    background: rgba(14, 17, 20, 0.95);
    border-color: rgba(201, 160, 80, 0.35);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.65);
    color: #f7f4ee;
}

body.stargazing-mode .drawer-header-brand {
    border-bottom-color: var(--border-dark);
}

body.stargazing-mode .drawer-close-btn {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-dark);
    color: #ffffff;
}

body.stargazing-mode .drawer-close-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(201, 160, 80, 0.15);
}

body.stargazing-mode .drawer-section-title {
    color: var(--accent-gold);
}

body.stargazing-mode .drawer-title-line {
    background: linear-gradient(
        90deg,
        rgba(201, 160, 80, 0.4) 0%,
        transparent 100%
    );
}

body.stargazing-mode .drawer-menu-link {
    color: rgba(247, 244, 238, 0.85);
}

body.stargazing-mode .drawer-menu-link:hover {
    color: #ffffff;
    border-color: rgba(201, 160, 80, 0.4);
}

body.stargazing-mode .drawer-menu-link.active {
    background: rgba(201, 160, 80, 0.15);
    border-color: var(--accent-gold);
    color: #ffffff;
}

body.stargazing-mode .drawer-menu-link.active .link-num,
body.stargazing-mode .drawer-menu-link.active .link-icon {
    color: var(--accent-gold);
}

body.stargazing-mode .link-icon {
    color: rgba(247, 244, 238, 0.5);
}

body.stargazing-mode .link-num {
    color: var(--accent-gold);
}

body.stargazing-mode .drawer-footer-widget {
    background: rgba(20, 23, 26, 0.8);
    border-color: var(--border-dark);
}

body.stargazing-mode .drawer-concierge-badge {
    color: var(--accent-gold);
}

body.stargazing-mode .drawer-contact-phone {
    color: #ffffff;
}

body.stargazing-mode .drawer-contact-email {
    color: var(--text-muted);
}

.drawer-footer-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(201, 160, 80, 0.09) 0%,
            transparent 65%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(196, 85, 42, 0.07) 0%,
            transparent 55%
        ),
        var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-col {
    z-index: 2;
}

.hero-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    border-radius: 30px;
    background: var(--bg-card-translucent);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(12px);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-badge-icon {
    color: var(--accent-gold);
}

.hero-badge-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 5.5vw, 5.2rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.hero-title span.italic-highlight {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--accent-terracotta);
    display: inline-block;
    position: relative;
}

.hero-title span.italic-highlight::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--accent-terracotta),
        var(--accent-gold),
        transparent
    );
    border-radius: 2px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual-col {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 560px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid #f7f2ec;
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
}

.hero-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.05);
    transition:
        opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 8s linear;
}

.hero-image-frame:hover .hero-img-bg {
    transform: scale(1.12);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20, 23, 26, 0.1) 0%,
        rgba(20, 23, 26, 0.5) 100%
    );
}

.hero-widget-elevation {
    position: absolute;
    top: 35px;
    left: -25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    padding: 16px 22px;
    border-radius: 18px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
    animation: float-gentle 6s ease-in-out infinite;
}

.elevation-dial-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 160, 80, 0.14);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.elevation-number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.elevation-lbl {
    font-family: var(--font-display);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero-widget-experience {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--bg-dark-translucent);
    backdrop-filter: blur(16px);
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 20px;
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-lg);
    max-width: 280px;
    z-index: 3;
    animation: float-gentle 7s ease-in-out infinite 1s;
}

.widget-tag {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 8px;
}

.widget-stars {
    display: flex;
    gap: 4px;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

@keyframes float-gentle {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.ticker-ribbon {
    background: var(--bg-dark);
    color: var(--bg-primary);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: ticker-slide 35s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247, 244, 238, 0.88);
}

.ticker-item i {
    color: var(--accent-gold);
    font-size: 0.7rem;
}

@keyframes ticker-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.astro-widget-section {
    padding: 70px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

.astro-card {
    background: var(--bg-dark);
    color: var(--bg-primary);
    border-radius: 28px;
    padding: 40px 50px;
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.astro-title-box h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.astro-title-box p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.astro-metric-box {
    border-left: 1px solid var(--border-dark);
    padding-left: 24px;
}

.astro-metric-lbl {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.astro-metric-val {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
}

.altitude-section {
    position: relative;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

.section-header-center {
    text-align: center;
    max-width: 860px;
    margin: 20px auto 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tag-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
    background: rgba(196, 85, 42, 0.08);
    border: 1px solid rgba(196, 85, 42, 0.22);
    color: var(--accent-terracotta, #c4552a);
    box-shadow: 0 2px 10px rgba(196, 85, 42, 0.06);
    width: fit-content;
}

.tag-label.text-gold {
    color: var(--accent-gold, #c9a050) !important;
    background: rgba(201, 160, 80, 0.08);
    border-color: rgba(201, 160, 80, 0.25);
    box-shadow: 0 2px 10px rgba(201, 160, 80, 0.06);
}

.tag-label.text-terracotta {
    color: var(--accent-terracotta, #c4552a) !important;
    background: rgba(196, 85, 42, 0.08);
    border-color: rgba(196, 85, 42, 0.25);
    box-shadow: 0 2px 10px rgba(196, 85, 42, 0.06);
}

.section-title-lg {
    font-family: var(--font-heading, "Marcellus", serif);
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 600;
    color: var(--text-primary, #181c20);
    line-height: 1.22;
    margin-top: 4px;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-family: var(--font-sans, "Outfit", sans-serif);
    font-size: clamp(1.02rem, 1.25vw, 1.15rem);
    line-height: 1.65;
    color: var(--text-secondary, #525b66);
    max-width: 760px;
    margin: 0 auto;
}

.altitude-scale-wrapper {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
}

.altitude-steps-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}

.altitude-step-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.altitude-step-btn.active {
    background: var(--bg-dark);
    color: #ffffff;
    border-color: var(--bg-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-meters {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-terracotta);
    margin-bottom: 6px;
}

.altitude-step-btn.active .step-meters {
    color: var(--accent-gold);
}

.step-name {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.altitude-step-btn.active .step-name {
    color: rgba(255, 255, 255, 0.8);
}

.altitude-display-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border-light);
}

.display-image-box {
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.display-info-box {
    padding: 20px 10px;
}

.display-location-tag {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.display-heading {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.display-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.display-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    margin-bottom: 28px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Acclimatization Simulator (Dark Obsidian Card for High Contrast) */
.acclimatization-widget-box {
    margin-top: 50px;
    background: var(--bg-dark);
    color: var(--bg-primary);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-lg);
}

.acclim-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.acclim-slider-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.acclim-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    cursor: pointer;
}

.acclim-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 3px solid var(--bg-dark);
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: transform 0.2s ease;
}

.acclim-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--accent-terracotta);
}

.acclim-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-dark);
    padding-top: 24px;
}

.acclim-stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--border-dark);
}

.acclim-stat-val {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.acclim-stat-lbl {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.sanctuary-map-section {
    padding: 110px 0;
    background: var(--bg-secondary);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.sanctuary-tabs-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.sanctuary-tab-btn {
    padding: 12px 24px;
    border-radius: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.sanctuary-tab-btn.active,
.sanctuary-tab-btn:hover {
    background: var(--accent-terracotta);
    color: #ffffff;
    border-color: var(--accent-terracotta);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.map-grid-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: stretch;
}

.map-visual-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
    min-height: 600px;
    background: #0b0e12;
}

.map-visual-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
    z-index: 1;
    background: #0b0e12;
}

/* Custom Leaflet Styling */
.leaflet-container {
    font-family: var(--font-sans) !important;
    background: #0b0e12 !important;
}

.map-visual-container .leaflet-tile-pane {
    /* Natural high-resolution satellite imagery */
    filter: contrast(1.08) brightness(0.95);
}

/* Custom Leaflet Marker Pins */
.custom-sanctuary-pin {
    background: none !important;
    border: none !important;
}

.pin-marker-body {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pin-beacon-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-gold);
    animation: pin-pulse 2.4s infinite ease-out;
    pointer-events: none;
}

@keyframes pin-pulse {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.pin-beacon-core {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(201, 160, 80, 0.4);
    transition: var(--transition-bounce);
}

.custom-sanctuary-pin.active .pin-beacon-core,
.custom-sanctuary-pin:hover .pin-beacon-core {
    background: var(--accent-terracotta);
    border-color: #ffffff;
    color: #ffffff;
    transform: scale(1.25);
    box-shadow: 0 0 24px rgba(196, 85, 42, 0.8);
}

/* Leaflet Popups */
.leaflet-popup-content-wrapper {
    background: rgba(20, 23, 26, 0.95) !important;
    backdrop-filter: blur(14px);
    color: #ffffff !important;
    border: 1px solid var(--border-gold);
    border-radius: 16px !important;
    padding: 8px 14px !important;
    box-shadow: var(--shadow-lg);
}

.leaflet-popup-tip {
    background: var(--bg-dark) !important;
    border: 1px solid var(--border-gold);
}

.popup-sanctuary-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--accent-gold);
    margin-bottom: 2px;
}

.popup-sanctuary-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-display);
}

.map-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(20, 23, 26, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    padding: 8px 16px;
    border-radius: 30px;
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.map-layer-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-control-tag {
    background: rgba(20, 23, 26, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.map-control-btn {
    background: rgba(20, 23, 26, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

.map-control-btn:hover {
    background: var(--accent-terracotta);
    color: #ffffff;
    border-color: var(--accent-terracotta);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Dynamic Travel Guide Card */
.travel-guide-card {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-card-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.guide-permit-badge {
    font-family: var(--font-display);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(43, 94, 126, 0.1);
    color: var(--accent-lapis);
    border: 1px solid rgba(43, 94, 126, 0.3);
    text-transform: uppercase;
}

.guide-subtitle {
    font-family: var(--font-display);
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-top: -10px;
    margin-bottom: 20px;
}

.guide-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    padding: 12px 14px;
    border-radius: 18px;
    margin-bottom: 22px;
}

.stat-chip {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-chip i {
    color: var(--accent-terracotta);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.chip-o2-ring {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent-sage);
    color: #ffffff;
    font-size: 0.65rem;
    font-family: var(--font-display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chip-label {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-display);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.chip-val {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Travel Guide Sub-tabs */
.guide-subtabs {
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.guide-subtab-btn {
    background: transparent;
    border: none;
    padding: 8px 14px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 0.76rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 6px;
}

.guide-subtab-btn.active,
.guide-subtab-btn:hover {
    background: rgba(196, 85, 42, 0.08);
    color: var(--accent-terracotta);
    font-weight: 600;
}

/* Dynamic Tab Panel Content Styling */
.guide-tab-panel {
    min-height: 220px;
    margin-bottom: 24px;
}

.guide-overview-p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.guide-highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guide-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.guide-highlight-item i {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.route-pass-card {
    background: var(--bg-primary);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.route-pass-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--accent-terracotta);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pass-elevation-pill {
    font-size: 0.72rem;
    font-family: var(--font-display);
    background: var(--accent-gold);
    color: var(--bg-dark);
    padding: 2px 8px;
    border-radius: 10px;
}

.route-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.stay-recommendation-box {
    background: var(--bg-primary);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    display: flex;
    gap: 16px;
    align-items: center;
}

.stay-thumb {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.stay-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stay-info p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.guide-card-footer {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sanctuary-audio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(196, 85, 42, 0.08);
    border: 1px solid var(--accent-terracotta);
    padding: 12px 24px;
    border-radius: 30px;
    color: var(--accent-terracotta);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.sanctuary-audio-btn:hover {
    background: var(--accent-terracotta);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Stargazing Dark Mode map overrides */
body.stargazing-mode .sanctuary-map-section {
    background: #090b0e;
    color: #ffffff;
}

body.stargazing-mode .travel-guide-card {
    background: #14171a;
    border-color: var(--border-dark);
}

body.stargazing-mode .guide-subtitle,
body.stargazing-mode .guide-overview-p,
body.stargazing-mode .route-desc {
    color: var(--text-muted);
}

body.stargazing-mode .sanctuary-audio-btn {
    background: rgba(201, 160, 80, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

body.stargazing-mode .sanctuary-audio-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

body.stargazing-mode .guide-stats-strip,
body.stargazing-mode .guide-highlight-item,
body.stargazing-mode .route-pass-card,
body.stargazing-mode .stay-recommendation-box {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-dark);
    color: #ffffff;
}

.testimonials-section {
    padding: 90px 0 110px 0;
    background: var(--bg-primary, #f7f4ee);
    color: var(--text-primary, #181c20);
    position: relative;
    overflow: hidden;
}

.testimonials-unified-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 36px;
    border: 1px solid rgba(24, 28, 32, 0.1);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 36px;
    align-items: stretch;
    margin-top: 40px;
    transition:
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.testimonials-unified-card:hover {
    border-color: rgba(196, 85, 42, 0.25);
    box-shadow: 0 22px 60px rgba(196, 85, 42, 0.08);
}

/* Left Column: Image Frame & Overlay Thumbnails */
.testimonial-visual-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.place-image-frame {
    position: relative;
    height: 440px;
    min-height: 440px;
    max-height: 440px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(147, 149, 151, 0.08);
    background: #181c20;
}

.place-img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center;
    display: block;
    border-radius: 20px;
    transition:
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.4s ease;
}

.place-image-frame:hover .place-img {
    transform: scale(1.05);
}

.place-location-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(196, 85, 42, 0.25);
    padding: 7px 16px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-terracotta, #c4552a);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Progress Bar */
.testimonial-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(24, 28, 32, 0.12);
    z-index: 4;
    overflow: hidden;
}

.testimonial-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent-terracotta, #c4552a);
    box-shadow: 0 0 10px rgba(196, 85, 42, 0.5);
}

/* Thumbnail Strip Overlay inside Same Image Div */
.place-thumb-strip-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 3;
    background: rgba(20, 23, 26, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.place-thumb {
    width: 64px;
    height: 46px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.65;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.place-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.place-thumb:hover,
.place-thumb.active {
    opacity: 1;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Right Column: Review Content inside Unified Card */
.testimonial-content-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 10px 0;
}

.review-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-stars {
    display: flex;
    gap: 4px;
    color: var(--accent-terracotta, #c4552a);
}

.review-stars .star-icon {
    width: 17px;
    height: 17px;
    fill: var(--accent-terracotta, #c4552a);
    stroke: none;
}

.review-package-badge {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-terracotta, #c4552a);
    background: rgba(196, 85, 42, 0.08);
    border: 1px solid rgba(196, 85, 42, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-quote-mark {
    font-family: var(--font-heading, serif);
    font-size: 4rem;
    line-height: 0.7;
    color: var(--accent-terracotta, #c4552a);
    opacity: 0.3;
    margin-bottom: 10px;
}

.review-body-text {
    font-family: var(--font-heading, serif);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-primary, #181c20);
    margin-bottom: 20px;
    flex-grow: 1;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.review-author-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(24, 28, 32, 0.08);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--accent-terracotta, #c4552a),
        #a8421a
    );
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(196, 85, 42, 0.3);
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-heading, serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #181c20);
    margin-bottom: 2px;
}

.author-location {
    font-size: 0.8rem;
    color: var(--accent-terracotta, #c4552a);
}

/* Controls Footer */
.review-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
}

.stage-nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stage-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-secondary, #ebe4d8);
    border: 1px solid rgba(24, 28, 32, 0.1);
    color: var(--text-primary, #181c20);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stage-nav-btn:hover {
    background: var(--accent-terracotta, #c4552a);
    border-color: var(--accent-terracotta, #c4552a);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 85, 42, 0.3);
}

.stage-counter {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-terracotta, #c4552a);
    min-width: 55px;
    text-align: center;
}

.pause-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-secondary, #ebe4d8);
    border: 1px solid rgba(24, 28, 32, 0.1);
    color: var(--text-secondary, #525b66);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pause-toggle-btn:hover {
    background: var(--accent-terracotta, #c4552a);
    color: #ffffff;
    border-color: var(--accent-terracotta, #c4552a);
}

@media (max-width: 900px) {
    .testimonials-unified-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px;
    }
    .place-image-frame {
        height: 340px;
        min-height: 340px;
        max-height: 340px;
    }
}

.voice-memo-widget {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(201, 160, 80, 0.12);
    border: 1px solid var(--border-gold);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.voice-memo-widget:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.stage-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-dark);
    padding-top: 24px;
}

.stage-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stage-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.stage-author-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #ffffff;
}

.stage-author-role {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.stage-controls-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stage-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border-dark);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.stage-nav-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
}

.stage-progress-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.stage-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: var(--accent-gold);
    transition: width 0.6s ease;
}

.gallery-section {
    padding: 110px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.gallery-filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 36px 0 44px;
}

.gallery-filter-btn {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-light);
    padding: 9px 22px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

body.stargazing-mode .gallery-filter-btn {
    background: rgba(22, 28, 39, 0.85);
    border-color: rgba(226, 184, 102, 0.25);
    color: var(--text-secondary);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
    color: #14171a !important;
    box-shadow: var(--shadow-gold);
}

/* LUXURY ASYMMETRIC BENTO GRID LAYOUT (4 COLUMNS, MESSY BENTO STRUCTURE, NO TEXT) */
.bento-grid,
.pinterest-grid,
.bento-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 270px;
    grid-auto-flow: dense;
    gap: 20px;
    width: 100%;
}

.bento-item,
.pinterest-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
    background: transparent !important;
    transition: none !important;
}

.bento-item:hover,
.pinterest-item:hover {
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Bento Spans */
.bento-item.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-item.bento-tall {
    grid-row: span 2;
    grid-column: span 1;
}

.bento-item.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-img,
.bento-item img,
.pinterest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover .bento-img,
.bento-item:hover img,
.pinterest-item:hover img {
    transform: scale(1.05);
}

/* Hide text overlays in gallery to ensure ONLY images are shown */
.bento-overlay,
.bento-caption,
.bento-caption-box,
.bento-zoom-icon,
.gallery-card-overlay {
    display: none !important;
}

@media (max-width: 900px) {
    .bento-grid,
    .pinterest-grid,
    .bento-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
}

@media (max-width: 640px) {
    .bento-grid,
    .pinterest-grid,
    .bento-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }
    .bento-item.bento-wide,
    .bento-item.bento-tall,
    .bento-item.bento-large {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

.gallery-redesign-section {
    padding: 80px 0 100px;
    background: var(--bg-primary);
    position: relative;
}

.gallery-controls-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 36px 0 40px;
}

.gallery-controls-strip .gallery-filter-tabs {
    margin: 0;
    justify-content: flex-start;
    gap: 10px;
}

.gallery-view-switcher {
    display: inline-flex;
    background: rgba(18, 24, 34, 0.75);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 30px;
    padding: 4px;
    gap: 4px;
    backdrop-filter: blur(10px);
}

body:not(.stargazing-mode) .gallery-view-switcher {
    background: rgba(245, 243, 238, 0.9);
    border-color: rgba(212, 160, 23, 0.2);
}

.gallery-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-view-btn i {
    width: 14px;
    height: 14px;
}

.gallery-view-btn:hover {
    color: var(--text-primary);
}

.gallery-view-btn.active {
    background: var(--accent-gold, #d4a017);
    color: #14171a !important;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

/* Luxury Bento Card Styling & Image Hover Zoom */
.bento-luxury-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    cursor: pointer;
    transition: none !important;
}

.bento-luxury-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
}

.bento-luxury-card img,
.bento-item img,
.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.bento-luxury-card:hover img,
.bento-item:hover img,
.bento-item:hover .bento-img {
    transform: scale(1.06) !important;
}

.bento-card-overlay {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    inset: 0;
    padding: 20px;
    background: linear-gradient(
        to top,
        rgba(10, 14, 20, 0.95) 0%,
        rgba(10, 14, 20, 0.45) 50%,
        rgba(10, 14, 20, 0.15) 100%
    );
    opacity: 0.85;
    transition:
        opacity 0.4s ease,
        background 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.bento-luxury-card:hover .bento-card-overlay {
    opacity: 1;
    background: linear-gradient(
        to top,
        rgba(8, 12, 18, 0.98) 0%,
        rgba(8, 12, 18, 0.55) 55%,
        rgba(8, 12, 18, 0.25) 100%
    );
}

.bento-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.bento-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(15, 20, 28, 0.8);
    border: 1px solid rgba(212, 160, 23, 0.35);
    backdrop-filter: blur(8px);
    color: var(--accent-gold, #d4a017);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bento-location-badge i {
    width: 12px;
    height: 12px;
    color: var(--accent-gold, #d4a017);
}

.bento-zoom-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.2);
    border: 1px solid rgba(212, 160, 23, 0.5);
    color: #ffffff;
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.9);
    opacity: 0.85;
}

.bento-luxury-card:hover .bento-zoom-icon-badge {
    transform: scale(1.08);
    opacity: 1;
    background: var(--accent-gold, #d4a017);
    color: #14171a;
    box-shadow: 0 0 16px rgba(212, 160, 23, 0.5);
}

.bento-zoom-icon-badge i {
    width: 15px;
    height: 15px;
}

.bento-card-body {
    transform: translateY(6px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-luxury-card:hover .bento-card-body {
    transform: translateY(0);
}

.bento-cat-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold, #d4a017);
    margin-bottom: 4px;
}

.bento-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.bento-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.8);
    gap: 12px;
}

.bento-card-meta i {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    margin-right: 4px;
}

.bento-view-link {
    color: var(--accent-gold, #d4a017);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Spotlight Reel View Mode (Horizontal Carousel Scroll) */
.gallery-luxury-grid.reel-mode {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 24px;
    gap: 24px;
    grid-template-columns: none !important;
    grid-auto-rows: auto !important;
}

.gallery-luxury-grid.reel-mode::-webkit-scrollbar {
    height: 6px;
}

.gallery-luxury-grid.reel-mode::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.gallery-luxury-grid.reel-mode::-webkit-scrollbar-thumb {
    background: var(--accent-gold, #d4a017);
    border-radius: 10px;
}

.gallery-luxury-grid.reel-mode .bento-luxury-card {
    flex: 0 0 350px !important;
    height: 420px !important;
    scroll-snap-align: start;
}

/* Gallery Footer Telemetry Bar */
.gallery-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding: 20px 28px;
    background: rgba(18, 24, 34, 0.65);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
}

body:not(.stargazing-mode) .gallery-footer-bar {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(212, 160, 23, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.gallery-telemetry-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.gallery-telemetry-divider {
    width: 1px;
    height: 20px;
    background: rgba(212, 160, 23, 0.25);
}

.gallery-archive-btn {
    margin-left: auto;
    font-size: 0.75rem;
    padding: 10px 22px;
}

@media (max-width: 900px) {
    .gallery-controls-strip {
        flex-direction: column;
        align-items: stretch;
    }
    .gallery-controls-strip .gallery-filter-tabs {
        justify-content: center;
    }
    .gallery-view-switcher {
        align-self: center;
    }
    .gallery-footer-bar {
        flex-direction: column;
        text-align: center;
    }
    .gallery-telemetry-divider {
        display: none;
    }
    .gallery-archive-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

/* Lightbox Modal */
.global-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.global-lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: var(--accent-gold, #d4a017);
    color: #000;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body, sans-serif);
    margin-top: 12px;
    font-size: 0.95rem;
    text-align: center;
}

.bento-item.bento-large .bento-title {
    font-size: 1.7rem;
}

.bento-meta-snippet {
    font-size: 0.85rem;
    color: rgba(245, 242, 235, 0.82);
    margin-top: 4px;
}

.bento-zoom-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(15, 20, 28, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}

.bento-item:hover .bento-zoom-icon {
    opacity: 1;
    transform: scale(1);
    background: var(--accent-gold);
    color: #14171a;
    border-color: var(--accent-gold);
}

/* Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 16, 0.9);
    backdrop-filter: blur(20px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-gold);
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.lightbox-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(20, 23, 26, 0.8);
    border: 1px solid var(--border-gold);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section 7: Luxe Master Expedition Showcase */
.expeditions-section {
    padding: 110px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.expedition-tabs-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.expedition-tab-btn {
    padding: 12px 24px;
    border-radius: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.expedition-tab-btn.active,
.expedition-tab-btn:hover {
    background: var(--bg-dark);
    color: var(--accent-gold);
    border-color: var(--bg-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.expedition-stage-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: stretch;
}

.expedition-visual-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 0.51px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
    height: 660px;
    background: #0b0e12;
}

.expedition-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition:
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.6s ease;
}

.expedition-visual-box:hover .expedition-hero-img {
    transform: scale(1.06);
}

.expedition-badge-pill {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(20, 23, 26, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    padding: 8px 18px;
    border-radius: 30px;
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.expedition-price-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(20, 23, 26, 0.9);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-gold);
    padding: 12px 20px;
    border-radius: 20px;
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.price-badge-lbl {
    display: block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    color: var(--accent-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.price-badge-val {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
}

.expedition-image-nav {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 23, 26, 0.85);
    backdrop-filter: blur(12px);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid var(--border-gold);
}

.exped-nav-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.exped-nav-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.exped-counter-text {
    font-family: var(--font-display);
    font-size: 0.76rem;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
}

/* Detail Card */
.expedition-detail-card {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exped-region-tag {
    font-family: var(--font-display);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    color: var(--accent-terracotta);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.exped-main-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.exped-main-snippet {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.exped-specs-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    padding: 14px;
    border-radius: 18px;
    margin-bottom: 24px;
}

.exped-spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exped-spec-item i {
    color: var(--accent-terracotta);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.spec-lbl {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-display);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.spec-val {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.exped-inclusions-box {
    margin-bottom: 20px;
}

.inclusions-title {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.inclusions-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.inclusion-item i {
    color: var(--accent-gold);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.exped-route-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-secondary);
    background: rgba(196, 85, 42, 0.06);
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(196, 85, 42, 0.2);
    margin-bottom: 24px;
}

.exped-route-note i {
    color: var(--accent-terracotta);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Stargazing Dark Mode Expeditions Overrides */
body.stargazing-mode .expedition-detail-card {
    background: #14171a;
    border-color: var(--border-dark);
}

body.stargazing-mode .exped-main-snippet,
body.stargazing-mode .exped-route-note {
    color: var(--text-muted);
}

body.stargazing-mode .exped-specs-strip,
body.stargazing-mode .inclusion-item {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-dark);
    color: #ffffff;
}

.card-meta-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.card-snippet {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-footer-price {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-val {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-terracotta);
}

.btn-card-details {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.expedition-card:hover .btn-card-details {
    background: var(--accent-terracotta);
    color: #ffffff;
    border-color: var(--accent-terracotta);
}

.seasons-section {
    padding: 100px 0 110px;
    background: var(--bg-primary);
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.seasons-timeline-list {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.season-timeline-row {
    display: grid;
    grid-template-columns: 220px 1fr 160px 48px;
    align-items: center;
    gap: 24px;
    padding: 28px 20px;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.season-timeline-row:last-child {
    border-bottom: none;
}

.season-timeline-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.season-timeline-row:hover {
    background: rgba(201, 160, 80, 0.05);
    padding-left: 28px;
}

.season-timeline-row:hover::before {
    opacity: 1;
}

body.stargazing-mode .season-timeline-row:hover {
    background: rgba(226, 184, 102, 0.08);
}

.season-row-date {
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--accent-gold, #c9a050);
    text-transform: uppercase;
}

.season-row-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.season-row-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.25;
}

.season-row-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.season-row-temp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(201, 160, 80, 0.08);
    border: 1px solid rgba(201, 160, 80, 0.22);
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
}

.season-row-temp i {
    width: 14px;
    height: 14px;
    color: var(--accent-gold);
}

.season-row-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.season-timeline-row:hover .season-row-link {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #14171a;
    transform: translateX(4px);
}

.season-row-link i {
    width: 16px;
    height: 16px;
}

@media (max-width: 900px) {
    .season-timeline-row {
        grid-template-columns: 1fr 48px;
        gap: 16px;
    }
    .season-row-date {
        margin-bottom: 4px;
    }
    .season-row-temp {
        margin-top: 8px;
    }
}

.builder-section {
    padding: 100px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

.builder-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 56px 52px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .builder-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 36px 28px;
    }
}

.builder-header {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.builder-header .section-title-lg {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--text-primary);
    line-height: 1.18;
    margin-top: 12px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.builder-header .section-subtitle {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.builder-editorial-meta {
    display: flex;
    gap: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--accent-terracotta);
    text-transform: uppercase;
}

.meta-value {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-primary);
}

.builder-form-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.builder-step {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 24px;
}

.builder-step:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.step-title {
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-option {
    padding: 10px 18px;
    border-radius: 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.pill-option i,
.pill-option svg {
    width: 14px;
    height: 14px;
    color: var(--accent-terracotta);
}

.pill-option:hover {
    border-color: var(--text-primary);
}

.pill-option.active {
    background: var(--text-primary);
    color: #ffffff;
    border-color: var(--text-primary);
}

.pill-option.active i,
.pill-option.active svg {
    color: var(--accent-gold);
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 600px) {
    .form-row-2,
    .form-row-3 {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-primary);
    outline: none;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%3C181c20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-control:focus {
    border-color: var(--text-primary);
    background: #ffffff;
}

.builder-submit-box {
    margin-top: 10px;
}

.btn-luxury-cta.btn-lg {
    width: 100%;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.9rem;
    border-radius: 30px;
    background: var(--text-primary);
    color: #ffffff;
    border: none;
    box-shadow: none;
}

.btn-luxury-cta.btn-lg:hover {
    background: var(--accent-terracotta);
    transform: translateY(-2px);
}

/* Stargazing Dark Mode Support */
body.stargazing-mode .builder-card {
    background: var(--bg-card-translucent);
    border-color: var(--border-dark);
}

body.stargazing-mode .builder-step {
    border-color: var(--border-dark);
}

body.stargazing-mode .meta-value {
    color: #ffffff;
}

body.stargazing-mode .form-control {
    background: rgba(20, 23, 26, 0.7);
    border-color: var(--border-dark);
    color: #ffffff;
}

body.stargazing-mode .form-control:focus {
    background: var(--bg-dark);
    border-color: var(--accent-gold);
}

body.stargazing-mode select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%3Cc9a050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

.philosophy-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.quote-box {
    max-width: 860px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--accent-gold);
    line-height: 1;
    opacity: 0.4;
    margin-bottom: -20px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-style: italic;
    line-height: 1.38;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.quote-author {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-terracotta);
}

.footer-luxury {
    background: var(--bg-dark);
    color: var(--bg-primary);
    padding-top: 100px;
    padding-bottom: 50px;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-brand-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 20px;
    max-width: 320px;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(247, 244, 238, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-dark);
    padding: 14px 20px;
    border-radius: 30px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom-row {
    border-top: 1px solid var(--border-dark);
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================================
   FLUID DESKTOP BREAKPOINT — Adjusts spacing, NOT layout
   ============================================================ */
@media (max-width: 1024px) {
    /* Header Navbar: fluid scaling */
    .header-navbar {
        height: 68px;
        padding: 0 20px;
        width: calc(100% - 36px);
    }

    .header-navbar.scrolled {
        top: 10px;
        height: 64px;
    }

    .nav-brand {
        gap: 12px;
    }

    .brand-emblem {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }

    .brand-title {
        font-size: 1.25rem;
        letter-spacing: 0.08em;
    }

    .brand-sub {
        font-size: 0.56rem;
        letter-spacing: 0.22em;
    }

    .nav-status-badge {
        padding: 6px 14px;
        gap: 10px;
        font-size: 0.74rem;
    }

    .nav-status-badge .status-divider,
    .nav-status-badge .status-item:last-child {
        display: none;
    }

    .nav-actions {
        gap: 10px;
    }

    .btn-audio-toggle {
        width: 40px;
        height: 40px;
    }

    .header-navbar .btn-luxury-cta {
        padding: 9px 16px;
        font-size: 0.76rem;
        letter-spacing: 0.08em;
    }

    /* Hero: tighter gap, smaller visuals */
    .hero-grid {
        gap: 32px;
    }

    .hero-visual-col {
        height: 460px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* Section padding reduction */
    .hero-section {
        padding: 140px 0 60px;
    }

    .altitude-section {
        padding: 60px 0;
    }

    /* Map explorer */
    .map-grid-layout {
        gap: 28px;
    }

    /* Expedition & stage */
    .expedition-visual-box {
        height: 440px;
    }

    .stage-wrapper,
    .expedition-stage-grid {
        gap: 32px;
    }

    /* Builder card */
    .builder-card {
        gap: 36px;
        padding: 40px 36px;
    }

    /* Altitude display */
    .altitude-display-card {
        gap: 28px;
    }

    /* Seasons */
    .seasons-grid {
        gap: 28px;
    }

    /* Footer */
    .footer-grid {
        gap: 32px;
    }

    /* Stats */
    .acclim-stats-row {
        gap: 20px;
    }

    /* Gallery cards */
    .grid-cards-view {
        gap: 24px;
    }

    /* Sanctuary codex */
    .sanctuary-codex-grid {
        gap: 28px;
    }

    /* Dest detail */
    .dest-detail-layout-grid {
        gap: 32px;
    }

    .dest-row-two-col {
        gap: 24px;
    }

    /* Destination two-col page */
    .dest-two-col-grid {
        gap: 28px;
    }

    /* Dossier layout */
    .dossier-layout-grid {
        gap: 32px;
    }

    /* Contact page grid */
    .contact-grid {
        gap: 32px;
    }

    /* Itinerary layout */
    .itinerary-layout-grid {
        gap: 32px;
    }

    /* Page hero */
    .page-hero-title {
        font-size: clamp(2rem, 3.5vw, 3.2rem);
    }

    /* Contact luxury grid */
    .contact-luxury-grid {
        gap: 28px;
    }

    /* Package detail dossier */
    .dossier-spec-bar {
        gap: 20px;
    }

    /* Team grid: keep 3 cols but tighter */
    .team-grid {
        gap: 24px;
    }
}

/* ============================================================
   STACKING BREAKPOINT — Layouts switch to single column
   ============================================================ */
@media (max-width: 900px) {
    /* Header Navbar: compact tablet presentation */
    .header-navbar {
        top: 12px;
        height: 62px;
        padding: 0 16px;
        width: calc(100% - 28px);
        border-radius: 32px;
    }

    .header-navbar.scrolled {
        top: 8px;
        height: 58px;
    }

    .nav-brand {
        gap: 10px;
    }

    .brand-emblem {
        width: 38px;
        height: 38px;
        font-size: 0.98rem;
    }

    .brand-title {
        font-size: 1.15rem;
        letter-spacing: 0.06em;
    }

    .brand-sub {
        display: none;
    }

    .nav-status-badge {
        display: none;
    }

    .nav-actions {
        gap: 8px;
    }

    .btn-audio-toggle {
        width: 38px;
        height: 38px;
    }

    .header-navbar .btn-luxury-cta {
        padding: 8px 14px;
        font-size: 0.72rem;
        letter-spacing: 0.06em;
    }

    .hero-grid,
    .map-grid-layout,
    .stage-wrapper,
    .expedition-stage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expedition-visual-box {
        height: 440px;
    }

    .bento-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item-large,
    .bento-item-wide {
        grid-column: span 2;
    }

    .astro-card {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual-col {
        height: 480px;
    }

    .altitude-display-card {
        grid-template-columns: 1fr;
    }

    .altitude-steps-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .seasons-grid,
    .builder-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .acclim-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    /* Header Navbar: sleek mobile presentation */
    .header-navbar {
        top: 10px;
        width: calc(100% - 20px);
        padding: 0 12px 0 14px;
        height: 56px;
        border-radius: 28px;
    }

    .header-navbar.scrolled {
        top: 6px;
        height: 54px;
    }

    .nav-brand {
        gap: 8px;
    }

    .brand-emblem {
        width: 34px;
        height: 34px;
        font-size: 0.88rem;
    }

    .brand-title {
        font-size: 1.05rem;
        letter-spacing: 0.04em;
    }

    .brand-sub {
        display: none;
    }

    .nav-status-badge {
        display: none;
    }

    .nav-actions {
        gap: 6px;
    }

    .btn-audio-toggle {
        width: 34px;
        height: 34px;
    }

    .header-navbar .btn-luxury-cta {
        display: none;
    }

    .menu-drawer-trigger {
        padding: 6px 4px;
    }

    .menu-drawer-trigger span {
        width: 20px;
        height: 2px;
    }

    .drawer-content {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        border-radius: 0;
        padding: 28px 20px;
        border: none;
    }

    .drawer-close-btn {
        top: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
    }

    .drawer-menu-link {
        padding: 12px 14px;
        font-size: 1.2rem;
    }

    .bento-gallery-grid {
        grid-template-columns: 1fr;
    }

    .bento-item-large,
    .bento-item-tall,
    .bento-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .astro-card {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .altitude-steps-nav {
        grid-template-columns: 1fr;
    }

    .builder-card {
        padding: 30px 20px;
    }

    .expedition-card {
        width: 320px;
    }

    .expedition-visual-box {
        height: 360px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .acclim-stats-row {
        grid-template-columns: 1fr;
    }
}

/* Page Hero Banner */
.page-hero-section {
    padding: 160px 0 40px 0;
    background: linear-gradient(
        180deg,
        var(--bg-secondary) 0%,
        var(--bg-primary) 100%
    );
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.page-hero-content {
    max-width: 820px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    color: var(--text-primary);
    margin-top: 12px;
    margin-bottom: 16px;
    line-height: 1.18;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.76rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.breadcrumb-nav a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* Team Grid Section - Hyper-Modern Immersive Full-Cover Cards */
/* Ultra-Minimalist Team Portrait Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 50px;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card-minimal {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 14px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.team-card-minimal:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--border-gold);
}

.team-portrait-frame {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    background: #181c20;
}

.team-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.5s ease;
}

.team-card-minimal:hover .team-portrait-frame img {
    transform: scale(1.06);
}

.team-portrait-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 15, 20, 0.4) 0%,
        transparent 50%
    );
}

.team-minimal-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(20, 23, 26, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.team-minimal-footer {
    padding: 20px 8px 6px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.team-minimal-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-minimal-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.01em;
}

.team-minimal-role {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--accent-terracotta);
    text-transform: uppercase;
}

.team-minimal-action {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card-minimal:hover .team-minimal-action {
    background: var(--accent-terracotta);
    color: #ffffff;
    border-color: var(--accent-terracotta);
    transform: rotate(45deg);
}

.team-minimal-action i,
.team-minimal-action svg {
    width: 20px;
    height: 20px;
}

body.stargazing-mode .team-card-minimal {
    background: var(--bg-card-translucent);
    border-color: var(--border-dark);
}

body.stargazing-mode .team-minimal-name {
    color: #ffffff;
}

body.stargazing-mode .team-minimal-action {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Unique Out-of-the-Box Panoramic Ridge Deck & Expedition Horizons */
.exped-deck-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.deck-view-switcher {
    display: inline-flex;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 4px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}

.deck-switch-btn {
    background: transparent;
    border: none;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.deck-switch-btn.active,
.deck-switch-btn:hover {
    background: var(--accent-terracotta);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(196, 85, 42, 0.3);
}

.deck-live-telemetry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(201, 160, 80, 0.08);
    border: 1px solid rgba(201, 160, 80, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
}

.pulse-dot-cyan {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00e5ff;
    box-shadow: 0 0 10px #00e5ff;
    animation: pulseCyan 2s infinite;
}

@keyframes pulseCyan {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7);
    }
    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 10px rgba(0, 229, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

/* Panoramic Ridge Deck */
.panoramic-ridge-deck {
    display: flex;
    height: 520px;
    width: 100%;
    gap: 14px;
    margin-top: 12px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ridge-slice {
    position: relative;
    flex: 1;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #14171a;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition:
        flex 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s ease,
        border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ridge-slice.active,
.panoramic-ridge-deck:not(.has-active) .ridge-slice:first-child,
.ridge-slice:hover {
    flex: 4.8;
    border-color: var(--accent-gold);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(201, 160, 80, 0.25);
}

.ridge-slice-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ridge-slice-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.6s ease;
    filter: brightness(0.65) saturate(0.9);
}

.ridge-slice.active .ridge-slice-bg img,
.ridge-slice:hover .ridge-slice-bg img {
    transform: scale(1.06);
    filter: brightness(0.85) saturate(1.1);
}

.ridge-slice-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(14, 17, 20, 0.25) 0%,
        rgba(14, 17, 20, 0.15) 30%,
        rgba(14, 17, 20, 0.85) 65%,
        rgba(14, 17, 20, 0.98) 100%
    );
    z-index: 1;
}

/* Collapsed Spine State */
.ridge-spine {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 24px 12px;
    pointer-events: none;
    opacity: 1;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.ridge-slice.active .ridge-spine,
.ridge-slice:hover .ridge-spine {
    opacity: 0;
    visibility: hidden;
}

.spine-num {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
}

.spine-title-vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}

.spine-alt-pill {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--accent-terracotta);
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 10px;
    border-radius: 16px;
    white-space: nowrap;
}

/* Expanded Full Dossier State */
.ridge-expanded-dossier {
    position: relative;
    z-index: 3;
    padding: 32px 36px 28px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease 0.15s,
        visibility 0.5s ease 0.15s;
}

.ridge-slice.active .ridge-expanded-dossier,
.ridge-slice:hover .ridge-expanded-dossier {
    opacity: 1;
    visibility: visible;
}

.ridge-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ridge-badges-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ridge-stamp {
    background: rgba(14, 17, 20, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}

.ridge-alt-badge {
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent-terracotta);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ridge-coords {
    font-family: var(--font-display);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ridge-main-content {
    margin-top: auto;
    margin-bottom: 22px;
}

.ridge-meta-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ridge-exped-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 2.3vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 0;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.ridge-exped-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    max-width: 680px;
    margin-bottom: 20px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.ridge-dna-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ridge-dna-pill {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ridge-dna-pill i {
    color: var(--accent-gold);
    width: 14px;
    height: 14px;
}

.ridge-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.ridge-price-block {
    display: flex;
    flex-direction: column;
}

.ridge-price-lbl {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ridge-price-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.ridge-cta-btn {
    background: #ffffff;
    color: #14171a;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ridge-cta-btn:hover {
    background: var(--accent-terracotta);
    color: #ffffff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(196, 85, 42, 0.5);
}

/* Trans-Himalayan Altitude Horizon Map Bar */
.altitude-horizon-bar {
    margin-top: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 24px 32px;
    box-shadow: var(--shadow-sm);
}

.altitude-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.altitude-bar-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.altitude-waypoints-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
}

.altitude-waypoint-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    padding: 12px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.altitude-waypoint-item:hover,
.altitude-waypoint-item.active {
    background: var(--bg-primary);
    border-color: var(--accent-gold);
}

.waypoint-node {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-terracotta);
    border: 3px solid #ffffff;
    box-shadow: 0 0 10px rgba(196, 85, 42, 0.5);
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.altitude-waypoint-item:hover .waypoint-node {
    transform: scale(1.3);
    background: var(--accent-gold);
}

.waypoint-name {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.waypoint-alt {
    font-family: var(--font-display);
    font-size: 0.65rem;
    color: var(--accent-terracotta);
    font-weight: 600;
}

/* Stargazing Dark Mode Horizon Bar */
body.stargazing-mode .altitude-horizon-bar {
    background: #14171a;
    border-color: var(--border-dark);
}

body.stargazing-mode .altitude-waypoint-item:hover,
body.stargazing-mode .altitude-waypoint-item.active {
    background: rgba(255, 255, 255, 0.05);
}

/* Next-Gen Luxury Expedition Dossier Cards (Modern Eye-Catchy Redesign) */
.grid-cards-view {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .grid-cards-view {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .grid-cards-view {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.expedition-lux-card {
    position: relative;
    height: 590px;
    border-radius: 30px;
    overflow: hidden;
    background: #14171a;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
}

.expedition-lux-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.25),
        0 0 35px rgba(201, 160, 80, 0.3);
}

.lux-card-image-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.lux-card-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.5s ease;
    filter: brightness(0.85);
}

.expedition-lux-card:hover .lux-card-image-bg img {
    transform: scale(1.08);
    filter: brightness(0.98);
}

.lux-card-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(14, 17, 20, 0.65) 0%,
        rgba(14, 17, 20, 0.15) 35%,
        rgba(14, 17, 20, 0.75) 75%,
        rgba(14, 17, 20, 0.95) 100%
    );
    pointer-events: none;
}

/* Top Floating Telemetry HUD */
.lux-card-hud-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lux-exped-stamp {
    background: rgba(14, 17, 20, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 160, 80, 0.4);
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}

.lux-alt-pill {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--accent-terracotta);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lux-alt-pill i {
    width: 13px;
    height: 13px;
}

/* Mid Highlights / Feature Chips */
.lux-feature-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 14px;
}

.lux-tag-chip {
    background: rgba(20, 23, 26, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.lux-tag-chip i {
    color: var(--accent-gold);
    width: 12px;
    height: 12px;
}

/* Floating Frosted Bottom Capsule */
.lux-card-capsule {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    padding: 20px 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

body.stargazing-mode .lux-card-capsule {
    background: rgba(20, 23, 26, 0.92);
    border-color: rgba(201, 160, 80, 0.3);
}

.lux-capsule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.lux-capsule-theme {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-terracotta);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lux-capsule-duration {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lux-capsule-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

body.stargazing-mode .lux-capsule-title {
    color: #ffffff;
}

.expedition-lux-card:hover .lux-capsule-title {
    color: var(--accent-terracotta);
}

.lux-capsule-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.stargazing-mode .lux-capsule-desc {
    color: rgba(255, 255, 255, 0.75);
}

.lux-capsule-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

body.stargazing-mode .lux-capsule-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.lux-price-group {
    display: flex;
    flex-direction: column;
}

.lux-price-lbl {
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.lux-price-val {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

body.stargazing-mode .lux-price-val {
    color: #ffffff;
}

.lux-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    background: #14171a;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.lux-cta-pill i {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.expedition-lux-card:hover .lux-cta-pill {
    background: var(--accent-terracotta);
    box-shadow: 0 6px 20px rgba(196, 85, 42, 0.4);
    transform: translateY(-2px);
}

.expedition-lux-card:hover .lux-cta-pill i {
    transform: translateX(4px);
}

/* Unique Out-of-the-Box Sculpted Expedition Dossier Cards */
.exped-dossier-grid,
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 30px;
}

.exped-dossier-card {
    background: var(--bg-card);
    border-radius: 32px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.exped-dossier-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 60px rgba(24, 28, 32, 0.16),
        0 0 35px rgba(201, 160, 80, 0.25);
    border-color: var(--accent-terracotta);
}

/* Chamber 1: Visual Portal Window with Elevation & Coordinates */
.dossier-visual-chamber {
    height: 270px;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.dossier-visual-chamber img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.8s ease;
}

.exped-dossier-card:hover .dossier-visual-chamber img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.dossier-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20, 23, 26, 0.3) 0%,
        transparent 40%,
        rgba(20, 23, 26, 0.85) 100%
    );
}

.dossier-top-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.dossier-stamp-pill {
    background: rgba(20, 23, 26, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dossier-altitude-pill {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-light);
    color: var(--accent-terracotta);
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dossier-altitude-pill i {
    color: var(--accent-terracotta);
    width: 12px;
    height: 12px;
}

.dossier-coord-bar {
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 0.68rem;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.dossier-coord-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Chamber 2: Editorial Dossier Body */
.dossier-body {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    background: var(--bg-card);
}

.dossier-header-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.dossier-tag-pill {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    background: rgba(196, 85, 42, 0.1);
    border: 1px solid rgba(196, 85, 42, 0.25);
    padding: 4px 10px;
    border-radius: 12px;
}

.dossier-duration-pill {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.dossier-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.exped-dossier-card:hover .dossier-title {
    color: var(--accent-terracotta);
}

.dossier-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Chamber 3: Expedition DNA Metric Grid */
.dossier-dna-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 18px;
}

.dossier-dna-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dossier-dna-item i {
    color: var(--accent-terracotta);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Chamber 4: Magnetic Price & Action Footer */
.dossier-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.dossier-price-box {
    display: flex;
    flex-direction: column;
}

.dossier-price-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dossier-price-val {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.dossier-cta-btn {
    background: var(--accent-terracotta);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(196, 85, 42, 0.3);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dossier-cta-btn:hover {
    background: #181c20;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 28, 32, 0.3);
}

.dossier-cta-btn i {
    transition: transform 0.3s ease;
}

.dossier-cta-btn:hover i {
    transform: translate(2px, -2px);
}

/* Stargazing Dark Mode Dossier Overrides */
body.stargazing-mode .exped-dossier-card {
    background: #14171a;
    border-color: var(--border-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

body.stargazing-mode .dossier-body {
    background: #14171a;
}

body.stargazing-mode .dossier-dna-grid {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-dark);
}

body.stargazing-mode .dossier-dna-item {
    color: #f7f4ee;
}

body.stargazing-mode .dossier-altitude-pill {
    background: rgba(20, 23, 26, 0.88);
    border-color: var(--border-dark);
    color: var(--accent-gold);
}

body.stargazing-mode .dossier-altitude-pill i {
    color: var(--accent-gold);
}

@media (max-width: 900px) {
    .panoramic-ridge-deck {
        flex-direction: column;
        height: auto;
    }
    .ridge-slice {
        height: 120px;
    }
    .ridge-slice.active,
    .ridge-slice:hover {
        height: 480px;
        flex: none;
    }
    .ridge-spine {
        flex-direction: row;
        padding: 20px;
    }
    .spine-title-vertical {
        writing-mode: horizontal-tb;
        transform: none;
    }
    .altitude-waypoints-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .altitude-waypoints-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .ridge-exped-title {
        font-size: 1.6rem;
    }
    .ridge-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .ridge-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Master Package Details Page Architecture */
.detail-package-selector-strip {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 16px 0 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) transparent;
}

.detail-package-selector-strip::-webkit-scrollbar {
    height: 4px;
}

.detail-package-selector-strip::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.package-selector-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-sm);
}

.package-selector-pill:hover,
.package-selector-pill.active {
    background: var(--accent-terracotta);
    color: #ffffff;
    border-color: var(--accent-terracotta);
    box-shadow: 0 6px 18px rgba(196, 85, 42, 0.35);
    transform: translateY(-2px);
}

.package-selector-pill .pill-num {
    color: var(--accent-gold);
    font-weight: 800;
}

.package-selector-pill.active .pill-num {
    color: #ffffff;
}

.itinerary-layout-grid {
    width: 100%;
    margin: 20px 0 0 0;
}

.itinerary-main-stream {
    width: 100%;
}

/* The timeline rail wrapper/* The timeline rail wrapper */
#itineraryDaysContainer,
#pkg-itinerary-container {
    position: relative;
    padding-left: 0 !important;
    margin-top: 32px;
}

/* Dedicated Left-Side Expedition Route Container */
.waypoint-matrix-container {
    position: relative;
    padding-left: 56px !important;
    margin-top: 36px;
}

/* Continuous Vertical Expedition Route Rail */
.waypoint-matrix-container::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 32px;
    bottom: 32px;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--accent-gold, #c9a050) 0px,
        var(--accent-gold, #c9a050) 8px,
        transparent 8px,
        transparent 14px
    );
    z-index: 1;
    opacity: 0.85;
    display: block !important;
}

/* Each Expedition Route Step (Waypoint Marker + Card) */
.expedition-route-step {
    position: relative;
    margin-bottom: 28px;
}

.expedition-route-step:last-child {
    margin-bottom: 0;
}

/* Waypoint Marker Aligned on Left Route Line */
.route-waypoint-marker {
    position: absolute;
    left: -56px;
    top: 24px;
    width: 56px;
    height: 24px;
    display: flex;
    align-items: center;
    z-index: 4;
    pointer-events: none;
}

.waypoint-pin {
    width: 22px;
    height: 22px;
    margin-left: 9px;
    border-radius: 50%;
    background: rgba(18, 22, 28, 0.95);
    border: 2px solid var(--accent-gold, #c9a050);
    box-shadow: 0 0 10px rgba(201, 160, 80, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.waypoint-pin-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-gold, #c9a050);
    box-shadow: 0 0 6px rgba(201, 160, 80, 0.8);
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.waypoint-connector-arm {
    flex: 1;
    height: 2px;
    background: linear-gradient(
        to right,
        var(--accent-gold, #c9a050),
        rgba(201, 160, 80, 0.25)
    );
    margin-left: 4px;
}

/* Hover Interaction: Highlight corresponding Waypoint Pin on Route */
.expedition-route-step:hover .waypoint-pin {
    transform: scale(1.25);
    border-color: #ffffff;
    box-shadow: 0 0 16px rgba(201, 160, 80, 0.85);
}

.expedition-route-step:hover .waypoint-pin-dot {
    background: #ffffff;
    box-shadow: 0 0 8px #ffffff;
}

/* Waypoint Matrix Card Item — Compact Fixed Height & Independent Content */
.waypoint-matrix-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 1fr 310px;
    align-items: stretch;
    overflow: hidden;
    height: 180px;
    max-height: 180px;
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease;
    position: relative;
    z-index: 2;
}

.waypoint-matrix-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 160, 80, 0.45);
}

/* Inner Header Chip Bar */
.waypoint-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.waypoint-header-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(18, 22, 28, 0.9);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.waypoint-alt-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(196, 85, 42, 0.08);
    color: var(--accent-terracotta);
    border: 1px solid rgba(196, 85, 42, 0.22);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Card Left Content */
.waypoint-card-content {
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.waypoint-day-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.waypoint-day-desc {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Tags Strip */
.waypoint-tags-strip {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.waypoint-mini-tag {
    font-family: var(--font-display);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 9px;
    border-radius: 10px;
    background: rgba(201, 160, 80, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(201, 160, 80, 0.2);
}

/* 2. Card Right Media Portal with Seamless Mask Blending */
.waypoint-card-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 24px 24px 0;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 14%,
        #000 100%
    );
    mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 100%);
    background: #ffffff;
}

/* Multi-stop feathered gradient overlay to eliminate all hard edges & seams */
.waypoint-card-media::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -2px;
    bottom: -5px;
    width: 65px;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255, 255, 255, 0.85) 18%,
        rgba(255, 255, 255, 0.35) 45%,
        transparent 100%
    );
    z-index: 4;
    pointer-events: none;
}

/* 3. Subtle Image Hover Scale */
.waypoint-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.waypoint-matrix-card:hover .waypoint-card-media img {
    transform: scale(1.06);
}

.waypoint-media-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(18, 22, 28, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 5;
}

/* Responsive adjustments for Left Expedition Route Timeline */
@media (max-width: 991px) {
    .waypoint-matrix-container {
        padding-left: 44px !important;
    }
    .waypoint-matrix-container::before {
        left: 14px;
    }
    .route-waypoint-marker {
        left: -44px;
        width: 44px;
    }
    .waypoint-pin {
        width: 18px;
        height: 18px;
        margin-left: 5px;
    }
    .waypoint-pin-dot {
        width: 6px;
        height: 6px;
    }
    .waypoint-matrix-card {
        grid-template-columns: 1fr 240px;
    }
}

@media (max-width: 767px) {
    .waypoint-matrix-container {
        padding-left: 36px !important;
    }
    .waypoint-matrix-container::before {
        left: 10px;
    }
    .route-waypoint-marker {
        left: -36px;
        width: 36px;
    }
    .waypoint-pin {
        width: 16px;
        height: 16px;
        margin-left: 2px;
    }
    .waypoint-pin-dot {
        width: 5px;
        height: 5px;
    }
    .waypoint-matrix-card {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
    }
    .waypoint-card-media {
        height: 160px;
        border-radius: 0 0 24px 24px;
        clip-path: none;
        -webkit-mask-image: none;
        mask-image: none;
    }
}

/* Subtle gradient overlay on image */
.itinerary-day-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.18) 0%,
        transparent 40%
    );
    pointer-events: none;
}

/* Inclusions & Exclusions Split */
.inclusions-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-left: 59px;
    margin-top: 36px;
}

.inclusion-box {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.inclusion-box-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusion-box-title.included {
    color: #15803d;
}

.inclusion-box-title.excluded {
    color: #dc2626;
}

.inclusion-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

body.stargazing-mode .inclusion-list-item {
    color: var(--text-light);
}

.inclusion-list-item i,
.inclusion-list-item svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.inclusion-list-item i.check,
.inclusion-list-item svg.check,
.inclusion-list-item .check {
    color: #16a34a;
    stroke: #16a34a;
}

.inclusion-list-item i.cross,
.inclusion-list-item svg.cross,
.inclusion-list-item .cross {
    color: #dc2626;
    stroke: #dc2626;
}

/* Sticky Luxury Booking Calculator Widget */
.sticky-booking-widget {
    position: sticky;
    top: 100px;
    background: var(--bg-card);
    border-radius: 28px;
    padding: 32px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.widget-price-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.widget-price-val {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.widget-guest-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 8px 16px;
    margin-bottom: 18px;
}

.guest-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.guest-counter-btn:hover {
    background: var(--accent-terracotta);
    color: #ffffff;
    border-color: var(--accent-terracotta);
}

.widget-addons-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.widget-addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.widget-addon-row input[type="checkbox"] {
    accent-color: var(--accent-terracotta);
    width: 16px;
    height: 16px;
}

.widget-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.widget-total-val {
    color: var(--accent-terracotta);
}

.widget-assurance-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.widget-assurance-strip span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Stargazing Dark Mode Overrides for Package Details */
body.stargazing-mode .package-selector-pill {
    background: #14171a;
    border-color: var(--border-dark);
}

body.stargazing-mode .itinerary-day-card,
body.stargazing-mode .inclusion-box,
body.stargazing-mode .sticky-booking-widget {
    background: #14171a;
    border-color: var(--border-dark);
}

body.stargazing-mode .widget-guest-selector {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-dark);
}

body.stargazing-mode .guest-counter-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-dark);
    color: #ffffff;
}

body.stargazing-mode .sanctuary-codex-card {
    background: #14171a;
    border-color: var(--border-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

body.stargazing-mode .sanctuary-card-title {
    color: #f8fafc;
}

body.stargazing-mode .sanctuary-codex-card:hover .sanctuary-card-title {
    color: var(--accent-gold);
}

body.stargazing-mode .sanctuary-card-desc {
    color: #cbd5e1;
}

body.stargazing-mode .sanctuary-h-chip {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f1f5f9;
}

body.stargazing-mode .sanctuary-trip-link {
    color: #94a3b8;
}

body.stargazing-mode .sanctuary-trip-link:hover {
    color: var(--accent-gold);
}

body.stargazing-mode .sanctuary-filter-column-panel {
    background: #14171a;
    border-color: var(--border-dark);
}

body.stargazing-mode .filter-panel-header {
    color: var(--accent-gold);
    border-bottom-color: var(--border-dark);
}

body.stargazing-mode
    .sanctuary-filter-ribbon.vertical-column
    .sanctuary-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-dark);
    color: #f8fafc;
}

body.stargazing-mode
    .sanctuary-filter-ribbon.vertical-column
    .sanctuary-filter-btn
    i,
body.stargazing-mode
    .sanctuary-filter-ribbon.vertical-column
    .sanctuary-filter-btn
    svg {
    color: var(--accent-gold);
}

body.stargazing-mode
    .sanctuary-filter-ribbon.vertical-column
    .sanctuary-filter-btn.active {
    background: linear-gradient(135deg, var(--accent-gold), #c99330);
    color: #12151c;
}

body.stargazing-mode
    .sanctuary-filter-ribbon.vertical-column
    .sanctuary-filter-btn.active
    i,
body.stargazing-mode
    .sanctuary-filter-ribbon.vertical-column
    .sanctuary-filter-btn.active
    svg {
    color: #12151c;
}

@media (max-width: 900px) {
    .itinerary-layout-grid {
        grid-template-columns: 1fr;
    }
    .sticky-booking-widget {
        position: static;
    }
    .inclusions-split-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .itinerary-day-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }
    .itinerary-day-media {
        width: 100%;
        height: 190px;
    }
    .itinerary-day-title {
        font-size: 1.25rem;
    }
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

.contact-info-card {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.contact-method-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-terracotta);
    flex-shrink: 0;
}

.contact-lbl {
    font-family: var(--font-display);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-val {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
}

.contact-form-card {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.76rem;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    padding: 14px 18px;
    border-radius: 16px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

/* Stargazing Dark Mode Extensions */
body.stargazing-mode .page-hero-section {
    background: linear-gradient(180deg, #0b0e12 0%, #14171a 100%);
    border-bottom-color: var(--border-dark);
}

body.stargazing-mode .team-card,
body.stargazing-mode .itinerary-day-card,
body.stargazing-mode .contact-info-card,
body.stargazing-mode .contact-form-card {
    background: #14171a;
    border-color: var(--border-dark);
}

body.stargazing-mode .form-input,
body.stargazing-mode .form-select,
body.stargazing-mode .form-textarea,
body.stargazing-mode .day-tag,
body.stargazing-mode .contact-icon-box {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-dark);
    color: #ffffff;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .exped-dossier-grid,
    .packages-grid,
    .sanctuary-codex-grid,
    .dest-detail-layout-grid,
    .contact-luxury-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .team-grid,
    .exped-dossier-grid,
    .packages-grid,
    .sanctuary-codex-grid {
        grid-template-columns: 1fr;
    }
    .team-card-modern,
    .package-card-modern {
        height: 500px;
        padding: 20px;
    }
    .itinerary-day-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .dest-quick-matrix {
        grid-template-columns: 1fr 1fr;
    }
}

/* Page Hero Split Grid & Vertical Column Filter Panel */
.page-hero-split-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: center;
    margin-top: 16px;
}

.sanctuary-filter-column-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.filter-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--accent-terracotta);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.sanctuary-filter-ribbon.vertical-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
    padding: 0;
    overflow: visible;
}

.sanctuary-filter-ribbon.vertical-column .sanctuary-filter-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 11px 18px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    box-shadow: none;
    transition: all 0.3s ease;
}

.sanctuary-filter-ribbon.vertical-column .sanctuary-filter-btn i,
.sanctuary-filter-ribbon.vertical-column .sanctuary-filter-btn svg {
    color: var(--accent-gold);
}

.sanctuary-filter-ribbon.vertical-column .sanctuary-filter-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-gold);
    color: var(--text-primary);
    transform: translateX(4px);
}

.sanctuary-filter-ribbon.vertical-column .sanctuary-filter-btn.active {
    background: linear-gradient(135deg, var(--accent-gold), #c99330);
    color: #12151c;
    font-weight: 800;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(201, 160, 80, 0.35);
}

.sanctuary-filter-ribbon.vertical-column .sanctuary-filter-btn.active i,
.sanctuary-filter-ribbon.vertical-column .sanctuary-filter-btn.active svg {
    color: #12151c;
}

@media (max-width: 900px) {
    .page-hero-split-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.sanctuary-codex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 70px;
}
.dest-card-lux {
    position: relative;
    width: 100%;
    height: 540px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: none;
    transform: none;
}

.dest-card-lux:hover {
    transform: none;
    border: none;
}

.dest-card-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.dest-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-card-lux:hover .dest-card-media img {
    transform: scale(1.08);
}

.dest-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.04) 0%,
        rgba(0, 0, 0, 0.25) 35%,
        rgba(0, 0, 0, 0.82) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
    transition: background 0.4s ease;
}

.dest-card-content {
    position: relative;
    z-index: 2;
    padding: 32px 28px 30px 28px;
    display: flex;
    flex-direction: column;
}

.dest-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.dest-carousel-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
}

.dest-carousel-dots .dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.dest-card-name {
    font-family: var(--font-heading), "Outfit", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.dest-card-snippet {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    margin-bottom: 22px;
    font-weight: 400;
    max-width: 98%;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.dest-pills-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.dest-pill {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 999px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dest-pill.pill-glass {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.dest-pill.pill-dark {
    background: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

.dest-cta-btn {
    width: 100%;
    background: #ffffff;
    color: #000000;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 18px 24px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.01em;
}

.dest-cta-btn:hover {
    background: var(--accent-gold);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
    .sanctuary-codex-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sanctuary-codex-grid {
        grid-template-columns: 1fr;
    }
    .dest-card-lux {
        height: 580px;
    }
    .dest-card-name {
        font-size: 1.9rem;
    }
}

.sanctuary-top-telemetry {
    position: absolute;
    top: 20px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.card-top-caption {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #e2e8f0;
    letter-spacing: 0.02em;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.sanctuary-elevation-pill {
    background: rgba(15, 20, 29, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sanctuary-card-body {
    padding: 28px 28px 24px 28px;
    background: #0f141d;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.sanctuary-category-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sanctuary-category-tag {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #e5a93c;
    text-transform: uppercase;
}

.sanctuary-drive-time {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sanctuary-card-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.sanctuary-card-desc {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 24px;
    font-weight: 300;
}

.card-action-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
    margin-bottom: 24px;
}

.card-message-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-message-btn:hover {
    background: linear-gradient(135deg, #d4a017, #b8860b);
    border-color: #d4a017;
    color: #0f141d;
    font-weight: 700;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212, 160, 23, 0.4);
}

.card-secondary-btn {
    color: #cbd5e1;
    font-size: 0.82rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-secondary-btn:hover {
    color: var(--accent-gold);
}

.card-bottom-footer-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #94a3b8;
    font-family: var(--font-sans);
}

.card-footer-left {
    letter-spacing: 0.02em;
    font-weight: 500;
}

.card-footer-right {
    letter-spacing: 0.04em;
    color: #cbd5e1;
    font-weight: 500;
}

/* Destination Details Master Dossier */
.dest-selector-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 4px 28px;
    scrollbar-width: none;
    margin-bottom: 36px;
}

.dest-selector-strip::-webkit-scrollbar {
    display: none;
}

.dest-selector-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dest-selector-pill:hover {
    border-color: var(--accent-gold);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.dest-selector-pill.active {
    background: linear-gradient(135deg, var(--accent-gold), #c99330);
    color: #12151c;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.35);
}

.dest-detail-layout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.dest-row-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .dest-detail-layout-grid,
    .dest-row-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    #destSwitcherGrid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 640px) {
    #destSwitcherGrid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.dest-narrative-card {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    margin-bottom: 36px;
}

.experience-codex-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 36px;
}

.experience-codex-card {
    background: var(--bg-card);
    border-radius: 22px;
    border: 1px solid var(--border-light);
    padding: 24px;
    transition: all 0.35s ease;
}

.experience-codex-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: var(--shadow-md);
}

.experience-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 160, 23, 0.12);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.weather-telemetry-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.weather-matrix-cell {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 16px;
    text-align: center;
}

.weather-month-title {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.weather-temp-val {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.weather-sky-stat {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.contact-luxury-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-dispatch-card {
    background: var(--bg-card);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.contact-quick-channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}

.contact-channel-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-channel-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.contact-channel-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(212, 160, 23, 0.12);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-channel-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--accent-terracotta);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-channel-val {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-luxury-input {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    padding: 14px 18px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.form-luxury-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.faq-luxury-container {
    margin-top: 60px;
}

.faq-luxury-item {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-luxury-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-luxury-body {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    display: none;
}

.faq-luxury-item.active .faq-luxury-body {
    display: block;
}

.faq-luxury-item.active {
    border-color: var(--accent-gold);
}

@media (max-width: 900px) {
    #itineraryDaysContainer {
        padding-left: 52px;
    }

    .itinerary-timeline-node {
        left: -52px;
        width: 36px;
        height: 36px;
    }

    .itinerary-node-num {
        font-size: 0.82rem;
    }

    .itinerary-node-label {
        font-size: 0.48rem;
    }

    .itinerary-day-card {
        grid-template-columns: 1fr 160px;
        height: 148px;
    }

    .itinerary-day-title {
        font-size: 1rem;
    }

    .inclusions-split-grid {
        grid-template-columns: 1fr;
    }

    .contact-luxury-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    #itineraryDaysContainer {
        padding-left: 0;
    }

    #itineraryDaysContainer::before {
        display: none;
    }

    .itinerary-timeline-node {
        position: static;
        transform: none;
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
    }

    .itinerary-timeline-item {
        display: flex;
        flex-direction: column;
    }

    .itinerary-day-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .itinerary-day-media {
        height: 150px;
        order: -1;
    }

    .itinerary-day-content {
        padding: 16px 18px;
    }

    .itinerary-day-title {
        font-size: 1rem;
        white-space: normal;
    }

    .itinerary-day-desc {
        -webkit-line-clamp: 3;
    }

    .contact-quick-channels-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Form Styles */
.form-luxury-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.form-luxury-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

body.stargazing-mode .form-luxury-input {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: #f8fafc;
}

body.stargazing-mode .form-luxury-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.25);
}

/* Custom Interactive Dropdown Component */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select-trigger:hover {
    border-color: var(--accent-gold);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.18);
}

.custom-select-arrow {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    padding: 6px;
}

.custom-select.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-option:hover {
    background: rgba(212, 160, 23, 0.12);
    color: var(--accent-gold);
    font-weight: 600;
}

.custom-option.selected {
    background: linear-gradient(
        135deg,
        rgba(212, 160, 23, 0.18),
        rgba(212, 160, 23, 0.08)
    );
    color: var(--accent-gold);
    font-weight: 700;
}

/* Stargazing Dark Mode Support for Custom Dropdown */
body.stargazing-mode .custom-select-trigger {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: #f8fafc;
}

body.stargazing-mode .custom-select-options {
    background: #0f141d;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

body.stargazing-mode .custom-option {
    color: #cbd5e1;
}

body.stargazing-mode .custom-option:hover {
    background: rgba(212, 160, 23, 0.2);
    color: #f59e0b;
}

/* Visual Sanctuary Gallery Grid & Lightbox Component */
.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .gallery-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid-container {
        grid-template-columns: 1fr;
    }
}

.gallery-card-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 160, 23, 0.4);
}

.gallery-card-media {
    position: relative;
    width: 100%;
    height: 320px;
    cursor: pointer;
    overflow: hidden;
}

.gallery-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-media:hover img {
    transform: scale(1.08);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #ffffff;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.gallery-tag {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #ffffff;
}

.gallery-zoom-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 999px;
    width: fit-content;
    transition: all 0.3s ease;
}

.gallery-card-media:hover .gallery-zoom-badge {
    background: var(--accent-gold);
    color: #000000;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 14, 23, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 30px;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-container {
    position: relative;
    max-width: 1050px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.lightbox-caption {
    margin-top: 18px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #f8fafc;
    text-align: center;
    letter-spacing: 0.02em;
}

.lightbox-close-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close-btn:hover {
    background: var(--accent-gold);
    color: #000000;
    transform: rotate(90deg);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav-btn:hover {
    background: var(--accent-gold);
    color: #000000;
}

.lightbox-prev-btn {
    left: 24px;
}
.lightbox-next-btn {
    right: 24px;
}

/* Pinterest-Style Organic Masonry Layout */
.gallery-pinterest-masonry {
    column-count: 3;
    column-gap: 24px;
    width: 100%;
}

@media (max-width: 900px) {
    .gallery-pinterest-masonry {
        column-count: 2;
        column-gap: 20px;
    }
}

@media (max-width: 640px) {
    .gallery-pinterest-masonry {
        column-count: 1;
    }
}

.gallery-pin-card {
    break-inside: avoid;
    margin-bottom: 24px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-pin-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 160, 23, 0.5);
}

.gallery-pin-media {
    position: relative;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}

.gallery-pin-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-pin-media:hover img {
    transform: scale(1.08);
}

.gallery-pin-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.88) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #ffffff;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

/* Golden Himalayan Mountain Line Art Background (Transparent Outlines) */

/* 1. Home Page Hero Mountain (Remains untouched as configured on Home page) */
.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90%;
    background-image: url("../images/hero-mountain-lineart.png");
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
    transition:
        opacity 0.4s ease,
        filter 0.4s ease;
}

/* 2. Non-Home Pages Mountain Graphic (Anchored flush to extreme right & very bottom) */
.page-hero-section::before,
.dossier-hero::before {
    content: "";
    position: absolute;
    top: 21px;
    right: 0;
    bottom: 0;
    left: 52%;
    width: 50%;
    max-width: 1000px;
    height: 100%;
    background-image: url("../images/hero-mountain-lineart.png") !important;
    background-position: right bottom !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05 !important;
    display: block !important;
    transition:
        opacity 0.4s ease,
        filter 0.4s ease;
}

@media (max-width: 992px) {
    .page-hero-section::before,
    .dossier-hero::before {
        width: 65%;
    }
}

@media (max-width: 768px) {
    .page-hero-section::before,
    .dossier-hero::before {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-hero-section::before,
    .dossier-hero::before {
        width: 90%;
    }
}

.hero-grid,
.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-section {
    position: relative;
    padding: 140px 0 75px;
    background: linear-gradient(
        180deg,
        var(--bg-primary) 0%,
        rgba(212, 160, 23, 0.03) 100%
    );
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Stargazing Dark Mode — Golden Mountain Line Art Glow */
body.stargazing-mode .hero-section::after,
body.stargazing-mode .page-hero-section::before,
body.stargazing-mode .dossier-hero::before {
    opacity: 0.85 !important;
    filter: drop-shadow(0 0 12px rgba(226, 184, 102, 0.35)) brightness(1.1);
}

/* Hero Mountain Journey Controls */
.hero-journey-dots-bar {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-journey-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.hero-journey-dot.active {
    width: 24px;
    border-radius: 999px;
    background: var(--accent-gold);
}

.hero-img-bg {
    transition:
        opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 8s linear;
}

.elevation-number,
.widget-title {
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.4s ease;
}

@media (max-width: 768px) {
    .hero-visual-col {
        max-width: 100%;
        height: 420px;
    }
}

/* Animated Expedition Map Route Line */
.expedition-map-route-line {
    stroke-dasharray: 10, 10;
    animation: routeDashMarch 18s linear infinite;
    filter: drop-shadow(0 2px 8px rgba(196, 85, 42, 0.4));
}

@keyframes routeDashMarch {
    from {
        stroke-dashoffset: 400;
    }
    to {
        stroke-dashoffset: 0;
    }
}

body.about-page {
    background: var(--bg-primary) !important;
    background-image: none !important;
}

body.about-page .page-hero-section {
    background: var(--bg-primary) !important;
    background-image: none !important;
}

body.about-page .altitude-section,
body.about-page .expeditions-section {
    background: var(--bg-primary) !important;
    background-image: none !important;
}

body.about-page section {
    background-image: none !important;
}

body.packages-page .page-hero-section {
    background: var(--bg-primary) !important;
    background-image: none !important;
}

.dossier-hero {
    position: relative;
    background: var(--bg-primary) !important;
    background-image: none !important;
    padding: 140px 0 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.dossier-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.dossier-hero-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.dossier-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.dossier-tag.badge-terracotta {
    background: rgba(196, 85, 42, 0.08);
    border-color: rgba(196, 85, 42, 0.25);
    color: var(--accent-terracotta);
}

.dossier-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 14px;
}

.dossier-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 760px;
    line-height: 1.65;
}

/* Quick Spec Bar */
.dossier-spec-bar {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 22px 32px;
    margin-top: -36px;
    position: relative;
    z-index: 5;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: center;
}

@media (max-width: 900px) {
    .dossier-spec-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 24px;
    }
}

.spec-cell {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.spec-cell-icon {
    width: 22px;
    height: 22px;
    color: var(--accent-terracotta);
    flex-shrink: 0;
    margin-top: 2px;
}

.spec-cell-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.spec-cell-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.spec-price-cell {
    text-align: right;
    border-left: 1px solid var(--border-light);
    padding-left: 28px;
}

@media (max-width: 900px) {
    .spec-price-cell {
        border-left: none;
        padding-left: 0;
        text-align: left;
        grid-column: span 2;
    }
}

.spec-price-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-terracotta);
    font-weight: 700;
}

/* Dossier Main Body */
.dossier-body-section {
    padding: 60px 0 100px 0;
    background: var(--bg-primary);
}

.dossier-layout-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

@media (max-width: 900px) {
    .dossier-layout-grid {
        grid-template-columns: 1fr;
    }
}

.dossier-main-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dossier-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 40px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.dossier-block-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.dossier-block-title i {
    color: var(--accent-terracotta);
}

.dossier-prose {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* High Altitude Medical Protocol Card */
.medical-protocol-box {
    background: rgba(196, 85, 42, 0.04);
    border: 1px solid rgba(196, 85, 42, 0.2);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.med-icon-shield {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-terracotta);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.med-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.med-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Day-by-Day Itinerary Timeline */
.itinerary-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.itinerary-day-card {
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    background: var(--bg-primary);
    transition: all 0.25s ease;
}

.itinerary-day-card:hover {
    border-color: var(--accent-terracotta);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.day-badge {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-terracotta);
    text-transform: uppercase;
}

.day-alt {
    font-size: 0.8rem;
    font-family: var(--font-display);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.day-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.day-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Inclusions Grid */
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (max-width: 600px) {
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
}

.inc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 500;
}

.inc-item i {
    color: var(--accent-terracotta);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Sticky Concierge Sidebar Card */
.sticky-concierge-card {
    position: sticky;
    top: 110px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-price-header {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.price-lbl {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent-terracotta);
    font-weight: 700;
    line-height: 1.1;
    margin-top: 4px;
}

.price-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-form .form-control {
    font-size: 0.88rem;
    padding: 11px 14px;
}

.sidebar-contact-box {
    background: var(--bg-primary);
    border-radius: 14px;
    padding: 18px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

.sidebar-contact-item i {
    color: var(--accent-terracotta);
    width: 16px;
    height: 16px;
}

/* Vertical Timeline Day-by-Day Itinerary (Inspired Layout) */
.timeline-wrapper {
    position: relative;
    padding-left: 76px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 10px;
}

.timeline-line {
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 28px;
    width: 2px;
    background: #e2d9cc;
    z-index: 1;
}

.timeline-day-row {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.timeline-node {
    position: absolute;
    left: -76px;
    top: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.node-day-lbl {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    text-transform: uppercase;
    line-height: 1;
}

.node-day-num {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.15;
}

.timeline-card {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: grid;
    grid-template-columns: 1fr 280px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
    .timeline-wrapper {
        padding-left: 0;
    }
    .timeline-line {
        display: none;
    }
    .timeline-day-row {
        flex-direction: column;
    }
    .timeline-node {
        position: static;
        margin-bottom: 12px;
        width: 48px;
        height: 48px;
    }
    .timeline-card {
        grid-template-columns: 1fr;
    }
    .timeline-card-media {
        order: -1;
        height: 220px;
    }
}

.timeline-card-content {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-card-meta {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.timeline-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 12px;
}

.timeline-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.timeline-card-media {
    width: 100%;
    height: 100%;
    min-height: 220px;
}

.timeline-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Eye-Catching Visual Highlight Grid */
.dossier-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .dossier-visual-grid {
        grid-template-columns: 1fr;
    }
}

.visual-card {
    position: relative;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.visual-card:hover img {
    transform: scale(1.06);
}

.visual-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(18, 22, 26, 0.78);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.visual-badge i,
.visual-badge svg {
    width: 12px;
    height: 12px;
    color: var(--accent-gold);
}

.sidebar-concierge-header {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

body.destinations-page .page-hero-section,
body.destination-details-page .page-hero-section {
    background: var(--bg-primary) !important;
    background-image: none !important;
}

/* Inspired Destination Card Design (Floating Glass & White Capsule CTA) */
.dest-grid-inspired {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 36px;
    padding: 20px 0;
}

.dest-card-inspired {
    position: relative;
    height: 520px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.dest-card-inspired:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

.dest-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dest-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card-inspired:hover .dest-card-bg img {
    transform: scale(1.06);
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.88) 100%
    );
}

.dest-card-dots {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 180px;
}

.dest-card-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
}

.dest-card-dots .dot.active {
    background: #ffffff;
    width: 10px;
    height: 10px;
}

.dest-card-body {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dest-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dest-card-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-card-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
    margin-bottom: 6px;
}

.dest-pill-glass {
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
}

.dest-pill-dark {
    padding: 8px 16px;
    border-radius: 20px;
    background: #000000;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
}

.dest-card-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 36px;
    background: #ffffff;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.dest-card-btn:hover {
    background: var(--accent-terracotta);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Destination Details Attraction Cards & Travel Facts Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.attraction-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 22px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.attraction-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.attraction-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(196, 85, 42, 0.08);
    color: var(--accent-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
}

.attraction-card-icon i,
.attraction-card-icon svg {
    width: 18px;
    height: 18px;
}

.attraction-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}

.attraction-card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.travel-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

@media (max-width: 640px) {
    .travel-facts-grid {
        grid-template-columns: 1fr;
    }
}

.travel-fact-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.travel-fact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.travel-fact-icon i,
.travel-fact-icon svg {
    width: 16px;
    height: 16px;
}

.travel-fact-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
    display: block;
}

.travel-fact-value {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    color: var(--text-primary);
    font-weight: 600;
    display: block;
}

/* Full-Width Hero Section */
.dest-hero-fullwidth {
    padding: 40px 0 30px;
    background: var(--bg-primary);
}

.dest-hero-intro {
    max-width: 900px;
    margin: 0 auto 36px;
    text-align: center;
}

.dest-hero-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 14px 0 18px;
    letter-spacing: -0.02em;
}

.dest-hero-lead-text {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

/* Eye-Catching Large Hero Image Frame */
.dest-hero-image-box {
    position: relative;
    width: 100%;
    height: clamp(380px, 50vw, 560px);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(201, 160, 80, 0.25);
}

.dest-hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.dest-hero-image-box:hover img {
    transform: scale(1.04);
}

.dest-hero-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 12px 24px;
    border-radius: 30px;
    background: rgba(18, 22, 28, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dest-hero-badge i,
.dest-hero-badge svg {
    color: var(--accent-gold);
    width: 16px;
    height: 16px;
}

/* Two-Column Grid Layout */
.dest-details-content-section {
    padding: 40px 0 80px;
    background: var(--bg-primary);
}

.dest-two-col-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.dest-two-col-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
    margin-bottom: 36px;
}

@media (max-width: 900px) {
    .dest-two-col-grid,
    .dest-two-col-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.dest-left-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dest-right-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 100px;
}

/* Non-Traditional Eye-Catching Glass Cards */
.dest-card-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.dest-card-box:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.card-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.box-header-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-terracotta);
}

.box-header-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.box-prose-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

/* Quick Facts Side List */
.quick-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-facts-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--border-light);
}

.quick-facts-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fact-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.fact-label i,
.fact-label svg {
    width: 15px;
    height: 15px;
    color: var(--accent-gold);
}

.fact-val {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Season Badge */
.season-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(196, 85, 42, 0.1);
    color: var(--accent-terracotta);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.season-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
}

/* Travel Tips List */
.tips-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tips-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.tips-check-list li i,
.tips-check-list li svg {
    color: var(--accent-terracotta);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Bespoke Reserve Side Card */
.reserve-side-card {
    background: linear-gradient(145deg, #181c20 0%, #0d1013 100%);
    border: 1px solid rgba(201, 160, 80, 0.3);
    color: #ffffff;
}

.reserve-side-card h3 {
    color: #ffffff !important;
}

.reserve-side-card p {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Eye-Catching Visual Bento Grid */
.dossier-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .dossier-visual-grid {
        grid-template-columns: 1fr;
    }
}

.visual-card {
    position: relative;
    height: 200px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual-card:hover img {
    transform: scale(1.08);
}

.visual-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(18, 22, 28, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.visual-badge i,
.visual-badge svg {
    width: 12px;
    height: 12px;
    color: var(--accent-gold);
}

/* Dossier Grid Cards View Styles */
.grid-cards-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    padding: 20px 0 40px;
}

.dossier-grid-card {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.08));
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.dossier-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card-img-frame {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dossier-grid-card:hover .card-img-frame img {
    transform: scale(1.06);
}

.card-badge-glass {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(18, 22, 28, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-badge-glass i,
.card-badge-glass svg {
    color: var(--accent-gold);
    width: 12px;
    height: 12px;
}

.card-body-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.card-tag {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.card-duration {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-duration i,
.card-duration svg {
    width: 13px;
    height: 13px;
    color: var(--accent-gold);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-primary);
    margin: 0 0 10px;
    line-height: 1.25;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0 0 20px;
    flex-grow: 1;
}

.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.card-price {
    display: flex;
    flex-direction: column;
}

.price-lbl {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-terracotta);
}

.btn-dossier-link {
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--bg-dark);
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-dossier-link:hover {
    background: var(--accent-terracotta);
    color: #ffffff;
}

/* Modern Non-Traditional Destination Details Telemetry & Route Styles */
.dest-telemetry-strip {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.telemetry-pill {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--border-gold, rgba(201, 160, 80, 0.35));
    border-radius: 20px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.telemetry-pill i,
.telemetry-pill svg {
    width: 20px;
    height: 20px;
    color: var(--accent-terracotta);
    flex-shrink: 0;
}

.telemetry-lbl {
    display: block;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.telemetry-val {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Route Transit Telemetry Section */
.dest-route-section {
    padding: 20px 0 40px;
}

.dest-route-card {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-gold, rgba(201, 160, 80, 0.35));
    border-radius: 32px;
    padding: 36px 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.route-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.route-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-top: 6px;
}

.route-road-badge {
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(196, 85, 42, 0.08);
    border: 1px solid rgba(196, 85, 42, 0.25);
    color: var(--accent-terracotta);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.route-road-badge i,
.route-road-badge svg {
    width: 14px;
    height: 14px;
}

/* Waypoint Trail Nodes */
.route-waypoints-trail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 32px;
    padding: 24px 20px;
    background: var(--bg-primary, #f7f4ef);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    overflow-x: auto;
}

.route-node-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 110px;
    position: relative;
}

.node-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 4px solid #ffffff;
    box-shadow: 0 0 12px rgba(201, 160, 80, 0.5);
    margin-bottom: 10px;
}

.node-dot.dest-dot {
    background: var(--accent-terracotta);
    box-shadow: 0 0 14px rgba(196, 85, 42, 0.6);
    transform: scale(1.2);
}

.node-name {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.node-step-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.route-connector-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--accent-gold) 0%,
        var(--accent-terracotta) 100%
    );
    opacity: 0.45;
    min-width: 30px;
}

/* Vital Transit Hubs Grid */
.transit-hubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.transit-hub-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-light);
}

.hub-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(201, 160, 80, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.hub-icon-box i,
.hub-icon-box svg {
    width: 20px;
    height: 20px;
}

.hub-lbl {
    display: block;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.hub-val {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Weather Matrix Grid in destination detail */
.weather-matrix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.weather-matrix-cell {
    background: var(--bg-primary, #f7f4ef);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.weather-month-title {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.weather-temp-val {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-terracotta);
}

.weather-sky-stat {
    font-size: 0.78rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.weather-sky-stat i,
.weather-sky-stat svg {
    width: 12px;
    height: 12px;
    color: var(--accent-gold);
}

/* Hero Background for Destinations, Destination Details, Gallery & Contact Pages */
/* Destination Details Continuous Animated Slideshow */
.dest-slideshow-container {
    width: 100%;
    max-width: 100%;
    height: 500px;
    min-height: 400px;
    border-radius: 32px;
    overflow: hidden;
    border: 0.1px solid var(--border-gold, rgba(201, 160, 80, 0.35));
    box-shadow: var(--shadow-lg);
    position: relative;
    margin-bottom: 48px;
    background: #0d1016;
}

.dest-slideshow-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.dest-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition:
        opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 7s linear;
    pointer-events: none;
}

.dest-slide-img.active {
    opacity: 1;
    transform: scale(1.08);
    pointer-events: auto;
}

.dest-slideshow-dots {
    position: absolute;
    bottom: 440px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    background: rgba(18, 22, 28, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dest-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-slide-dot.active {
    width: 24px;
    border-radius: 999px;
    background: var(--accent-gold);
}

/* Gallery Filter Pills Bar */
.gallery-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--accent-terracotta);
    color: #ffffff;
    border-color: var(--accent-terracotta);
    box-shadow: 0 6px 20px rgba(196, 85, 42, 0.25);
}

/* "Himalayan Photographic Lens Vault" Out-of-the-Box Asymmetric Layout */
.vault-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 28px;
    padding: 20px 0 100px;
}

@media (max-width: 900px) {
    .vault-grid {
        display: block !important;
        column-count: 2 !important;
        -webkit-column-count: 2 !important;
        column-gap: 12px !important;
        padding: 15px 0 60px !important;
    }
}

@media (max-width: 600px) {
    .vault-grid {
        display: block !important;
        column-count: 2 !important;
        -webkit-column-count: 2 !important;
        column-gap: 10px !important;
        padding: 10px 0 50px !important;
    }
}

/* Card Column/Row Spans for Asymmetric Out-of-the-box Collage */
.vault-card {
    position: relative;
    background: var(--bg-card, #ffffff);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border-gold, rgba(201, 160, 80, 0.3));
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    min-height: 320px;
    /* NO TRANSFORM OR MOVEMENT ON DIV HOVER */
    transition:
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.vault-card:hover {
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.16);
    border-color: var(--accent-gold);
}

/* Grid Spans for Out-of-the-box Diversity */
.vault-card.span-hero {
    grid-column: span 8;
    grid-row: span 2;
    min-height: 540px;
}

.vault-card.span-tall {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 540px;
}

.vault-card.span-wide {
    grid-column: span 8;
    min-height: 340px;
}

.vault-card.span-medium {
    grid-column: span 4;
    min-height: 340px;
}

.vault-card.span-full {
    grid-column: span 12;
    min-height: 380px;
}

@media (max-width: 900px) {
    .vault-card {
        break-inside: avoid !important;
        -webkit-column-break-inside: avoid !important;
        page-break-inside: avoid !important;
        display: inline-block !important;
        width: 100% !important;
        margin-bottom: 12px !important;
        border-radius: 16px !important;
        min-height: auto !important;
        height: auto !important;
    }
    .vault-card.span-hero,
    .vault-card.span-tall,
    .vault-card.span-wide,
    .vault-card.span-medium,
    .vault-card.span-full {
        grid-column: auto !important;
        grid-row: auto !important;
        height: auto !important;
        min-height: auto !important;
        width: 100% !important;
    }
}

@media (max-width: 600px) {
    .vault-card {
        break-inside: avoid !important;
        -webkit-column-break-inside: avoid !important;
        page-break-inside: avoid !important;
        display: inline-block !important;
        width: 100% !important;
        margin-bottom: 10px !important;
        border-radius: 14px !important;
        min-height: auto !important;
        height: auto !important;
    }
    .vault-card.span-hero,
    .vault-card.span-tall,
    .vault-card.span-wide,
    .vault-card.span-medium,
    .vault-card.span-full {
        grid-column: auto !important;
        grid-row: auto !important;
        height: auto !important;
        min-height: auto !important;
        width: 100% !important;
    }
}

/* Inner Image Box & Smooth Zoom-Pan Animation ONLY on <img> */
.vault-img-box {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #0f1216;
}

.vault-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.6s ease;
    will-change: transform, filter;
}

/* HOVER ANIMATION STRICTLY ON INNER IMAGE */
.vault-card:hover .vault-img-box img {
    transform: scale(1.22) rotate(1.2deg) translate(-2px, -3px);
    filter: brightness(1.1) contrast(1.05);
}

/* Camera Viewfinder Reticle Overlay */
.viewfinder-hud {
    position: absolute;
    inset: 18px;
    z-index: 3;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 16px;
    transition: border-color 0.4s ease;
}

.vault-card:hover .viewfinder-hud {
    border-color: rgba(201, 160, 80, 0.5);
}

.viewfinder-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.viewfinder-badge {
    padding: 6px 14px;
    border-radius: 16px;
    background: rgba(16, 20, 26, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.viewfinder-badge i,
.viewfinder-badge svg {
    width: 12px;
    height: 12px;
    color: var(--accent-gold);
}

.viewfinder-telemetry {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: 10px;
    letter-spacing: 0.1em;
}

.viewfinder-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(
        0deg,
        rgba(14, 18, 24, 0.92) 0%,
        rgba(14, 18, 24, 0.3) 70%,
        transparent 100%
    );
    margin: -16px;
    padding: 24px 20px 18px;
    border-radius: 0 0 16px 16px;
}

.vault-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 4px;
}

.vault-card-sub {
    font-family: var(--font-display);
    font-size: 0.72rem;
    color: var(--accent-gold);
    letter-spacing: 0.06em;
}

.vault-zoom-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
    flex-shrink: 0;
}

.vault-card:hover .vault-zoom-btn {
    background: var(--accent-terracotta);
    transform: scale(1.12);
    border-color: var(--accent-terracotta);
}

.vault-zoom-btn i,
.vault-zoom-btn svg {
    width: 16px;
    height: 16px;
}

/* Lightbox Modal */
.gallery-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 12, 16, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-close-btn {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    z-index: 10001;
}

.lightbox-close-btn:hover {
    background: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    transform: scale(1.1);
}

.lightbox-close-btn i,
.lightbox-close-btn svg {
    width: 24px;
    height: 24px;
}

.lightbox-content-box {
    max-width: 1100px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content-box img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption-text {
    margin-top: 18px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.03em;
}

.contact-2x2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-2x2-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.contact-mini-card {
    padding: 24px;
    background: var(--bg-card, #ffffff);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.contact-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
}

.contact-mini-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(201, 160, 80, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-mini-card-icon.emergency {
    background: rgba(196, 85, 42, 0.12);
    color: var(--accent-terracotta);
}

.contact-mini-card-icon i,
.contact-mini-card-icon svg {
    width: 20px;
    height: 20px;
}

.contact-mini-lbl {
    display: block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-mini-val {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 4px;
}

.contact-mini-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Elegant Luxury Form Styling */
.contact-form-box {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
}

.contact-form-box .form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form-box .form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: 16px;
    background: #f7f4ee;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form-box .form-control:focus {
    background: #ffffff;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(201, 160, 80, 0.15);
}

.contact-form-box select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%20181c20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.contact-form-box .btn-submit-pill {
    width: 100%;
    padding: 16px 32px;
    border-radius: 40px;
    background: #14171a;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(20, 23, 26, 0.2);
}

.contact-form-box .btn-submit-pill:hover {
    background: var(--accent-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(196, 85, 42, 0.3);
}

.contact-form-box .btn-submit-pill i,
.contact-form-box .btn-submit-pill svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.contact-form-box .btn-submit-pill:hover i,
.contact-form-box .btn-submit-pill:hover svg {
    transform: translateX(4px);
}

/* Out-of-the-Box Expedition Interactive Form HUD */
.expedition-chip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .expedition-chip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.exped-chip-btn {
    padding: 12px 10px;
    border-radius: 14px;
    background: #f7f4ee;
    border: 1.5px solid var(--border-light);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    transition: all 0.25s ease;
}

.exped-chip-btn i,
.exped-chip-btn svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
}

.exped-chip-btn:hover {
    border-color: var(--accent-gold);
    background: #ffffff;
    transform: translateY(-2px);
}

.exped-chip-btn.active {
    border-color: var(--accent-gold);
    background: var(--bg-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(201, 160, 80, 0.3);
}

.exped-chip-btn.active i,
.exped-chip-btn.active svg {
    color: var(--accent-gold);
}

.concierge-toggle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.concierge-toggle-chip {
    padding: 8px 14px;
    border-radius: 20px;
    background: #f7f4ee;
    border: 1px solid var(--border-light);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.concierge-toggle-chip.active {
    background: rgba(196, 85, 42, 0.12);
    border-color: var(--accent-terracotta);
    color: var(--accent-terracotta);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i,
.input-with-icon svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    pointer-events: none;
}

.input-with-icon .form-control {
    padding-left: 46px !important;
}

/* =======================================================
   FIRST-TIME MULTILINGUAL WELCOME PRELOADER STYLES
   ======================================================= */
.dekho-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #f7f4ee;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    will-change: transform, opacity;
    transition:
        transform 0.95s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.75s ease;
}

.dekho-preloader.preloader-hidden {
    transform: translate3d(0, 100%, 0);
    pointer-events: none;
    box-shadow: 0 -25px 60px rgba(24, 28, 32, 0.15);
}

.dekho-preloader.preloader-hidden .preloader-inner {
    transform: translate3d(0, -40px, 0);
    opacity: 0.2;
    transition:
        transform 0.7s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.5s ease;
}

.preloader-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(201, 160, 80, 0.16) 0%,
            transparent 65%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(196, 85, 42, 0.1) 0%,
            transparent 55%
        ),
        radial-gradient(
            circle at 85% 15%,
            rgba(235, 228, 216, 0.95) 0%,
            transparent 60%
        ),
        #f7f4ee;
    z-index: 1;
}

.preloader-aura {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(201, 160, 80, 0.14) 0%,
        rgba(196, 85, 42, 0.04) 50%,
        transparent 70%
    );
    filter: blur(50px);
    animation: aura-pulse 4s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes aura-pulse {
    0% {
        transform: scale(0.92);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.preloader-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 680px;
    padding: 40px 24px;
}

.preloader-brand-wrapper {
    position: relative;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.preloader-orbit-ring {
    position: absolute;
    inset: -8px;
    border: 1.5px dashed var(--accent-gold);
    border-radius: 50%;
    animation: preloader-spin 12s linear infinite;
    opacity: 0.8;
}

@keyframes preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.preloader-brand-emblem {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--accent-gold);
    font-family: var(--font-logo);
    font-size: 1.7rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 35px rgba(201, 160, 80, 0.28),
        0 4px 15px rgba(24, 28, 32, 0.06);
}

.preloader-greeting-chamber {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.preloader-lang-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    border-radius: 20px;
    background: rgba(196, 85, 42, 0.08);
    border: 1px solid rgba(196, 85, 42, 0.25);
    color: var(--accent-terracotta);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(196, 85, 42, 0.08);
}

.preloader-text-viewport {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader-greeting-text {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.2vw, 2.6rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin: 0;
    transition:
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease;
}

.preloader-sub-text {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-top: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.preloader-telemetry-box {
    width: 100%;
    max-width: 440px;
    margin-bottom: 24px;
}

.preloader-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.preloader-percent {
    color: var(--accent-terracotta);
    font-weight: 700;
}

.preloader-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(24, 28, 32, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.preloader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--accent-terracotta),
        var(--accent-gold),
        #e8a838
    );
    box-shadow: 0 0 14px rgba(196, 85, 42, 0.4);
    border-radius: 4px;
    transition: width 0.15s linear;
}

.preloader-skip-btn {
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid var(--accent-gold);
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow:
        0 6px 20px rgba(201, 160, 80, 0.18),
        0 2px 8px rgba(24, 28, 32, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-skip-btn:hover {
    border-color: var(--accent-terracotta);
    background: var(--accent-terracotta);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 85, 42, 0.35);
}

.preloader-skip-btn i {
    transition: transform 0.3s ease;
}

.preloader-skip-btn:hover i {
    transform: translateX(4px);
}

/* Stargazing Dark Mode Preloader Overrides */
body.stargazing-mode .dekho-preloader {
    background: #080a0e;
    color: #f7f4ee;
}

body.stargazing-mode .preloader-backdrop {
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(201, 160, 80, 0.14) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(196, 85, 42, 0.12) 0%,
            transparent 50%
        ),
        #080a0e;
}

body.stargazing-mode .preloader-brand-emblem {
    background: rgba(20, 24, 32, 0.9);
    color: var(--accent-gold);
    box-shadow: 0 0 35px rgba(201, 160, 80, 0.35);
}

body.stargazing-mode .preloader-lang-badge {
    background: rgba(201, 160, 80, 0.12);
    border-color: rgba(201, 160, 80, 0.35);
    color: var(--accent-gold);
}

body.stargazing-mode .preloader-greeting-text {
    color: #ffffff;
}

body.stargazing-mode .preloader-sub-text {
    color: rgba(247, 244, 238, 0.65);
}

body.stargazing-mode .preloader-meta-row {
    color: rgba(247, 244, 238, 0.55);
}

body.stargazing-mode .preloader-percent {
    color: var(--accent-gold);
}

body.stargazing-mode .preloader-progress-track {
    background: rgba(255, 255, 255, 0.1);
}

body.stargazing-mode .preloader-skip-btn {
    background: transparent;
    border-color: rgba(247, 244, 238, 0.25);
    color: rgba(247, 244, 238, 0.7);
    box-shadow: none;
}

body.stargazing-mode .preloader-skip-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(201, 160, 80, 0.1);
}

/* =======================================================
   CONTACT PAGE & CONCIERGE DISPATCH HUD STYLES
   ======================================================= */
.contact-page {
    background-color: var(--bg-primary);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-2x2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px 22px;
    box-shadow: 0 4px 20px rgba(24, 28, 32, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-mini-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-gold);
    box-shadow: 0 12px 30px rgba(201, 160, 80, 0.16);
}

.contact-mini-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(201, 160, 80, 0.14);
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-mini-card:hover .contact-mini-card-icon {
    transform: scale(1.08);
}

.contact-mini-card-icon.emergency {
    background: rgba(196, 85, 42, 0.12);
    color: var(--accent-terracotta);
}

.contact-mini-lbl {
    display: block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-mini-val {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
}

/* Concierge Dispatch HUD Form Vessel */
.dispatch-hud-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-gold);
    border-radius: 24px;
    padding: 42px 38px;
    box-shadow:
        0 20px 60px rgba(24, 28, 32, 0.08),
        0 4px 20px rgba(201, 160, 80, 0.1);
    position: relative;
}

.hud-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.hud-badge-left {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.hud-badge-right {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--accent-terracotta);
    background: rgba(196, 85, 42, 0.08);
    border: 1px solid rgba(196, 85, 42, 0.22);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.hud-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 26px;
}

.form-label-section {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.input-icon-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-icon-group i,
.input-icon-group svg {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-icon-field {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
}

.input-icon-field:focus {
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 0 0 3.5px rgba(201, 160, 80, 0.18);
}

.input-icon-group:focus-within i,
.input-icon-group:focus-within svg {
    color: var(--accent-terracotta);
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
}

.form-textarea-custom {
    width: 100%;
    min-height: 120px;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.5;
    resize: vertical;
    transition: all 0.3s ease;
    outline: none;
}

.form-textarea-custom:focus {
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 0 0 3.5px rgba(201, 160, 80, 0.18);
}

.btn-sleek-dispatch {
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--accent-terracotta), #9e3612);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(196, 85, 42, 0.3);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-sleek-dispatch:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(196, 85, 42, 0.45);
    background: linear-gradient(135deg, #d46338, var(--accent-terracotta));
}

.btn-sleek-dispatch:active {
    transform: translateY(0);
}

@media (max-width: 900px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .dispatch-hud-card {
        padding: 32px 24px;
    }
    .hud-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    .contact-2x2-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .form-grid-2col {
        grid-template-columns: 1fr;
    }
    .dispatch-hud-card {
        padding: 24px 18px;
    }
    .hud-title {
        font-size: 1.4rem;
    }
}

/* Stargazing Dark Mode Contact Overrides */
body.stargazing-mode .contact-mini-card {
    background: #141820;
    border-color: rgba(255, 255, 255, 0.1);
}

body.stargazing-mode .contact-mini-val {
    color: #f7f4ee;
}

body.stargazing-mode .dispatch-hud-card {
    background: #141820;
    border-color: rgba(201, 160, 80, 0.3);
}

body.stargazing-mode .hud-title {
    color: #f7f4ee;
}

body.stargazing-mode .form-label-section {
    color: #f7f4ee;
}

body.stargazing-mode .input-icon-field,
body.stargazing-mode .form-textarea-custom {
    background: #0d1016;
    border-color: rgba(255, 255, 255, 0.12);
    color: #f7f4ee;
}

body.stargazing-mode .input-icon-field:focus,
body.stargazing-mode .form-textarea-custom:focus {
    background: #181d26;
}

/* ==========================================================================
   INTERACTIVE HIMALAYAN EXPEDITION LIGHTBOX MODAL & CONTROLS
   ========================================================================== */
.gallery-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(8, 10, 14, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.35s ease;
    user-select: none;
}

.gallery-lightbox-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Top HUD Bar */
.lightbox-hud-bar {
    position: absolute;
    top: 24px;
    left: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    pointer-events: auto;
}

.lightbox-title-group {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(20, 24, 30, 0.88);
    border: 1px solid rgba(201, 160, 80, 0.35);
    padding: 8px 20px;
    border-radius: 40px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-badge {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lightbox-caption-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
    max-width: 520px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.02em;
}

/* Lightbox Controls Group */
.lightbox-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lightbox-tool-btn,
.lightbox-close-btn {
    background: rgba(20, 24, 30, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f7f4ee;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(14px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.lightbox-tool-btn:hover {
    background: rgba(201, 160, 80, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: scale(1.12);
}

.lightbox-close-btn {
    border-color: rgba(196, 85, 42, 0.5);
}

.lightbox-close-btn:hover {
    background: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    color: #ffffff;
    transform: scale(1.12) rotate(90deg);
}

/* Navigation Arrow Buttons */
.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(20, 24, 30, 0.88);
    border: 1px solid rgba(201, 160, 80, 0.3);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(14px);
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-nav-btn.nav-prev {
    left: 28px;
}

.lightbox-nav-btn.nav-next {
    right: 28px;
}

.lightbox-nav-btn:hover {
    background: var(--accent-gold);
    color: #12161c;
    border-color: var(--accent-gold);
    transform: translateY(-50%) scale(1.15);
}

/* Lightbox Content Canvas Box */
.lightbox-content-box {
    position: relative;
    max-width: 86vw;
    max-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9);
    cursor: grab;
}

.lightbox-content-box:active {
    cursor: grabbing;
}

.lightbox-img-wrapper {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrapper img {
    max-width: 86vw;
    max-height: 78vh;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Bottom Status Telemetry */
.lightbox-bottom-hud {
    position: absolute;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(20, 24, 30, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 22px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    backdrop-filter: blur(14px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.hud-divider {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .lightbox-hud-bar {
        top: 14px;
        left: 14px;
        right: 14px;
    }
    .lightbox-caption-text {
        max-width: 140px;
        font-size: 0.78rem;
    }
    .lightbox-nav-btn {
        width: 42px;
        height: 42px;
    }
    .lightbox-nav-btn.nav-prev {
        left: 12px;
    }
    .lightbox-nav-btn.nav-next {
        right: 12px;
    }
    .lightbox-bottom-hud {
        display: none;
    }
}

/* ==========================================================================
   EXPEDITION DOSSIER HERO & SPECIFICATIONS BAR
   ========================================================================== */

.dossier-hero {
    position: relative;
    padding: 140px 0 50px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(201, 160, 80, 0.12) 0%,
            transparent 60%
        ),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.dossier-hero-ambient {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(196, 85, 42, 0.08),
        transparent 70%
    );
    top: -100px;
    right: -100px;
    filter: blur(60px);
    pointer-events: none;
}

.dossier-breadcrumb {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.76rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.dossier-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.dossier-breadcrumb a:hover {
    color: var(--accent-terracotta);
}

.active-dossier-crumb {
    color: var(--text-primary);
    font-weight: 600;
}

.dossier-hero-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.dossier-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(24, 28, 32, 0.05);
    border: 1px solid rgba(24, 28, 32, 0.1);
    color: var(--text-secondary);
}

.dossier-tag.tag-gold {
    background: rgba(201, 160, 80, 0.12);
    border-color: rgba(201, 160, 80, 0.4);
    color: var(--accent-gold);
}

.dossier-tag.tag-terracotta {
    background: rgba(196, 85, 42, 0.1);
    border-color: rgba(196, 85, 42, 0.35);
    color: var(--accent-terracotta);
}

.dossier-hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.dossier-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 820px;
}

/* Quick Specifications Bar */
.dossier-spec-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -24px;
    margin-bottom: 50px;
    padding: 24px 30px;
    background: #ffffff;
    border: 1px solid rgba(201, 160, 80, 0.35);
    border-radius: 24px;
    box-shadow:
        0 16px 45px rgba(20, 23, 26, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 10;
}

.spec-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.spec-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(201, 160, 80, 0.12);
    border: 1px solid rgba(201, 160, 80, 0.3);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-cell-icon {
    width: 20px;
    height: 20px;
}

.spec-content {
    display: flex;
    flex-direction: column;
}

.spec-cell-label {
    font-family: var(--font-display);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.spec-cell-value {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.spec-cell-value.highlight-alt {
    color: var(--accent-terracotta);
}

/* ==========================================================================
   TRANS-HIMALAYAN CARTOGRAPHIC ITINERARY SPINE & WAYPOINT MATRIX
   ========================================================================== */

.dossier-body-section {
    padding: 20px 0 90px;
}

.itinerary-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(24, 28, 32, 0.08);
}

.itinerary-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--accent-terracotta);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.dossier-block-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.itinerary-header-sub {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.5;
}

.itinerary-altitude-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.legend-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(24, 28, 32, 0.04);
    border: 1px solid rgba(24, 28, 32, 0.08);
    color: var(--text-secondary);
}

/* ==========================================================================
   TRANS-HIMALAYAN ORGANIC EXPEDITION TRAIL SYSTEM
   ========================================================================== */

/* Outer Itinerary Container */
.himalayan-expedition-trail {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 30px;
    padding-left: 0;
}

/* Continuous Organic Mountain Trail SVG Canvas */
.trail-organic-canvas-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.trail-path-glow {
    fill: none;
    stroke: rgba(201, 160, 80, 0.22);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: trailGlowBreathe 4s ease-in-out infinite alternate;
}

@keyframes trailGlowBreathe {
    0% {
        opacity: 0.35;
        stroke-width: 6px;
        stroke: rgba(201, 160, 80, 0.18);
    }
    100% {
        opacity: 0.85;
        stroke-width: 11px;
        stroke: rgba(201, 160, 80, 0.38);
    }
}

/* Main Continuous Moving S-Wave Mountain Trail */
.trail-path-main {
    fill: none;
    stroke: url(#trailGradient);
    stroke-width: 3px;
    stroke-dasharray: 9 9;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: trailContinuousWave 2.2s linear infinite;
    transition: stroke-width 0.3s ease;
}

@keyframes trailContinuousWave {
    0% {
        stroke-dashoffset: 72;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Flowing Light Energy Wave Pulse */
.trail-path-pulse {
    fill: none;
    stroke: url(#pulseWaveGradient);
    stroke-width: 4.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 90 450;
    animation: trailPulseSweep 3.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
}

@keyframes trailPulseSweep {
    0% {
        stroke-dashoffset: 540;
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -540;
        opacity: 0;
    }
}

/* Traveling Expedition Wave Beacon */
.trail-wave-beacon {
    fill: #ffffff;
    stroke: #c9a050;
    stroke-width: 3px;
    filter: drop-shadow(0 0 10px rgba(201, 160, 80, 0.95))
        drop-shadow(0 0 20px rgba(196, 85, 42, 0.6));
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

/* Waypoint Stage Row */
.trail-waypoint-stage {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Left Route Column (Houses the S-Wave Waypoint Node) */
.trail-route-column {
    position: relative;
    width: 200px;
    height: 100%;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 3;
}

/* Waypoint Crest Node */
.waypoint-crest-node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid rgba(201, 160, 80, 0.7);
    box-shadow:
        0 6px 20px rgba(20, 23, 26, 0.09),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    cursor: pointer;
}

/* Distinct S-Wave Horizontal Mountain Road Offsets (LEFT -> RIGHT -> LEFT -> RIGHT) */
.waypoint-crest-node.node-offset-1 {
    margin-left: 20px;
} /* DAY 01: LEFT FLANK */
.waypoint-crest-node.node-offset-2 {
    margin-left: 128px;
} /* DAY 02: RIGHT FLANK */
.waypoint-crest-node.node-offset-3 {
    margin-left: 20px;
} /* DAY 03: LEFT FLANK */
.waypoint-crest-node.node-offset-4 {
    margin-left: 128px;
} /* DAY 04: RIGHT FLANK */
.waypoint-crest-node.node-offset-5 {
    margin-left: 20px;
} /* DAY 05: LEFT FLANK */
.waypoint-crest-node.node-offset-6 {
    margin-left: 128px;
} /* DAY 06: RIGHT FLANK */
.waypoint-crest-node.node-offset-7 {
    margin-left: 20px;
} /* DAY 07: LEFT FLANK */

.crest-halo-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px dashed rgba(201, 160, 80, 0.45);
    animation: crestHaloBreathe 3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

@keyframes crestHaloBreathe {
    0% {
        transform: scale(0.96);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.08);
        opacity: 0.8;
    }
}

.crest-core-seal {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-terracotta);
    line-height: 1;
}

/* Connecting Leader Arms from Waypoint Node to Card Edge with Wave Ripple */
.trail-connector-arm {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 4;
}

/* Left Flank Nodes (Day 1, 3, 5, 7): Arm runs from x=72px to x=200px */
.trail-connector-arm.arm-offset-1,
.trail-connector-arm.arm-offset-3,
.trail-connector-arm.arm-offset-5,
.trail-connector-arm.arm-offset-7 {
    left: 72px;
    right: 0;
}

/* Right Flank Nodes (Day 2, 4, 6): Arm runs from x=180px to x=200px */
.trail-connector-arm.arm-offset-2,
.trail-connector-arm.arm-offset-4,
.trail-connector-arm.arm-offset-6 {
    left: 180px;
    right: 0;
}

.arm-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(201, 160, 80, 0.65) 0%,
        rgba(201, 160, 80, 0.2) 100%
    );
    animation: armWaveShimmer 3.2s ease-in-out infinite alternate;
    transition:
        background 0.3s ease,
        height 0.3s ease;
}

.trail-waypoint-stage[data-day="1"] .arm-line {
    animation-delay: 0s;
}
.trail-waypoint-stage[data-day="2"] .arm-line {
    animation-delay: 0.4s;
}
.trail-waypoint-stage[data-day="3"] .arm-line {
    animation-delay: 0.8s;
}
.trail-waypoint-stage[data-day="4"] .arm-line {
    animation-delay: 1.2s;
}
.trail-waypoint-stage[data-day="5"] .arm-line {
    animation-delay: 1.6s;
}
.trail-waypoint-stage[data-day="6"] .arm-line {
    animation-delay: 2s;
}
.trail-waypoint-stage[data-day="7"] .arm-line {
    animation-delay: 2.4s;
}

@keyframes armWaveShimmer {
    0% {
        opacity: 0.35;
        background: linear-gradient(
            90deg,
            rgba(201, 160, 80, 0.4) 0%,
            rgba(201, 160, 80, 0.15) 100%
        );
    }
    100% {
        opacity: 0.95;
        background: linear-gradient(
            90deg,
            rgba(196, 85, 42, 0.75) 0%,
            rgba(201, 160, 80, 0.5) 100%
        );
    }
}

.arm-anchor {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-left: 2px;
    transition: color 0.3s ease;
}

/* Waypoint Expedition Destination Card */
.waypoint-expedition-card {
    background: #ffffff;
    border: 1px solid rgba(24, 28, 32, 0.09);
    border-radius: 28px;
    padding: 28px 32px;
    box-shadow:
        0 10px 35px rgba(20, 23, 26, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.waypoint-expedition-card.card-summit-highlight {
    border-color: rgba(201, 160, 80, 0.45);
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(201, 160, 80, 0.03) 100%
    );
    box-shadow: 0 14px 45px rgba(201, 160, 80, 0.12);
    padding-top: 36px;
}

.summit-pass-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        #b94218,
        var(--accent-terracotta),
        #c9a050
    );
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.waypoint-expedition-card.card-celestial-highlight {
    border-color: rgba(56, 189, 248, 0.3);
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(56, 189, 248, 0.02) 100%
    );
}

/* Card Topbar */
.waypoint-card-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.waypoint-phase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--accent-terracotta);
    text-transform: uppercase;
}

.phase-separator {
    color: rgba(24, 28, 32, 0.2);
}

.phase-region {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Mini Visual Altitude Gauge */
.waypoint-elevation-gauge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(24, 28, 32, 0.04);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(24, 28, 32, 0.06);
}

.gauge-bar-track {
    width: 60px;
    height: 5px;
    border-radius: 3px;
    background: rgba(24, 28, 32, 0.1);
    overflow: hidden;
    position: relative;
}

.gauge-bar-fill {
    height: 100%;
    background: var(--accent-gold);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.gauge-bar-fill.fill-peak {
    background: linear-gradient(
        90deg,
        var(--accent-gold),
        var(--accent-terracotta)
    );
}

.gauge-bar-fill.fill-celestial {
    background: #0284c7;
}

.gauge-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
}

.gauge-meta.meta-peak {
    color: var(--accent-terracotta);
    font-weight: 900;
}

.gauge-meta.meta-celestial {
    color: #0284c7;
}

.gauge-meta i {
    width: 12px;
    height: 12px;
}

/* Heading & Prose */
.waypoint-card-heading {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.waypoint-card-prose {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Inclusions Pills Strip */
.waypoint-card-inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inclusion-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(24, 28, 32, 0.03);
    border: 1px solid rgba(24, 28, 32, 0.08);
    padding: 5px 12px;
    border-radius: 16px;
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.inclusion-pill i {
    width: 12px;
    height: 12px;
    color: var(--accent-gold);
}

.inclusion-pill.pill-gold {
    background: rgba(201, 160, 80, 0.12);
    border-color: rgba(201, 160, 80, 0.4);
    color: var(--accent-gold);
    font-weight: 700;
}

/* Media Wrap */
.waypoint-card-media-wrap {
    width: 100%;
    height: 185px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(24, 28, 32, 0.08);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.waypoint-card-media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-telemetry-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(14, 18, 24, 0.88);
    border: 1px solid rgba(201, 160, 80, 0.4);
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    backdrop-filter: blur(8px);
}

.media-telemetry-badge i {
    width: 11px;
    height: 11px;
}

.media-telemetry-badge.badge-peak-drive {
    border-color: var(--accent-terracotta);
    color: #ff9e80;
}

/* Micro-interactions & Tactile Hover */
.trail-waypoint-stage:hover .waypoint-expedition-card,
.waypoint-expedition-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow:
        0 16px 45px rgba(201, 160, 80, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.04);
}

.trail-waypoint-stage:hover .waypoint-card-media-wrap img,
.waypoint-expedition-card:hover .waypoint-card-media-wrap img {
    transform: scale(1.04);
}

.trail-waypoint-stage:hover .waypoint-crest-node {
    border-color: var(--accent-terracotta);
    transform: scale(1.12);
    box-shadow: 0 0 24px rgba(196, 85, 42, 0.28);
}

.trail-waypoint-stage:hover .crest-halo-pulse {
    inset: -8px;
    border-color: var(--accent-terracotta);
    opacity: 1;
}

.trail-waypoint-stage:hover .arm-line {
    background: linear-gradient(
        90deg,
        var(--accent-terracotta) 0%,
        var(--accent-gold) 100%
    );
    height: 2px;
}

.trail-waypoint-stage:hover .arm-anchor {
    color: var(--accent-terracotta);
}

/* Key Inclusions Block */
.inclusions-block {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(24, 28, 32, 0.08);
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.inclusion-card {
    background: #ffffff;
    border: 1px solid rgba(24, 28, 32, 0.08);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.inclusion-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 28px rgba(20, 23, 26, 0.06);
}

.inclusion-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(201, 160, 80, 0.12);
    border: 1px solid rgba(201, 160, 80, 0.3);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.inclusion-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 600;
}

.inclusion-desc {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================================================== */

@media (max-width: 1024px) {
    .dossier-spec-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .trail-organic-canvas-svg {
        width: 140px;
    }
    .trail-waypoint-stage {
        grid-template-columns: 140px 1fr;
    }
    .trail-route-column {
        width: 140px;
    }
    .waypoint-crest-node.node-offset-1,
    .waypoint-crest-node.node-offset-3,
    .waypoint-crest-node.node-offset-5,
    .waypoint-crest-node.node-offset-7 {
        margin-left: 12px;
    }
    .waypoint-crest-node.node-offset-2,
    .waypoint-crest-node.node-offset-4,
    .waypoint-crest-node.node-offset-6 {
        margin-left: 78px;
    }
    .trail-connector-arm.arm-offset-1,
    .trail-connector-arm.arm-offset-3,
    .trail-connector-arm.arm-offset-5,
    .trail-connector-arm.arm-offset-7 {
        left: 54px;
        right: 0;
    }
    .trail-connector-arm.arm-offset-2,
    .trail-connector-arm.arm-offset-4,
    .trail-connector-arm.arm-offset-6 {
        left: 120px;
        right: 0;
    }
    .waypoint-expedition-card {
        grid-template-columns: 1fr;
    }
    .waypoint-card-media-wrap {
        height: 200px;
    }
    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dossier-hero {
        padding: 110px 0 35px;
    }
    .dossier-hero-title {
        font-size: 2.1rem;
    }
    .itinerary-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .trail-organic-canvas-svg {
        width: 64px;
    }
    .trail-waypoint-stage {
        grid-template-columns: 64px 1fr;
    }
    .trail-route-column {
        width: 64px;
    }
    .waypoint-crest-node {
        width: 38px;
        height: 38px;
    }
    .crest-core-seal {
        font-size: 0.9rem;
    }
    /* Scaled S-wave offsets for mobile */
    .waypoint-crest-node.node-offset-1,
    .waypoint-crest-node.node-offset-3,
    .waypoint-crest-node.node-offset-5,
    .waypoint-crest-node.node-offset-7 {
        margin-left: 4px;
    }
    .waypoint-crest-node.node-offset-2,
    .waypoint-crest-node.node-offset-4,
    .waypoint-crest-node.node-offset-6 {
        margin-left: 22px;
    }

    .trail-connector-arm {
        display: none;
    }

    .waypoint-expedition-card {
        padding: 20px 18px;
        border-radius: 20px;
    }
    .waypoint-card-heading {
        font-size: 1.22rem;
    }
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dossier-spec-bar {
        grid-template-columns: 1fr;
        padding: 18px;
    }
    .trail-organic-canvas-svg {
        width: 50px;
    }
    .trail-waypoint-stage {
        grid-template-columns: 50px 1fr;
    }
    .trail-route-column {
        width: 50px;
    }
    .waypoint-crest-node {
        width: 34px;
        height: 34px;
    }
    .crest-core-seal {
        font-size: 0.82rem;
    }
    .waypoint-crest-node.node-offset-1,
    .waypoint-crest-node.node-offset-3,
    .waypoint-crest-node.node-offset-5,
    .waypoint-crest-node.node-offset-7 {
        margin-left: 3px;
    }
    .waypoint-crest-node.node-offset-2,
    .waypoint-crest-node.node-offset-4,
    .waypoint-crest-node.node-offset-6 {
        margin-left: 14px;
    }
}

/* Stargazing Dark Mode Overrides for Itinerary */
body.stargazing-mode .dossier-hero {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(201, 160, 80, 0.08) 0%,
            transparent 60%
        ),
        linear-gradient(180deg, #0b0e12 0%, #121620 100%);
}
body.stargazing-mode .dossier-spec-bar {
    background: #141820;
    border-color: rgba(201, 160, 80, 0.3);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
}
body.stargazing-mode .spec-cell-value {
    color: #f7f4ee;
}
body.stargazing-mode .waypoint-expedition-card {
    background: #141820;
    border-color: rgba(255, 255, 255, 0.08);
}
body.stargazing-mode .waypoint-card-heading {
    color: #f7f4ee;
}
body.stargazing-mode .waypoint-card-prose {
    color: #a0aab5;
}
body.stargazing-mode .waypoint-crest-node {
    background: #10141b;
    border-color: rgba(201, 160, 80, 0.4);
}
body.stargazing-mode .inclusion-pill {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #a0aab5;
}
body.stargazing-mode .inclusion-card {
    background: #141820;
    border-color: rgba(255, 255, 255, 0.08);
}
body.stargazing-mode .inclusion-title {
    color: #f7f4ee;
}
body.stargazing-mode .inclusion-desc {
    color: #a0aab5;
}

/* ==========================================================================
   TRANS-HIMALAYAN DESTINATION DETAILS DOSSIER SYSTEM
   ========================================================================== */

/* Hero Banner */
.dest-dossier-hero {
    padding: 130px 0 45px;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(201, 160, 80, 0.08) 0%,
            transparent 60%
        ),
        linear-gradient(180deg, #faf7f2 0%, #f4eee3 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(24, 28, 32, 0.06);
}

.dest-dossier-ambient {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(201, 160, 80, 0.12) 0%,
        transparent 70%
    );
    filter: blur(80px);
    pointer-events: none;
}

.dest-hero-header-wrap {
    margin-top: 18px;
    max-width: 920px;
}

.dest-hero-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.dest-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(24, 28, 32, 0.04);
    border: 1px solid rgba(24, 28, 32, 0.08);
    color: var(--text-secondary);
}

.dest-tag.tag-gold {
    background: rgba(201, 160, 80, 0.14);
    border-color: rgba(201, 160, 80, 0.4);
    color: var(--accent-gold);
}

.dest-tag.tag-elevation {
    background: rgba(196, 85, 42, 0.12);
    border-color: rgba(196, 85, 42, 0.35);
    color: var(--accent-terracotta);
}

.dest-hero-main-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.dest-hero-lead {
    font-family: var(--font-sans);
    font-size: 1.12rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 800px;
}

/* Main Section Wrapper */
.dest-details-main-section {
    padding: 40px 0 100px;
    background: var(--bg-primary);
}

/* Overview Story Card */
.dest-overview-card {
    background: #ffffff;
    border: 1px solid rgba(24, 28, 32, 0.09);
    border-radius: 28px;
    padding: 36px 42px;
    box-shadow: 0 10px 35px rgba(20, 23, 26, 0.04);
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

.dest-overview-header {
    margin-bottom: 16px;
}

.dest-overview-heading {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    color: var(--text-primary);
    margin-top: 10px;
    line-height: 1.25;
}

.dest-body-paragraph {
    font-family: var(--font-sans);
    font-size: 1.04rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.dest-badges-wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.dest-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 160, 80, 0.08);
    border: 1px solid rgba(201, 160, 80, 0.3);
    padding: 7px 16px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dest-badge-pill i {
    width: 15px;
    height: 15px;
    color: var(--accent-terracotta);
}

/* Panoramic Visual Slideshow */
.dest-slideshow-container {
    width: 100%;
    height: 520px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 16px 45px rgba(20, 23, 26, 0.12);
    border: 1px solid rgba(24, 28, 32, 0.08);
    background: #0e1218;
}

.dest-slideshow-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.dest-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.04);
}

.dest-slide-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.dest-floating-elevation-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(14, 18, 24, 0.86);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 160, 80, 0.4);
    color: var(--accent-gold);
    padding: 10px 20px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dest-floating-elevation-badge i {
    width: 15px;
    height: 15px;
}

.dest-slideshow-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    background: rgba(14, 18, 24, 0.75);
    backdrop-filter: blur(12px);
    padding: 6px 14px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dest-slide-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.dest-slide-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.dest-slide-btn i {
    width: 16px;
    height: 16px;
}

.dest-slideshow-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dest-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dest-dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--accent-gold);
}

/* Two Column Layout (Experiences & Attractions) */
.dest-two-col-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.dest-card-box {
    background: #ffffff;
    border: 1px solid rgba(24, 28, 32, 0.09);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 10px 35px rgba(20, 23, 26, 0.04);
}

.dest-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(24, 28, 32, 0.06);
}

.dest-box-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(201, 160, 80, 0.12);
    border: 1px solid rgba(201, 160, 80, 0.3);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dest-box-icon i {
    width: 20px;
    height: 20px;
}

.dest-box-sub {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--accent-terracotta);
    text-transform: uppercase;
    display: block;
}

.dest-box-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-primary);
    margin: 2px 0 0;
}

/* Experiences List */
.dest-experiences-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dest-experience-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(24, 28, 32, 0.02);
    border: 1px solid rgba(24, 28, 32, 0.06);
    border-radius: 18px;
    padding: 16px 18px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.dest-experience-item:hover {
    transform: translateX(4px);
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(201, 160, 80, 0.1);
}

.dest-exp-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(196, 85, 42, 0.1);
    color: var(--accent-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dest-exp-icon-wrap i {
    width: 17px;
    height: 17px;
}

.dest-exp-title {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    color: var(--text-primary);
    margin: 0 0 4px;
}

.dest-exp-desc {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Attractions Grid */
.dest-attractions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dest-attraction-card {
    background: rgba(24, 28, 32, 0.02);
    border: 1px solid rgba(24, 28, 32, 0.07);
    border-radius: 20px;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.dest-attraction-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 28px rgba(20, 23, 26, 0.08);
}

.dest-attr-img-wrap {
    width: 100%;
    height: 125px;
    position: relative;
    overflow: hidden;
}

.dest-attr-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-attraction-card:hover .dest-attr-img-wrap img {
    transform: scale(1.06);
}

.dest-attr-dist {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(14, 18, 24, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 160, 80, 0.35);
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dest-attr-dist i {
    width: 10px;
    height: 10px;
}

.dest-attr-body {
    padding: 14px 16px;
}

.dest-attr-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 0 0 4px;
    line-height: 1.3;
}

.dest-attr-desc {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin: 0;
}

/* Route & Telemetry Card */
.dest-route-card {
    background: #ffffff;
    border: 1px solid rgba(24, 28, 32, 0.09);
    border-radius: 28px;
    padding: 36px 42px;
    box-shadow: 0 10px 35px rgba(20, 23, 26, 0.04);
    margin-bottom: 40px;
}

.dest-route-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.dest-route-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    color: var(--text-primary);
    margin-top: 6px;
}

.dest-road-condition-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 160, 80, 0.12);
    border: 1px solid rgba(201, 160, 80, 0.35);
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 20px;
}

.dest-road-condition-badge i {
    width: 15px;
    height: 15px;
}

/* Waypoint Trail Nodes Strip */
.dest-route-trail-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: rgba(24, 28, 32, 0.02);
    border: 1px solid rgba(24, 28, 32, 0.06);
    border-radius: 24px;
    padding: 24px 30px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.dest-route-node-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
}

.dest-node-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(201, 160, 80, 0.2);
}

.dest-marker-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-gold);
}

.dest-route-node-box.is-destination .dest-node-marker {
    border-color: var(--accent-terracotta);
    background: var(--accent-terracotta);
    box-shadow: 0 0 16px rgba(196, 85, 42, 0.4);
}

.dest-route-node-box.is-destination .dest-marker-dot {
    background: #ffffff;
}

.dest-marker-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(201, 160, 80, 0.5);
    opacity: 0.6;
}

.dest-node-name {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
}

.dest-node-role {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.dest-route-node-box.is-destination .dest-node-role {
    color: var(--accent-terracotta);
    font-weight: 900;
}

.dest-route-connector-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--accent-gold),
        rgba(201, 160, 80, 0.3)
    );
    min-width: 30px;
    margin: 0 6px;
    position: relative;
}

/* Transit Hubs 4-Cell Grid */
.dest-transit-hubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.dest-transit-hub-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(24, 28, 32, 0.02);
    border: 1px solid rgba(24, 28, 32, 0.06);
    border-radius: 18px;
    padding: 16px 18px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.dest-transit-hub-item:hover {
    transform: translateY(-2px);
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.dest-hub-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(201, 160, 80, 0.12);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dest-hub-icon-wrap i {
    width: 18px;
    height: 18px;
}

.dest-hub-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.dest-hub-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

/* Quick Destination Switcher Strip */
.dest-switcher-section {
    margin-bottom: 40px;
}

.dest-switcher-header {
    margin-bottom: 22px;
}

.dest-switcher-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    color: var(--text-primary);
    margin-top: 6px;
}

.dest-switcher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dest-switcher-card {
    background: #ffffff;
    border: 1px solid rgba(24, 28, 32, 0.09);
    border-radius: 24px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
}

.dest-switcher-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 14px 35px rgba(201, 160, 80, 0.15);
}

.dest-switcher-card.active-dest {
    border-color: var(--accent-terracotta);
    box-shadow: 0 10px 30px rgba(196, 85, 42, 0.15);
}

.dest-sw-img-wrap {
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
}

.dest-sw-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-switcher-card:hover .dest-sw-img-wrap img {
    transform: scale(1.06);
}

.dest-sw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(14, 18, 24, 0.7) 100%
    );
}

.dest-sw-current-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-terracotta);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 12px;
}

.dest-sw-body {
    padding: 18px 20px;
}

.dest-sw-tag {
    font-family: var(--font-display);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.dest-sw-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 0 0 6px;
    line-height: 1.25;
}

.dest-sw-elev {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.dest-sw-elev i {
    width: 12px;
    height: 12px;
    color: var(--accent-terracotta);
}

/* Call to Action Banner */
.dest-cta-banner {
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(201, 160, 80, 0.15) 0%,
            transparent 60%
        ),
        linear-gradient(135deg, #181d26 0%, #0e1218 100%);
    border: 1px solid rgba(201, 160, 80, 0.35);
    border-radius: 28px;
    padding: 48px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.dest-cta-content {
    max-width: 800px;
}

.dest-cta-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #ffffff;
    margin: 12px 0 14px;
    line-height: 1.2;
}

.dest-cta-desc {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 28px;
}

.dest-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive Adaptations for Destination Details */
@media (max-width: 1024px) {
    .dest-two-col-row {
        grid-template-columns: 1fr;
    }
    .dest-transit-hubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dest-switcher-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dest-slideshow-container {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .dest-dossier-hero {
        padding: 110px 0 35px;
    }
    .dest-hero-main-title {
        font-size: 2.1rem;
    }
    .dest-overview-card {
        padding: 24px 20px;
        border-radius: 20px;
    }
    .dest-overview-heading {
        font-size: 1.5rem;
    }
    .dest-slideshow-container {
        height: 320px;
        border-radius: 20px;
    }
    .dest-card-box {
        padding: 22px 18px;
        border-radius: 20px;
    }
    .dest-attractions-grid {
        grid-template-columns: 1fr;
    }
    .dest-route-card {
        padding: 24px 18px;
        border-radius: 20px;
    }
    .dest-transit-hubs-grid {
        grid-template-columns: 1fr;
    }
    .dest-switcher-grid {
        grid-template-columns: 1fr;
    }
    .dest-cta-banner {
        padding: 32px 22px;
        border-radius: 20px;
    }
    .dest-cta-heading {
        font-size: 1.65rem;
    }
}

/* Stargazing Dark Mode Overrides for Destination Details */
body.stargazing-mode .dest-dossier-hero {
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(201, 160, 80, 0.08) 0%,
            transparent 60%
        ),
        linear-gradient(180deg, #0b0e12 0%, #121620 100%);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}
body.stargazing-mode .dest-hero-main-title {
    color: #f7f4ee;
}
body.stargazing-mode .dest-hero-lead {
    color: #a0aab5;
}
body.stargazing-mode .dest-overview-card,
body.stargazing-mode .dest-card-box,
body.stargazing-mode .dest-route-card,
body.stargazing-mode .dest-switcher-card {
    background: #141820;
    border-color: rgba(255, 255, 255, 0.08);
}
body.stargazing-mode .dest-overview-heading,
body.stargazing-mode .dest-box-title,
body.stargazing-mode .dest-route-title,
body.stargazing-mode .dest-exp-title,
body.stargazing-mode .dest-attr-title,
body.stargazing-mode .dest-node-name,
body.stargazing-mode .dest-hub-value,
body.stargazing-mode .dest-sw-title,
body.stargazing-mode .dest-switcher-title {
    color: #f7f4ee;
}
body.stargazing-mode .dest-body-paragraph,
body.stargazing-mode .dest-exp-desc,
body.stargazing-mode .dest-attr-desc,
body.stargazing-mode .dest-sw-elev {
    color: #a0aab5;
}
body.stargazing-mode .dest-experience-item,
body.stargazing-mode .dest-attraction-card,
body.stargazing-mode .dest-route-trail-strip,
body.stargazing-mode .dest-transit-hub-item {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}
body.stargazing-mode .dest-node-marker {
    background: #10141b;
}

/* ==========================================================================
   MASTER COMPREHENSIVE RESPONSIVE ENGINE (PRECISION TIERED BREAKPOINTS)
   ========================================================================== */

/* 1. COMPACT DESKTOP & TABLET LANDSCAPE (900px to 1199px)
      PRESERVE HORIZONTAL ROW LAYOUTS WITH SCALED DIMENSIONS */
@media (min-width: 900px) and (max-width: 1199px) {
    .dest-two-col-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
    .dest-transit-hubs-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 12px !important;
    }
    .dest-switcher-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }
    .waypoint-expedition-card {
        grid-template-columns: 1fr 260px !important;
        gap: 20px !important;
    }
    .inclusions-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }
    .dossier-spec-bar {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 14px !important;
    }
    .testimonials-unified-card {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
    }
    .dest-overview-card {
        padding: 30px 32px !important;
    }
    .dest-slideshow-container {
        height: 440px !important;
    }
}

/* 2. TABLET PORTRAIT & MEDIUM MOBILE (600px to 899px)
      KEEP SIDE-BY-SIDE WHERE FIT IS NATURAL, SCALE GRIDS ACCORDINGLY */
@media (min-width: 600px) and (max-width: 899px) {
    .dest-two-col-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 18px !important;
    }
    .dest-transit-hubs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
    .dest-switcher-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
    .dest-attractions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
    .dossier-spec-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
    .waypoint-expedition-card {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .waypoint-card-media-wrap {
        height: 220px !important;
    }
}

/* 3. MOBILE & COMPACT HANDHELDS (< 600px)
      SINGLE-COLUMN RESTRUCTURING WITH CLEAN PADDING & TAP TARGETS */
@media (max-width: 599px) {
    .dest-two-col-row,
    .dest-switcher-grid,
    .dest-transit-hubs-grid,
    .dest-attractions-grid,
    .inclusions-grid,
    .dossier-spec-bar {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .dest-slideshow-container {
        height: 280px !important;
    }

    .dest-hero-main-title {
        font-size: 1.95rem !important;
        word-break: break-word !important;
    }

    .dossier-hero-title {
        font-size: 1.85rem !important;
        word-break: break-word !important;
    }

    .dest-overview-card,
    .dest-card-box,
    .dest-route-card,
    .dest-cta-banner {
        padding: 20px 16px !important;
        border-radius: 20px !important;
    }

    .dest-route-trail-strip {
        padding: 16px 14px !important;
    }
}

/* 4. VERY SMALL SCREENS (< 400px / 320px to 390px)
      FIX DOUBLE BORDERS, PREVENT HORIZONTAL OVERFLOW, & OPTIMIZE READABILITY */
@media (max-width: 400px) {
    /* Prevent Any Horizontal Overflow */
    body,
    html {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Double Border Prevention for Stacked Cards & Child Items */
    .dest-experience-item + .dest-experience-item,
    .dest-transit-hub-item + .dest-transit-hub-item,
    .inclusion-card + .inclusion-card {
        border-top: 1px solid rgba(24, 28, 32, 0.06) !important;
    }

    .dest-overview-card::before,
    .dest-card-box::before {
        display: none !important; /* Remove overlapping decorative pseudo-border strips on micro screens */
    }

    /* Single Intentional Border for Micro Cards */
    .dest-overview-card,
    .dest-card-box,
    .waypoint-expedition-card,
    .dest-route-card,
    .dest-cta-banner,
    .dest-attraction-card,
    .dest-switcher-card {
        border: 1px solid rgba(24, 28, 32, 0.1) !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03) !important;
    }

    .dest-badge-pill {
        padding: 5px 10px !important;
        font-size: 0.72rem !important;
    }

    .dest-slideshow-container {
        height: 230px !important;
    }

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

    .dest-tag {
        font-size: 0.65rem !important;
        padding: 4px 10px !important;
    }

    .trail-waypoint-stage {
        grid-template-columns: 42px 1fr !important;
        gap: 8px !important;
    }

    .trail-route-column {
        width: 42px !important;
    }

    .waypoint-crest-node {
        width: 30px !important;
        height: 30px !important;
    }

    .crest-core-seal {
        font-size: 0.75rem !important;
    }
}

/* ============================================================
   HIGH-QUALITY MOBILE RESPONSIVENESS OVERHAUL (HOME PAGE)
   ============================================================ */

/* Global Mobile Overflow Guard */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

@media (max-width: 768px) {
    /* 1. HERO SECTION MOBILE */
    .hero-section {
        padding-top: 85px !important;
        padding-bottom: 30px !important;
    }

    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .hero-visual-col {
        order: 1 !important;
        height: auto !important;
        width: 100% !important;
        position: relative !important;
        margin-bottom: 6px !important;
    }

    .hero-text-col {
        order: 2 !important;
        width: 100% !important;
    }

    /* Increased height for hero image on small screens */
    .hero-image-frame {
        width: 100% !important;
        height: clamp(340px, 80vw, 420px) !important;
        border-radius: 24px !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .hero-img-bg {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .hero-journey-dots-bar {
        position: absolute !important;
        top: 14px !important;
        right: 14px !important;
        z-index: 3 !important;
        gap: 6px !important;
        padding: 6px 10px !important;
        border-radius: 20px !important;
        background: rgba(14, 17, 20, 0.65) !important;
        backdrop-filter: blur(8px) !important;
    }

    /* Top-left elevation badge — compact, highly readable with gold & crisp white */
    .hero-widget-elevation {
        position: absolute !important;
        top: 12px !important;
        left: 12px !important;
        max-width: fit-content !important;
        padding: 5px 10px !important;
        border-radius: 10px !important;
        gap: 8px !important;
        background: rgba(14, 17, 20, 0.85) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        z-index: 2 !important;
        border: 1px solid rgba(212, 160, 23, 0.45) !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4) !important;
        animation: none !important;
    }

    .elevation-dial-icon {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        border-radius: 50% !important;
        background: rgba(212, 160, 23, 0.2) !important;
        color: #d4a017 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .elevation-dial-icon i,
    .elevation-dial-icon svg {
        width: 13px !important;
        height: 13px !important;
        color: #d4a017 !important;
    }

    .elevation-number {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        color: #ffffff !important;
        letter-spacing: 0.02em !important;
    }

    .elevation-lbl {
        font-size: 0.52rem !important;
        letter-spacing: 0.08em !important;
        color: #d4a017 !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
    }

    /* REMOVE bottom small widget on mobile as requested */
    .hero-widget-experience {
        display: none !important;
    }

    /* REMOVE 'HIGH HIMALAYAN EXPEDITIONS' badge on mobile as requested */
    .hero-badge-container {
        display: none !important;
    }

    .hero-title {
        font-size: clamp(2.1rem, 7.8vw, 2.8rem) !important;
        line-height: 1.14 !important;
        margin-bottom: 14px !important;
        margin-top: 4px !important;
    }

    .hero-description {
        font-size: 0.92rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .hero-actions-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .hero-actions-row .btn-luxury-cta,
    .hero-actions-row .btn-luxury-secondary {
        width: 100% !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* 2. "EXPLORE ALTITUDE LEVELS" SECTION */
    .altitude-section {
        padding: 40px 0 !important;
    }

    .altitude-scale-wrapper {
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .altitude-steps-nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding-bottom: 10px !important;
        margin-bottom: 16px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        grid-template-columns: none !important;
    }

    .altitude-steps-nav::-webkit-scrollbar {
        display: none !important;
    }

    .altitude-step-btn {
        flex: 0 0 auto !important;
        min-width: 105px !important;
        padding: 10px 14px !important;
        border-radius: 14px !important;
        text-align: center !important;
    }

    .step-meters {
        font-size: 1.05rem !important;
    }

    .step-name {
        font-size: 0.72rem !important;
    }

    .altitude-display-card {
        display: flex !important;
        flex-direction: column !important;
        padding: 18px !important;
        gap: 16px !important;
        border-radius: 20px !important;
    }

    /* Fixed size for altitude image across all steps */
    .display-image-box {
        width: 100% !important;
        height: 260px !important;
        min-height: 260px !important;
        max-height: 260px !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        position: relative !important;
        flex-shrink: 0 !important;
    }

    .display-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    /* Responsive stats grid: Average Temp / Oxygen Level / Atmosphere */
    .display-stats-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1.25fr !important;
        gap: 10px !important;
        align-items: start !important;
        padding-top: 14px !important;
        margin-top: 14px !important;
        border-top: 1px solid var(--border-light, rgba(20, 23, 26, 0.1)) !important;
    }

    .display-stats-grid .stat-label {
        font-size: 0.65rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        color: var(--text-muted) !important;
        margin-bottom: 4px !important;
        white-space: nowrap !important;
    }

    .display-stats-grid .stat-value {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        line-height: 1.15 !important;
        color: var(--text-primary, #14171a) !important;
    }

    .display-stats-grid .stat-vibe {
        font-size: 0.82rem !important;
        line-height: 1.25 !important;
    }

    /* 3. HIDE OXYGEN & ALTITUDE CALCULATOR ON MOBILE */
    .acclimatization-widget-box {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* 4. INTERACTIVE MAP — MOBILE RESPONSIVENESS */
    .sanctuary-map-section {
        padding: 40px 0 !important;
    }

    .sanctuary-tabs-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 6px !important;
        padding-bottom: 8px !important;
        margin-bottom: 16px !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .sanctuary-tabs-row::-webkit-scrollbar {
        display: none !important;
    }

    .sanctuary-tab-btn {
        white-space: nowrap !important;
        flex: 0 0 auto !important;
        font-size: 0.76rem !important;
        padding: 7px 13px !important;
        border-radius: 20px !important;
    }

    .map-grid-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    #leaflet-sanctuary-map,
    .map-visual-container {
        height: 270px !important;
        width: 100% !important;
        border-radius: 18px !important;
    }

    .map-overlay-badge {
        top: 10px !important;
        left: 10px !important;
        font-size: 0.68rem !important;
        padding: 4px 10px !important;
    }

    .map-layer-controls {
        bottom: 10px !important;
        right: 10px !important;
        gap: 6px !important;
    }

    .travel-guide-card {
        padding: 16px !important;
        border-radius: 18px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .guide-stats-strip {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .guide-subtabs {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        gap: 6px !important;
        padding-bottom: 6px !important;
        scrollbar-width: none !important;
    }

    .guide-subtabs::-webkit-scrollbar {
        display: none !important;
    }

    .guide-subtab-btn {
        white-space: nowrap !important;
        flex: 0 0 auto !important;
        font-size: 0.74rem !important;
        padding: 6px 12px !important;
    }

    /* 5. EXPEDITIONS SECTION — PREVENT BOTH VIEWS BEING VISIBLE AT SAME TIME */
    #gridCardsView[style*="display: none"],
    #gridCardsView[style*="display:none"],
    .grid-cards-view[style*="display: none"],
    .grid-cards-view[style*="display:none"] {
        display: none !important;
    }

    #ridgeDeckView[style*="display: none"],
    #ridgeDeckView[style*="display:none"],
    .panoramic-ridge-deck[style*="display: none"],
    .panoramic-ridge-deck[style*="display:none"] {
        display: none !important;
    }

    /* Panoramic Ridge Deck View */
    .panoramic-ridge-deck {
        display: flex !important;
        flex-direction: column !important;
        height: 560px !important;
        gap: 8px !important;
        margin-top: 10px !important;
    }

    .ridge-slice {
        position: relative !important;
        flex: 0 0 52px !important;
        transition:
            flex 0.5s ease,
            height 0.5s ease !important;
        border-radius: 16px !important;
        cursor: pointer !important;
    }

    .ridge-slice.active,
    .panoramic-ridge-deck:not(.has-active) .ridge-slice:first-child {
        flex: 1 0 340px !important;
        border-color: var(--accent-gold) !important;
    }

    .ridge-spine {
        writing-mode: horizontal-tb !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 16px !important;
        transform: none !important;
    }

    .spine-num {
        font-size: 1.1rem !important;
    }

    .spine-title-vertical {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .spine-alt-pill {
        font-size: 0.62rem !important;
        padding: 4px 8px !important;
    }

    .ridge-expanded-dossier {
        padding: 16px !important;
    }

    .ridge-exped-title {
        font-size: 1.25rem !important;
        line-height: 1.2 !important;
        margin-bottom: 6px !important;
    }

    .ridge-exped-desc {
        font-size: 0.8rem !important;
        line-height: 1.45 !important;
        margin-bottom: 12px !important;
    }

    /* 6. DOSSIER CARDS — SIMPLE ONE COLUMN AS REQUESTED */
    .grid-cards-view:not([style*="none"]) {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .expedition-lux-card {
        min-height: 360px !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .lux-card-hud-top {
        padding: 12px 14px !important;
        font-size: 0.7rem !important;
    }

    /* REMOVE feature tags (Optical Telescope, Dark Sky Reserve, etc.) on mobile */
    .lux-feature-tags {
        display: none !important;
    }

    .lux-card-capsule {
        margin: 10px !important;
        padding: 16px 18px !important;
        border-radius: 16px !important;
    }

    .lux-capsule-theme {
        font-size: 0.72rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.1em !important;
    }

    .lux-capsule-duration {
        font-size: 0.74rem !important;
        font-weight: 600 !important;
    }

    .lux-capsule-title {
        font-size: 1.25rem !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
        margin: 6px 0 8px 0 !important;
    }

    .lux-capsule-desc {
        font-size: 0.84rem !important;
        line-height: 1.5 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        margin-bottom: 12px !important;
    }

    .lux-capsule-footer {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        padding-top: 10px !important;
    }

    .lux-price-lbl {
        font-size: 0.65rem !important;
        letter-spacing: 0.06em !important;
        display: block !important;
    }

    .lux-price-val {
        font-size: 1.2rem !important;
        font-weight: 800 !important;
        line-height: 1 !important;
    }

    .lux-cta-pill {
        padding: 10px 16px !important;
        font-size: 0.51rem !important;
        font-weight: 700 !important;
        width: auto !important;
        justify-content: center !important;
        border-radius: 20px !important;
        white-space: nowrap !important;
    }

    /* 7. HIDE "INTERACTIVE TRANS-HIMALAYAN ALTITUDE TELEMETRY" ON MOBILE */
    .altitude-horizon-bar {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* 8. GALLERY — TIGHT ROW GAPS ON MOBILE */
    .bento-grid.gallery-luxury-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto !important;
        gap: 10px !important;
        row-gap: 10px !important;
        column-gap: 10px !important;
        margin-bottom: 24px !important;
    }

    .bento-grid.gallery-luxury-grid .bento-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 155px !important;
        border-radius: 14px !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .bento-grid.gallery-luxury-grid .bento-item.bento-tall {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 155px !important;
    }

    .bento-grid.gallery-luxury-grid .bento-item.bento-wide {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
        height: 180px !important;
    }

    .bento-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 14px !important;
    }

    /* 9. LADAKH TRAVEL CALENDAR RESPONSIVENESS */
    .seasons-section {
        padding: 40px 0 !important;
    }

    .seasons-timeline-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .season-timeline-row {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        gap: 6px 12px !important;
        padding: 16px !important;
        border-radius: 16px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .season-row-date {
        grid-column: 1 / -1 !important;
        font-size: 0.7rem !important;
        color: var(--accent-gold) !important;
        letter-spacing: 0.08em !important;
        font-weight: 700 !important;
    }

    .season-row-main {
        grid-column: 1 !important;
    }

    .season-row-title {
        font-size: 1.05rem !important;
        margin-bottom: 4px !important;
    }

    .season-row-desc {
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
    }

    .season-row-temp {
        grid-column: 2 !important;
        align-self: center !important;
        font-size: 0.76rem !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        background: rgba(255, 255, 255, 0.06) !important;
        padding: 6px 10px !important;
        border-radius: 20px !important;
    }

    .season-row-link {
        grid-column: 2 !important;
        justify-self: end !important;
        align-self: center !important;
    }

    /* 10. FOOTER — MOBILE REDESIGN FOR SPACE EFFICIENCY */
    .footer-luxury {
        padding-top: 50px !important;
        padding-bottom: 30px !important;
    }

    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        margin-bottom: 40px !important;
    }

    .footer-brand-col {
        margin-bottom: 8px !important;
    }

    .footer-col-accordion {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding-bottom: 12px !important;
    }

    .footer-accordion-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        background: none !important;
        border: none !important;
        padding: 8px 0 !important;
        cursor: pointer !important;
        outline: none !important;
    }

    .footer-accordion-header .footer-title {
        margin-bottom: 0 !important;
        pointer-events: none !important;
        font-size: 0.82rem !important;
    }

    .footer-acc-icon {
        transition: transform 0.3s ease !important;
        color: var(--accent-gold) !important;
        width: 18px !important;
        height: 18px !important;
    }

    .footer-accordion-header[aria-expanded="true"] .footer-acc-icon,
    .footer-accordion-header.active .footer-acc-icon {
        transform: rotate(180deg) !important;
    }

    .footer-accordion-content {
        display: none;
        padding-top: 12px !important;
    }

    .footer-accordion-content.open {
        display: block !important;
        animation: fadeIn 0.3s ease !important;
    }

    .footer-bottom-row {
        flex-direction: column !important;
        gap: 16px !important;
        text-align: center !important;
        font-size: 0.8rem !important;
        padding-top: 24px !important;
    }

    .footer-legal-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    /* ============================================================
     EXPEDITION PACKAGE DETAILS PAGE — MOBILE RESPONSIVENESS
     ============================================================ */
    .dossier-hero {
        padding: 85px 0 25px !important;
    }

    .dossier-hero-ambient {
        display: none !important;
    }

    .dossier-breadcrumb {
        font-size: 0.7rem !important;
        gap: 4px !important;
        margin-bottom: 12px !important;
        flex-wrap: wrap !important;
    }

    .dossier-hero-tags {
        gap: 6px !important;
        margin-bottom: 12px !important;
    }

    .dossier-tag {
        font-size: 0.6rem !important;
        padding: 4px 10px !important;
        letter-spacing: 0.08em !important;
    }

    .dossier-hero-title {
        font-size: clamp(1.8rem, 6.8vw, 2.3rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 10px !important;
    }

    .dossier-hero-subtitle {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
    }

    /* Body & Timeline */
    .dossier-body-section {
        padding: 35px 0 !important;
    }

    .itinerary-section-header {
        margin-bottom: 20px !important;
    }

    .itinerary-badge {
        font-size: 0.65rem !important;
        padding: 4px 10px !important;
        margin-bottom: 8px !important;
    }

    .dossier-block-title {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 6px !important;
    }

    .itinerary-header-sub {
        font-size: 0.84rem !important;
        line-height: 1.5 !important;
    }

    /* Master Organic Trail Container */
    .himalayan-expedition-trail {
        position: relative !important;
        padding-left: 0 !important;
    }

    /* Remove desktop decorative SVG canvas and connector arms on mobile */
    .trail-organic-canvas-svg {
        display: none !important;
    }

    .trail-connector-arm {
        display: none !important;
    }

    /* Clean, aligned vertical timeline stage */
    .trail-waypoint-stage {
        display: grid !important;
        grid-template-columns: 34px 1fr !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
        position: relative !important;
    }

    /* Route column with subtle vertical dotted line */
    .trail-route-column {
        width: 34px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        position: relative !important;
    }

    .trail-route-column::after {
        content: "" !important;
        position: absolute !important;
        top: 34px !important;
        bottom: -20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 2px !important;
        border-left: 2px dashed rgba(201, 160, 80, 0.35) !important;
        z-index: 1 !important;
    }

    .trail-waypoint-stage:last-child .trail-route-column::after {
        display: none !important;
    }

    .waypoint-crest-node {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        border-radius: 50% !important;
        margin-left: 0 !important;
        position: relative !important;
        z-index: 2 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    }

    .crest-core-seal {
        font-size: 0.76rem !important;
        font-weight: 800 !important;
    }

    .crest-halo-pulse {
        display: none !important;
    }

    /* Waypoint Card */
    .waypoint-expedition-card {
        display: flex !important;
        flex-direction: column !important;
        padding: 14px !important;
        border-radius: 18px !important;
        gap: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04) !important;
    }

    .waypoint-card-media-wrap {
        width: 100% !important;
        height: 170px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        order: 1 !important;
        position: relative !important;
        margin-bottom: 2px !important;
    }

    .waypoint-card-media-wrap img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .media-telemetry-badge {
        position: absolute !important;
        bottom: 8px !important;
        left: 8px !important;
        font-size: 0.65rem !important;
        padding: 4px 8px !important;
        border-radius: 10px !important;
    }

    .waypoint-card-body {
        order: 2 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .waypoint-card-topbar {
        margin-bottom: 6px !important;
    }

    .waypoint-phase-badge {
        font-size: 0.65rem !important;
        gap: 6px !important;
    }

    .waypoint-card-heading {
        font-size: 1.15rem !important;
        line-height: 1.25 !important;
        margin: 4px 0 6px 0 !important;
    }

    .waypoint-card-prose {
        font-size: 0.84rem !important;
        line-height: 1.5 !important;
    }

    /* Inclusions Block */
    .inclusions-block {
        margin-top: 36px !important;
    }

    .inclusions-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-top: 16px !important;
    }

    .inclusion-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 14px 16px !important;
        border-radius: 16px !important;
        border: 1px solid rgba(24, 28, 32, 0.08) !important;
    }

    .inclusion-icon-box {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        border-radius: 10px !important;
    }

    .inclusion-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .inclusion-title {
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        margin-bottom: 2px !important;
    }

    .inclusion-desc {
        font-size: 0.78rem !important;
        line-height: 1.45 !important;
    }

    /* HIDE 'How to Reach & Route Telemetry' on mobile screens */
    .dest-route-card {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* ============================================================
     PHOTO GALLERY PAGE — PINTEREST MULTI-COLUMN MASONRY
     ============================================================ */
    .vault-grid {
        display: block !important;
        column-count: 2 !important;
        -webkit-column-count: 2 !important;
        -moz-column-count: 2 !important;
        column-gap: 10px !important;
        padding: 10px 0 40px !important;
        width: 100% !important;
    }

    .vault-card {
        break-inside: avoid !important;
        -webkit-column-break-inside: avoid !important;
        page-break-inside: avoid !important;
        display: inline-block !important;
        width: 100% !important;
        margin-bottom: 10px !important;
        position: relative !important;
        border-radius: 14px !important;
        overflow: hidden !important;
        border: 1px solid rgba(201, 160, 80, 0.25) !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) !important;
        min-height: auto !important;
        height: auto !important;
    }

    .vault-card.span-hero,
    .vault-card.span-tall,
    .vault-card.span-wide,
    .vault-card.span-medium,
    .vault-card.span-full {
        grid-column: auto !important;
        grid-row: auto !important;
        height: auto !important;
        min-height: auto !important;
        width: 100% !important;
    }

    .vault-card .vault-img-box {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: auto !important;
        background: #0f1216 !important;
        display: block !important;
    }

    .vault-card .vault-img-box img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
        border-radius: 14px !important;
        transition: transform 0.5s ease !important;
    }

    /* REMOVE text and overlays on gallery images on mobile */
    .vault-card .viewfinder-hud {
        display: none !important;
    }

    /* ============================================================
     CONTACT US PAGE — MOBILE RESPONSIVENESS
     ============================================================ */
    .page-hero-section {
        padding: 85px 0 20px !important;
    }

    .page-hero-title {
        font-size: clamp(1.65rem, 6.2vw, 2.1rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    .page-hero-subtitle {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
    }

    .contact-main-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        width: 100% !important;
    }

    /* Elegant single-column stack for contact options */
    .contact-2x2-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .contact-mini-card {
        padding: 12px 16px !important;
        border-radius: 16px !important;
        min-height: unset !important;
        height: auto !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        border: 1px solid rgba(201, 160, 80, 0.25) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-mini-card > div {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 14px !important;
        width: 100% !important;
    }

    .contact-mini-card-icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        border-radius: 12px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }

    .contact-mini-card-icon i,
    .contact-mini-card-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .contact-mini-card > div > div:last-child {
        margin-top: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .contact-mini-lbl {
        font-size: 0.58rem !important;
        letter-spacing: 0.08em !important;
        margin-top: 0 !important;
        margin-bottom: 2px !important;
        line-height: 1.2 !important;
    }

    .contact-mini-val {
        font-size: 0.94rem !important;
        line-height: 1.25 !important;
        word-break: normal !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .dispatch-hud-card {
        padding: 22px 18px !important;
        border-radius: 20px !important;
        border: 1.5px solid rgba(201, 160, 80, 0.35) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hud-card-header {
        gap: 6px !important;
        margin-bottom: 8px !important;
    }

    .hud-badge-left {
        font-size: 0.62rem !important;
    }

    .hud-badge-right {
        font-size: 0.58rem !important;
        padding: 3px 8px !important;
    }

    .hud-title {
        font-size: 1.35rem !important;
        line-height: 1.22 !important;
        margin-bottom: 18px !important;
    }

    .form-label-section {
        font-size: 0.65rem !important;
        margin-bottom: 6px !important;
    }

    .input-icon-group i,
    .input-icon-group svg {
        left: 12px !important;
        width: 16px !important;
        height: 16px !important;
    }

    .input-icon-field {
        padding: 12px 14px 12px 40px !important;
        font-size: 0.88rem !important;
        border-radius: 12px !important;
    }

    .form-grid-2col {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        margin-bottom: 16px !important;
    }

    .form-textarea-custom {
        min-height: 95px !important;
        padding: 12px 14px !important;
        font-size: 0.88rem !important;
        border-radius: 12px !important;
    }

    .btn-sleek-dispatch {
        padding: 14px 20px !important;
        font-size: 0.8rem !important;
        border-radius: 14px !important;
        letter-spacing: 0.1em !important;
    }
}

/* Desktop styles for footer accordion */
@media (min-width: 769px) {
    .footer-accordion-header {
        background: none;
        border: none;
        padding: 0;
        cursor: default;
        width: 100%;
        text-align: left;
    }

    .footer-acc-icon {
        display: none !important;
    }

    .footer-accordion-content {
        display: block !important;
    }

    .footer-legal-links {
        display: flex;
        gap: 20px;
        align-items: center;
    }
}

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

    .hero-badge-container,
    .hero-title,
    .hero-description,
    .hero-actions-row,
    .hero-image-frame,
    .hero-journey-dots-bar,
    .hero-widget-elevation,
    .hero-widget-experience {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* ==========================================================================
   ANDROID & MOBILE TOUCH ERGONOMICS & INSTANT TOUCH RESPONSIVENESS SUITE
   ========================================================================== */

/* Universal fast tap & elimination of 300ms delay */
button,
a,
input,
select,
textarea,
label,
[role="button"],
.btn-luxury-cta,
.btn-luxury-secondary,
.btn-audio-toggle,
.btn-theme-toggle,
.hero-journey-dot,
.altitude-step-btn,
.pill-option,
.expedition-tab-btn,
.sanctuary-tab-btn,
.guide-subtab-btn,
.season-tab-item,
.thumb-item,
.bento-item,
.gallery-filter-btn,
.drawer-menu-link,
.menu-drawer-trigger,
.drawer-close-btn,
.stage-prev,
.stage-next,
.exped-prev,
.exped-next,
.dest-dot,
.dest-nav-btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Smooth Horizontal Pan / Swipe containers (prevents vertical page lock during swipe) */
.hero-visual-col,
.hero-image-frame,
.expedition-showcase-box,
.expedition-visual-box,
.stage-wrapper,
.stage-visual-canvas,
.stage-quote-card,
.altitude-scale-wrapper,
.altitude-display-card,
.seasons-visual-stage,
.dest-slideshow-container,
.ridge-deck-container,
.travel-guide-card,
.lightbox-content-box,
.lightbox-img-wrapper {
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

/* Minimum 44px Ergonomic Touch Targets on Mobile */
@media (max-width: 1024px) {
    .hero-journey-dot {
        position: relative;
        padding: 8px;
        margin: 2px 6px;
        min-width: 32px;
        min-height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-journey-dot::after {
        content: "";
        position: absolute;
        top: -10px;
        bottom: -10px;
        left: -10px;
        right: -10px;
    }

    .menu-drawer-trigger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .drawer-close-btn {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stage-prev,
    .stage-next,
    .exped-prev,
    .exped-next,
    .dest-nav-btn {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .btn-audio-toggle,
    .btn-theme-toggle {
        min-width: 44px;
        min-height: 44px;
    }

    .altitude-step-btn {
        padding: 12px 14px;
        min-height: 48px;
    }

    .pill-option {
        padding: 10px 16px;
        min-height: 42px;
    }
}

/* Tactile Active Micro-Press Confirmation for Touchscreens */
@media (pointer: coarse), (hover: none) {
    .btn-luxury-cta:active,
    .btn-luxury-secondary:active,
    .altitude-step-btn:active,
    .pill-option:active,
    .expedition-tab-btn:active,
    .season-tab-item:active,
    .sanctuary-tab-btn:active,
    .guide-subtab-btn:active,
    .drawer-menu-link:active,
    .stage-prev:active,
    .stage-next:active,
    .exped-prev:active,
    .exped-next:active,
    .dest-nav-btn:active,
    .gallery-filter-btn:active,
    .menu-drawer-trigger:active,
    .drawer-close-btn:active {
        transform: scale(0.96) !important;
        opacity: 0.88 !important;
        transition:
            transform 0.08s ease,
            opacity 0.08s ease !important;
    }

    /* Prevent sticky hover backgrounds on touch scroll */
    .expedition-card:hover,
    .bento-item:hover,
    .astro-card:hover {
        transform: none;
    }
}
