    /* --- Variables & Reset --- */
    :root {
        --c-terracotta: #C05640;
        --c-terracotta-dark: #9E422F;
        --c-sand: #F5F0EB;
        --c-sand-light: #FAFAF8;
        --c-text: #2C2C2C;
        --c-text-light: #666666;
        --c-white: #FFFFFF;
        
        --f-body: 'Manrope', sans-serif;
        --f-accent: 'Playfair Display', serif;
        
        --ease: cubic-bezier(0.23, 1, 0.32, 1);
    }

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

    html {
        scroll-behavior: smooth;
    }

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

    img {
        max-width: 100%;
        display: block;
        object-fit: cover;
    }

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

    ul {
        list-style: none;
    }

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

    .section-pad {
        padding: 100px 0;
    }

    .tagline {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--c-terracotta);
        margin-bottom: 16px;
        font-weight: 600;
    }

    h1, h2, h3 {
        font-family: var(--f-accent);
        font-weight: 400;
        line-height: 1.1;
        color: var(--c-text);
    }

    h1 { font-size: clamp(3rem, 5vw, 4.5rem); margin-bottom: 24px; }
    h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
    h3 { font-size: 1.5rem; margin-bottom: 12px; }

    /* --- Buttons --- */
    .btn {
        display: inline-block;
        padding: 16px 32px;
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        transition: all 0.4s var(--ease);
        border: 1px solid transparent;
    }

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

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

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

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

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

    .btn-dark:hover {
        background-color: var(--c-terracotta);
    }

    .link-underline {
        font-size: 0.9rem;
        text-decoration: underline;
        text-underline-offset: 4px;
        color: var(--c-text);
        margin-left: 24px;
    }

    .link-underline:hover {
        color: var(--c-terracotta);
    }

    /* --- Navbar --- */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(245, 240, 235, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 20px 0;
        transition: padding 0.3s ease;
    }

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

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

    .logo {
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

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

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

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

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

    /* Mobile Menu */
    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-toggle span {
        display: block;
        width: 24px;
        height: 1px;
        background-color: var(--c-text);
        transition: all 0.3s ease;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--c-sand);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease);
    }

    .mobile-menu.active {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-link {
        font-family: var(--f-accent);
        font-size: 2rem;
        color: var(--c-text);
    }

    .mobile-btn {
        margin-top: 16px;
    }

    /* --- Hero --- */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #C05640 0%, #E8A598 50%, #F5F0EB 100%);
        z-index: 1;
    }

    /* Subtle pattern overlay */
    .hero-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 30px 30px;
        opacity: 0.5;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        color: var(--c-white);
    }

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

    .hero-sub {
        font-size: 1.1rem;
        margin-bottom: 40px;
        opacity: 0.9;
        font-weight: 300;
    }

    .hero-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-line {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 80px;
        background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
        z-index: 2;
        animation: lineGrow 2s var(--ease) forwards;
    }

    @keyframes lineGrow {
        from { height: 0; opacity: 0; }
        to { height: 80px; opacity: 1; }
    }

    /* Fade In Animations */
    .fade-in {
        animation: fadeUp 1s var(--ease) forwards;
        opacity: 0;
        transform: translateY(20px);
    }
    .fade-in-delay {
        animation: fadeUp 1s var(--ease) 0.2s forwards;
        opacity: 0;
        transform: translateY(20px);
    }
    .fade-in-delay-2 {
        animation: fadeUp 1s var(--ease) 0.4s forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    @keyframes fadeUp {
        to { opacity: 1; transform: translateY(0); }
    }

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

    .intro-text p {
        color: var(--c-text-light);
        margin-top: 24px;
        max-width: 480px;
    }

    .intro-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        border-left: 1px solid var(--c-terracotta);
        padding-left: 40px;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .stat-num {
        font-family: var(--f-accent);
        font-size: 2.5rem;
        color: var(--c-terracotta);
    }

    .stat-label {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--c-text-light);
    }

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

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

    .service-card {
        background: var(--c-white);
        transition: transform 0.4s var(--ease);
    }

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

    .service-img {
        height: 280px;
        overflow: hidden;
    }

    .service-img img {
        width: 100%;
        height: 100%;
        transition: transform 0.6s var(--ease);
    }

    .service-card:hover .service-img img {
        transform: scale(1.05);
    }

    .service-info {
        padding: 32px;
        border: 1px solid var(--c-sand);
        border-top: none;
    }

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

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

    .about-image {
        position: relative;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 4px;
    }

    .about-accent {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 100%;
        height: 100%;
        border: 1px solid var(--c-terracotta);
        z-index: -1;
    }

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

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

    .check-list li {
        position: relative;
        padding-left: 24px;
        font-weight: 500;
    }

    .check-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 8px;
        height: 8px;
        background-color: var(--c-terracotta);
        border-radius: 50%;
    }

    /* --- Contact --- */
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        background: var(--c-white);
        box-shadow: 0 20px 60px rgba(0,0,0,0.05);
        overflow: hidden;
    }

    .contact-info {
        padding: 80px;
        background: var(--c-sand);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

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

    .info-block {
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin-bottom: 48px;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .info-item svg {
        color: var(--c-terracotta);
        flex-shrink: 0;
    }

    .info-item strong {
        display: block;
        margin-bottom: 4px;
        font-weight: 600;
    }

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

    .contact-map {
        position: relative;
        min-height: 400px;
    }

    .map-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%) contrast(1.1);
        transition: filter 0.4s ease;
    }

    .contact-map:hover .map-img {
        filter: grayscale(0%);
    }

    .map-overlay {
        position: absolute;
        bottom: 40px;
        left: 40px;
        background: var(--c-white);
        padding: 16px 24px;
        font-family: var(--f-accent);
        font-style: italic;
    }

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

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

    .footer p {
        color: rgba(245, 240, 235, 0.6);
        font-size: 0.85rem;
        margin-top: 8px;
    }

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

    .footer-right a {
        color: var(--c-sand);
        font-size: 0.9rem;
    }

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

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

        .about-image {
            order: -1;
        }

        .about-accent {
            display: none;
        }

        .contact-info {
            padding: 60px 40px;
        }

        .intro-stats {
            border-left: none;
            padding-left: 0;
            margin-top: 40px;
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-toggle {
            display: flex;
        }

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

        .hero-actions {
            flex-direction: column;
            gap: 16px;
        }

        .link-underline {
            margin-left: 0;
        }

        .contact-info {
            padding: 40px 24px;
        }

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