    :root {
        --color-terracotta: #C06C54;
        --color-terracotta-dark: #A0523D;
        --color-sand: #F5F0E8;
        --color-sand-light: #FAF7F2;
        --color-text: #2D3436;
        --color-text-light: #636E72;
        --color-white: #FFFFFF;
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Lato', sans-serif;
        --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        --radius: 12px;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
        color: var(--color-text);
        background-color: var(--color-sand-light);
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3 {
        font-family: var(--font-serif);
        font-weight: 600;
        line-height: 1.2;
        color: var(--color-text);
    }

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

    ul {
        list-style: none;
    }

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

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

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

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

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

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

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

    .btn-full {
        width: 100%;
    }

    /* Eyebrow */
    .eyebrow {
        display: block;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--color-terracotta);
        margin-bottom: 16px;
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(250, 247, 242, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 20px 0;
        transition: padding 0.3s ease;
        box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    }

    .navbar.scrolled {
        padding: 12px 0;
    }

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

    .logo {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--color-text);
    }

    .logo .dot {
        color: var(--color-terracotta);
    }

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

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

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

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

    .mobile-toggle span {
        width: 28px;
        height: 2px;
        background-color: var(--color-text);
        transition: all 0.3s ease;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, var(--color-sand-light) 0%, var(--color-sand) 100%);
    }

    .hero-bg-shape {
        position: absolute;
        top: -20%;
        right: -10%;
        width: 60%;
        height: 140%;
        background: linear-gradient(135deg, rgba(192, 108, 84, 0.08) 0%, rgba(192, 108, 84, 0.02) 100%);
        border-radius: 50%;
        z-index: 0;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .hero-text .eyebrow {
        margin-bottom: 20px;
    }

    .hero-text h1 {
        font-size: clamp(3rem, 5vw, 4.5rem);
        margin-bottom: 24px;
        color: var(--color-text);
    }

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

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

    .hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-image {
        position: relative;
    }

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

    .hero-card {
        position: absolute;
        bottom: -30px;
        left: -30px;
        background: var(--color-white);
        padding: 24px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .hero-card span {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--color-terracotta);
        font-weight: 700;
    }

    .hero-card strong {
        font-family: var(--font-serif);
        font-size: 1.1rem;
        color: var(--color-text);
        line-height: 1.4;
    }

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

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

    .section-header h2 {
        font-size: clamp(2rem, 3vw, 2.75rem);
    }

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

    .service-card {
        background: var(--color-sand-light);
        padding: 40px 30px;
        border-radius: var(--radius);
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .service-card:hover {
        background: var(--color-white);
        border-color: rgba(192, 108, 84, 0.2);
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background: rgba(192, 108, 84, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-terracotta);
        margin-bottom: 24px;
    }

    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

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

    /* About */
    .about {
        padding: 100px 0;
        background: linear-gradient(180deg, var(--color-white) 0%, var(--color-sand-light) 100%);
    }

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

    .about-image img {
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .about-content h2 {
        font-size: clamp(2rem, 3vw, 2.75rem);
        margin-bottom: 24px;
    }

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

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

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

    .features-list li::before {
        content: '';
        width: 8px;
        height: 8px;
        background: var(--color-terracotta);
        border-radius: 50%;
        flex-shrink: 0;
    }

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

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

    .contact-info h2 {
        font-size: clamp(2rem, 3vw, 2.75rem);
        margin-bottom: 20px;
    }

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

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

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

    .info-item strong {
        display: block;
        margin-bottom: 4px;
        font-family: var(--font-serif);
        font-size: 1.1rem;
    }

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

    .info-item a:hover {
        color: var(--color-terracotta);
        text-decoration: underline;
    }

    /* Form */
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-group label {
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--color-text);
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 18px;
        border: 1px solid #E0D6CC;
        border-radius: 8px;
        font-family: var(--font-sans);
        font-size: 1rem;
        background: var(--color-sand-light);
        color: var(--color-text);
        transition: all 0.3s ease;
        outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--color-terracotta);
        background: var(--color-white);
        box-shadow: 0 0 0 3px rgba(192, 108, 84, 0.1);
    }

    .form-status {
        text-align: center;
        padding: 12px;
        border-radius: 8px;
        font-weight: 600;
        display: none;
    }

    .form-status.success {
        display: block;
        background: rgba(46, 204, 113, 0.1);
        color: #27ae60;
    }

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

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-brand h3 {
        color: var(--color-white);
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .footer-brand p {
        color: rgba(245, 240, 232, 0.6);
        font-size: 0.95rem;
    }

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

    .footer-links a {
        color: rgba(245, 240, 232, 0.7);
        font-size: 0.95rem;
    }

    .footer-links a:hover {
        color: var(--color-terracotta);
    }

    .footer-bottom {
        border-top: 1px solid rgba(245, 240, 232, 0.1);
        padding-top: 30px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
        font-size: 0.85rem;
        color: rgba(245, 240, 232, 0.5);
    }

    /* Animations */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

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

        .hero-text p {
            margin-left: auto;
            margin-right: auto;
        }

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

        .hero-image {
            max-width: 500px;
            margin: 0 auto;
        }

        .hero-card {
            left: 50%;
            transform: translateX(-50%);
        }

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

        .about-image {
            order: -1;
        }

        .about-image img {
            height: 350px;
        }

        .contact-wrapper {
            grid-template-columns: 1fr;
            padding: 40px;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: var(--color-sand-light);
            flex-direction: column;
            justify-content: center;
            padding: 40px;
            transition: right 0.3s ease;
            box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        }

        .nav-links.active {
            right: 0;
        }

        .mobile-toggle {
            display: flex;
            z-index: 1001;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .hero {
            padding: 100px 0 60px;
        }

        .hero-card {
            position: relative;
            bottom: auto;
            left: auto;
            transform: none;
            margin-top: 20px;
        }

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

        .footer-links {
            flex-direction: column;
            gap: 16px;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .hero-actions {
            flex-direction: column;
            width: 100%;
        }

        .hero-actions .btn {
            width: 100%;
            text-align: center;
        }

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