    :root {
        --burgundy: #781F37;
        --burgundy-light: #9A2E4A;
        --blush: #F4E8E8;
        --blush-light: #FDF6F6;
        --cream: #F9F7F5;
        --text-dark: #1A1A1A;
        --text-light: #4A4A4A;
        --white: #FFFFFF;
        --font-serif: 'Bodoni Moda', serif;
        --font-sans: 'Inter', sans-serif;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
        color: var(--text-dark);
        background-color: var(--white);
        line-height: 1.6;
        font-weight: 300;
    }

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

    /* Typography */
    h1, h2, h3 {
        font-family: var(--font-serif);
        font-weight: 400;
        line-height: 1.2;
    }

    .eyebrow {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--burgundy);
        margin-bottom: 16px;
    }

    h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 24px;
        color: var(--text-dark);
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 14px 32px;
        font-family: var(--font-sans);
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid transparent;
    }

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

    .btn--primary:hover {
        background-color: var(--burgundy-light);
        border-color: var(--burgundy-light);
    }

    .btn--outline {
        background-color: transparent;
        color: var(--burgundy);
        border-color: var(--burgundy);
    }

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

    .btn--text {
        background: none;
        color: var(--white);
        border: none;
        padding-left: 0;
    }

    .btn--text:hover {
        color: var(--blush);
    }

    .btn--blush {
        background-color: var(--blush);
        color: var(--burgundy);
        border: none;
        width: 100%;
    }

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

    /* Header */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--blush);
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
    }

    .logo {
        font-family: var(--font-serif);
        font-size: 1.25rem;
        color: var(--burgundy);
        text-decoration: none;
        letter-spacing: 0.05em;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 40px;
        list-style: none;
    }

    .nav-links a {
        font-size: 0.875rem;
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

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

    .menu-toggle span {
        width: 24px;
        height: 1px;
        background-color: var(--burgundy);
        transition: all 0.3s ease;
    }

    /* Mobile Menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .close-menu {
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--burgundy);
        cursor: pointer;
    }

    .mobile-nav-links {
        list-style: none;
        text-align: center;
    }

    .mobile-nav-links li {
        margin: 24px 0;
    }

    .mobile-nav-links a {
        font-family: var(--font-serif);
        font-size: 2rem;
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    /* Hero */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('https://images.pexels.com/photos/7285984/pexels-photo-7285984.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-position: center;
        margin-top: 0;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(120, 31, 55, 0.85) 0%, rgba(120, 31, 55, 0.6) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        color: var(--white);
        margin-bottom: 24px;
        line-height: 1.1;
    }

    .hero-sub {
        font-size: 1.125rem;
        color: var(--blush);
        margin-bottom: 40px;
        font-weight: 300;
    }

    .hero-btns {
        display: flex;
        gap: 24px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Sections */
    .section {
        padding: 120px 0;
    }

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

    .bg-warm {
        background-color: var(--cream);
    }

    .bg-burgundy {
        background-color: var(--burgundy);
    }

    .text-white {
        color: var(--white);
    }

    .text-blush {
        color: var(--blush);
    }

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

    .service-card {
        padding: 40px;
        border: 1px solid var(--blush);
        transition: all 0.3s ease;
    }

    .service-card:hover {
        border-color: var(--burgundy);
        transform: translateY(-4px);
    }

    .service-card .icon {
        width: 48px;
        height: 48px;
        color: var(--burgundy);
        margin-bottom: 24px;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
        color: var(--text-dark);
    }

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

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

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
    }

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

    .check-list {
        list-style: none;
        margin-top: 32px;
    }

    .check-list li {
        padding: 12px 0;
        border-bottom: 1px solid var(--blush);
        color: var(--text-dark);
        font-size: 0.9375rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .check-list li::before {
        content: '';
        width: 8px;
        height: 8px;
        background-color: var(--burgundy);
        flex-shrink: 0;
    }

    /* Gallery */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .gallery-item {
        overflow: hidden;
    }

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

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

    /* Contact */
    .contact-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }

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

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

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

    .contact-item strong {
        font-family: var(--font-sans);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--blush);
    }

    .contact-item a,
    .contact-item span {
        font-family: var(--font-serif);
        font-size: 1.25rem;
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .hover-blush:hover {
        color: var(--blush);
    }

    .contact-form-wrapper {
        background-color: var(--white);
        padding: 48px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

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

    .form-group label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-dark);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 0;
        border: none;
        border-bottom: 1px solid var(--blush);
        font-family: var(--font-sans);
        font-size: 1rem;
        color: var(--text-dark);
        background: transparent;
        outline: none;
        transition: border-color 0.3s ease;
    }

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

    .form-status {
        text-align: center;
        padding: 16px;
        font-size: 0.875rem;
        display: none;
    }

    .form-status.success {
        display: block;
        color: var(--burgundy);
    }

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

    .footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .logo-text {
        font-family: var(--font-serif);
        font-size: 1.125rem;
        color: var(--white);
    }

    .copyright {
        font-size: 0.8125rem;
        color: var(--text-light);
    }

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

    .footer-links a {
        font-size: 0.875rem;
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    /* Responsive */
    @media (max-width: 968px) {
        .nav-links {
            display: none;
        }

        .menu-toggle {
            display: flex;
        }

        .about-layout,
        .contact-layout {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .about-image {
            order: -1;
        }

        .contact-form-wrapper {
            padding: 32px;
        }
    }

    @media (max-width: 640px) {
        .section {
            padding: 80px 0;
        }

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

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

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

        .footer-inner {
            flex-direction: column;
            text-align: center;
        }
    }
</style>
