        :root {
            --top-header-bg: #FFB433;
            --hero-left-bg: #FFB433;
            --hero-right-bg: #7EACB5;
            --black: #000000;
            --white: #FFFFFF;
            --neutral-bg: #FFF2E5;
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            font-size: 1.1rem;
        }

        /* Utility Typography */
        h1, h2, h3, .bold { font-weight: 800; text-transform: uppercase; }
        p, .regular { font-weight: 400; }

        /* --- HEADER SECTION --- */
        .top-header {
            background-color: var(--top-header-bg);
            color: var(--black);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logo img {
    height: 130px;        /* controls logo size */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* subtle hover effect */
.logo:hover img {
    transform: scale(1.05);
}
        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--black);
            font-weight: 700;
            font-size: 1.4rem;
            transition: 0.3s;
            cursor: pointer;
        }

        .nav-links a:hover {
            opacity: 0.6;
        }

        hr.header-sep {
            border: 0;
            border-top: 2px solid var(--black);
            margin: 0;
        }

        /* --- HERO SECTION (120vh) --- */
        .hero {
            height: 120vh;
            display: flex;
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .hero-left {
            flex: 1;
            background-color: var(--hero-left-bg);
            padding: 8% 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 1;
        }

        .hero-right {
            flex: 1;
            background-color: var(--hero-right-bg);
            padding: 8% 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            z-index: 1;
        }

        .hero-head-text {
            font-size: 8rem;
            line-height: 0.85;
            margin-bottom: 5rem;
        }

        .hero-card-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            height: 550px;
            max-width: 400px;
        }

.hero-card {
    padding: 0;              /* remove inner spacing */
    overflow: hidden;        /* hide image overflow */
    background: none;        /* remove white bg */
    display: block;          /* remove flex */
    height: 550px;           /* set card height */
}

.hero-square-image {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* makes image fill completely */
    display: block;
}        .hero-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .hero-card i {
            background: var(--black);
            color: var(--white);
            padding: 10px;
        }

        .hero-right p {
            font-size: 2.2rem;
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 35rem;
            margin-left: 10rem;
            max-width: 500px;
        }

        /* --- CENTER IMAGE --- */
        .center-asset {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            pointer-events: none;
        }

        .rotating-img {
            width: 450px;
            height: 450px;
            animation: rotateContinuous 25s linear infinite;
            filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
        }

        @keyframes rotateContinuous {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* --- MARQUEE --- */
        .marquee {
            background: var(--black);
            color: var(--white);
            padding: 1.5rem 0;
            overflow: hidden;
            display: flex;
            border-top: 2px solid var(--black);
            border-bottom: 2px solid var(--black);
        }

        .marquee-content {
            display: flex;
            white-space: nowrap;
            animation: marqueeScroll 30s linear infinite;
        }

        .marquee-content span {
            font-size: 5rem;
            font-weight: 900;
            padding-right: 4rem;
        }

        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- SECTIONS & GRIDS --- */
        .section {
            padding: 100px 8%;
            min-height: 80vh;
        }

        .bg-neutral { background-color: var(--neutral-bg); }

        .filter-bar {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
        }

        .filter-btn {
            padding: 12px 30px;
            border: 2px solid var(--black);
            background: transparent;
            font-family: inherit;
            font-weight: 800;
            font-size: 1.2rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--black);
            color: var(--white);
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
        }

        .card {
            background: var(--white);
            border: 2px solid var(--black);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            transform: scale(1.02);
            box-shadow: 12px 12px 0 var(--black);
        }

        .card-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-bottom: 2px solid var(--black);
        }

        .card-body {
            padding: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--black);
            color: var(--white);
            text-decoration: none;
            font-weight: 800;
            font-size: 1.4rem;
            border: 2px solid var(--black);
            transition: 0.3s;
            cursor: pointer;
        }

        .btn:hover {
            background: transparent;
            color: var(--black);
        }

        /* --- AUTH SYSTEM --- */
        .auth-wrapper {
            max-width: 500px;
            margin: 100px auto;
            padding: 3rem;
            background: var(--top-header-bg);
            border: 3px solid var(--black);
            box-shadow: 20px 20px 0 var(--hero-right-bg);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--black);
            font-family: inherit;
            font-size: 1.2rem;
        }

        /* --- QUICK VIEW MODAL --- */
        .modal {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-inner {
            background: var(--white);
            max-width: 1000px;
            width: 100%;
            border: 3px solid var(--black);
            display: flex;
            position: relative;
        }

        .modal-content {
            padding: 4rem;
            flex: 1;
        }

        .modal-image {
            width: 450px;
            object-fit: cover;
            border-right: 3px solid var(--black);
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--hero-right-bg);
            padding: 100px 5% 40px;
            color: var(--black);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0; bottom: -5px;
            width: 40px; height: 3px;
            background: var(--top-header-bg);
        }

        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.8rem; }
        .footer-col a { 
            text-decoration: none; color: var(--black); 
            font-weight: 700; transition: 0.2s;
        }
        .footer-col a:hover { padding-left: 10px; color: var(--white); }

        .newsletter {
            display: flex;
            margin-top: 1rem;
        }

        .newsletter input {
            padding: 12px;
            border: 2px solid var(--black);
            border-right: none;
            flex: 1;
            font-family: inherit;
        }

        .newsletter button {
            background: var(--black);
            color: var(--white);
            border: 2px solid var(--black);
            padding: 0 20px;
            cursor: pointer;
        }

        .hero-card-container {
    display: flex;
    gap: 20px; /* space between cards */
    justify-content: center; /* center horizontally */
    margin-top: 20px;
}

.hero-card {
    width: 200px;  /* card width */
    height: 200px; /* card height = square */
    overflow: hidden;
    border-radius: 12px; /* optional rounded corners */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* optional shadow */
}

.hero-square-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image fills the square */
}

        /* --- PAGES --- */
        .page { display: none; }
        .page.active { display: block; }

        @media (max-width: 1024px) {
            .hero { height: auto; flex-direction: column; }
            .hero-head-text { font-size: 5rem; }
            .center-asset { display: none; }
            .modal-inner { flex-direction: column; }
            .modal-image { width: 100%; height: 300px; border-right: none; border-bottom: 3px solid var(--black); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        .testimonial-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-box {
    max-width: 400px;
    padding: 30px;
    border: 2px solid black;
    background: #fff;
    box-shadow: 12px 12px 0 var(--hero-right-bg);
}
.process-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.process-step {
    max-width: 250px;
    text-align: center;
}

.process-step h3 {
    font-size: 3rem;
    margin-bottom: 15px;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stat-box {
    background: #fff;
    padding: 40px;
    width: 220px;
    text-align: center;
    border: 2px solid black;
    box-shadow: 10px 10px 0 var(--hero-right-bg);
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

#cartCount {
    position: absolute;
    top: -8px;
    right: -10px;
    background: black;
    color: white;
    font-size: 0.7rem;
    padding: 3px 6px;
    border-radius: 50%;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 30px;
        gap: 1.5rem;
        display: none;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    #authMenu {
        flex-direction: column;
        gap: 1rem !important;
    }
}