    :root {
        --burgundy: #720e1e;
        --burgundy-dark: #4a0510;
        --blush: #fceceb;
        --blush-dark: #eacbd2;
        --white: #ffffff;
        --text-dark: #1a1a1a;
        --text-light: #555555;
        --font-display: 'Playfair Display', serif;
        --font-body: 'Outfit', sans-serif;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

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

    .accent-text {
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--burgundy);
        display: block;
        margin-bottom: 10px;
    }

    h1, h2, h3 {
        font-family: var(--font-display);
        font-weight: 700;
        line-height: 1.2;
    }

    h2 {
        font-size: 2.5rem;
        color: var(--burgundy-dark);
        margin-bottom: 20px;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
    }

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

    .btn-primary:hover {
        background-color: var(--burgundy-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(114, 14, 30, 0.2);
    }

    .btn-secondary {
        background-color: transparent;
        color: var(--burgundy);
        border: 2px solid var(--burgundy);
    }

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

    .btn-full {
        width: 100%;
    }

    /* Background Blobs */
    .bg-blob {
        position: fixed;
        border-radius: 50%;
        filter: blur(80px);
        z-index: -1;
        opacity: 0.6;
    }

    .blob-1 {
        width: 500px;
        height: 500px;
        background: var(--blush-dark);
        top: -100px;
        left: -100px;
    }

    .blob-2 {
        width: 400px;
        height: 400px;
        background: #ffd1dc;
        bottom: 10%;
        right: -50px;
    }

    .blob-3 {
        width: 300px;
        height: 300px;
        background: #ffe4e1;
        top: 40%;
        left: 20%;
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        background: rgba(252, 236, 235, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        padding: 15px 0;
    }

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

    .logo {
        font-family: var(--font-display);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--burgundy);
        letter-spacing: -1px;
    }

    .logo .dot {
        color: var(--blush-dark);
    }

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

    .nav-links a {
        font-weight: 500;
        color: var(--text-dark);
        position: relative;
    }

    .nav-links a:not(.btn)::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--burgundy);
        transition: width 0.3s ease;
    }

    .nav-links a:not(.btn):hover::after {
        width: 100%;
    }

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

    .mobile-toggle span {
        width: 25px;
        height: 2px;
        background: var(--burgundy);
        transition: all 0.3s ease;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--blush);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-menu a {
        font-family: var(--font-display);
        font-size: 2rem;
        color: var(--burgundy);
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        padding: 120px 0 80px;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .badge {
        display: inline-block;
        background: var(--white);
        color: var(--burgundy);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 24px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .hero h1 {
        font-size: 3.5rem;
        color: var(--burgundy-dark);
        margin-bottom: 24px;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.15rem;
        color: var(--text-light);
        margin-bottom: 40px;
        max-width: 480px;
    }

    .hero-btns {
        display: flex;
        gap: 16px;
        margin-bottom: 50px;
    }

    .hero-stats {
        display: flex;
        gap: 40px;
    }

    .stat span {
        display: block;
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 700;
        color: var(--burgundy);
    }

    .stat small {
        font-size: 0.85rem;
        color: var(--text-light);
    }

    /* Hero Visual */
    .hero-visual {
        position: relative;
        height: 600px;
    }

    .image-stack {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .img-main {
        position: absolute;
        top: 0;
        right: 0;
        width: 75%;
        height: 85%;
        border-radius: 200px 200px 20px 20px;
        overflow: hidden;
        box-shadow: 20px 20px 0 var(--burgundy);
    }

    .img-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .img-accent {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 55%;
        height: 50%;
        border-radius: 20px;
        overflow: hidden;
        border: 8px solid var(--white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .img-accent img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .geo-shape {
        position: absolute;
        z-index: -1;
    }

    .shape-circle {
        width: 120px;
        height: 120px;
        background: var(--blush-dark);
        border-radius: 50%;
        top: 20%;
        left: 10%;
    }

    .shape-square {
        width: 80px;
        height: 80px;
        background: var(--burgundy);
        bottom: 30%;
        right: 10%;
        transform: rotate(45deg);
    }

    /* Services */
    .services {
        padding: 100px 0;
        background: var(--white);
    }

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

    .section-header .line {
        width: 60px;
        height: 4px;
        background: var(--burgundy);
        margin: 20px auto 0;
        border-radius: 2px;
    }

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

    .service-card {
        background: var(--blush);
        padding: 40px 30px;
        border-radius: 20px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(114, 14, 30, 0.1);
    }

    .service-card.highlight {
        background: var(--burgundy);
        color: var(--white);
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin: 20px 0 15px;
        color: var(--burgundy-dark);
    }

    .service-card.highlight h3 {
        color: var(--white);
    }

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

    .service-card.highlight p {
        color: rgba(255,255,255,0.8);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background: var(--white);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--burgundy);
    }

    .service-card.highlight .icon-box {
        background: rgba(255,255,255,0.2);
        color: var(--white);
    }

    .badge-pop {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--white);
        color: var(--burgundy);
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
    }

    /* About */
    .about {
        padding: 100px 0;
        background: var(--blush);
    }

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

    .about-images {
        position: relative;
        height: 600px;
    }

    .about-img-main {
        width: 70%;
        height: 80%;
        border-radius: 20px;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

    .about-img-float {
        width: 50%;
        height: 40%;
        border-radius: 20px;
        overflow: hidden;
        position: absolute;
        bottom: 0;
        right: 0;
        border: 8px solid var(--blush);
    }

    .about-img-main img,
    .about-img-float img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-content h2 {
        text-align: left;
    }

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

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

    .check-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .check-list svg {
        color: var(--burgundy);
    }

    /* Gallery */
    .gallery {
        padding: 100px 0;
        background: var(--white);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 250px);
        gap: 20px;
    }

    .gallery-item {
        border-radius: 15px;
        overflow: hidden;
        position: relative;
    }

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

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

    .item-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
    .item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .item-3 { grid-column: 3 / 4; grid-row: 1 / 2; }
    .item-4 { grid-column: 4 / 5; grid-row: 1 / 3; }

    /* Contact */
    .contact {
        padding: 100px 0;
        background: var(--burgundy);
        color: var(--white);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .contact h2 {
        color: var(--white);
    }

    .contact p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 40px;
    }

    .info-blocks {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

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

    .info-block .icon {
        width: 50px;
        height: 50px;
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .info-block strong {
        display: block;
        margin-bottom: 5px;
        font-size: 1.1rem;
    }

    .info-block p, .info-block a {
        color: rgba(255,255,255,0.7);
        margin: 0;
        font-size: 0.95rem;
    }

    .info-block a:hover {
        color: var(--white);
        text-decoration: underline;
    }

    /* Form */
    .contact-form-wrapper {
        background: var(--white);
        padding: 40px;
        border-radius: 20px;
        color: var(--text-dark);
    }

    .contact-form h3 {
        font-size: 1.8rem;
        color: var(--burgundy);
        margin-bottom: 30px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px;
        border: 2px solid var(--blush-dark);
        border-radius: 10px;
        font-family: var(--font-body);
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

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

    .form-note {
        font-size: 0.85rem;
        color: var(--text-light);
        margin-top: 15px;
        text-align: center;
    }

    /* Footer */
    footer {
        background: var(--burgundy-dark);
        color: var(--white);
        padding: 40px 0;
    }

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

    .footer-logo {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
    }

    .footer-logo .dot {
        color: var(--blush-dark);
    }

    .copyright {
        color: rgba(255,255,255,0.6);
        font-size: 0.9rem;
    }

    .socials {
        display: flex;
        gap: 20px;
    }

    .socials a {
        color: var(--white);
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .socials a:hover {
        opacity: 1;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero h1 { font-size: 2.8rem; }
        .hero-grid { gap: 40px; }
    }

    @media (max-width: 900px) {
        .hero-grid, .about-grid, .contact-grid {
            grid-template-columns: 1fr;
        }
        
        .hero-visual {
            height: 400px;
            order: -1;
        }
        
        .about-images {
            height: 400px;
            margin-bottom: 40px;
        }

        .nav-links {
            display: none;
        }

        .mobile-toggle {
            display: flex;
        }

        .gallery-grid {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto;
        }

        .item-1, .item-4 {
            grid-column: auto;
            grid-row: auto;
        }
    }

    @media (max-width: 600px) {
        .hero { padding: 100px 0 60px; }
        .hero h1 { font-size: 2.2rem; }
        .hero-btns { flex-direction: column; }
        .btn { width: 100%; text-align: center; }
        .hero-stats { gap: 20px; }
        
        .gallery-grid {
            grid-template-columns: 1fr;
        }
        
        .footer-content {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
    }
