    /* --- Variables & Reset --- */
    :root {
        --color-emerald: #047857;
        --color-emerald-dark: #064e3b;
        --color-cream: #FDFBF7;
        --color-cream-dark: #F3EFE6;
        --color-text: #1F2937;
        --color-text-light: #6B7280;
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Lato', sans-serif;
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --radius: 4px;
    }

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

    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;
    }

    h1, h2, h3, .logo {
        font-family: var(--font-serif);
        font-weight: 600;
        color: var(--color-text);
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s ease;
    }

    ul {
        list-style: none;
    }

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

    /* --- Utilities --- */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .eyebrow {
        display: block;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        color: var(--color-emerald);
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .section {
        padding: 5rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

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

    .section-header.light h2,
    .section-header.light .eyebrow {
        color: #fff;
    }

    /* --- Buttons --- */
    .btn {
        display: inline-block;
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        font-weight: 700;
        border-radius: var(--radius);
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
    }

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

    .btn-primary:hover {
        background-color: var(--color-emerald-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .btn-outline {
        background-color: transparent;
        border-color: var(--color-emerald);
        color: var(--color-emerald);
    }

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

    .btn-full {
        width: 100%;
    }

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

    .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);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .logo-icon {
        color: var(--color-emerald);
    }

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

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

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

    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--color-text);
        transition: 0.3s;
    }

    /* --- Hero Section --- */
    .hero {
        padding-top: 80px; /* Offset for fixed nav */
        min-height: 90vh;
        display: flex;
        align-items: center;
        background: linear-gradient(90deg, var(--color-cream) 50%, var(--color-cream-dark) 50%);
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hero-content {
        padding-right: 2rem;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero h1 {
        font-size: 4rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: var(--color-text);
    }

    .hero h1 em {
        color: var(--color-emerald);
        font-style: italic;
    }

    .hero-desc {
        font-size: 1.125rem;
        color: var(--color-text-light);
        margin-bottom: 2rem;
        max-width: 480px;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .hero-stats {
        display: flex;
        gap: 3rem;
        border-top: 1px solid rgba(0,0,0,0.1);
        padding-top: 2rem;
    }

    .stat-number {
        display: block;
        font-family: var(--font-serif);
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-emerald);
    }

    .stat-label {
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--color-text-light);
    }

    .hero-image {
        position: relative;
        animation: fadeIn 1s ease-out 0.3s backwards;
    }

    .hero-image img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
    }

    .image-decoration {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 100%;
        height: 100%;
        border: 2px solid var(--color-emerald);
        border-radius: var(--radius);
        z-index: -1;
    }

    /* --- Services Section --- */
    .services {
        background-color: #fff;
    }

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

    .service-card {
        background-color: var(--color-cream);
        padding: 2.5rem;
        border-radius: var(--radius);
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .service-card:hover {
        background-color: #fff;
        border-color: var(--color-emerald);
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background-color: rgba(4, 120, 87, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        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;
    }

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

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

    .about-image-wrapper img {
        width: 100%;
        height: auto;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        position: relative;
        z-index: 2;
    }

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

    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .about-content p {
        color: var(--color-text-light);
        margin-bottom: 1.5rem;
    }

    .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 svg {
        color: var(--color-emerald);
    }

    /* --- Gallery --- */
    .gallery {
        background-color: var(--color-emerald-dark);
        padding: 4rem 0;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .gallery-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: var(--radius);
        opacity: 0.9;
        transition: opacity 0.3s;
    }

    .gallery-img:hover {
        opacity: 1;
    }

    /* --- Contact Section --- */
    .contact {
        background-color: #fff;
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-info p {
        color: var(--color-text-light);
        margin-bottom: 2rem;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        background-color: var(--color-cream);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-emerald);
        flex-shrink: 0;
    }

    .info-item strong {
        display: block;
        margin-bottom: 0.25rem;
    }

    .info-item a {
        color: var(--color-text);
        font-weight: 600;
    }
    
    .info-item a:hover {
        color: var(--color-emerald);
    }

    /* Form */
    .contact-form-wrapper {
        background-color: var(--color-cream);
        padding: 3rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
    }

    .contact-form h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

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

    .form-group label {
        display: block;
        font-size: 0.875rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--color-text);
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 0.875rem;
        border: 1px solid #e5e7eb;
        border-radius: var(--radius);
        font-family: var(--font-sans);
        font-size: 1rem;
        background-color: #fff;
        color: var(--color-text);
        transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--color-emerald);
    }

    .form-note {
        font-size: 0.8rem;
        color: var(--color-text-light);
        margin-top: 1rem;
        text-align: center;
    }

    .form-success {
        text-align: center;
        padding: 2rem;
    }

    .form-success.hidden {
        display: none;
    }

    .success-icon {
        color: var(--color-emerald);
        margin-bottom: 1rem;
    }

    /* --- Footer --- */
    .footer {
        background-color: var(--color-text);
        color: #fff;
        padding: 3rem 0;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-brand .logo {
        color: #fff;
        justify-content: center;
    }

    .footer-brand p {
        color: #9CA3AF;
    }

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

    .footer-links a {
        color: #D1D5DB;
    }

    .footer-links a:hover {
        color: #fff;
    }

    .footer-copy {
        color: #6B7280;
        font-size: 0.875rem;
    }

    /* --- Animations --- */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* --- Responsive --- */
    @media (max-width: 968px) {
        .hero {
            background: var(--color-cream);
            padding-top: 100px;
        }

        .hero-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .hero-content {
            padding-right: 0;
            order: 2;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
        }

        .hero-actions {
            justify-content: center;
        }

        .hero-stats {
            justify-content: center;
        }

        .hero-image {
            order: 1;
        }

        .hero-image img {
            height: 400px;
        }

        .about-container,
        .contact-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--color-cream);
            flex-direction: column;
            padding: 2rem;
            gap: 1.5rem;
            box-shadow: var(--shadow-md);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            z-index: 999;
        }

        .nav-links.active {
            transform: translateY(0);
        }

        .mobile-toggle {
            display: flex;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .section-header h2 {
            font-size: 2rem;
        }
    }
