    :root {
        --primary: #C85A3C; /* Terracotta */
        --primary-dark: #A0462D;
        --secondary: #F4F1EA; /* Sand/Off-white */
        --text-dark: #2C2C2C;
        --text-light: #666666;
        --white: #FFFFFF;
        --accent: #2D4A3E; /* Deep forest green for subtle contrast */
        --radius: 8px;
        --shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Open Sans', sans-serif;
        color: var(--text-dark);
        background-color: var(--secondary);
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, .logo-text {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        color: var(--text-dark);
        line-height: 1.2;
    }

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

    ul {
        list-style: none;
    }

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

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

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 14px 28px;
        border-radius: var(--radius);
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        cursor: pointer;
        border: 2px solid transparent;
    }

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

    .btn-primary:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(200, 90, 60, 0.3);
    }

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

    .btn-secondary:hover {
        background-color: #000;
        transform: translateY(-2px);
    }

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

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

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

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

    /* Navbar */
    .navbar {
        background-color: var(--white);
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 20px 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-size: 1.25rem;
        color: var(--primary);
    }

    .logo svg {
        stroke: var(--primary);
    }

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

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

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

    .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: 3px;
        background-color: var(--text-dark);
        border-radius: 2px;
    }

    /* Hero Section */
    .hero {
        background-color: var(--secondary);
        min-height: 85vh;
        display: flex;
        position: relative;
        padding-bottom: 4rem;
    }

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

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .badge {
        display: inline-block;
        background-color: rgba(200, 90, 60, 0.1);
        color: var(--primary);
        padding: 8px 16px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    .hero h1 span {
        color: var(--primary);
    }

    .hero p {
        font-size: 1.15rem;
        color: var(--text-light);
        margin-bottom: 2rem;
        max-width: 500px;
    }

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

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

    .stat {
        display: flex;
        flex-direction: column;
    }

    .stat-num {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--primary);
    }

    .stat-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        color: var(--text-light);
    }

    .stat-divider {
        width: 1px;
        height: 40px;
        background-color: rgba(0,0,0,0.2);
    }

    /* Hero Image */
    .hero-image-wrapper {
        position: relative;
        height: 600px;
    }

    .geometric-shape {
        position: absolute;
        z-index: 0;
    }

    .shape-1 {
        width: 300px;
        height: 300px;
        background-color: var(--primary);
        top: -20px;
        right: -20px;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        opacity: 0.8;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
        background-color: var(--accent);
        bottom: 40px;
        left: -30px;
        border-radius: 50%;
        opacity: 0.9;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius);
        position: relative;
        z-index: 1;
        box-shadow: var(--shadow);
    }

    .hero-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        line-height: 0;
    }

    .hero-wave svg {
        width: 100%;
        height: 80px;
    }

    /* Services Section */
    .services {
        background-color: var(--white);
        padding: 5rem 0;
    }

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

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

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

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

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

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

    .service-card:hover {
        transform: translateY(-10px);
        background-color: var(--white);
        box-shadow: var(--shadow);
        border-bottom-color: var(--primary);
    }

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

    .service-card:hover .icon-box {
        background-color: var(--primary);
        color: var(--white);
    }

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

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

    /* About Section */
    .about {
        padding: 5rem 0;
        background-color: var(--secondary);
        overflow: hidden;
    }

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

    .about-image {
        position: relative;
    }

    .about-img {
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        width: 100%;
    }

    .about-badge {
        position: absolute;
        bottom: -30px;
        right: -30px;
        background-color: var(--primary);
        color: var(--white);
        padding: 2rem;
        border-radius: var(--radius);
        text-align: center;
        box-shadow: var(--shadow);
    }

    .about-badge .big-num {
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
    }

    .about-badge .label {
        font-size: 0.9rem;
        text-transform: uppercase;
        font-weight: 600;
    }

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

    .about-content .lead {
        font-size: 1.2rem;
        color: var(--text-dark);
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

    .about-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .about-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: var(--text-dark);
    }

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

    /* Gallery Section */
    .gallery {
        padding: 5rem 0;
        background-color: var(--white);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .gallery-item {
        overflow: hidden;
        border-radius: var(--radius);
        height: 300px;
    }

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

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

    /* CTA Strip */
    .cta-strip {
        background-color: var(--primary);
        color: var(--white);
        padding: 4rem 0;
        text-align: center;
    }

    .cta-strip h2 {
        color: var(--white);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-strip p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .cta-btns {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    /* Contact Section */
    .contact {
        padding: 5rem 0;
        background-color: var(--secondary);
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        background-color: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .contact-info {
        background-color: var(--text-dark);
        color: var(--white);
        padding: 3rem;
    }

    .contact-info h2 {
        color: var(--white);
        margin-bottom: 1rem;
    }

    .contact-info > p {
        color: rgba(255,255,255,0.7);
        margin-bottom: 2rem;
    }

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

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

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

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

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

    .contact-form-wrapper {
        padding: 3rem;
    }

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

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

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

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

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

    .full-width {
        width: 100%;
    }

    .form-status {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: var(--radius);
        display: none;
    }

    .form-status.success {
        display: block;
        background-color: #d4edda;
        color: #155724;
    }

    /* Footer */
    .footer {
        background-color: #1a1a1a;
        color: var(--white);
        padding: 4rem 0 1rem;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-col h4 {
        color: var(--white);
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

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

    .footer-col ul li {
        margin-bottom: 0.8rem;
    }

    .footer-col ul li a {
        color: rgba(255,255,255,0.6);
        font-size: 0.95rem;
    }

    .footer-col ul li a:hover {
        color: var(--primary);
    }

    .logo-dark {
        color: var(--white);
        margin-bottom: 1rem;
    }
    
    .logo-dark svg {
        stroke: var(--white);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 1.5rem;
        text-align: center;
    }

    .footer-bottom p {
        color: rgba(255,255,255,0.4);
        font-size: 0.85rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

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

        .hero p {
            margin: 0 auto 2rem;
        }

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

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

        .hero-image-wrapper {
            height: 400px;
            order: -1;
        }

        .about-container {
            grid-template-columns: 1fr;
        }

        .about-badge {
            right: 0;
        }

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

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

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

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

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

        .gallery-grid {
            grid-template-columns: 1fr;
        }
        
        .about-list {
            grid-template-columns: 1fr;
        }
    }
