    /* --- CSS Variables & Reset --- */
    :root {
        --color-burgundy: #800020;
        --color-burgundy-dark: #5c0017;
        --color-blush: #FDF2F2;
        --color-blush-light: #FFF8F8;
        --color-text: #1a1a1a;
        --color-text-light: #666666;
        --color-white: #ffffff;
        --color-border: #e5e5e5;
        
        --font-serif: 'Cormorant Garamond', serif;
        --font-sans: 'Montserrat', sans-serif;
        
        --spacing-container: 1200px;
        --spacing-section: 120px;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

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

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

    ul {
        list-style: none;
    }

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

    .section-tag {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--color-burgundy);
        margin-bottom: 1rem;
        font-weight: 500;
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 1.5rem;
        color: var(--color-text);
    }

    /* --- Layout --- */
    .container {
        max-width: var(--spacing-container);
        margin: 0 auto;
        padding: 0 2rem;
    }

    .section {
        padding: var(--spacing-section) 0;
    }

    /* --- Navigation --- */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 1px solid var(--color-border);
        padding: 1.5rem 0;
        transition: padding 0.3s ease;
    }

    .navbar.scrolled {
        padding: 1rem 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;
        letter-spacing: 0.05em;
        color: var(--color-text);
    }

    .logo-thin {
        font-weight: 300;
        font-style: italic;
    }

    .nav-links {
        display: flex;
        gap: 2.5rem;
        align-items: center;
    }

    .nav-links a {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--color-text-light);
    }

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

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

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

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

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

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

    .btn-text {
        background: none;
        border: none;
        color: var(--color-text);
        padding: 1rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
    }

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

    .btn-full {
        width: 100%;
    }

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

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.3) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 600px;
        padding-left: 10%;
        animation: fadeIn 1s ease-out;
    }

    .hero-subtitle {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.3em;
        color: var(--color-burgundy);
        margin-bottom: 1.5rem;
        font-weight: 500;
    }

    .hero-title {
        font-size: clamp(3rem, 6vw, 5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: var(--color-text);
    }

    .text-burgundy {
        color: var(--color-burgundy);
        font-style: italic;
    }

    .hero-desc {
        font-size: 1.1rem;
        color: var(--color-text-light);
        margin-bottom: 2.5rem;
        max-width: 480px;
        font-weight: 300;
    }

    .hero-buttons {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .hero-line {
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 1px;
        height: 150px;
        background: var(--color-burgundy);
        animation: growLine 1s ease-out 0.5s forwards;
        transform: scaleY(0);
    }

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

    @keyframes growLine {
        to { transform: scaleY(1); }
    }

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

    .about-image-wrapper {
        position: relative;
    }

    .about-image-wrapper img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        position: relative;
        z-index: 1;
    }

    .about-image-accent {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100%;
        height: 100%;
        border: 1px solid var(--color-burgundy);
        z-index: 0;
    }

    .about-content {
        padding: 2rem;
    }

    .lead-text {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        color: var(--color-text);
        margin-bottom: 1.5rem;
        font-style: italic;
    }

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

    .stats-row {
        display: flex;
        gap: 3rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--color-border);
    }

    .stat-number {
        display: block;
        font-family: var(--font-serif);
        font-size: 2.5rem;
        color: var(--color-burgundy);
        line-height: 1;
    }

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

    /* --- Services --- */
    .services {
        background-color: var(--color-blush);
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

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

    .service-card {
        background: var(--color-white);
        padding: 3rem 2rem;
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }

    .service-card:hover {
        border-color: var(--color-burgundy);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .service-icon {
        margin-bottom: 1.5rem;
        color: var(--color-burgundy);
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 0.9rem;
        color: var(--color-text-light);
        line-height: 1.8;
    }

    /* --- Visual Break --- */
    .visual-break {
        background-color: var(--color-burgundy);
        color: var(--color-white);
        padding: 8rem 0;
        text-align: center;
    }

    .visual-break-content h2 {
        font-size: clamp(2rem, 4vw, 3.5rem);
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .visual-break-content p {
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.8rem;
        opacity: 0.8;
    }

    /* --- Process --- */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }

    .step {
        position: relative;
    }

    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 1.5rem;
        right: -1rem;
        width: 2rem;
        height: 1px;
        background: var(--color-border);
    }

    .step-num {
        font-family: var(--font-serif);
        font-size: 3rem;
        color: var(--color-blush);
        line-height: 1;
        margin-bottom: 1rem;
        display: block;
    }

    .step h4 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .step p {
        font-size: 0.9rem;
        color: var(--color-text-light);
    }

    /* --- Contact --- */
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-details {
        margin-top: 3rem;
    }

    .detail-item {
        margin-bottom: 2rem;
    }

    .detail-item strong {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
        color: var(--color-burgundy);
    }

    .detail-item a, .detail-item span {
        font-size: 1.1rem;
        color: var(--color-text);
    }

    .detail-item a:hover {
        text-decoration: underline;
    }

    .contact-form {
        background: var(--color-blush-light);
        padding: 3rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
        color: var(--color-text-light);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 1px solid var(--color-border);
        background: var(--color-white);
        font-family: var(--font-sans);
        font-size: 1rem;
        color: var(--color-text);
        transition: border-color 0.3s ease;
    }

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

    .form-success {
        margin-top: 1rem;
        padding: 1rem;
        background: #e8f5e9;
        color: #2e7d32;
        text-align: center;
        font-size: 0.9rem;
    }

    .hidden {
        display: none;
    }

    /* --- Footer --- */
    .footer {
        background-color: var(--color-text);
        color: var(--color-white);
        padding: 4rem 0;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
        color: #999;
    }

    .footer-links {
        display: flex;
        gap: 2rem;
    }

    .footer-links a {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #ccc;
    }

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

    .footer-copy {
        font-size: 0.75rem;
        color: #666;
    }

    /* --- Mobile Menu --- */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 1px;
        background: var(--color-text);
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn span:nth-child(1) { top: 0; }
    .mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }

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

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

    .mobile-menu ul {
        text-align: center;
    }

    .mobile-menu li {
        margin-bottom: 2rem;
    }

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

    .mobile-link:hover {
        color: var(--color-burgundy);
    }

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

        .about-image-wrapper {
            order: -1;
        }

        .process-steps {
            grid-template-columns: 1fr 1fr;
        }

        .step:not(:last-child)::after {
            display: none;
        }
    }

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

        .mobile-menu-btn {
            display: block;
        }

        .hero-content {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .hero-line {
            left: 2rem;
        }

        .process-steps {
            grid-template-columns: 1fr;
        }

        .stats-row {
            flex-direction: column;
            gap: 1.5rem;
        }
    }
