        :root {
            --bg-warm: #EDDCC6;
            --accent: #F1FF5E;
            --black: #111111;
            --white: #FFFFFF;
            --gray: #F5F5F5;
            --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { 
            font-family: system-ui, -apple-system, sans-serif; 
            background-color: var(--white); 
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.8;
        }

        .cursive { font-family: 'Macondo Swash Caps', cursive; letter-spacing: 1px; }
        
        /* --- UTILITIES --- */
        .section-padding { padding: 140px 10%; }
        .btn {
            padding: 20px 40px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            display: inline-block;
            font-size: 0.85rem;
            text-decoration: none;
        }
        .btn-black { background: var(--black); color: var(--accent); }
        .btn-black:hover { background: var(--accent); color: var(--black); transform: translateY(-5px); }
        .btn-outline { border: 2px solid var(--black); color: var(--black); background: transparent; }
        .btn-outline:hover { background: var(--black); color: var(--white); }

        /* --- HERO & IN-HERO HEADER --- */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(237, 220, 198, 0.4), rgba(237, 220, 198, 0.4)), 
                        url('https://images.unsplash.com/photo-1632759145351-1d592919f522?q=80&w=2000&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            display: flex;
            flex-direction: column;
            animation: bgZoom 20s infinite alternate;
        }
        @keyframes bgZoom {
            from { background-scale: 1; }
            to { background-scale: 1.1; }
        }

        .hero-nav {
            margin-top: 60px;
            padding: 0 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
        }

        .logo {
            font-size: 3.2rem;
            color: var(--black);
            position: relative;
            cursor: pointer;
        }
        .logo::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 40%;
            height: 10px;
            background: var(--accent);
            z-index: -1;
        }

        .hamburger {
            cursor: pointer;
            background: var(--black);
            color: var(--white);
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            border: none;
        }
        .hamburger:hover { transform: scale(1.1) rotate(90deg); background: var(--accent); color: var(--black); }

        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 10%;
            max-width: 1100px;
        }
        .hero-content h1 {
            font-size: 6rem;
            line-height: 0.95;
            margin-bottom: 40px;
            animation: slideUpFade 1s ease-out;
        }
        .hero-content .highlight {
            background: var(--accent);
            padding: 0 20px;
            display: inline-block;
        }
        .hero-content p {
            font-size: 1.3rem;
            max-width: 650px;
            margin-bottom: 50px;
            animation: slideUpFade 1.3s ease-out;
            color: #333;
        }

        @keyframes slideUpFade {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- OVERLAY MENU --- */
        .menu-overlay {
            position: fixed;
            inset: 0;
            background: var(--black);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: var(--transition);
        }
        .menu-overlay.active { transform: translateX(0); }
        .menu-links { text-align: center; }
        .menu-links a {
            display: block;
            font-family: 'Macondo Swash Caps', cursive;
            font-size: 5rem;
            color: var(--white);
            text-decoration: none;
            margin: 15px 0;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(40px);
            cursor: pointer;
        }
        .menu-overlay.active .menu-links a { opacity: 1; transform: translateY(0); }
        .menu-overlay.active .menu-links a:nth-child(1) { transition-delay: 0.2s; }
        .menu-overlay.active .menu-links a:nth-child(2) { transition-delay: 0.3s; }
        .menu-overlay.active .menu-links a:nth-child(3) { transition-delay: 0.4s; }
        .menu-overlay.active .menu-links a:nth-child(4) { transition-delay: 0.5s; }
        .menu-overlay.active .menu-links a:nth-child(5) { transition-delay: 0.6s; }

        .menu-links a:hover { color: var(--accent); padding-left: 30px; }
        .close-menu {
            position: absolute;
            top: 60px;
            right: 10%;
            color: var(--white);
            cursor: pointer;
            border: none;
            background: none;
        }

        /* --- SERVICES --- */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 80px;
        }
        .service-card {
            padding: 60px 40px;
            background: var(--white);
            border: 1px solid #eee;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .service-card:hover { transform: translateY(-20px); border-color: var(--accent); box-shadow: 0 40px 80px rgba(0,0,0,0.08); }
        .service-icon { background: var(--accent); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 40px; }
        .service-card h3 { font-size: 2.2rem; margin-bottom: 25px; line-height: 1; }
        .service-card p { font-size: 1rem; color: #666; margin-bottom: 30px; }

        /* --- ABOUT SECTION --- */
        .about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; background: var(--bg-warm); }
        .about-image-frame { position: relative; height: 700px; }
        .about-image-frame img { width: 100%; height: 100%; object-fit: cover; }
        .signature-line { width: 120px; height: 8px; background: var(--accent); margin-bottom: 40px; }

        /* --- PROJECTS --- */
        .filter-bar { display: flex; justify-content: center; gap: 15px; margin-bottom: 60px; flex-wrap: wrap; }
        .filter-chip { 
            padding: 12px 30px; 
            border: 2px solid var(--black); 
            background: transparent; 
            cursor: pointer; 
            font-weight: 700; 
            transition: 0.3s;
            text-transform: uppercase;
            font-size: 0.8rem;
        }
        .filter-chip.active { background: var(--black); color: var(--accent); }

        .portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        .portfolio-item { position: relative; aspect-ratio: 4/5; overflow: hidden; }
        .portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
        .portfolio-overlay {
            position: absolute; inset: 0; background: rgba(0,0,0,0.85);
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            opacity: 0; transition: var(--transition); color: var(--white); padding: 40px; text-align: center;
        }
        .portfolio-item:hover img { transform: scale(1.15); filter: blur(3px); }
        .portfolio-item:hover .portfolio-overlay { opacity: 1; }

        /* --- WHY US --- */
        .why-black { background: var(--black); color: var(--white); text-align: center; }
        .benefits-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; margin-top: 80px; }
        .benefit-box i { color: var(--accent); margin-bottom: 25px; }

        /* --- CONTACT --- */
        .contact-container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; }
        .form-card { background: var(--white); padding: 60px; border: 1px solid #eee; }
        .input-group { margin-bottom: 30px; }
        .input-group label { display: block; font-weight: 800; margin-bottom: 12px; font-size: 0.9rem; text-transform: uppercase; }
        .input-group input, .input-group textarea {
            width: 100%; padding: 18px; border: 2px solid #f0f0f0; background: #fafafa; font-family: inherit; font-size: 1rem;
        }
        .input-group input:focus { outline: none; border-color: var(--accent); background: white; }

        /* --- FOOTER --- */
        footer { background: var(--black); color: var(--white); padding: 120px 10% 50px; position: relative; }
        .footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; border-bottom: 1px solid #222; padding-bottom: 80px; }
        .footer-logo { font-size: 2.8rem; margin-bottom: 20px; }
        .footer-col h5 { color: var(--accent); margin-bottom: 35px; text-transform: uppercase; font-size: 1rem; letter-spacing: 2px; }
        .footer-col a { display: block; color: #888; text-decoration: none; margin-bottom: 18px; transition: 0.3s; cursor: pointer; }
        .footer-col a:hover { color: var(--accent); transform: translateX(10px); }
        .footer-bottom { padding-top: 40px; display: flex; justify-content: space-between; color: #444; font-size: 0.85rem; }

        /* --- PAGE CONTENT LOGIC --- */
        .page-node { display: none; }
        .page-node.active { display: block; animation: fadeIn 0.8s ease-out; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* Sub-Page Typography */
        .text-content { max-width: 900px; margin: 0 auto; padding: 100px 0; }
        .text-content h2 { font-size: 3.5rem; margin-bottom: 40px; }
        .text-content p { margin-bottom: 25px; color: #444; }
        .text-content h3 { font-size: 1.8rem; margin: 40px 0 20px; }

        @media (max-width: 1100px) {
            .hero-content h1 { font-size: 4rem; }
            .about-split, .service-grid, .portfolio-grid, .benefits-row, .footer-main { grid-template-columns: 1fr; gap: 50px; }
            .contact-container { grid-template-columns: 1fr; }
            .footer-main { grid-template-columns: 1fr 1fr; }
        }
        .newsletter-box {
    max-width: 400px;
}

.newsletter-subtext {
    opacity: 0.7;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border-radius: 4px;
    border: none;
    outline: none;
}

.btn-primary {
    padding: 10px 16px;
    border: none;
    background: #111;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.btn-secondary {
    padding: 10px 16px;
    border: none;
    background: #444;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter-message {
    font-size: 0.85rem;
    margin-top: 5px;
    transition: opacity 0.3s ease;
}
