    /* --- Variables & Reset --- */
    :root {
        --color-emerald: #047857; /* Emerald 700 */
        --color-emerald-dark: #064e3b; /* Emerald 800 */
        --color-cream: #fdfbf7; /* Off-white cream */
        --color-cream-dark: #f5f2eb; /* Slightly darker cream for cards */
        --color-text: #1f2937; /* Dark gray */
        --color-text-light: #6b7280; /* Medium gray */
        --color-gold: #d97706; /* Muted gold accent */
        
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Lato', sans-serif;
        
        --spacing-container: 1200px;
        --transition: all 0.3s ease;
    }

    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
        background-color: var(--color-cream);
        color: var(--color-text);
        line-height: 1.6;
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }

    ul {
        list-style: none;
    }

    /* --- Typography --- */
    h1, h2, h3, h4 {
        font-family: var(--font-serif);
        font-weight: 700;
        line-height: 1.2;
        color: var(--color-emerald-dark);
    }

    .section-tag {
        display: block;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--color-gold);
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .section-desc {
        font-size: 1.1rem;
        color: var(--color-text-light);
        max-width: 600px;
        margin: 0 auto;
    }

    /* --- Utilities --- */
    .container {
        max-width: var(--spacing-container);
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .text-center {
        text-align: center;
    }

    .mt-4 {
        margin-top: 2rem;
    }

    .small-text {
        font-size: 0.875rem;
        color: var(--color-text-light);
        font-style: italic;
    }

    /* --- Buttons --- */
    .btn {
        display: inline-block;
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 4px;
        cursor: pointer;
        transition: var(--transition);
        border: 2px solid transparent;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: var(--font-sans);
    }

    .btn-primary {
        background-color: var(--color-emerald);
        color: white;
    }

    .btn-primary:hover {
        background-color: var(--color-emerald-dark);
    }

    .btn-secondary {
        background-color: transparent;
        border-color: white;
        color: white;
    }

    .btn-secondary:hover {
        background-color: white;
        color: var(--color-emerald-dark);
    }

    .btn-outline {
        border-color: var(--color-emerald);
        color: var(--color-emerald);
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .btn-outline:hover {
        background-color: var(--color-emerald);
        color: white;
    }

    .full-width {
        width: 100%;
    }

    /* --- Navbar --- */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(253, 251, 247, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 1rem 0;
        transition: var(--transition);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-emerald-dark);
        letter-spacing: -0.5px;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--color-text);
    }

    .nav-links a:hover {
        color: var(--color-emerald);
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--color-emerald-dark);
        transition: var(--transition);
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-cream);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .mobile-menu-overlay.active {
        transform: translateX(0);
    }

    .close-menu-btn {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 3rem;
        color: var(--color-emerald-dark);
        cursor: pointer;
    }

    .mobile-menu-overlay ul {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-link {
        font-family: var(--font-serif);
        font-size: 1.75rem;
        color: var(--color-text);
    }

    .mobile-link:hover {
        color: var(--color-emerald);
    }

    .cta-link {
        margin-top: 1rem;
        color: var(--color-emerald);
        font-size: 1.25rem;
    }

    /* --- Hero --- */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-image: url('https://images.pexels.com/photos/35844822/pexels-photo-35844822.png?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(6, 78, 59, 0.7), rgba(6, 78, 59, 0.5));
    }

    .hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 3.5rem;
        color: white;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2.5rem;
        font-weight: 300;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    /* --- Sections --- */
    .section {
        padding: 6rem 0;
    }

    /* --- About --- */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-image-wrapper {
        position: relative;
    }

    .about-image-wrapper img {
        width: 100%;
        border-radius: 4px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .about-image-accent {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100%;
        height: 100%;
        border: 2px solid var(--color-emerald);
        z-index: -1;
        border-radius: 4px;
    }

    .lead {
        font-size: 1.25rem;
        color: var(--color-emerald-dark);
        margin-bottom: 1.5rem;
        font-family: var(--font-serif);
    }

    .feature-list {
        margin-top: 2rem;
        display: grid;
        gap: 1rem;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 600;
    }

    .feature-list li::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        background-color: var(--color-gold);
        border-radius: 50%;
    }

    /* --- Services --- */
    .services {
        background-color: var(--color-cream-dark);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .service-card {
        background: white;
        padding: 2.5rem 2rem;
        border-radius: 4px;
        text-align: center;
        transition: var(--transition);
        border-bottom: 3px solid transparent;
    }

    .service-card:hover {
        transform: translateY(-5px);
        border-bottom-color: var(--color-emerald);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .service-icon {
        color: var(--color-emerald);
        margin-bottom: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        color: var(--color-text-light);
        font-size: 0.95rem;
    }

    /* --- Gallery --- */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .gallery-item {
        overflow: hidden;
        border-radius: 4px;
        aspect-ratio: 4/5;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    /* --- Contact --- */
    .contact {
        background-color: var(--color-emerald-dark);
        color: white;
    }

    .contact .section-title {
        color: white;
    }

    .contact .section-desc {
        color: rgba(255,255,255,0.7);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-top: 3rem;
    }

    .info-item {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        background-color: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--color-gold);
    }

    .info-item h4 {
        color: white;
        font-family: var(--font-sans);
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .info-item p, .info-item a {
        color: rgba(255,255,255,0.8);
        font-size: 1rem;
    }

    .info-item a:hover {
        color: white;
        text-decoration: underline;
    }

    /* Form */
    .contact-form-wrapper {
        background: white;
        padding: 2.5rem;
        border-radius: 4px;
        color: var(--color-text);
    }

    .contact-form h3 {
        margin-bottom: 1.5rem;
        color: var(--color-emerald-dark);
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #e5e7eb;
        border-radius: 4px;
        font-family: var(--font-sans);
        font-size: 1rem;
        transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--color-emerald);
        box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
    }

    .form-status {
        margin-top: 1rem;
        text-align: center;
        font-weight: 600;
    }

    .form-status.success {
        color: var(--color-emerald);
    }

    /* --- Footer --- */
    .footer {
        background-color: #022c22; /* Very dark emerald */
        color: white;
        padding: 3rem 0;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-brand h3 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .footer-brand p {
        color: rgba(255,255,255,0.6);
        font-size: 0.9rem;
    }

    .footer-links {
        display: flex;
        gap: 1.5rem;
    }

    .footer-links a {
        color: rgba(255,255,255,0.8);
        font-size: 0.95rem;
    }

    .footer-links a:hover {
        color: white;
    }

    /* --- Animations --- */
    .reveal-up, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
        transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal-up { transform: translateY(30px); }
    .reveal-left { transform: translateX(-30px); }
    .reveal-right { transform: translateX(30px); }

    .hidden {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .hidden-left {
        opacity: 0;
        transform: translateX(-30px);
    }
    
    .hidden-right {
        opacity: 0;
        transform: translateX(30px);
    }

    /* --- Responsive --- */
    @media (max-width: 968px) {
        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: flex;
        }

        .hero-title {
            font-size: 2.5rem;
        }
        
        .about-grid,
        .contact-wrapper {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .about-image-wrapper {
            order: -1;
        }
        
        .about-image-accent {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-buttons {
            flex-direction: column;
        }
        
        .btn {
            width: 100%;
            text-align: center;
        }
    }
