  :root {
            --beige: #F4F0E4;
            --white: #FFFFFF;
            --gold: #DBCEA5;
            --dark: #2c2c2c;
            --font-heading: "Croissant One", serif;
            --font-body: 'Montserrat', sans-serif;
            --transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- RESET & BASE --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: var(--font-body); 
            background: var(--beige); 
            color: var(--dark); 
            overflow-x: hidden; 
            line-height: 1.7;
        }
        h1, h2, h3, .accent-font { font-family: var(--font-heading); font-weight: 400; color: var(--gold); }

        .page { display: none; min-height: 100vh; animation: fadeIn 0.8s ease; }
        .page.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* --- HEADER & NAV --- */
        header {
            position: fixed; top: 0; width: 100%; padding: 30px 5%;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000; transition: var(--transition);
        }
        header.scrolled { background: var(--white); padding: 15px 5%; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
/* Logo styling */
.logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gold);
}

/* Optional: Make SVG scale responsively */
.logo svg {
    max-width: 100%;
    height: auto;
    display: block;
}        
        .menu-trigger {
            width: 50px; height: 50px; background: var(--gold); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; border: none; color: var(--white); transition: 0.3s;
        }
        .menu-trigger:hover { transform: scale(1.1); background: var(--dark); }

        .side-nav {
            position: fixed; top: 0; right: -400px; width: 400px; height: 100vh;
            background: var(--beige); z-index: 2000; padding: 100px 60px;
            transition: var(--transition); box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        }
        .side-nav.open { right: 0; }
        .side-nav ul { list-style: none; }
        .side-nav ul li { margin-bottom: 30px; }
        .side-nav ul li a {
            text-decoration: none; font-family: var(--font-heading);
            font-size: 2rem; color: var(--gold); display: inline-block;
            position: relative;
        }
        .side-nav ul li a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0;
            height: 2px; background: var(--gold); transition: 0.3s;
        }
        .side-nav ul li a:hover::after { width: 100%; }
        .nav-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.3);
            display: none; z-index: 1500;
        }

        /* --- SPLIT HERO --- */
        .hero { 
            height: 100vh; width: 100%; display: flex; 
            overflow: hidden; position: relative; 
        }
        .hero-side { 
            flex: 1; height: 120%; margin-top: -10%; 
            background-size: cover; background-position: center;
            transition: transform 0.1s linear;
        }
        .hero-left { background-image: url('https://i.pinimg.com/1200x/ca/10/f3/ca10f386a9f85d0c37e2a5d10e209371.jpg'); }
        .hero-right { background-image: url('https://i.pinimg.com/736x/da/1b/ac/da1bac4d69d7fea48bb504202795d31f.jpg'); }
        
        .hero-content {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);

            text-align: center; color: #e96d6d; z-index: 10;
        }
        .hero-content h1 { font-size: 5rem; text-shadow: 0 10px 30px rgba(0,0,0,0.3); color: #e96d6d; }

        /* --- INTRO CARDS --- */
        .intro-section { padding: 120px 8%; display: flex; gap: 80px; align-items: center; }
        .intro-card-text { 
            flex: 1; background: var(--white); padding: 80px; 
            box-shadow: 20px 20px 0 var(--gold);
        }
        .intro-card-img { flex: 1.2; height: 600px; overflow: hidden; }
        .intro-card-img img { width: 100%; height: 100%; object-fit: cover; }

        /* --- SERVICES --- */
        .services { background: var(--beige); padding: 100px 8%; text-align: center; }
        .service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
        .service-card { 
            background: var(--white); padding: 0 0 30px 0; transition: var(--transition);
            border-bottom: 5px solid transparent; cursor: pointer;
        }
        .service-card:hover { transform: translateY(-10px); border-bottom-color: var(--gold); }
        .service-card img { width: 100%; height: 300px; object-fit: cover; margin-bottom: 25px; }
        .service-card h3 { padding: 0 20px; margin-bottom: 10px; }
        .service-card p { padding: 0 25px; font-size: 0.9rem; color: #777; }

        /* --- PORTFOLIO --- */
        .portfolio { padding: 100px 8%; background: var(--white); }
        .masonry { columns: 3; column-gap: 30px; }
        .portfolio-item { 
            break-inside: avoid; margin-bottom: 30px; position: relative; 
            overflow: hidden; cursor: pointer; 
        }
        .portfolio-item img { width: 100%; display: block; transition: 0.5s; }
        .portfolio-overlay {
            position: absolute; inset: 0; background: rgba(244, 240, 228, 0.9);
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            opacity: 0; transition: 0.4s; padding: 20px; text-align: center;
        }
        .portfolio-item:hover .portfolio-overlay { opacity: 1; }
        .portfolio-item:hover img { transform: scale(1.1); }

        /* --- TESTIMONIALS --- */
        .testimonials { background: var(--gold); color: var(--white); padding: 100px 8%; text-align: center; }
        .test-content { max-width: 800px; margin: 0 auto; }
        .test-content h2 { color: var(--white); margin-bottom: 40px; }
        .test-quote { font-size: 1.8rem; font-style: italic; margin-bottom: 20px; }

        /* --- CTA --- */
        .cta-section { background: var(--gold); padding: 100px 8%; text-align: center; color: var(--white); }
        .cta-section h2 { color: var(--white); font-size: 3.5rem; }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block; padding: 15px 40px; text-decoration: none;
            font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
            transition: 0.3s; cursor: pointer; border: none;
        }
        .btn-gold { background: var(--gold); color: var(--white); }
        .btn-gold:hover { background: var(--dark); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .btn-white { background: var(--white); color: var(--gold); }
        .btn-white:hover { background: var(--beige); }

        /* --- MODAL --- */
        .modal { 
            position: fixed; inset: 0; background: rgba(0,0,0,0.9); 
            z-index: 3000; display: none; align-items: center; justify-content: center; padding: 40px;
        }
        .modal-content { 
            background: var(--white); width: 100%; max-width: 1000px; 
            display: flex; max-height: 80vh; overflow: hidden;
        }
        .modal-img { flex: 1; }
        .modal-img img { width: 100%; height: 100%; object-fit: cover; }
        .modal-info { flex: 0.8; padding: 60px; overflow-y: auto; }
        .close-modal { position: absolute; top: 30px; right: 40px; color: white; cursor: pointer; }

        /* --- FOOTER --- */
        footer { background: var(--white); padding: 80px 8% 40px; border-top: 1px solid #eee; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; }
        .footer-col h4 { margin-bottom: 25px; color: var(--gold); }
        .footer-col a { display: block; color: #777; text-decoration: none; margin-bottom: 12px; transition: 0.3s; }
        .footer-col a:hover { color: var(--gold); transform: translateX(5px); }

        /* --- ANIMATIONS --- */
        .reveal { opacity: 0; transform: translateY(30px); transition: 1s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- MOBILE --- */
        @media (max-width: 1024px) {
            .intro-section { flex-direction: column; }
            .service-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
            .masonry { columns: 2; }
            .side-nav { width: 100%; right: -100%; }
        }
        @media (max-width: 600px) {
            .service-grid, .footer-grid, .masonry { grid-template-columns: 1fr; columns: 1; }
            .hero-content h1 { font-size: 3rem; }
        }