    :root {
            --primary: #504B38;
            --white: #FFFFFF;
            --margin: 60px;
            --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Roboto', sans-serif; 
            background-color: var(--white); 
            color: var(--primary);
            overflow-x: hidden;
        }

        /* Color System Rules */
        .bg-white { background-color: var(--white); color: var(--primary); }
        .bg-dark { background-color: var(--primary); color: var(--white); }
        .bg-white hr { border: 0; border-top: 1px solid var(--primary); margin: 0; opacity: 0.2; }
        .bg-dark hr { border: 0; border-top: 1px solid var(--white); margin: 0; opacity: 0.3; }

        /* Typography */
        h1, h2 { font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; }
        h3 { font-weight: 600; text-transform: uppercase; font-size: 1.2rem; }
        p { font-weight: 400; font-size: 1.1rem; line-height: 1.7; opacity: 0.9; }

        /* Navigation */
        header {
            padding: var(--margin) var(--margin) 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
            position: relative;
            z-index: 100;
        }
.logo {
    align-items: center;
    text-transform: uppercase;
    cursor: pointer;
}

.logo-img {
    height: 120px;   /* Adjust size here */
    width: auto;
}        nav { display: flex; gap: 40px; }
        .nav-link {
            text-decoration: none; color: var(--primary); font-weight: 500;
            text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.1em;
            position: relative; padding-bottom: 5px;
        }
        .nav-link::after {
            content: ''; position: absolute; bottom: 0; left: 50%; width: 0;
            height: 2px; background: var(--primary); transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-link:hover::after { width: 100%; }

        /* Hero Section */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding: 0 var(--margin) 80px;
            min-height: 90vh;
            gap: 40px;
        }
        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 40px 0;
        }
        .hero-headline { font-size: 5rem; }
        .hero-small-card { 
            width: 200px; height: 200px; 
            background: #f0f0f0; border-radius: 8px; overflow: hidden;
            margin: 40px 0;
        }
        .hero-small-card img { width: 100%; height: 100%; object-fit: cover; }
        .btn-minimal {
            align-self: flex-start;
            padding: 12px 24px; border: 1px solid var(--primary);
            background: transparent; color: var(--primary);
            text-transform: uppercase; font-weight: 500; letter-spacing: 0.1em;
            cursor: pointer; transition: var(--transition);
        }
        .btn-minimal:hover { background: var(--primary); color: var(--white); }

        .hero-right {
            padding: 40px; /* Internal margin as requested */
        }
        .hero-tall-card {
            width: 100%; height: 100%;
            border-radius: 12px; overflow: hidden;
            box-shadow: 0 50px 100px rgba(80, 75, 56, 0.2);
            transition: var(--transition);
        }
        .hero-tall-card img { width: 100%; height: 100%; object-fit: cover; }

        /* Marquee */
        .marquee {
            padding: 100px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-text {
            display: inline-block;
            font-size: 8rem;
            font-weight: 800;
            text-transform: uppercase;
            animation: marquee-scroll 30s linear infinite;
        }
        @keyframes marquee-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
.values-header {
    text-align: center;
    margin-bottom: 70px;
}

.values-header h2 {
    font-size: 3rem;
}

.values-header p {
    opacity: 0.6;
    margin-top: 15px;
}
.vertical-grid {
    display: flex;              /* Horizontal */
    gap: 40px;
    justify-content: center;
    flex-wrap: nowrap;          /* Forces one row */
}

.v-card {
    flex: 1;
    min-width: 250px;
}
@media (max-width: 900px) {
    .vertical-grid {
        flex-wrap: wrap;
    }
}        /* Split Scroll */
        .split-scroll { display: flex; min-height: 140vh; }
        .split-text { flex: 1; padding: 120px var(--margin); }
        .split-img { 
            flex: 1; position: sticky; top: 0; height: 100vh;
            background: url('https://i.pinimg.com/736x/c6/e2/b2/c6e2b216d67d3deedfeff6e2e181038f.jpg') center/cover no-repeat;
        }

        /* Content Grid (White) */
        .section-padding { padding: 120px var(--margin); }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(80, 75, 56, 0.1); margin-top: 60px; }
        .grid-4 .card { background: var(--white); padding: 40px; text-align: center; border: 1px solid rgba(80, 75, 56, 0.05); }

        /* Image Showcase (Dark) */
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
        .img-card { height: 600px; overflow: hidden; cursor: pointer; }
        .img-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
        .img-card:hover img { transform: scale(1.05); }

        /* Parallax */
        .parallax {
            height: 70vh;
            display: flex; align-items: center; justify-content: center;
            background: linear-gradient(rgba(80, 75, 56, 0.5), rgba(80, 75, 56, 0.5)), 
                        url('https://i.pinimg.com/736x/70/9e/ca/709ecab48f00e4d7f2ff96e73833b3b7.jpg') fixed center/cover;
            text-align: center; color: var(--white);
        }

        /* Vertical Grid (Dark) */
        .vertical-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
        }
        .v-card {
            border-left: 1px solid rgba(255,255,255,0.2);
            padding-left: 25px;
            display: flex; flex-direction: column; justify-content: flex-start;
        }
        .v-card h3 { margin-bottom: 15px; }
        .v-card hr { margin: 15px 0; opacity: 1; }

        /* Modals */
        .modal {
            position: fixed; inset: 0; background: rgba(80, 75, 56, 0.98);
            z-index: 1000; display: none; align-items: center; justify-content: center;
            padding: 60px;
        }
        .modal-inner {
            background: var(--white); color: var(--primary);
            width: 100%; max-width: 1000px; display: grid; grid-template-columns: 1fr 1fr;
            border-radius: 4px; overflow: hidden; position: relative;
        }
        .modal-close { position: absolute; top: 20px; right: 20px; border: none; background: none; cursor: pointer; }
        .modal-body { padding: 60px; display: flex; flex-direction: column; justify-content: center; }

        /* Pages */
        .page { display: none; }
        .page.active { display: block; }

        footer { background: var(--primary); color: var(--white); padding: 100px var(--margin) 40px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
        .footer-link { display: block; color: white; text-decoration: none; margin-bottom: 12px; opacity: 0.6; font-size: 0.9rem; }
        .footer-link:hover { opacity: 1; }

        @media (max-width: 1024px) {
            .hero, .split-scroll, .grid-4, .grid-3, .vertical-grid, .footer-grid { 
                grid-template-columns: 1fr; 
                display: block;
            }
            .hero-right { height: 500px; }
            .marquee-text { font-size: 4rem; }
        }

        .popup-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: white;
    padding: 50px;
    max-width: 700px;
    width: 90%;
    border-radius: 10px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 900px) {

    header {
        padding: 20px 30px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.4s ease;
    }

    nav.active {
        right: 0;
    }
}