 :root {
            --rich-black: #0A0A0A;
            --deep-black: #000000;
            --charcoal: #1A1A1A;
            --gold: #D4AF37;
            --bright-gold: #FFD700;
            --bronze: #CD7F32;
            --dark-gold: #B8941F;
            --champagne: #F7E7CE;
            --off-white: #F5F5F5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Raleway', sans-serif;
            background: var(--deep-black);
            color: var(--off-white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Isi Agu Pattern Background */
        .pattern-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(212, 175, 55, 0.02) 100px, rgba(212, 175, 55, 0.02) 200px);
            pointer-events: none;
            z-index: 0;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
            animation: slideDown 0.8s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 900;
            letter-spacing: 8px;
            background: linear-gradient(135deg, var(--bright-gold) 0%, var(--gold) 50%, var(--bronze) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        }

        .nav-links {
            display: flex;
            gap: 3.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--off-white);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 3px;
            position: relative;
            transition: all 0.3s;
            text-transform: uppercase;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px var(--gold);
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .menu-toggle span {
            width: 32px;
            height: 3px;
            background: var(--gold);
            transition: all 0.3s;
        }

        /* Hero Section */
        .hero {
            margin-top: 95px;
            height: 100vh;
            position: relative;
            overflow: hidden;
            background: var(--deep-black);
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .hero-video img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.4) contrast(1.2);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(212, 175, 55, 0.2) 100%),
                radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.15), transparent);
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
            width: 90%;
            max-width: 1100px;
        }

        .hero-badge {
            font-size: 0.9rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            color: var(--gold);
            font-weight: 600;
            animation: fadeInUp 1s ease 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-family: 'Cinzel', serif;
            font-size: 7rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: 10px;
            background: linear-gradient(135deg, var(--bright-gold) 0%, var(--champagne) 50%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
            animation: fadeInUp 1s ease 0.5s both;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            font-weight: 300;
            line-height: 1.8;
            color: var(--champagne);
            animation: fadeInUp 1s ease 0.7s both;
            letter-spacing: 2px;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            animation: fadeInUp 1s ease 0.9s both;
        }

        .btn-primary, .btn-secondary {
            padding: 1.3rem 3.5rem;
            font-size: 0.95rem;
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 3px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--bronze));
            color: var(--deep-black);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--deep-black);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
        }

        /* Decorative Elements */
        .gold-accent {
            position: absolute;
            width: 200px;
            height: 200px;
            border: 3px solid var(--gold);
            opacity: 0.3;
            animation: rotate 30s linear infinite;
        }

        .gold-accent-1 {
            top: 10%;
            right: 10%;
            transform: rotate(45deg);
        }

        .gold-accent-2 {
            bottom: 15%;
            left: 8%;
            transform: rotate(-30deg);
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Collections Section */
        .collections {
            padding: 10rem 3rem;
            background: var(--rich-black);
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 7rem;
            animation: fadeInUp 0.8s ease;
        }

        .section-badge {
            font-size: 0.85rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--bright-gold), var(--champagne));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 6px;
        }

        .section-description {
            font-size: 1.2rem;
            color: var(--champagne);
            max-width: 800px;
            margin: 0 auto;
            line-height: 2;
            font-weight: 300;
        }

        .collection-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .collection-card {
            position: relative;
            height: 600px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.5s ease;
            border: 2px solid rgba(212, 175, 55, 0.2);
            animation: fadeInUp 0.8s ease;
            animation-fill-mode: both;
        }

        .collection-card:nth-child(1) { animation-delay: 0.1s; }
        .collection-card:nth-child(2) { animation-delay: 0.2s; }
        .collection-card:nth-child(3) { animation-delay: 0.3s; }
        .collection-card:nth-child(4) { animation-delay: 0.4s; }

        .collection-card:hover {
            transform: scale(1.02);
            border-color: var(--gold);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .collection-image {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .collection-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.9) 100%);
            z-index: 1;
        }

        .collection-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .collection-card:hover .collection-image img {
            transform: scale(1.15);
        }

        .collection-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 3rem;
            z-index: 2;
        }

        .collection-info h3 {
            font-family: 'Cinzel', serif;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--gold);
            font-weight: 700;
            letter-spacing: 4px;
        }

        .collection-info p {
            font-size: 1.05rem;
            color: var(--champagne);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .collection-link {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            color: var(--gold);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: gap 0.3s;
        }

        .collection-link:hover {
            gap: 1.5rem;
        }

        /* About Section */
        .about {
            padding: 10rem 3rem;
            background: var(--deep-black);
            position: relative;
        }

        .about-content {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8rem;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Cinzel', serif;
            font-size: 4rem;
            margin-bottom: 2.5rem;
            background: linear-gradient(135deg, var(--bright-gold), var(--champagne));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 4px;
        }

        .about-text p {
            font-size: 1.15rem;
            color: var(--champagne);
            margin-bottom: 2rem;
            line-height: 2.2;
            font-weight: 300;
        }

        .heritage-highlights {
            margin-top: 3rem;
            display: grid;
            gap: 2rem;
        }

        .heritage-item {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding: 2rem;
            background: rgba(212, 175, 55, 0.05);
            border-left: 4px solid var(--gold);
        }

        .heritage-icon {
            font-size: 2.5rem;
        }

        .heritage-text h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .heritage-text p {
            color: var(--champagne);
            font-size: 1rem;
            margin-bottom: 0;
        }

        .about-images {
            position: relative;
            height: 700px;
        }

        .about-img-main {
            position: absolute;
            width: 75%;
            height: 600px;
            right: 0;
            top: 0;
            overflow: hidden;
            border: 4px solid var(--gold);
            box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
        }

        .about-img-secondary {
            position: absolute;
            width: 55%;
            height: 450px;
            left: 0;
            bottom: 0;
            overflow: hidden;
            border: 4px solid var(--gold);
            box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
        }

        .about-img-main img, .about-img-secondary img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Gallery/Lookbook */
        .gallery {
            padding: 10rem 3rem;
            background: var(--rich-black);
        }

        .gallery-grid {
            max-width: 1800px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .gallery-item {
            position: relative;
            height: 550px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
        }

        .gallery-item:hover {
            border-color: var(--gold);
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.2);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.95) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2.5rem;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .gallery-overlay p {
            color: var(--champagne);
            font-size: 1rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 10rem 3rem;
            background: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1), transparent);
        }

        .testimonial-grid {
            max-width: 1600px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 4rem;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: rgba(212, 175, 55, 0.05);
            padding: 4rem;
            border: 2px solid rgba(212, 175, 55, 0.3);
            transition: all 0.4s;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-family: 'Cinzel', serif;
            font-size: 8rem;
            color: var(--gold);
            opacity: 0.2;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 2;
            margin-bottom: 2.5rem;
            font-style: italic;
            color: var(--champagne);
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(212, 175, 55, 0.3);
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), var(--bronze));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            color: var(--deep-black);
            font-weight: 700;
            border: 3px solid var(--gold);
        }

        .author-info h5 {
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--gold);
            font-weight: 600;
        }

        .author-info p {
            font-size: 0.95rem;
            color: var(--champagne);
            opacity: 0.8;
        }

        /* Contact Section */
        .contact {
            padding: 10rem 3rem;
            background: var(--deep-black);
        }

        .contact-content {
            max-width: 1600px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 6rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 3.5rem;
        }

        .contact-item {
            display: flex;
            gap: 2.5rem;
            align-items: flex-start;
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), var(--bronze));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--deep-black);
            font-size: 2rem;
            flex-shrink: 0;
            border: 3px solid var(--gold);
        }

        .contact-details h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.6rem;
            color: var(--gold);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .contact-details p {
            font-size: 1.1rem;
            color: var(--champagne);
            line-height: 2;
        }

        .contact-details a {
            color: var(--champagne);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-details a:hover {
            color: var(--gold);
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 60px;
            height: 60px;
            background: transparent;
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--gold);
            color: var(--deep-black);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .map-container {
            height: 600px;
            overflow: hidden;
            border: 4px solid var(--gold);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(1) invert(1) contrast(0.9);
        }

        /* Footer */
        footer {
            background: var(--deep-black);
            border-top: 2px solid var(--gold);
            padding: 5rem 3rem 2rem;
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-section h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--gold);
            font-weight: 700;
        }

        .footer-section p,
        .footer-section a {
            color: var(--champagne);
            text-decoration: none;
            display: block;
            margin-bottom: 1.2rem;
            transition: color 0.3s;
            line-height: 1.9;
        }

        .footer-section a:hover {
            color: var(--gold);
        }

        .footer-logo {
            font-family: 'Cinzel', serif;
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: 6px;
            background: linear-gradient(135deg, var(--bright-gold), var(--champagne));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
        }

        .footer-bottom {
            max-width: 1600px;
            margin: 0 auto;
            padding-top: 3rem;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            text-align: center;
            color: var(--champagne);
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 5rem;
            }

            .collection-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

