        /* CSS VARIABLE PALETTE */
        :root {
            --sage: #EFF3EA;
            --stone: #D8D2C2;
            --coral: #FF6060;
            --light-coral: #FF7873;
            --muted-green: #C0E1D2;
            --soft-white: #EDE9E6;
            --black: #111111;
            --white: #FFFFFF;
            --gold-subtle: #D3D4C0;
            --font-main: "Smooch Sans", sans-serif;
        }

        /* RESET & BASE STYLES */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--font-main);
            letter-spacing: 1px;
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--black);
            color: var(--black);
        }

        body {
            overflow-x: hidden;
            background-color: var(--soft-white);
        }

        /* SCROLL PROGRESS INDICATOR */
        #scrollProgress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: var(--coral);
            width: 0%;
            z-index: 10000;
            transition: width 0.1s linear;
        }

        /* TYPOGRAPHY OVERRIDES */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 100;
            text-transform: uppercase;
        }

        p {
            font-size: 1.4rem;
            line-weight: 1.6;
            font-weight: 300;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* NAVIGATION & HEADER */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 2000;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            padding: 25px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header.scrolled {
            background: var(--black);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            padding: 15px 50px;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 100;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .logo span {
            color: var(--coral);
        }

        nav {
            display: flex;
            gap: 25px;
        }

        .nav-link {
            font-size: 1.6rem;
            font-weight: 500;
            color: var(--white);
            text-transform: uppercase;
            position: relative;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--light-coral);
        }

        /* Editorial Strike-through cut-mark effect */
        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            top: 53%;
            width: 0;
            height: 2px;
            background-color: var(--coral);
            transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* HAMBURGER & MOBILE MENU */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 3000;
        }

        .hamburger div {
            width: 30px;
            height: 2px;
            background: var(--white);
            transition: 0.3s;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: var(--black);
            z-index: 2500;
            display: flex;
            flex-direction: column;
            padding: 120px 40px;
            gap: 20px;
            transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu .nav-link {
            font-size: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 10px;
        }

        /* FIXED FLOATING ACTIONS */
        .floating-socials {
            position: fixed;
            left: 40px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1500;
        }

        .social-icon {
            color: black;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            text-transform: uppercase;
        }

        .social-icon:hover {
            background: var(--coral);
            transform: translateY(-5px) rotate(10deg);
        }

        .floating-cart {
            position: fixed;
            right: 40px;
            bottom: 40px;
            width: 70px;
            height: 70px;
            background: var(--black);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1500;
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .floating-cart:hover {
            transform: scale(1.1);
            border-color: var(--coral);
            box-shadow: 0 0 20px var(--coral);
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--coral);
            color: var(--white);
            font-size: 1.1rem;
            font-weight: bold;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* PAGE SYSTEM CONTROLLER */
        .page-view {
            display: none;
            animation: fadeInPage 0.6s ease forwards;
        }

        .page-view.active-view {
            display: block;
        }

        @keyframes fadeInPage {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* HERO SECTIONS GLOBAL & SPECIFIC */
        .hero-section {
            height: 120vh;
            width: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.8) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        /* Image-filled Typography and Cinematic Headings */
        .hero-title-wrap {
            font-size: 11rem;
            line-height: 0.9;
            font-weight: 100;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .word-clipped {
            display: block;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255,255,255,0.8);
            background-size: cover;
            -webkit-background-clip: text;
            background-clip: text;
        }

        @keyframes textZoomBg {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        .word-solid {
            display: block;
            color: var(--white);
            animation: slideUpTitle 1s ease-out;
        }

        .hero-paragraph {
            font-size: 1.8rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto 40px auto;
            color: rgba(255,255,255,0.9);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* PREMIUM BUTTON STYLES */
        .btn-premium {
            padding: 15px 35px;
            font-size: 1.4rem;
            font-weight: 600;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            z-index: 1;
        }

        .btn-coral {
            background: var(--coral);
            color: var(--white);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-premium::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%; width: 0; height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            z-index: -1;
        }

        .btn-premium:hover::before {
            width: 300px;
            height: 300px;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            animation: bounce 2s infinite;
            z-index: 2;
            color: rgba(255,255,255,0.7);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        /* HOME SECTION 2: ABOUT SUMMARY */
        .home-about {
            background: var(--sage);
            padding: 120px 8%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-left img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            animation: softFloat 6s ease-in-out infinite alternate;
        }

        @keyframes softFloat {
            0% { transform: translateY(0); }
            100% { transform: translateY(-15px); }
        }

        .label-stone {
            color: var(--stone);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: inline-block;
        }

        .head-black {
            color: var(--black);
            font-size: 5rem;
            line-height: 1;
            margin-bottom: 20px;
        }

        .pg-large {
            font-size: 1.6rem;
            color: #444;
            line-height: 1.7;
        }

        /* HOME SECTION 3: FEATURED EXPERIENCES */
        .home-featured {
            background: var(--sage);
            padding: 0 8% 120px 8%;
        }

        .section-header-center {
            text-align: center;
            margin-bottom: 60px;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .featured-card {
            background: transparent;
            cursor: pointer;
        }

        .card-img-wrap {
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

        .card-img-wrap img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .featured-card:hover .card-img-wrap img {
            transform: scale(1.08);
        }

        .card-title {
            font-size: 2.2rem;
            color: var(--black);
            margin-bottom: 8px;
        }

        .card-caption {
            font-size: 1.3rem;
            color: #555;
        }

        /* HOME SECTION 4: WHY TRAVEL WITH US */
        .home-why {
            position: relative;
            background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
            padding: 140px 8%;
            color: var(--white);
        }

        .why-overlay {
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background: var(--coral);
            opacity: 0.85;
            z-index: 1;
        }

        .why-content {
            position: relative;
            z-index: 2;
            max-width: 650px;
        }

        .why-content .label-light {
            font-size: 1.4rem;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7);
            margin-bottom: 10px;
            display: block;
        }

        .why-content h2 {
            font-size: 5rem;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .why-content hr {
            border: none;
            height: 1px;
            background: rgba(255,255,255,0.3);
            margin: 40px 0;
        }

        .why-features-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .why-feature-item {
            text-align: center;
            animation: softFloat 5s ease-in-out infinite alternate;
        }

        .why-feature-item img {
            width: 70px;
            height: 70px;
            margin-bottom: 15px;
            filter: brightness(0) invert(1);
        }

        .why-feature-item p {
            font-size: 1.4rem;
            font-weight: 600;
        }

        /* HOME SECTION 5: POPULAR DESTINATIONS */
        .home-destinations {
            background: var(--muted-green);
            padding: 120px 8%;
        }

        .label-gold {
            color: var(--black);
            opacity: 0.6;
            font-size: 1.4rem;
            text-transform: uppercase;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(3, 2fr);
            gap: 40px;
            margin-top: 60px;
        }

        .dest-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: transform 0.4s ease;
        }

        .dest-card:hover {
            transform: translateY(-10px);
        }

        .dest-img-wrap {
            overflow: hidden;
        }

        .dest-img-wrap img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .dest-card:hover .dest-img-wrap img {
            transform: scale(1.06);
        }

        .dest-info {
            padding: 25px;
        }

        /* HOME SECTION 6: JOURNEY HIGHLIGHT */
        .home-journey-highlight {
            position: relative;
            background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
            padding: 140px 8%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            color: var(--white);
        }

        .journey-overlay {
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background: var(--light-coral);
            opacity: 0.85;
            z-index: 1;
        }

        .journey-left {
            position: relative;
            z-index: 2;
        }

        .journey-right {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
        }

        .floating-graphics {
            width: 300px;
            height: 300px;
            border: 4px dashed rgba(255,255,255,0.4);
            border-radius: 50%;
            animation: rotateGraph 20s linear infinite;
        }

        @keyframes rotateGraph {
            to { transform: rotate(360deg); }
        }

        /* HOME SECTION 7: CURATED TRAVEL STORIES */
        .home-stories {
            background: var(--light-coral);
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }

        .stories-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .stories-right {
            padding: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .head-white-sub {
            font-size: 2rem;
            color: var(--soft-white);
            margin-bottom: 10px;
        }

        /* HOME SECTION 8: OUR TRAVEL PROMISE */
        .home-promise {
            background: var(--white);
            padding: 120px 8%;
        }

        .promise-underline {
            width: 120px;
            height: 4px;
            background: var(--light-coral);
            margin: 20px 0 60px 0;
        }

        .promise-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        /* REUSABLE STORE SYSTEM */
        .store-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
            padding: 60px 8%;
            background: var(--sage);
        }

        .product-card {
            background: var(--white);
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
        }

        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        /* REUSABLE INTERACTIVE FAQ ACCORDION */
        .faq-container {
            max-width: 900px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
            overflow: hidden;
        }

        .faq-question {
            padding: 25px;
            font-size: 1.6rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: #fdfdfd;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
            padding: 0 25px;
            font-size: 1.3rem;
            color: #555;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 25px 25px;
        }

        /* REUSABLE LEGAL FRAMEWORK (PRIVACY / TERMS) */
        .legal-layout {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 50px;
            padding: 80px 8%;
            background: var(--white);
        }

        .legal-sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
            background: var(--sage);
            padding: 30px;
            border-radius: 12px;
        }

        .legal-nav-link {
            display: block;
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--black);
            opacity: 0.6;
            cursor: pointer;
        }

        .legal-nav-link.active-legal {
            opacity: 1;
            color: var(--coral);
        }

        .legal-content h3 {
            font-size: 2.2rem;
            margin: 40px 0 20px 0;
            border-bottom: 2px solid var(--stone);
            padding-bottom: 10px;
        }

        /* CONTACT FORM INTERACTIVE */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding: 80px 8%;
            background: var(--soft-white);
        }

        .contact-form-el {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 15px;
            font-size: 1.4rem;
            border: 2px solid var(--stone);
            background: var(--white);
            border-radius: 6px;
            outline: none;
        }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--coral);
        }

        /* PREMIUM DYNAMIC FOOTER */
        footer {
            background: var(--light-coral);
            color: var(--white);
            padding: 100px 8% 40px 8%;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 2fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--black);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
            font-size: 1.4rem;
        }

        .footer-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-form input[type="email"] {
            padding: 12px;
            font-size: 1.3rem;
            border: none;
            border-radius: 4px;
            width: 100%;
        }

        .footer-msg {
            font-size: 1.2rem;
            font-weight: bold;
            margin-top: 5px;
            display: none;
        }

        .footer-bottom {
            border-top: 1px solid rgba(0,0,0,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.3rem;
            color: var(--black);
        }

        .back-to-top {
            background: var(--black);
            color: var(--white);
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            cursor: pointer;
            font-weight: bold;
            transition: 0.3s;
        }

        .back-to-top:hover {
            background: var(--white);
            color: var(--black);
        }

        /* NOTIFICATION BANNER */
        #notification-toast {
            position: fixed;
            top: 100px;
            right: 40px;
            background: var(--black);
            color: var(--white);
            padding: 15px 30px;
            border-left: 5px solid var(--coral);
            font-size: 1.4rem;
            z-index: 10000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            display: none;
            animation: slideInRight 0.3s ease;
        }

        @keyframes slideInRight {
            from { transform: translateX(100%); }
            to { transform: translateX(0); }
        }

        /* RESPONSIVE BREAKPOINTS */
        @media (max-width: 1024px) {
            .home-about, .featured-grid, .destinations-grid, .why-features-grid, .home-stories, .promise-split, .contact-wrapper, .legal-layout, .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 40px;
            }
            header { padding: 20px; }
            nav { display: none; }
            .hamburger { display: flex; }
            .hero-title-wrap { font-size: 6rem; }
            .floating-socials { left: 15px; }
            .floating-cart { right: 15px; bottom: 15px; }
        }
        /* SLIDE-IN CART DRAWER (LEFT SIDE) */
.cart-drawer {
    position: fixed;
    top: 0;
    left: -420px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    box-shadow: 10px 0 30px rgba(0,0,0,0.15);
    transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    left: 0;
}

.cart-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(17,17,17,0.08);
    margin-bottom: 20px;
}

.cart-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.3s ease;
}

.cart-close-btn:hover {
    transform: rotate(90deg);
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background: var(--sage);
    border: 1px solid rgba(17,17,17,0.04);
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.cart-item-details p {
    font-size: 0.9rem;
    color: var(--coral);
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    padding: 5px;
}

.cart-item-remove:hover {
    color: #ff3333;
}

.cart-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(17,17,17,0.08);
    margin-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cart-checkout-btn {
    width: 100%;
    padding: 14px;
    background: var(--coral);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cart-checkout-btn:hover {
    background: #e05555;
}

.empty-cart-msg {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    padding: 40px 0;
}

@media (max-width: 500px) {
    .cart-drawer {
        width: 100%;
        left: -100%;
    }
}