    :root {
            --primary: #2C1810; /* Deep Espresso */
            --secondary: #D4A373; /* Latte Gold */
            --accent: #E9EDC9; /* Soft Cream */
            --bg-light: #FAF9F6; /* Off White */
            --text-dark: #1A1A1A;
            --text-light: #F5F5F5;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 32px;
            background-color: var(--primary);
            color: var(--text-light);
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 2px solid var(--primary);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: var(--secondary);
            z-index: -1;
            transition: var(--transition);
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn:hover {
            border-color: var(--secondary);
            color: var(--primary);
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title span {
            color: var(--secondary);
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 10px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
        }

        /* --- NAVIGATION --- */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            transition: var(--transition);
        }

        nav.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            backdrop-filter: blur(10px);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -1px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background-color: #f4f1ea;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            object-fit: cover;
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            padding-left: 5%;
        }

        .hero h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--primary);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.5s;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #555;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.8s;
        }

        .hero-btn-wrapper {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 1.1s;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- ABOUT SECTION --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-img-wrapper {
            position: relative;
        }

        .about-img {
            width: 100%;
            border-radius: 4px;
            box-shadow: 20px 20px 0 var(--secondary);
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 20px;
            color: #666;
        }

        .stats {
            display: flex;
            gap: 40px;
            margin-top: 30px;
            border-top: 1px solid #ddd;
            padding-top: 30px;
        }

        .stat-item h4 {
            font-size: 2.5rem;
            color: var(--secondary);
        }

        .stat-item p {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        /* --- PRODUCTS --- */
        .products {
            background-color: #fff;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--bg-light);
            padding: 20px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: #eee;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .product-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
            margin-bottom: 20px;
            border-radius: 2px;
        }

        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .price {
            color: var(--secondary);
            font-weight: 700;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 15px;
        }

        .desc {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 20px;
        }

        /* --- TESTIMONIALS --- */
        .testimonials {
            background-color: var(--primary);
            color: var(--text-light);
            text-align: center;
        }

        .testimonials .section-title h2 {
            color: var(--text-light);
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .testimonial-text {
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            margin-bottom: 30px;
            line-height: 1.4;
        }

        .author {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--secondary);
        }

        /* --- CONTACT --- */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            background: #fff;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            border-radius: 8px;
        }

        .contact-info h3 {
            margin-bottom: 20px;
            color: var(--primary);
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 15px;
        }

        .info-item i {
            color: var(--secondary);
            font-size: 1.2rem;
        }

        form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group.full {
            grid-column: span 2;
        }

        input, textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            background: #fafafa;
            font-family: 'Lato', sans-serif;
            transition: var(--transition);
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--secondary);
            background: #fff;
        }

        textarea {
            resize: vertical;
            height: 150px;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #1a1a1a;
            color: #888;
            padding: 60px 0 20px;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border: 1px solid #333;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--secondary);
            border-color: var(--secondary);
            color: #fff;
        }

        .copyright {
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 20px;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .hero h1 { font-size: 3rem; }
            .hero-bg { width: 100%; opacity: 0.1; clip-path: none; }
            .hero-content { padding-left: 2rem; text-align: center; margin: 0 auto; }
            .about-grid { grid-template-columns: 1fr; }
            .contact-container { grid-template-columns: 1fr; }
            form { grid-template-columns: 1fr; }
            .form-group.full { grid-column: span 1; }
            
            .mobile-toggle { display: block; }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: #fff;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            }
            .nav-links.active { right: 0; }
        }
        
        /* Scroll Animation Class */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }