        :root { scroll-behavior: smooth; }
        
        /* Font Utility Classes per Prompt */
        .bellota-text-light { font-family: "Bellota Text", sans-serif; font-weight: 300; font-style: normal; }
        .bellota-text-regular { font-family: "Bellota Text", sans-serif; font-weight: 400; font-style: normal; }
        .bellota-text-bold { font-family: "Bellota Text", sans-serif; font-weight: 700; font-style: normal; }
        .bellota-text-light-italic { font-family: "Bellota Text", sans-serif; font-weight: 300; font-style: italic; }
        .bellota-text-regular-italic { font-family: "Bellota Text", sans-serif; font-weight: 400; font-style: italic; }
        .bellota-text-bold-italic { font-family: "Bellota Text", sans-serif; font-weight: 700; font-style: italic; }

        body { 
            font-family: 'Bellota Text', sans-serif; 
            background-color: #FFFFFF; 
            color: #000;
            overflow-x: hidden;
            margin: 0;
        }

        /* Fixed Hero Background with Zoom Animation */
        .hero-fixed-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 130vh;
            background-image: url('https://static.wixstatic.com/media/ea71bb_27587be15bf449e3933a012334862e16~mv2_d_3973_2235_s_2.jpg/v1/fill/w_1883,h_1243,al_t,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/ea71bb_27587be15bf449e3933a012334862e16~mv2_d_3973_2235_s_2.jpg');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        @keyframes slowZoom {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        /* Editorial Reveal Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Nav Interaction */
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-link:hover { color: #08CB00; }
        
        /* Fixed header style */
        header.sticky-nav {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        /* Page View transitions */
        .page-view { display: none; }
        .page-view.active { display: block; animation: fadeInPage 0.8s ease-out; }
        @keyframes fadeInPage { from { opacity: 0; } to { opacity: 1; } }

        /* Custom Form Glow */
        .cool-input {
            border: 1px solid #08CB00;
            transition: all 0.3s ease;
        }
        .cool-input:focus {
            box-shadow: 0 0 15px rgba(8, 203, 0, 0.3);
            outline: none;
            background: #fff;
        }

        /* Vertical Flow Animation */
        .flow-step {
            position: relative;
            padding-left: 3rem;
            border-left: 2px solid #e5e7eb;
        }
        .flow-step::before {
            content: '';
            position: absolute;
            left: -9px;
            top: 0;
            width: 16px;
            height: 16px;
            background: #08CB00;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        .flow-step:hover::before { transform: scale(1.5); }

        /* Image Mask for Editorial Feel */
        .editorial-mask {
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
        }
