    :root {
        --primary: #C0623B; /* Terracotta */
        --primary-dark: #9E4A28;
        --secondary: #F4E4D4; /* Sand / Cream */
        --text-dark: #2C2420;
        --text-light: #6B5E57;
        --white: #FFFFFF;
        --bg-light: #FDF8F5;
        --shadow: 0 10px 40px -10px rgba(192, 98, 59, 0.15);
        --radius: 16px;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Lato', sans-serif;
        color: var(--text-dark);
        background-color: var(--bg-light);
        line-height: 1.6;
    }

    h1, h2, h3, .logo {
        font-family: 'Playfair Display', serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Buttons */
    .btn-primary, .btn-secondary {
        display: inline-block;
        padding: 14px 28px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
    }

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

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

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

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

    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        padding: 15px 0;
    }

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

    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 30px;
        align-items: center;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
        transition: color 0.3s;
    }

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

    /* Mobile Menu */
    .mobile-menu-btn, .close-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--primary);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

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

    .mobile-menu ul {
        list-style: none;
        text-align: center;
    }

    .mobile-menu li {
        margin: 20px 0;
    }

    .mobile-link {
        color: var(--white);
        text-decoration: none;
        font-size: 1.5rem;
        font-family: 'Playfair Display', serif;
    }

    .close-menu-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        display: block;
        color: var(--white);
    }

    /* Hero Section */
    .hero {
        position: relative;
        min-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--white);
        margin-top: 70px;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Warm terracotta to sand gradient */
        background: linear-gradient(135deg, #C0623B 0%, #E68A5C 100%);
        z-index: 1;
    }

    /* Decorative circles */
    .hero-bg::before, .hero-bg::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        opacity: 0.1;
        background: var(--white);
    }

    .hero-bg::before {
        width: 600px;
        height: 600px;
        top: -100px;
        left: -100px;
    }

    .hero-bg::after {
        width: 400px;
        height: 400px;
        bottom: -50px;
        right: -50px;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
    }

    .hero-title {
        font-size: 4rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 40px;
        opacity: 0.9;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    /* Sections */
    .section {
        padding: 80px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

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

    .section-title {
        font-size: 2.5rem;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    .section-subtitle {
        color: var(--text-light);
        font-size: 1.1rem;
    }

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

    .about-image-wrapper {
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .about-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-text p {
        color: var(--text-light);
        margin-bottom: 20px;
    }

    .checklist {
        list-style: none;
        margin-top: 20px;
    }

    .checklist li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .checklist li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary);
        font-weight: bold;
    }

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

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

    .service-card {
        background: var(--bg-light);
        padding: 40px 30px;
        border-radius: var(--radius);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow);
    }

    .icon-box {
        width: 70px;
        height: 70px;
        background: var(--secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: var(--primary);
    }

    .service-card h3 {
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .service-card p {
        color: var(--text-light);
    }

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

    .gallery-grid img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: var(--radius);
        transition: transform 0.3s ease;
    }

    .gallery-grid img:hover {
        transform: scale(1.02);
    }

    /* Contact */
    .contact {
        background-color: var(--secondary);
    }

    .contact-wrapper {
        background: var(--white);
        border-radius: var(--radius);
        padding: 50px;
        box-shadow: var(--shadow);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .contact-info h2 {
        margin-bottom: 20px;
    }

    .contact-info > p {
        color: var(--text-light);
        margin-bottom: 30px;
    }

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

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

    .info-item strong {
        display: block;
        margin-bottom: 5px;
        color: var(--text-dark);
    }

    .info-item p, .info-item a {
        color: var(--text-light);
        text-decoration: none;
    }

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

    /* Form */
    .contact-form-wrapper h3 {
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

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

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

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #E0D6CE;
        border-radius: 8px;
        font-family: inherit;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

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

    .full-width {
        width: 100%;
        border: none;
        cursor: pointer;
    }

    .success-message {
        display: none;
        margin-top: 20px;
        padding: 15px;
        background-color: #E8F5E9;
        color: #2E7D32;
        border-radius: 8px;
        text-align: center;
    }

    /* Footer */
    footer {
        background-color: var(--text-dark);
        color: var(--white);
        padding: 40px 0;
        text-align: center;
    }

    footer p {
        opacity: 0.7;
        font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 900px) {
        .hero-title {
            font-size: 3rem;
        }
        .about-grid, .contact-wrapper {
            grid-template-columns: 1fr;
        }
        .about-image-wrapper {
            order: -1;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }
        .mobile-menu-btn {
            display: block;
        }
        .hero-buttons {
            flex-direction: column;
        }
        .hero-buttons a {
            width: 100%;
            text-align: center;
        }
        .contact-wrapper {
            padding: 30px;
        }
    }
