        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --ivory: #F5F5DC;
            --wine-red: #722F37;
            --deep-wine: #5A252A;
            --gold: #D4AF37;
            --dark-gold: #B8941F;
            --charcoal: #2C2C2C;
            --warm-gray: #8B7D6B;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--charcoal);
            background: linear-gradient(135deg, var(--ivory) 0%, #F0F0E8 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--wine-red) 0%, var(--deep-wine) 100%);
            color: var(--ivory);
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(114, 47, 55, 0.3);
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(212,175,55,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(212,175,55,0.1)"/></svg>');
            animation: sparkle 8s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        .header-content {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .logo {
            font-family: 'Dancing Script', cursive;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }

        .tagline {
            font-size: 1rem;
            color: var(--ivory);
            font-style: italic;
            margin-top: 5px;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Navigation */
        nav {
            background: rgba(245, 245, 220, 0.98);
            backdrop-filter: blur(10px);
            padding: 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--gold);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            min-height: 70px;
        }

        .nav-logo {
            font-family: 'Dancing Script', cursive;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--wine-red);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: var(--wine-red);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .nav-links {
            display: flex;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-link {
            color: var(--wine-red);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 25px 30px;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
            border-right: 1px solid rgba(114, 47, 55, 0.1);
        }

        .nav-link:last-child {
            border-right: none;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover {
            color: var(--deep-wine);
            background: rgba(212, 175, 55, 0.08);
        }

        .nav-link:hover::before {
            width: 80%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--ivory) 0%, #F8F6F0 50%, var(--ivory) 100%);
            padding: 50px 0 50px 0;
            margin-top: 70px;
            text-align: center;
            position: relative;
            overflow: visible;
            min-height: auto;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            height: 500px;
        }

        .hero-slide {
            display: none;
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide.active {
            display: flex;
            align-items: center;
            width: 100%;
            height: 100%;
        }

        .hero-text {
            position: static;
            left: auto;
            top: auto;
            transform: none;
            width: 45%;
            max-width: 500px;
            text-align: left;
            z-index: 2;
            padding-right: 40px;
        }

        .hero-images {
            position: static;
            right: auto;
            top: auto;
            transform: none;
            width: 600px;
            height: 500px;
            z-index: 1;
            margin-left: 40px;
        }

        /* Image Slideshow */
        .slideshow-container {
            position: relative;
            width: 600px;
            height: 500px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(114, 47, 55, 0.3);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            display: block;
        }

        /* Navigation arrows */
        .hero-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
        }

        .prev, .next {
            cursor: pointer;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 20px;
            background: rgba(114, 47, 55, 0.8);
            border: none;
            border-radius: 50%;
            user-select: none;
            transition: all 0.3s ease;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
        }

        .prev {
            left: calc(50% - 750px);
            top: 50%;
        }

        .next {
            right: calc(50% - 750px);
            top: 50%;
        }

        .prev:hover, .next:hover {
            background: rgba(114, 47, 55, 0.9);
            transform: scale(1.1);
        }

        /* Dots indicators */
        .dots-container {
            text-align: center;
            margin-top: 20px;
            display: none;
        }

        .dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: rgba(114, 47, 55, 0.4);
            border-radius: 50%;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .dot.active, .dot:hover {
            background-color: var(--wine-red);
            transform: scale(1.2);
        }

        .hero::before {
            content: '? ? ? ? ?';
            position: absolute;
            top: 20%;
            left: -10%;
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '? ? ? ? ?';
            position: absolute;
            bottom: 20%;
            right: -10%;
            font-size: 2.5rem;
            color: var(--wine-red);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            color: var(--wine-red);
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            font-weight: 600;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--warm-gray);
            margin-bottom: 40px;
            font-style: italic;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            color: var(--wine-red);
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gold);
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .service-card {
            background: linear-gradient(135deg, var(--ivory) 0%, #F8F6F0 100%);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--wine-red), var(--gold), var(--wine-red));
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(114, 47, 55, 0.2);
            border-color: var(--gold);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
            display: block;
        }

        .service-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: var(--wine-red);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-card p {
            color: var(--warm-gray);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8F6F0 0%, var(--ivory) 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            color: var(--wine-red);
            margin-bottom: 30px;
            font-weight: 600;
        }

        .about-text p {
            font-size: 1.2rem;
            color: var(--warm-gray);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-image {
            text-align: center;
            position: relative;
        }

        .accordion-placeholder {
            width: 300px;
            height: 400px;
            background: linear-gradient(135deg, var(--wine-red) 0%, var(--deep-wine) 100%);
            border-radius: 20px;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 20px 40px rgba(114, 47, 55, 0.3);
            overflow: hidden;
        }

        .accordion-placeholder::before {
            content: '??';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.3;
        }

        .accordion-placeholder::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 2px solid var(--gold);
            border-radius: 15px;
            opacity: 0.5;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: var(--wine-red);
            color: var(--ivory);
        }

        .contact h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--gold);
            font-weight: 600;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .contact-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--ivory);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid transparent;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.9);
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }

        /* Footer */
        footer {
            background: var(--charcoal);
            color: var(--ivory);
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h4 {
            font-family: 'Cormorant Garamond', serif;
            color: var(--gold);
            margin-bottom: 15px;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .footer-section p,
        .footer-section a {
            color: var(--ivory);
            text-decoration: none;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid var(--warm-gray);
            padding-top: 20px;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) and (min-width: 769px) {
            body {
                padding-top: 70px;
            }

            .nav-logo {
                font-size: 1.6rem;
            }

            .nav-toggle {
                display: flex;
                position: relative;
                z-index: 1002;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(245, 245, 220, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                padding: 0;
                overflow-y: auto;
                z-index: 1001;
                gap: 100px;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-link {
                padding: 40px 60px;
                width: 70%;
                text-align: center;
                border-right: none;
                border-bottom: none;
                font-size: 1.5rem;
                margin: 0;
                border-radius: 15px;
                position: relative;
                overflow: hidden;
                min-height: 80px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .nav-link::before {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                width: 0;
                height: 3px;
                background: var(--gold);
                transition: all 0.3s ease;
                transform: translateX(-50%);
            }

            .nav-link:hover {
                background: rgba(212, 175, 55, 0.15);
                color: var(--deep-wine);
                transform: translateY(0);
            }

            .nav-link:hover::before {
                width: 60%;
            }

            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .logo {
                font-size: 2.4rem;
            }

            .tagline {
                font-size: 1rem;
            }

            .hero {
                padding: 50px 0 50px 0;
                margin-top: 70px;
            }

            .hero-content {
                height: auto;
                min-height: 450px;
            }

            .hero-slide {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .hero-text {
                text-align: center;
            }

            .hero-content {
                padding: 0 20px;
            }

            .hero-slide {
                display: none;
                position: relative;
            }

            .hero-slide.active {
                display: block;
            }

            .hero-text {
                position: relative;
                left: auto;
                top: auto;
                transform: none;
                width: 100%;
                max-width: none;
                text-align: center;
                margin-bottom: 40px;
                padding-right: 0;
                padding: 0 20px;
            }

            .hero-images {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 100%;
                height: auto;
                display: flex;
                justify-content: center;
                margin-left: 0;
            }

            .slideshow-container {
                width: 450px;
                height: 350px;
            }

            .prev {
                left: 20px;
                top: 50%;
                transform: translateY(-50%);
                position: fixed;
            }

            .next {
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                position: fixed;
            }

            .hero h1 {
                font-size: 3.2rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2.6rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 35px;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 50px;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .accordion-placeholder {
                width: 280px;
                height: 360px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                text-align: center;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }

            .nav-logo {
                font-size: 1.5rem;
            }

            .nav-toggle {
                display: flex;
                position: relative;
                z-index: 1002;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(245, 245, 220, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                padding-top: 2rem;
                overflow-y: auto;
                z-index: 1001;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-link {
                padding: 25px 40px;
                width: 100%;
                text-align: center;
                border-right: none;
                border-bottom: 1px solid rgba(114, 47, 55, 0.1);
                font-size: 1.1rem;
                padding: 30px 40px;
                margin: 8px 0;
            }

            .nav-link:hover::before {
                width: 100%;
            }

            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .logo {
                font-size: 2.2rem;
            }

            .tagline {
                font-size: 0.9rem;
            }

            .hero {
                padding: 50px 0 50px 0;
                margin-top: 70px;
            }

            .hero-content {
                display: block;
                height: auto;
                min-height: 400px;
            }

            .hero-slide {
                display: none;
                position: relative;
                width: 100%;
                height: auto;
            }

            .hero-slide.active {
                display: block;
                width: 100%;
                height: auto;
            }

            .hero-text {
                position: relative;
                left: auto;
                top: auto;
                transform: none;
                width: 100%;
                max-width: none;
                text-align: center;
                margin-bottom: 40px;
                padding-right: 0;
                padding: 0 15px;
            }

            .hero-images {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 100%;
                height: auto;
                display: flex;
                justify-content: center;
                margin-left: 0;
            }

            .slideshow-container {
                width: 400px;
                height: 350px;
            }

            .prev {
                left: -60px;
            }

            .next {
                right: -60px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.4rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .accordion-placeholder {
                width: 250px;
                height: 320px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .nav-logo {
                font-size: 1.3rem;
            }

            .nav-links {
                padding-top: 2rem;
                gap: 30px;
            }

            .nav-link {
                padding: 20px 30px;
                margin: 0;
                font-size: 1.1rem;
                width: 85%;
            }

            .container {
                padding: 0 15px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .nav-link {
                font-size: 1rem;
                padding: 18px 30px;
            }

            .service-card {
                padding: 30px 20px;
            }

            .contact-form {
                padding: 30px 20px;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }