        :root {
            --navy: #003049;
            --accent: #AACDBE;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Raleway', sans-serif;
            background-color: var(--white);
            color: var(--navy);
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .serif {
            font-family: 'Cardo', serif;
        }

        /* Fixed Background Core */
        .fixed-bg {
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            transition: transform 1.5s ease-out;
        }

        /* Glassmorphism Header */
        .glass-header {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 48, 73, 0.05);
        }

        /* Navigation Underline */
        .nav-link {
            position: relative;
            padding-bottom: 4px;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--navy);
            transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Bullet Point Animation */
        .square-bullet {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--navy);
            margin-right: 12px;
        }

        /* Mobile Menu */
        #mobileMenu {
            transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
            z-index: 1000;
        }

        .image-zoom:hover .fixed-bg {
            transform: scale(1.05);
        }

        .editorial-card {
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .editorial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 48, 73, 0.1);
        }
