        :root {
            --primary: #3F4F44;
            --bg-soft: #FBF5E5;
            --dark-cinematic: #3D3D3D;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Bellefair', serif;
            background-color: var(--bg-soft);
            color: var(--primary);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Multipage Navigation */
        .page-view { display: none; }
        .page-view.active { display: block; animation: fadeIn 0.8s ease-in-out; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Hero Media Layering */
        #hero-static-img {
            transition: opacity 1s ease-in-out;
            z-index: 10;
        }
        #hero-vid-bg {
            z-index: 5;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }
        #hero-vid-bg.visible { opacity: 1; }

        /* Typography */
        h1, h2, h3, h4 { font-weight: 400; line-height: 1.1; }
        .editorial-underline {
            text-decoration: underline;
            text-underline-offset: 8px;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .editorial-underline:hover { opacity: 0.6; }

        /* Scroll Effects */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease-out;
        }
        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Passport Image Stacks */
        .passport-photo {
            border: 4px solid white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .passport-photo:hover {
            transform: scale(1.1) rotate(0deg) !important;
            z-index: 50;
        }

        /* Modal Quickview */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.85);
            z-index: 200;
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .modal-overlay.active { display: flex; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--bg-soft); }
        ::-webkit-scrollbar-thumb { background: var(--primary); }

        .btn-hero {
            background-color: white;
            color: black;
            padding: 1.25rem 3rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.75rem;
        }
        .btn-hero:hover { color: var(--primary); transform: translateY(-2px); }
