        :root {
            --orange: #FB773C;
            --white: #FFFFFF;
        }

        body {
            background-color: var(--white);
            color: var(--orange);
            font-family: 'Outfit', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .maiden-orange {
            font-family: 'Maiden Orange', cursive;
        }

        /* Nav Hover Effect */
        .nav-item {
            position: relative;
            padding: 4px 12px;
            transition: all 0.3s ease;
        }
        .nav-item:hover {
            background-color: var(--orange);
            color: white;
        }

        /* Typewriter Animation */
        .typewriter {
            display: inline-block;
            overflow: hidden;
            border-right: 2px solid var(--orange);
            white-space: nowrap;
            width: 0;
            animation: typing 2.5s steps(30, end) forwards;
        }
        @keyframes typing { from { width: 0 } to { width: 100% } }

        /* Floating Cards */
        .floating-card {
            transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
            background: white;
        }
        .floating-card:hover {
            transform: rotate(0deg) translateY(-15px) !important;
            background-color: var(--orange);
            color: white;
        }

        /* Border Grid Boxes */
        .border-box {
            border: 1px solid var(--orange);
            transition: all 0.4s ease;
        }
        .border-box:hover {
            background-color: var(--orange);
            color: white;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: white; }
        ::-webkit-scrollbar-thumb { background: var(--orange); }

        /* Page Transition */
        #page-content {
            animation: fadeIn 0.8s ease-out forwards;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Overlay Styles */
        .overlay {
            position: fixed;
            inset: 0;
            background: white;
            z-index: 100;
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .overlay.active {
            display: flex;
            opacity: 1;
        }

        /* Fixed Parallax Section */
        .parallax-container {
            height: 150vh;
            position: relative;
        }
        .parallax-bg {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .parallax-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(1) opacity(0.1);
        }
        .parallax-scroll-text {
            position: relative;
            margin-top: -100vh;
            padding-bottom: 50vh;
        }

        .btn-editorial {
            border: 1px solid var(--orange);
            padding: 10px 24px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            transition: 0.3s;
        }
        .btn-editorial:hover {
            background: var(--orange);
            color: white;
        }
