 :root {
            --color-hero: #F6FB7A;
            --color-sec2: #F3FF90;
            --color-sec3: #F6FB7A;
            --color-sec4: #D8EFD3;
            --color-teal: #55AD9B;
            --color-border: #55AD98;
            --font-outfit: 'Outfit', sans-serif;
            --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* RESET */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: var(--font-outfit); 
            color: var(--color-teal);
            overflow-x: hidden;
            background-color: var(--color-hero);
        }

        .outfit-thin { font-weight: 100; }
        .outfit-regular { font-weight: 400; }
        .outfit-bold { font-weight: 700; }

        /* FIXED BACKGROUND SYSTEM */
        .fixed-bg {
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            z-index: -1;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        .fixed-bg.active { opacity: 0.15; }

        /* HEADER & MENU */
        header {
            position: fixed;
            top: 0; width: 100%;
            padding: 30px 6%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }

/* CSS */
.logo { 
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 50px; /* adjust as needed */
}

.logo img {
    height: 160px;
    width: auto;
    object-fit: contain;
}
        .menu-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .menu-circle {
            width: 55px; height: 55px;
            background: var(--color-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
        }

        .menu-content {
            position: absolute;
            right: 0;
            height: 55px;
            background: var(--color-teal);
            border-radius: 30px;
            width: 55px;
            display: flex;
            align-items: center;
            padding: 0 60px 0 30px;
            overflow: hidden;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }

        .menu-container.open .menu-content {
            width: 450px;
            opacity: 1;
            pointer-events: all;
        }

        .menu-content a {
            color: white;
            text-decoration: none;
            font-weight: 700;
            margin-right: 25px;
            white-space: nowrap;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .menu-content a:hover { opacity: 0.7; }

        /* LAYOUTS */
        .page { display: none; }
        .page.active { display: block; animation: fadeIn 0.8s ease forwards; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        section { padding: 120px 10%; position: relative; min-height: 80vh; }
        .hero-section { background: var(--color-hero); padding-top: 200px; }
        .sec2 { background: var(--color-sec2); }
        .sec3 { background: var(--color-sec3); }
        .sec4 { background: var(--color-sec4); }

        .hr-line { border: none; border-top: 1px solid var(--color-border); margin: 60px 0; opacity: 0.4; }

        /* COMPONENTS */
        .hero-title { font-size: 5rem; margin-bottom: 80px; line-height: 1; font-weight: 700; }
        
        .split-hero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }
        .hero-image-card {
            background: white;
            box-shadow: 10px 20px 0 var(--color-teal);
            transition: var(--transition);
        }
        .hero-image-card:hover { transform: translate(-5px, -5px); box-shadow: 30px 30px 0 var(--color-teal); }
        .hero-image-card img { width: 100%;  display: block; border-radius: 2px; }

        .quote-small { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 20px; }
        
        .split-text { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

        .partial-bg-box {
            margin-top: 100px;
            height: 400px;
            display: flex;
            border: 15px solid var(--color-sec2);
            overflow: hidden;
        }
        .partial-bg-img {
            width: 60%;
            background-image: url('https://images.unsplash.com/photo-1513258496099-48168024aec0?auto=format&fit=crop&q=80&w=2000');
            background-attachment: fixed;
            background-size: cover;
            background-position: left;
        }
        .partial-bg-spacer { width: 40%; background: var(--color-sec2); }

        .card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 0; }
        .card-row h3 { font-size: 2.2rem; }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            border: 2px solid var(--color-teal);
            color: var(--color-teal);
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            margin-top: 25px;
            transition: 0.3s;
            background: transparent;
            cursor: pointer;
        }
        .btn:hover { background: var(--color-teal); color: white; transform: translateY(-3px); }

        /* FOOTER */
        footer { background: var(--color-teal); color: white; padding: 100px 10% 40px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 100px; }
        .footer-links h4 { margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
        .footer-links a { display: block; color: white; text-decoration: none; margin-bottom: 12px; opacity: 0.8; transition: 0.3s; }
        .footer-links a:hover { opacity: 1; padding-left: 5px; }
        
        .newsletter input {
            width: 100%; padding: 15px; border-radius: 30px; border: none; margin-bottom: 15px; font-family: inherit;
        }
        .btn-white { background: white; color: var(--color-teal); border: none; width: 100%; }

        .legal-row {
            margin-top: 80px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2);
            display: flex; justify-content: space-between; font-size: 0.85rem; opacity: 0.7;
        }

        /* MODAL / QUICKVIEW */
        .modal {
            position: fixed; inset: 0; background: white; z-index: 2000; padding: 100px 10%; display: none; overflow-y: auto;
        }
        .modal-close { position: fixed; top: 40px; right: 40px; cursor: pointer; color: var(--color-teal); }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero-title { font-size: 3rem; }
            .split-hero, .split-text, .card-row, .footer-grid { grid-template-columns: 1fr; }
            .menu-container.open .menu-content { width: 300px; height: auto; padding: 80px 20px 20px; flex-direction: column; }
        }
    