   :root { scroll-behavior: smooth; }
        body { font-family: 'Lexend Deca', sans-serif; overflow-x: hidden; color: #1a1a1a; }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(1deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }
        .animate-float { animation: float 5s ease-in-out infinite; }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            grid-template-rows: auto auto;
            gap: 24px;
        }

        /* Custom Scrollbar for Meal Strip */
        .no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

        /* Timeline vertical line */
        .timeline-line {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: rgba(255,255,255,0.2);
            z-index: 1;
        }

        /* Sticky Header Glassmorphism */
        .header-glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        /* Page View transitions */
        .page-view { display: none; }
        .page-view.active { display: block; animation: fadeIn 0.4s ease-out; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* Staggered Layout */
        .stagger-left { transform: translateX(-40px); }
        .stagger-right { transform: translateX(40px); }
        
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; }
            .stagger-left, .stagger-right { transform: none; }
        }

        /* Overlap Section */
        .overlap-container { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }
        .overlap-card-1 { transform: rotate(-5deg) translateX(-150px); z-index: 10; }
        .overlap-card-2 { transform: rotate(5deg) translateX(150px); z-index: 10; }
        .overlap-img { z-index: 5; width: 400px; height: 400px; border-radius: 50%; object-fit: cover; border: 12px solid white; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

        @media (max-width: 768px) {
            .overlap-container { height: auto; flex-direction: column; gap: 20px; }
            .overlap-card-1, .overlap-card-2 { transform: none; position: static; }
            .overlap-img { width: 300px; height: 300px; }
        }