        :root {
            --beige: #EBCB90;
            --orange: #FEA405;
            --terracotta: #BB6653;
            --blue: #799EFF;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--beige);
            color: #1a1a1a;
            overflow-x: hidden;
        }

        .bebas { font-family: 'Bebas Neue', cursive; }

        /* Diagonal Hero Split */
        .hero-split {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #fff;
        }

        .hero-left {
            width: 60%;
            height: 100%;
            background: var(--beige);
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
            z-index: 2;
            display: flex;
            align-items: center;
            padding-left: 10%;
        }

        .hero-right {
            position: absolute;
            right: 0;
            top: 0;
            width: 50%;
            height: 100%;
            background: url('https://i.pinimg.com/736x/41/04/77/41047752bbb211d5064516ee12e88fb9.jpg') no-repeat center center/cover;
            z-index: 1;
        }

        /* Angled Cards */
        .angled-card {
            transform: skewY(-2deg);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0,0,0,0.1);
        }
        
        .angled-card > div { transform: skewY(2deg); }

        .angled-card:hover {
            transform: skewY(0deg) translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Nav Transitions */
        header.scrolled {
            background: var(--beige);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            padding: 10px 0;
        }

        /* Custom UI */
        .btn-vision {
            font-family: 'Bebas Neue';
            padding: 12px 35px;
            letter-spacing: 1px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }

        .btn-vision-orange {
            background: var(--orange);
            color: white;
        }

        .btn-vision-orange:hover {
            background: var(--terracotta);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(187, 102, 83, 0.3);
        }

        /* Page Management */
        .page { display: none; }
        .page.active { display: block; }

        /* Modal */
        .modal {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            z-index: 9999;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-inner {
            background: white;
            width: 100%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 4px;
            position: relative;
        }

        .marquee-bg {
            background: var(--orange);
            white-space: nowrap;
            overflow: hidden;
            padding: 20px 0;
            border-top: 2px solid #000;
            border-bottom: 2px solid #000;
        }

        .marquee-text {
            display: inline-block;
            animation: marquee 30s linear infinite;
            font-family: 'Bebas Neue';
            font-size: 3rem;
            color: #000;
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }