    /* ===== RESET & BASE ===== */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        overflow-x: hidden;
    }

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

    /* ===== CUSTOM CURSOR ===== */
    @media (hover: hover) {
        a, button {
            cursor: pointer;
        }
    }

    /* ===== NAVBAR ===== */
    #navbar {
        background: rgba(250, 247, 244, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    }

    #navbar.scrolled {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    }

    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: #7B2D3B;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* ===== MOBILE MENU ===== */
    #mobileMenu.open {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    #mobileMenu.open .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }

    #mobileMenu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
    #mobileMenu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
    #mobileMenu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
    #mobileMenu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
    #mobileMenu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }

    /* ===== MENU TOGGLE ===== */
    .menu-line {
        transition: all 0.3s ease;
    }

    #menuToggle.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menuToggle.active .menu-line:nth-child(2) {
        opacity: 0;
    }

    #menuToggle.active .menu-line:nth-child(3) {
        width: 24px;
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ===== HERO ANIMATIONS ===== */
    .hero-eyebrow {
        animation: slideUp 0.8s ease forwards;
    }

    .hero-headline {
        animation: slideUp 0.8s ease 0.1s forwards;
        opacity: 0;
    }

    .hero-subtitle {
        animation: slideUp 0.8s ease 0.2s forwards;
        opacity: 0;
    }

    .hero-image-wrapper {
        animation: fadeIn 1s ease 0.3s forwards;
        opacity: 0;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* ===== BUTTONS ===== */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #7B2D3B;
        color: #fff;
        padding: 14px 28px;
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        border: none;
        border-radius: 2px;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.5s ease;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-primary:hover {
        background: #6b2431;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(123, 45, 59, 0.3);
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: #2C2C2C;
        padding: 14px 28px;
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        border: 2px solid #2C2C2C;
        border-radius: 2px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

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

    .btn-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        color: #7B2D3B;
        padding: 16px 32px;
        font-size: 0.95rem;
        font-weight: 600;
        border: none;
        border-radius: 2px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-cta:hover {
        background: #F5E6D3;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: #fff;
        padding: 16px 32px;
        font-size: 0.95rem;
        font-weight: 600;
        border: 2px solid rgba(255,255,255,0.4);
        border-radius: 2px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-cta-secondary:hover {
        border-color: #fff;
        background: rgba(255,255,255,0.1);
        transform: translateY(-2px);
    }

    /* ===== INPUT FIELDS ===== */
    .input-field {
        border: 1px solid rgba(44, 44, 44, 0.15);
        border-radius: 2px;
        padding: 12px 16px;
        font-size: 0.95rem;
        font-family: 'Inter', system-ui, sans-serif;
        color: #2C2C2C;
        background: transparent;
        transition: all 0.3s ease;
        outline: none;
        width: 100%;
    }

    .input-field:focus {
        border-color: #7B2D3B;
        box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
    }

    .input-field::placeholder {
        color: rgba(44, 44, 44, 0.35);
    }

    /* ===== SERVICE CARDS ===== */
    .service-card {
        position: relative;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #7B2D3B, #ec7095);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    /* ===== AREA CARDS ===== */
    .area-card {
        position: relative;
    }

    .area-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border: 2px solid transparent;
        border-radius: inherit;
        transition: border-color 0.3s ease;
        pointer-events: none;
    }

    .area-card:hover::after {
        border-color: rgba(255, 255, 255, 0.5);
    }

    /* ===== TESTIMONIAL CARDS ===== */
    .testimonial-card {
        position: relative;
    }

    .testimonial-card::before {
        content: '\201C';
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 6rem;
        font-family: 'Playfair Display', serif;
        color: rgba(123, 45, 59, 0.06);
        line-height: 1;
        pointer-events: none;
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
        .hero-headline {
            font-size: 3.5rem !important;
        }

        .hero-image-wrapper img {
            height: 400px !important;
        }

        .hero-image-wrapper .absolute.-bottom-6 {
            position: relative;
            bottom: auto;
            left: auto;
            margin-top: 1rem;
        }

        .testimonial-card::before {
            font-size: 4rem;
            top: 10px;
            right: 15px;
        }
    }

    @media (max-width: 640px) {
        .hero-headline {
            font-size: 2.75rem !important;
        }

        .btn-primary, .btn-secondary {
            padding: 12px 22px;
            font-size: 0.85rem;
        }
    }

    /* ===== SELECTION ===== */
    ::selection {
        background: rgba(123, 45, 59, 0.15);
        color: #7B2D3B;
    }

    /* ===== FOCUS VISIBLE ===== */
    *:focus-visible {
        outline: 2px solid #7B2D3B;
        outline-offset: 2px;
    }
