        :root {
            --sand: #F2E3BB;
            --black: #000000;
            --white: #ffffff;
            --gray: #f8f8f8;
            --transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- RESET & BASE --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Inter', sans-serif; 
            background: var(--white); 
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, .forum-font {
            font-family: 'Forum', serif;
            font-weight: 400;
            text-transform: uppercase;
        }

        /* --- LATE REVEAL ANIMATIONS --- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: var(--transition);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.2s; }
        .reveal-delay-2 { transition-delay: 0.4s; }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0; width: 100%;
            padding: 30px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }
/* Logo Styling */
.logo {
    font-family: 'Forum', serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
}        
        .menu-trigger {
            width: 50px; height: 50px;
            border-radius: 50%;
            border: 1px solid var(--white);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: 0.3s;
            color: #eee;
        }
        .menu-trigger:hover { background: var(--black); color: var(--white); }

        /* --- FULLSCREEN MENU --- */
        #nav-overlay {
            position: fixed; inset: 0;
            background: var(--sand);
            z-index: 2000;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        #nav-overlay.active { display: flex; animation: fadeIn 0.5s forwards; }
        .nav-link {
            font-family: 'Forum', serif;
            font-size: 4rem;
            color: var(--black);
            text-decoration: none;
            margin: 15px 0;
            transition: 0.3s;
            cursor: pointer;
        }
        .nav-link:hover { opacity: 0.5; padding-left: 20px; }
        .close-menu { position: absolute; top: 40px; right: 60px; cursor: pointer; }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        .hero-img {
            width: 100%; height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
        }
        .hero-heading-box {
            position: absolute;
            bottom: 60px; width: 100%;
            text-align: center;
            padding: 0 20px;
        }
        .hero-heading-box h1 {
            font-size: clamp(3rem, 8vw, 7rem);
            color: #F2E3BB;
            display: inline-block;
            padding: 10px 40px;
        }

        /* --- SPLIT FEATURE --- */
        .split-section {
            display: flex;
            min-height: 100vh;
            border-top: 1px solid #eee;
        }
        .split-left {
            flex: 1;
            padding: 10% 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: var(--white);
        }
        .split-right {
            flex: 1;
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .vertical-line {
            width: 1px;
            background: var(--black);
            height: 100px;
            margin: 40px 0;
        }

        /* --- TESTIMONIALS --- */
        .testimonials {
            background: var(--sand);
            padding: 140px 10%;
        }
        .testimonial-row {
            display: grid;
            grid-template-columns: 300px 1fr;
            padding: 60px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        .testimonial-row h3 { font-size: 1.5rem; margin-bottom: 10px; }
        .testimonial-row p { font-size: 1.2rem; font-style: italic; max-width: 700px; }

        /* --- WHY CHOOSE US --- */
        .why-us {
            background: var(--sand);
            padding: 140px 10%;
            text-align: center;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            margin-top: 80px;
        }
        .info-card {
            background: transparent;
            text-align: center;
        }
        .info-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 200px 200px 0 0;
            margin-bottom: 30px;
        }

        /* --- SERVICES FILTER --- */
        .services-section { padding: 140px 10%; }
        .filter-bar {
            display: flex; gap: 30px; margin-bottom: 60px; justify-content: center;
        }
        .filter-btn {
            background: none; border: none; font-family: 'Forum', serif; font-size: 1.2rem;
            cursor: pointer; padding-bottom: 5px; border-bottom: 2px solid transparent;
            transition: 0.3s;
        }
        .filter-btn.active { border-color: var(--black); }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }
        .service-card {
            background: var(--gray);
            padding: 40px;
            transition: 0.5s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .service-card:hover { background: var(--sand); transform: translateY(-10px); }
        .service-card h4 { font-size: 1.8rem; margin-bottom: 15px; }

        /* --- FOOTER --- */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 120px 10% 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
        }
        .footer-col h4 { color: var(--sand); margin-bottom: 30px; font-size: 1.2rem; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 15px; opacity: 0.6; cursor: pointer; transition: 0.3s; }
        .footer-col li:hover { opacity: 1; color: var(--sand); }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 18px 45px;
            border: 1px solid var(--black);
            text-decoration: none;
            color: var(--black);
            font-family: 'Forum', serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: 0.4s;
            background: transparent;
            cursor: pointer;
        }
        .btn:hover { background: var(--black); color: var(--white); }

        /* --- PAGE STATES --- */
        .page-content { display: none; }
        .page-content.active { display: block; }

        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        @media (max-width: 992px) {
            .split-section { flex-direction: column; }
            .split-right { height: 50vh; background-attachment: scroll; }
            .card-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .testimonial-row { grid-template-columns: 1fr; gap: 20px; }
        }
