:root {
    --brand-black: #080808;
    --surface-black: #121212;
    --accent-orange: #E94C17;
    --orange-gradient: linear-gradient(135deg, #E94C17 0%, #ff7e54 50%, #b3360e 100%);
    --white: #ffffff;
    --gray-light: #94a3b8;
    --border: rgba(233, 76, 23, 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; }
.logo-container img { height: 50px; width: auto; display: block; }

/* --- 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%, #2a120a 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, #E94C17 20%, #ff7e54 40%, #ff7e54 60%, #E94C17 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-orange { background: var(--orange-gradient); color: #fff; }
.btn-orange:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(233, 76, 23, 0.3); }
.btn-orange:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-outline { border: 1px solid var(--accent-orange); color: var(--accent-orange); background: transparent; margin-left: 15px; }
.btn-outline:hover { background: rgba(233, 76, 23, 0.05); color: var(--white); border-color: var(--white); }

.hero-image { position: relative; padding: 10px; background: var(--orange-gradient); }
.hero-image img { width: 100%; display: block; border: 1px solid #000; filter: grayscale(20%) contrast(110%); }

/* --- 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(--accent-orange); margin-bottom: 15px; }
.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(--accent-orange); 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(--accent-orange); background: #1a0d0a; }
.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(--accent-orange); 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(--accent-orange); }
.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(--accent-orange); }
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='%23E94C17' 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(--accent-orange); }
.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(--accent-orange); }
.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(--accent-orange); 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); }
}