        :root {
            --deep-blue: #215B63;
            --warm-beige: #F5EEDD;
            --pure-white: #FFFFFF;
        }

        body {
            font-family: 'Dosis', sans-serif;
            background-color: var(--pure-white);
            color: var(--deep-blue);
            margin: 0;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* --- UI Components --- */
        .glass-card {
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px 0 rgba(33, 91, 99, 0.05);
        }

        .nav-link {
            position: relative;
            transition: all 0.4s ease;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -4px;
            left: 0;
            background-color: var(--deep-blue);
            transition: width 0.4s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .nav-link:hover {
            text-shadow: 0 0 15px rgba(33, 91, 99, 0.2);
        }

        /* --- Animation System --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .bg-zoom {
            animation: slowZoom 30s infinite alternate linear;
        }
        @keyframes slowZoom {
            from { transform: scale(1); }
            to { transform: scale(1.15); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .breathing {
            animation: breath 8s ease-in-out infinite;
        }
        @keyframes breath {
            0%, 100% { opacity: 0.85; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.02); }
        }

        /* --- Fixed Background System --- */
        .fixed-hero-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -10;
            overflow: hidden;
        }

        /* --- Custom Multipage View --- */
        .view-section {
            display: none;
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        .view-section.active {
            display: block;
            opacity: 1;
        }

        /* --- Form Styling --- */
        .minimal-input {
            border: none;
            border-bottom: 1px solid rgba(33, 91, 99, 0.2);
            background: transparent;
            padding: 12px 0;
            outline: none;
            width: 100%;
            transition: border-color 0.4s ease;
        }
        .minimal-input:focus {
            border-bottom: 1px solid var(--deep-blue);
        }

        /* --- Mobile Nav --- */
        #mobile-nav {
            transform: translateX(100%);
            transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        }
        #mobile-nav.open {
            transform: translateX(0);
        }
