    :root {
        --burgundy: #720e1e;
        --burgundy-dark: #520a15;
        --blush: #f7e7e7;
        --blush-light: #fff5f5;
        --white: #ffffff;
        --text-dark: #1a1a1a;
        --text-gray: #666666;
        --text-light: #888888;
        --accent-pink: #d4a5a5;
        
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Outfit', sans-serif;
        
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 32px;
        
        --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 10px 30px -5px rgba(114, 14, 30, 0.1);
        --shadow-lg: 0 20px 40px -10px rgba(114, 14, 30, 0.15);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        color: var(--text-dark);
        background-color: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
    }

    /* Background Blobs */
    .blob {
        position: fixed;
        border-radius: 50%;
        filter: blur(80px);
        z-index: -1;
        opacity: 0.6;
    }
    
    .blob-1 {
        width: 500px;
        height: 500px;
        background: var(--blush);
        top: -100px;
        right: -100px;
    }
    
    .blob-2 {
        width: 400px;
        height: 400px;
        background: #fcebeb;
        bottom: 10%;
        left: -100px;
    }

    /* Typography */
    h1, h2, h3 {
        font-family: var(--font-heading);
        font-weight: 600;
        line-height: 1.2;
    }
    
    h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        margin-bottom: 1.5rem;
        color: var(--burgundy);
    }
    
    h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1rem;
        color: var(--text-dark);
    }
    
    h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    p {
        color: var(--text-gray);
        margin-bottom: 1rem;
    }

    /* Layout */
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.875rem 1.75rem;
        border-radius: var(--radius-sm);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        font-family: var(--font-body);
        font-size: 1rem;
    }
    
    .btn-primary {
        background-color: var(--burgundy);
        color: var(--white);
    }
    
    .btn-primary:hover {
        background-color: var(--burgundy-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    
    .btn-secondary {
        background-color: transparent;
        color: var(--burgundy);
        border: 2px solid var(--burgundy);
    }
    
    .btn-secondary:hover {
        background-color: var(--blush);
    }
    
    .btn-full {
        width: 100%;
    }

    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 1rem 0;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        gap: 0.5rem;
    }
    
    .logo-mark {
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 1.5rem;
        color: var(--burgundy);
        background: var(--blush);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
    }
    
    .logo-text {
        font-weight: 700;
        font-size: 1.25rem;
        color: var(--text-dark);
    }
    
    nav ul {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
    }
    
    nav a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        transition: color 0.3s;
    }
    
    nav a:hover {
        color: var(--burgundy);
    }
    
    .mobile-menu-btn {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: var(--text-dark);
        transition: all 0.3s;
    }

    /* Hero */
    .hero {
        padding: 8rem 0 4rem;
        min-height: 90vh;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, var(--white) 0%, var(--blush-light) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .badge {
        display: inline-block;
        background: var(--blush);
        color: var(--burgundy);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        display: flex;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .trust-metrics {
        display: flex;
        gap: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--blush);
    }
    
    .metric {
        display: flex;
        flex-direction: column;
    }
    
    .metric-value {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--burgundy);
    }
    
    .metric-label {
        font-size: 0.875rem;
        color: var(--text-light);
    }
    
    .hero-visual {
        position: relative;
    }
    
    .image-wrapper {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }
    
    .image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .floating-card {
        position: absolute;
        background: var(--white);
        padding: 1rem 1.5rem;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 600;
        animation: float 3s ease-in-out infinite;
    }
    
    .floating-card svg {
        color: var(--burgundy);
    }
    
    .card-1 {
        top: 10%;
        left: -20px;
    }
    
    .card-2 {
        bottom: 15%;
        right: -20px;
        animation-delay: 1.5s;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    /* Section Header */
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .accent-text {
        display: block;
        color: var(--burgundy);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    /* Services */
    .services {
        padding: 6rem 0;
        background: var(--white);
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        background: var(--white);
        padding: 2.5rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--blush);
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }
    
    .service-card.highlight {
        background: var(--burgundy);
        border-color: var(--burgundy);
        color: var(--white);
    }
    
    .service-card.highlight h3,
    .service-card.highlight p,
    .service-card.highlight .learn-more {
        color: var(--white);
    }
    
    .service-card.highlight .learn-more:hover {
        color: var(--blush);
    }
    
    .icon-box {
        width: 64px;
        height: 64px;
        background: var(--blush);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: var(--burgundy);
    }
    
    .service-card.highlight .icon-box {
        background: rgba(255,255,255,0.2);
        color: var(--white);
    }
    
    .learn-more {
        display: inline-block;
        color: var(--burgundy);
        text-decoration: none;
        font-weight: 600;
        margin-top: 1rem;
        transition: all 0.3s;
    }
    
    .learn-more:hover {
        letter-spacing: 0.05em;
    }

    /* About */
    .about {
        padding: 6rem 0;
        background: var(--blush-light);
    }
    
    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .about-visual {
        position: relative;
    }
    
    .about-visual img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        position: relative;
        z-index: 1;
    }
    
    .about-pattern {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 20px;
        left: 20px;
        background: var(--burgundy);
        border-radius: var(--radius-lg);
        z-index: 0;
        opacity: 0.1;
    }
    
    .about-content .lead {
        font-size: 1.25rem;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
    }
    
    .feature-list {
        list-style: none;
        margin-top: 2rem;
    }
    
    .feature-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        font-weight: 500;
    }
    
    .feature-list svg {
        color: var(--burgundy);
        flex-shrink: 0;
    }

    /* Process */
    .process {
        padding: 6rem 0;
        background: var(--white);
    }
    
    .process-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .step {
        text-align: center;
        padding: 2rem;
        position: relative;
    }
    
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 40px;
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: var(--blush);
    }
    
    .step-number {
        font-size: 4rem;
        font-weight: 800;
        color: var(--blush);
        line-height: 1;
        margin-bottom: 1rem;
        font-family: var(--font-heading);
    }
    
    .step h3 {
        color: var(--burgundy);
    }

    /* Contact */
    .contact {
        padding: 6rem 0;
        background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
        color: var(--white);
    }
    
    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .contact h2 {
        color: var(--white);
    }
    
    .contact p {
        color: rgba(255,255,255,0.8);
    }
    
    .contact-details {
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-item {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .contact-item .icon {
        width: 48px;
        height: 48px;
        background: rgba(255,255,255,0.1);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .contact-item strong {
        display: block;
        margin-bottom: 0.25rem;
        color: var(--white);
    }
    
    .contact-item p,
    .contact-item a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        margin: 0;
    }
    
    .contact-item a:hover {
        color: var(--white);
    }
    
    .contact-form-wrapper {
        background: var(--white);
        padding: 2.5rem;
        border-radius: var(--radius-lg);
        color: var(--text-dark);
    }
    
    .contact-form h3 {
        margin-bottom: 1.5rem;
        color: var(--burgundy);
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        font-size: 0.875rem;
        color: var(--text-dark);
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 2px solid var(--blush);
        border-radius: var(--radius-sm);
        font-family: var(--font-body);
        font-size: 1rem;
        transition: border-color 0.3s;
        background: var(--white);
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--burgundy);
    }
    
    .form-note {
        font-size: 0.75rem;
        color: var(--text-light);
        margin-top: 1rem;
        text-align: center;
    }
    
    .form-success {
        display: none;
        text-align: center;
        padding: 2rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        background: var(--blush);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: var(--burgundy);
    }
    
    .form-success h3 {
        color: var(--burgundy);
        margin-bottom: 0.75rem;
    }
    
    .form-success p {
        margin-bottom: 1.5rem;
    }

    /* Footer */
    footer {
        background: var(--text-dark);
        color: var(--white);
        padding: 3rem 0;
    }
    
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand .logo {
        margin-bottom: 1rem;
    }
    
    .footer-brand .logo-mark {
        background: var(--burgundy);
        color: var(--white);
    }
    
    .footer-brand .logo-text {
        color: var(--white);
    }
    
    .footer-brand p {
        color: rgba(255,255,255,0.6);
    }
    
    .footer-links {
        display: flex;
        gap: 2rem;
    }
    
    .footer-links a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-links a:hover {
        color: var(--white);
    }
    
    .footer-copy p {
        color: rgba(255,255,255,0.5);
        font-size: 0.875rem;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .hero-container,
        .about-container,
        .contact-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .hero-visual {
            order: -1;
        }
        
        .process-steps {
            grid-template-columns: 1fr;
        }
        
        .step:not(:last-child)::after {
            display: none;
        }
    }
    
    @media (max-width: 768px) {
        nav ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--white);
            flex-direction: column;
            padding: 1.5rem;
            box-shadow: var(--shadow-md);
            gap: 1rem;
        }
        
        nav ul.active {
            display: flex;
        }
        
        .mobile-menu-btn {
            display: flex;
        }
        
        .hero-actions {
            flex-direction: column;
        }
        
        .trust-metrics {
            flex-wrap: wrap;
        }
        
        .floating-card {
            display: none;
        }
    }
