  :root {
            --sunlight: #FEFD99;
            --charcoal: #454040;
            --parchment: #FEFDDF;
            --navy: #021A54;
            --steel: #3852B4;
        }

        body {
            font-family: 'Jura', sans-serif;
            background-color: var(--parchment);
            color: var(--charcoal);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .font-signature { font-family: 'MonteCarlo', cursive; }

        /* Blueprint aesthetic */
        .blueprint-grid {
            background-image: 
                linear-gradient(rgba(56, 82, 180, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(56, 82, 180, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* Hero Slideshow */
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 6s linear;
            background-size: cover;
            background-position: center;
        }
        .hero-slide.active {
            opacity: 1;
            transform: scale(1.1);
        }
        .hero-overlay {
            background: linear-gradient(to right, var(--navy) 0%, transparent 60%);
            mix-blend-mode: multiply;
        }

        /* Glassmorphism Header */
        .glass-header {
            background: rgba(254, 253, 223, 0.7);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(2, 26, 84, 0.08);
        }

        /* Navigation Tracing Animation */
        .nav-link {
            position: relative;
            padding: 5px 0;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--steel);
            transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* Section Layouts */
        .asymmetric-item:nth-child(even) { margin-top: 5rem; }
        
        /* Floating Elements */
        .floating { animation: float 8s ease-in-out infinite; }
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        /* Page Content Transitions */
        #page-container { transition: opacity 0.5s ease; }
        .page-hidden { opacity: 0; pointer-events: none; position: absolute; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--parchment); }
        ::-webkit-scrollbar-thumb { background: var(--navy); }

        /* Mobile Menu */
        #mobile-menu {
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }
        #mobile-menu.open { transform: translateX(0); }

        /* Weather Animation */
        .weather-active .rain-drop {
            position: fixed;
            background-color: rgba(255, 255, 255, 0.3);
            width: 1px;
            height: 60px;
            top: -100px;
            animation: fall linear infinite;
            z-index: 99;
        }
        @keyframes fall {
            to { transform: translateY(110vh); }
        }