        :root {
            --bg-primary: #F9F3DF;
            --bg-accent: #BCCC9A;
            --black: #000000;
        }

        body {
            font-family: 'Be Vietnam Pro', sans-serif;
            background-color: var(--bg-primary);
            color: var(--black);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* TYPOGRAPHY */
        .hero-text {
            font-size: clamp(2rem, 5vw, 4rem);
            line-height: 0.9;
            font-weight: 400;
            letter-spacing: -0.04em;
        }

        /* HERO ANIMATION */
        .ken-burns {
            animation: kenburns 20s infinite alternate;
        }
        @keyframes kenburns {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }

        /* CORNER LAYOUT */
        .hero-container {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 40px;
        }

        /* BUTTONS */
        .btn-black {
            background: var(--black);
            color: var(--bg-primary);
            padding: 16px 32px;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
        }
        .btn-black:hover {
            opacity: 0.8;
            transform: translateY(-2px);
        }

        /* SECTION STYLES */
        .section-split {
            border-top: 1px solid rgba(0,0,0,0.1);
            padding: 100px 40px;
        }

        .service-block {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            padding: 60px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            transition: background 0.4s ease;
            cursor: pointer;
        }
        .service-block:hover {
            background: rgba(188, 204, 154, 0.2);
            padding-left: 20px;
        }

        /* MODAL */
        #content-modal {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            z-index: 3000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-body {
            background: var(--bg-primary);
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }

        /* JOB FILTERING */
        .filter-btn.active {
            text-decoration: underline;
            text-underline-offset: 8px;
            font-weight: 800;
        }

        .hidden-page { display: none !important; }

        /* SCROLL PROGRESS */
        #progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: var(--black);
            z-index: 1001;
            width: 0%;
        }
  