    /* Variables */
    :root {
        --color-primary: #C05640; /* Terracotta */
        --color-primary-dark: #9D4330;
        --color-sand: #FDF8F5; /* Very light warm sand */
        --color-sand-dark: #EBE0D8;
        --color-text: #2D2A26;
        --color-text-light: #6B6560;
        --color-white: #FFFFFF;
        --font-heading: 'Fraunces', serif;
        --font-body: 'Inter', sans-serif;
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 24px;
        --shadow-soft: 0 10px 40px -10px rgba(192, 86, 64, 0.15);
        --shadow-card: 0 4px 20px rgba(0,0,0,0.04);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        color: var(--color-text);
        background-color: var(--color-sand);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }

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

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

    ul {
        list-style: none;
    }

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

    .skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--color-primary);
        color: white;
        padding: 8px;
        z-index: 100;
    }
    .skip-link:focus {
        top: 0;
    }

    /* Typography */
    h1, h2, h3 {
        font-family: var(--font-heading);
        font-weight: 700;
        line-height: 1.2;
        color: var(--color-text);
    }

    h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
    h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
    h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

    p {
        color: var(--color-text-light);
        margin-bottom: 1rem;
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 500;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        font-size: 1rem;
    }

    .btn-primary {
        background-color: var(--color-primary);
        color: white;
        box-shadow: 0 4px 15px rgba(192, 86, 64, 0.3);
    }

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

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

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

    .btn-full {
        width: 100%;
    }

    /* Navbar */
    .navbar {
        background-color: rgba(253, 248, 245, 0.95);
        backdrop-filter: blur(10px);
        position: sticky;
        top: 0;
        z-index: 50;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.25rem;
        color: var(--color-primary);
    }

    .logo-icon {
        background: var(--color-primary);
        color: white;
        padding: 8px;
        border-radius: var(--radius-sm);
    }

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

    .nav-links a:not(.btn) {
        font-weight: 500;
        color: var(--color-text);
        transition: color 0.2s;
    }

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

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--color-text);
    }

    /* Hero */
    .hero {
        position: relative;
        padding: 80px 0;
        overflow: hidden;
        background: radial-gradient(circle at top right, #fff0eb, var(--color-sand));
    }

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

    .badge {
        display: inline-block;
        background: rgba(192, 86, 64, 0.1);
        color: var(--color-primary);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .hero-content p {
        font-size: 1.125rem;
        margin-bottom: 32px;
        max-width: 500px;
    }

    .hero-actions {
        display: flex;
        gap: 16px;
        margin-bottom: 40px;
    }

    .hero-trust {
        display: flex;
        gap: 24px;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
        color: var(--color-text);
    }

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

    .blob-shape {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 110%;
        height: 110%;
        background: var(--color-sand-dark);
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        z-index: -1;
        animation: blob 8s ease-in-out infinite alternate;
    }

    @keyframes blob {
        0% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; }
        100% { border-radius: 58% 42% 30% 70% / 55% 55% 45% 45%; }
    }

    .hero-img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-soft);
        position: relative;
        z-index: 1;
    }

    .floating-card {
        position: absolute;
        bottom: 40px;
        left: -20px;
        background: white;
        padding: 16px 24px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-card);
        display: flex;
        align-items: center;
        gap: 16px;
        z-index: 2;
    }

    .fc-icon {
        width: 40px;
        height: 40px;
        background: var(--color-sand);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-primary);
    }

    /* Services */
    .services {
        padding: 100px 0;
        background: white;
    }

    .section-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 60px;
    }

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

    .service-card {
        background: var(--color-sand);
        padding: 40px 30px;
        border-radius: var(--radius-md);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-primary);
        margin-bottom: 24px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    /* About */
    .about {
        padding: 100px 0;
        background: var(--color-sand);
    }

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

    .rounded-img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-soft);
    }

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

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--color-text);
        font-weight: 500;
    }

    .feature-list svg {
        color: var(--color-primary);
    }

    /* Contact */
    .contact {
        padding: 100px 0;
        background: white;
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        background: var(--color-sand);
        border-radius: var(--radius-lg);
        padding: 60px;
    }

    .info-item {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

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

    .info-item a {
        color: var(--color-text-light);
        transition: color 0.2s;
    }

    .info-item a:hover {
        color: var(--color-primary);
    }

    .contact-form {
        background: white;
        padding: 40px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-card);
    }

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

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid var(--color-sand-dark);
        border-radius: var(--radius-sm);
        font-family: var(--font-body);
        font-size: 1rem;
        transition: border-color 0.2s;
    }

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

    .success-message {
        text-align: center;
        padding: 40px;
    }
    
    .success-icon {
        color: var(--color-primary);
        margin-bottom: 20px;
    }

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

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

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

    .logo-text {
        color: white;
    }

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

    .footer-links a {
        color: rgba(255,255,255,0.8);
        transition: color 0.2s;
    }

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

    /* Responsive */
    @media (max-width: 900px) {
        .hero-grid, .about-grid, .contact-wrapper {
            grid-template-columns: 1fr;
        }
        
        .hero-image-wrapper {
            order: -1;
            max-width: 500px;
            margin: 0 auto;
        }

        .contact-wrapper {
            padding: 30px;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            padding: 40px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            z-index: 40;
        }

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

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

        .hero-actions {
            flex-direction: column;
        }

        .btn {
            width: 100%;
        }

        .footer-content {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
    }
