        :root {
            --yellow: #FFF59D;
            --black: #000000;
        }

        body {
            font-family: 'Inter Tight', sans-serif;
            background-color: var(--yellow);
            color: var(--black);
            margin: 0;
            overflow-x: hidden;
        }

        /* Typography */
        h1 { font-weight: 900; font-size: clamp(3.5rem, 12vw, 9rem); line-height: 0.85; letter-spacing: -0.05em; margin-bottom: 2rem; }
        h2 { font-weight: 800; font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.03em; line-height: 1; }
        h3 { font-weight: 700; font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.2em; }
        p { font-weight: 400; line-height: 1.7; font-size: 1.2rem; opacity: 0.85; }

        /* CIRCULAR MENU BUTTON */
        .menu-wrapper {
            position: fixed;
            right: 40px;
            z-index: 1000;
        }
        .menu-circle {
            width: 100px;
            height: 60px;
            background: var(--black);
            color: var(--yellow);
            border-radius: 40%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.19, 4, 0.2, 1);
            border: 2px solid var(--black);
            pointer-events: auto;
        }
        .menu-circle:hover {
            box-shadow: 0 0 30px rgba(0,0,0,0.2);
            transform: scale(1.1);
            background: var(--yellow);
            color: var(--black);
        }

        /* OVERLAY NAVIGATION */
        #nav-overlay {
            position: fixed;
            inset: 0;
            background: var(--black);
            z-index: 900;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform 0.7s cubic-bezier(0.85, 0, 0.15, 1);
        }
        #nav-overlay.active { transform: translateX(0); }
        .nav-link {
            color: var(--yellow);
            font-size: 50px;
            font-weight: 900;
            text-transform: uppercase;
            text-decoration: none;
            margin: 10px 0;
            transition: 0.4s;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 10px;
            background: var(--yellow);
            transition: 0.4s;
        }
        .nav-link:hover::after { width: 100%; }

        /* SPLIT SECTION ARCHITECTURE */
        .split-section {
            display: flex;
            min-height: 100vh;
            border-bottom: 2px solid var(--black);
            position: relative;
        }
.split-left, .split-right {
    flex: 1; /* ensures equal width */
}

.split-left {
    padding: clamp(2rem, 10vw, 8rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    border-left: 2px solid var(--black);
    overflow: hidden;
    position: relative;
    background: #eee;
    display: flex;           /* make img center properly */
    align-items: center;
    justify-content: center;
}

.split-right img {
    width: 100%;             /* fill container width */
    height: 100vh;            /* fill container height */
    object-fit: cover;       /* cover without stretching */
    transition: transform 2s ease;
}

        .split-section:hover .split-right img { transform: scale(1.1); }

        @media (max-width: 1024px) {
            .split-section { flex-direction: column; }
            .split-right { border-left: none; border-top: 2px solid var(--black); height: 60vh; }
            .menu-wrapper { top: 20px; right: 20px; }
            .menu-circle { width: 60px; height: 60px; }
        }

        /* BUTTONS */
        .cta-btn {
            background: var(--black);
            color: var(--yellow);
            padding: 22px 50px;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            width: fit-content;
            transition: 0.4s;
            border: 2px solid var(--black);
            margin-top: 2.5rem;
            cursor: pointer;
        }
        .cta-btn:hover { background: transparent; color: var(--black); }

        /* FILTERING PILLS */
        .filter-pill {
            padding: 10px 30px;
            border: 2px solid var(--black);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 900;
            cursor: pointer;
            transition: 0.3s;
            text-transform: uppercase;
        }
        .filter-pill.active { background: var(--black); color: var(--yellow); }

        
        /* ANIMATIONS */
        .reveal { opacity: 0; transform: translateY(60px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* MODAL */
        #modal { transition: opacity 0.4s; }
        .modal-inner { max-height: 90vh; overflow-y: auto; }
        .modal-inner::-webkit-scrollbar { width: 5px; }
        .modal-inner::-webkit-scrollbar-thumb { background: black; }

        /* HERO SPECIAL BACKGROUND */
        @keyframes pan {
            0% { transform: scale(1.2) translate(0, 0); }
            50% { transform: scale(1.1) translate(-2%, -2%); }
            100% { transform: scale(1.2) translate(0, 0); }
        }
        .hero-img-anim { animation: pan 20s infinite linear; }
