
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --burgundy-deep: #722f37;
            --gold-antique: #d4af37;
            --cream-ivory: #f5f5dc;
            --forest-green: #355e3b;
            --copper-bronze: #b87333;
            --charcoal-grey: #36454f;
            --pearl-white: #faf0e6;
        }

        body {
            font-family: 'Times New Roman', serif;
            background: var(--pearl-white);
            color: var(--charcoal-grey);
            line-height: 1.7;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(114, 47, 55, 0.1) 0%, transparent 40%),
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 100px,
                    rgba(53, 94, 59, 0.03) 100px,
                    rgba(53, 94, 59, 0.03) 102px
                );
            pointer-events: none;
            z-index: -1;
        }

        .ornamental-border {
            border: 3px solid var(--gold-antique);
            border-image: repeating-linear-gradient(
                45deg,
                var(--gold-antique),
                var(--gold-antique) 10px,
                var(--copper-bronze) 10px,
                var(--copper-bronze) 20px
            ) 3;
        }

        .elegant-shadow {
            box-shadow: 
                0 8px 32px rgba(114, 47, 55, 0.2),
                inset 0 1px 0 rgba(212, 175, 55, 0.3);
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, var(--burgundy-deep), var(--forest-green));
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 4px solid var(--gold-antique);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo-elegant {
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--gold-antique);
            text-decoration: none;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-variant: small-caps;
        }

        .navigation-refined {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .navigation-refined a {
            color: var(--cream-ivory);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.4s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border: 2px solid transparent;
        }

        .navigation-refined a:hover {
            color: var(--gold-antique);
            border-color: var(--gold-antique);
            transform: translateY(-2px);
            text-shadow: 0 0 8px var(--gold-antique);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger-line {
            width: 30px;
            height: 3px;
            background: var(--gold-antique);
            transition: 0.3s;
        }

        main {
            margin-top: 100px;
        }

        .hero {
            min-height: 90vh;
            background: linear-gradient(
                135deg,
                var(--burgundy-deep) 0%,
                var(--forest-green) 50%,
                var(--copper-bronze) 100%
            );
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--cream-ivory);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/21.jpg') center/cover;
            opacity: 0.2;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 3rem;
            background: rgba(114, 47, 55, 0.8);
            border: 4px solid var(--gold-antique);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transform: perspective(1000px) rotateX(5deg);
            animation: heroFloat 6s ease-in-out infinite;
        }

        @keyframes heroFloat {
            0%, 100% { transform: perspective(1000px) rotateX(5deg) translateY(0px); }
            50% { transform: perspective(1000px) rotateX(5deg) translateY(-10px); }
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: var(--gold-antique);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            font-variant: small-caps;
            letter-spacing: 2px;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .cta-elegant {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: linear-gradient(45deg, var(--gold-antique), var(--copper-bronze));
            color: var(--charcoal-grey);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            border: 3px solid var(--cream-ivory);
            border-radius: 50px;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-elegant:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
            background: linear-gradient(45deg, var(--copper-bronze), var(--gold-antique));
        }

        .section-refined {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--burgundy-deep);
            font-variant: small-caps;
            letter-spacing: 2px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-antique), var(--copper-bronze));
        }

        .about {
            background: var(--cream-ivory);
            border-left: 8px solid var(--forest-green);
            border-right: 8px solid var(--burgundy-deep);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.2rem;
            text-align: justify;
            line-height: 1.8;
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 400px;
            border: 6px solid var(--gold-antique);
            border-radius: 15px;
            transform: rotate(-2deg);
            transition: transform 0.4s ease;
        }

        .about-image img:hover {
            transform: rotate(0deg) scale(1.05);
        }

        .products {
            background: linear-gradient(135deg, var(--pearl-white), var(--cream-ivory));
            border-top: 4px solid var(--copper-bronze);
            border-bottom: 4px solid var(--forest-green);
        }

        .product-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .product-card {
            background: var(--pearl-white);
            padding: 2.5rem;
            border: 3px solid var(--gold-antique);
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .product-card:hover::before {
            opacity: 1;
            animation: shimmer 1.5s ease-in-out;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .product-card:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: 0 20px 40px rgba(114, 47, 55, 0.2);
            border-color: var(--copper-bronze);
        }

        .product-card img {
            width: 100%;
            max-width: 250px;
            border: 4px solid var(--forest-green);
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }

        .gallery {
            background: var(--charcoal-grey);
            color: var(--cream-ivory);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border: 4px solid var(--gold-antique);
            border-radius: 15px;
            transform: perspective(1000px) rotateY(5deg);
            transition: all 0.5s ease;
        }

        .gallery-item:nth-child(even) {
            transform: perspective(1000px) rotateY(-5deg);
        }

        .gallery-item:hover {
            transform: perspective(1000px) rotateY(0deg) scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .gallery-item:hover img {
            filter: sepia(30%) hue-rotate(30deg);
        }

        .prices {
            background: linear-gradient(135deg, var(--burgundy-deep), var(--forest-green));
            color: var(--cream-ivory);
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .price-card {
            background: var(--pearl-white);
            color: var(--charcoal-grey);
            padding: 3rem 2rem;
            border: 4px solid var(--gold-antique);
            border-radius: 25px;
            text-align: center;
            position: relative;
            transform: perspective(800px) rotateX(10deg);
            transition: all 0.5s ease;
        }

        .price-card:hover {
            transform: perspective(800px) rotateX(0deg) translateY(-15px);
            box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
        }

        .price-card.featured {
            border-color: var(--copper-bronze);
            border-width: 6px;
            transform: perspective(800px) rotateX(10deg) scale(1.05);
        }

        .price-amount {
            font-size: 3rem;
            font-weight: bold;
            color: var(--burgundy-deep);
            margin: 1rem 0;
        }

        .feedback {
            background: var(--cream-ivory);
            border-top: 6px solid var(--gold-antique);
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--pearl-white);
            padding: 2.5rem;
            border-left: 6px solid var(--forest-green);
            border-right: 6px solid var(--burgundy-deep);
            border-radius: 15px;
            position: relative;
            transform: skewY(1deg);
            transition: all 0.4s ease;
        }

        .testimonial-card:nth-child(even) {
            transform: skewY(-1deg);
        }

        .testimonial-card:hover {
            transform: skewY(0deg) scale(1.02);
            box-shadow: 0 15px 30px rgba(114, 47, 55, 0.15);
        }

        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--burgundy-deep);
            text-align: right;
        }

        .faq {
            background: linear-gradient(135deg, var(--forest-green), var(--charcoal-grey));
            color: var(--cream-ivory);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 2rem;
            border: 2px solid var(--gold-antique);
            border-radius: 10px;
            overflow: hidden;
            background: rgba(245, 245, 220, 0.1);
        }

        .faq-question {
            padding: 1.5rem;
            background: var(--burgundy-deep);
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .faq-question:hover {
            background: var(--copper-bronze);
            transform: translateX(10px);
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 1.5rem;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: rgba(245, 245, 220, 0.05);
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 200px;
        }

        .contact-form {
            background: var(--pearl-white);
            padding: 3rem;
            border: 4px solid var(--gold-antique);
            border-radius: 20px;
            max-width: 600px;
            margin: 3rem auto;
           
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: var(--burgundy-deep);
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 3px solid var(--forest-green);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--cream-ivory);
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--gold-antique);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
            transform: scale(1.02);
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(45deg, var(--burgundy-deep), var(--forest-green));
            color: var(--cream-ivory);
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(114, 47, 55, 0.3);
            background: linear-gradient(45deg, var(--forest-green), var(--burgundy-deep));
        }

        .disclaimer {
            background: var(--charcoal-grey);
            color: var(--cream-ivory);
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
            border-top: 4px solid var(--gold-antique);
        }

        footer {
            background: linear-gradient(135deg, var(--burgundy-deep), var(--charcoal-grey));
            color: var(--cream-ivory);
            padding: 3rem 2rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--gold-antique);
            margin-bottom: 1rem;
            font-variant: small-caps;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links a {
            color: var(--cream-ivory);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            padding: 0.3rem 0;
        }

        .footer-links a:hover {
            color: var(--gold-antique);
        }

        .cookie-banner {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--burgundy-deep), var(--forest-green));
            color: var(--cream-ivory);
            padding: 1.5rem;
            text-align: center;
            
            transition: transform 0.5s ease;
            z-index: 1001;
            border-top: 4px solid var(--gold-antique);
        }

        .cookie-banner.show {
            display: block;
        }

        .cookie-buttons {
            margin-top: 1rem;
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 0.8rem 2rem;
            border: 2px solid var(--gold-antique);
            background: transparent;
            color: var(--cream-ivory);
            cursor: pointer;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .cookie-btn:hover {
            background: var(--gold-antique);
            color: var(--charcoal-grey);
            transform: scale(1.05);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: var(--pearl-white);
            padding: 3rem;
            border-radius: 20px;
            border: 4px solid var(--gold-antique);
            text-align: center;
            max-width: 500px;
            margin: 2rem;
        }

        .modal-content h3 {
            color: var(--burgundy-deep);
            margin-bottom: 1rem;
        }

        .modal-btn {
            padding: 1rem 2rem;
            background: var(--forest-green);
            color: var(--cream-ivory);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .navigation-refined {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--burgundy-deep);
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
            }

            .navigation-refined.active {
                display: flex;
            }

            .burger-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-content {
                margin: 1rem;
                padding: 2rem;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
            }

            .testimonials-container {
                grid-template-columns: 1fr;
            }
        }

