:root {
    --brand-black: #080808;
    --surface-black: #121212;
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #f1e1a0 50%, #b8860b 100%);
    --gold-text: #d4af37;
    --white: #ffffff;
    --gray-light: #94a3b8;
    --border: rgba(212, 175, 55, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
body { background-color: var(--brand-black); color: var(--white); overflow-x: hidden; line-height: 1.6; }
html { scroll-behavior: smooth; }

/* --- Navigation --- */
nav {
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}
.logo-container { display: flex; align-items: center; gap: 15px; }
.logo-container img { height: 40px; width: auto; object-fit: contain; }

/* --- Hero Section --- */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 120px 7% 100px;
    gap: 60px;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, #1a150a 0%, #080808 100%);
}

.hero-content h1 { 
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem; 
    line-height: 1.15; 
    margin-bottom: 28px; 
    font-weight: 600; 
}

.glitter-text {
    background: linear-gradient(to right, #c5a059 20%, #f1e1a0 40%, #f1e1a0 60%, #c5a059 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    display: inline-block;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-content p { font-size: 1.15rem; color: var(--gray-light); margin-bottom: 40px; max-width: 520px; font-weight: 300; }

.btn {
    padding: 16px 32px;
    border-radius: 2px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
}

.btn-gold { 
    background: var(--gold-gradient); 
    color: #000; 
}
.btn-gold:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(184, 134, 11, 0.2); }
.btn-gold:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-outline { 
    border: 1px solid var(--gold-text); 
    color: var(--gold-text); 
    background: transparent; 
    margin-left: 15px;
}
.btn-outline:hover { background: rgba(212, 175, 55, 0.05); color: var(--white); border-color: var(--white); }

.hero-image {
    position: relative;
    padding: 10px;
    background: var(--gold-gradient);
}
.hero-image img { width: 100%; display: block; border: 1px solid #000; }

/* --- Stats Section --- */
.stats-section { padding: 0 7%; margin-top: -50px; position: relative; z-index: 10; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }

.stat-card {
    background: var(--brand-black);
    padding: 40px;
    text-align: center;
}
.stat-card i { color: var(--gold-text); margin-bottom: 15px; width: 28px; height: 28px; }
.stat-card h3 { font-size: 1.8rem; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.stat-card p { color: var(--gray-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- Collections --- */
.section-header { text-align: center; margin: 100px 0 60px; }
.tag { color: var(--gold-text); font-weight: 700; letter-spacing: 4px; font-size: 0.75rem; text-transform: uppercase; display: block; margin-bottom: 15px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; }

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 7% 100px;
}

.collection-card {
    background: var(--surface-black);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: 0.4s;
}
.collection-card:hover { border-color: var(--gold-text); background: #1a1a1a; }
.col-img-box { height: 320px; overflow: hidden; }
.col-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; opacity: 0.8; }
.collection-card:hover .col-img-box img { transform: scale(1.05); opacity: 1; }
.col-content { padding: 30px; text-align: center; }
.col-content h3 { color: var(--gold-text); font-size: 1.1rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.col-content span { color: var(--gray-light); font-size: 0.9rem; }

/* --- Contact --- */
.contact-section { padding: 100px 7%; background: #050505; }
.contact-box {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    border: 1px solid var(--border);
}

.contact-info { 
    background: var(--surface-black); 
    padding: 60px; 
    border-right: 1px solid var(--border);
}
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 25px; color: var(--gold-text); }

.contact-form { padding: 60px; background: var(--brand-black); }
.form-group { margin-bottom: 25px; }
label { display: block; margin-bottom: 10px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-text); }
input, textarea, select {
    width: 100%; padding: 15px;
    border: 1px solid #222; background: #0c0c0c;
    color: var(--white); outline: none; transition: 0.3s;
}
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
input:focus, textarea:focus, select:focus { border-color: var(--gold-text); }

.captcha-container {
    display: flex; align-items: center; gap: 15px; margin-bottom: 30px;
    padding: 15px; border: 1px solid #222; width: fit-content;
}

/* --- Portfolio --- */
.portfolio-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 25px; padding: 0 7% 100px;
}
.mini-card { background: var(--surface-black); border: 1px solid #1a1a1a; transition: 0.3s; }
.mini-card:hover { border-color: var(--gold-text); }
.mini-img { height: 400px; overflow: hidden; }
.mini-img img { width: 100%; height: 100%; object-fit: cover; }
.mini-body { padding: 20px; border-top: 1px solid #1a1a1a; }
.cat-badge { font-size: 0.65rem; color: var(--gold-text); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; display: block; }

footer { padding: 40px 7%; text-align: center; border-top: 1px solid var(--border); color: var(--gray-light); font-size: 0.8rem; }

@media (max-width: 1024px) {
    .hero, .contact-box, .collections-grid, .portfolio-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.8rem; }
    .btn-outline { margin-left: 0; margin-top: 10px; display: block; text-align: center; }
    .contact-info { border-right: none; border-bottom: 1px solid var(--border); }
}