    :root {
        --color-emerald: #047857;
        --color-emerald-dark: #064e3b;
        --color-cream: #FDFBF7;
        --color-cream-dark: #F5F2EB;
        --color-text: #1a1a1a;
        --color-text-light: #666666;
        --color-line: #e5e5e5;
        
        --font-sans: 'Manrope', sans-serif;
        --font-serif: 'Playfair Display', serif;
        
        --spacing-container: 1200px;
        --spacing-section: 120px;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: var(--color-cream);
        color: var(--color-text);
        font-family: var(--font-sans);
        font-weight: 300;
        line-height: 1.6;
        overflow-x: hidden;
        cursor: none; /* Custom cursor */
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

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

    /* Custom Cursor */
    .cursor-dot,
    .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background-color: var(--color-emerald);
    }

    .cursor-ring {
        width: 40px;
        height: 40px;
        border: 1px solid var(--color-emerald);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    body:hover .cursor-ring {
        opacity: 1;
    }
    
    /* Hover states for cursor */
    a:hover ~ .cursor-ring, /* This won't work easily with pure CSS sibling, handled in JS */
    .btn:hover ~ .cursor-ring {
        background-color: rgba(4, 120, 87, 0.1);
        width: 60px;
        height: 60px;
    }

    /* Typography Utilities */
    .serif-italic {
        font-family: var(--font-serif);
        font-style: italic;
        font-weight: 400;
    }

    .container {
        max-width: var(--spacing-container);
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Header */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 24px 0;
        background: rgba(253, 251, 247, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: padding 0.3s ease;
    }

    .site-header.scrolled {
        padding: 16px 0;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
        letter-spacing: -0.02em;
    }

    .logo-mark {
        width: 24px;
        height: 24px;
        background: var(--color-emerald);
        border-radius: 50%;
    }

    .nav-links {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    .nav-links a {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0%;
        height: 1px;
        background: var(--color-emerald);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-btn {
        border: 1px solid var(--color-text);
        padding: 10px 24px;
        transition: all 0.3s ease;
    }

    .nav-btn:hover {
        background: var(--color-text);
        color: var(--color-cream);
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--color-text);
    }

    /* Hero Section */
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
        min-height: 90vh;
        display: flex;
        align-items: center;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-eyebrow {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--color-emerald);
        margin-bottom: 24px;
        display: block;
    }

    .hero-title {
        font-size: clamp(48px, 5vw, 86px);
        line-height: 1.1;
        margin-bottom: 32px;
        font-weight: 400;
        letter-spacing: -0.02em;
    }

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

    .hero-actions {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 16px 32px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn-primary {
        background: var(--color-emerald);
        color: white;
        border: 1px solid var(--color-emerald);
    }

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

    .btn-text {
        padding: 0;
        border-bottom: 1px solid var(--color-text);
    }

    .btn-text:hover {
        color: var(--color-emerald);
        border-color: var(--color-emerald);
    }

    .btn-dark {
        background: var(--color-text);
        color: white;
        border: none;
    }

    .hero-image {
        position: relative;
    }

    .img-wrapper {
        overflow: hidden;
        position: relative;
    }

    .img-wrapper img {
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .hero-image:hover .img-wrapper img {
        transform: scale(1.05);
    }

    .hero-float-card {
        position: absolute;
        bottom: -40px;
        left: -40px;
        background: white;
        padding: 32px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        gap: 8px;
        border-left: 3px solid var(--color-emerald);
    }

    .float-label {
        font-size: 12px;
        text-transform: uppercase;
        color: var(--color-text-light);
        letter-spacing: 0.1em;
    }

    .float-value {
        font-family: var(--font-serif);
        font-size: 32px;
        color: var(--color-emerald);
    }

    /* Intro Strip */
    .intro-strip {
        background: var(--color-cream-dark);
        padding: 24px 0;
        border-top: 1px solid var(--color-line);
        border-bottom: 1px solid var(--color-line);
    }

    .intro-text {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .dot {
        width: 8px;
        height: 8px;
        background: var(--color-emerald);
        border-radius: 50%;
        display: inline-block;
    }

    .accent {
        color: var(--color-emerald);
        font-weight: 500;
    }

    /* Services */
    .services {
        padding: var(--spacing-section) 0;
    }

    .section-header {
        margin-bottom: 80px;
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .section-title {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 500;
    }

    .line {
        flex-grow: 1;
        height: 1px;
        background: var(--color-line);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: var(--color-line); /* Creates the border effect */
        border: 1px solid var(--color-line);
    }

    .service-card {
        background: var(--color-cream);
        padding: 60px 48px;
        transition: background 0.3s ease;
    }

    .service-card:hover {
        background: white;
    }

    .service-num {
        font-family: var(--font-serif);
        font-size: 48px;
        color: var(--color-emerald);
        opacity: 0.2;
        margin-bottom: 24px;
        line-height: 1;
    }

    .service-card h3 {
        font-size: 24px;
        margin-bottom: 16px;
        font-weight: 400;
    }

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

    /* About */
    .about {
        padding: var(--spacing-section) 0;
        background: white;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4/5;
        object-fit: cover;
    }

    .about-content h2 {
        font-size: clamp(32px, 4vw, 56px);
        margin-bottom: 32px;
        line-height: 1.1;
    }

    .about-content p {
        font-size: 18px;
        color: var(--color-text-light);
        margin-bottom: 24px;
    }

    .features-list {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .features-list li {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 16px;
        font-weight: 500;
    }

    .features-list li::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--color-emerald);
    }

    /* Contact */
    .contact {
        padding: var(--spacing-section) 0;
        background: var(--color-emerald);
        color: white;
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 80px;
    }

    .contact-info h2 {
        font-size: 48px;
        margin-bottom: 32px;
    }

    .contact-info address {
        font-style: normal;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 32px;
        opacity: 0.9;
    }

    .phone-link {
        font-size: 24px;
        font-family: var(--font-serif);
        font-style: italic;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding-bottom: 4px;
        transition: border-color 0.3s;
    }

    .phone-link:hover {
        border-color: white;
    }

    .contact-form-wrap {
        background: rgba(255,255,255,0.05);
        padding: 48px;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .form-group {
        margin-bottom: 32px;
    }

    .form-group label {
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 12px;
        opacity: 0.7;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        color: white;
        font-family: var(--font-sans);
        font-size: 16px;
        padding: 8px 0;
        outline: none;
        transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: white;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255,255,255,0.4);
    }

    .btn-light {
        background: white;
        color: var(--color-emerald);
        border: none;
    }

    .btn-light:hover {
        background: var(--color-cream);
    }

    .form-status {
        margin-top: 16px;
        font-size: 14px;
        color: var(--color-cream);
    }

    /* Footer */
    .footer {
        background: var(--color-text);
        color: white;
        padding: 60px 0;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-logo {
        font-weight: 500;
        letter-spacing: -0.02em;
    }

    .footer-brand p {
        font-size: 14px;
        opacity: 0.5;
    }

    .footer-links {
        display: flex;
        gap: 32px;
    }

    .footer-links a {
        font-size: 14px;
        opacity: 0.7;
        transition: opacity 0.3s;
    }

    .footer-links a:hover {
        opacity: 1;
    }

    /* Responsive */
    @media (max-width: 900px) {
        .hero-grid, .about-grid, .contact-wrapper {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .hero {
            padding-top: 120px;
        }

        .hero-image {
            order: -1;
        }

        .hero-float-card {
            left: 20px;
            bottom: -20px;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: flex;
        }
        
        .cursor-dot, .cursor-ring {
            display: none; /* Disable custom cursor on touch */
        }
        
        body {
            cursor: auto;
        }
    }

    @media (max-width: 600px) {
        .container {
            padding: 0 20px;
        }
        
        .hero-title {
            font-size: 42px;
        }
        
        .contact-wrapper {
            gap: 40px;
        }
        
        .contact-form-wrap {
            padding: 24px;
        }
    }
