 @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');
        
        :root {
            --black: #000000;
            --white: #ffffff;
            --gold: #c9a55f;
            --gold-light: #e8d5a8;
            --gray: #666666;
            --light-gray: #f5f5f5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: var(--black);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--white);
            z-index: 1000;
            padding: 2rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        nav.scrolled {
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--black);
            text-decoration: none;
            letter-spacing: 8px;
        }
        
        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--black);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--gold);
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
        }
        
        .mobile-toggle span {
            width: 30px;
            height: 2px;
            background: var(--black);
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: var(--black);
            color: var(--white);
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 48%, var(--gold) 48%, var(--gold) 52%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, var(--gold) 48%, var(--gold) 52%, transparent 52%);
            background-size: 60px 60px;
            opacity: 0.03;
        }
        
        .hero-content {
            text-align: center;
            z-index: 1;
            animation: fadeIn 1.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-line {
            width: 100px;
            height: 2px;
            background: var(--gold);
            margin: 0 auto 2rem;
        }
        
        .hero h1 {
            font-family: 'Cinzel', serif;
            font-size: 6rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: 12px;
        }
        
        .hero-tagline {
            font-size: 1.3rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 3rem;
            font-weight: 300;
        }
        
        .btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transition: left 0.4s ease;
            z-index: -1;
        }
        
        .btn:hover {
            border-color: var(--gold);
        }
        
        .btn:hover::before {
            left: 0;
        }
        
        /* Section Styles */
        section {
            padding: 8rem 2rem;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }
        
        .section-line {
            width: 80px;
            height: 2px;
            background: var(--gold);
            margin: 0 auto 2rem;
        }
        
        .section-header h2 {
            font-family: 'Cinzel', serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 6px;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: var(--gray);
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        /* About Section */
        #about {
            background: var(--light-gray);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .about-image {
            height: 600px;
            background: var(--black);
            position: relative;
        }
        
        .about-image::after {
            content: '';
            position: absolute;
            top: 20px;
            right: 20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--gold);
            z-index: -1;
        }
        
        .about-text h3 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            letter-spacing: 4px;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.9;
            color: var(--gray);
        }
        
        /* Collections Section */
        .collections-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }
        
        .collection-card {
            position: relative;
            height: 600px;
            background: var(--black);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.4s ease;
        }
        
        .collection-card:hover {
            transform: scale(1.02);
        }
        
        .collection-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.9) 100%);
            z-index: 1;
        }
        
        .collection-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 3rem;
            color: var(--white);
            z-index: 2;
        }
        
        .collection-info h3 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            letter-spacing: 4px;
        }
        
        .collection-info p {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .collection-link {
            color: var(--gold);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Shop Section */
        #shop {
            background: var(--white);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
        }
        
        .product-card {
            background: var(--white);
            transition: all 0.3s ease;
        }
        
        .product-image {
            width: 100%;
            height: 450px;
            background: var(--light-gray);
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .product-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gold);
            color: var(--white);
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
        }
        
        .product-info h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }
        
        .product-price {
            font-size: 1.3rem;
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .product-btn {
            width: 100%;
            padding: 1rem;
            background: var(--black);
            color: var(--white);
            border: none;
            cursor: pointer;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        .product-btn:hover {
            background: var(--gold);
        }
        
        /* Gallery Section */
        #gallery {
            background: var(--black);
            color: var(--white);
        }
        
        #gallery .section-line {
            background: var(--gold);
        }
        
        #gallery .section-header h2 {
            color: var(--white);
        }
        
        #gallery .section-header p {
            color: var(--gold);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .gallery-item {
            height: 400px;
            background: var(--gray);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.4s ease;
        }
        
        .gallery-item:hover::before {
            transform: scaleY(1);
        }
        
        /* Testimonials Section */
        #testimonials {
            background: var(--light-gray);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }
        
        .testimonial-card {
            background: var(--white);
            padding: 3rem;
            border-left: 4px solid var(--gold);
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--gray);
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .testimonial-author {
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
            letter-spacing: 2px;
        }
        
        .testimonial-title {
            color: var(--gold);
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        /* Contact Section */
        #contact {
            background: var(--white);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        
        .contact-item {
            display: flex;
            gap: 2rem;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--black);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-details h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }
        
        .contact-details p {
            color: var(--gray);
            line-height: 1.8;
        }
        
        .map-container {
            margin-top: 2rem;
            height: 350px;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-form {
            background: var(--light-gray);
            padding: 3rem;
        }
        
        .form-group {
            margin-bottom: 2rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.85rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid transparent;
            background: var(--white);
            font-family: 'Raleway', sans-serif;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        /* Footer */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 5rem 2rem 2rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }
        
        .footer-about h3 {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            letter-spacing: 6px;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(201, 165, 95, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--gold);
            color: var(--black);
        }
        
        .footer-section h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            letter-spacing: 3px;
            color: var(--gold);
        }
        
        .footer-section a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--gold);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 1px;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 4rem;
            }
            
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .collections-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 89px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 89px);
                background: var(--white);
                flex-direction: column;
                padding: 3rem 2rem;
                transition: left 0.3s ease;
                align-items: flex-start;
                border-top: 1px solid rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .hero h1 {
                font-size: 3rem;
                letter-spacing: 6px;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 5rem 1.5rem;
            }
            
            .products-grid,
            .gallery-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        /* Scroll Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }