:root {
    --primary: #3e1b1b; /* Deep Mahogany */
    --accent: #d4af37; /* Golden */
    --bg: #f5f5f0;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

/* Navbar */
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 245, 240, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.tagline {
    font-size: 0.55rem;
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--accent); }

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons a { color: var(--primary); font-size: 1.1rem; }

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    position: relative;
    z-index: 2;
    align-items: center;
    gap: 60px;
}

.hero-content h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 30px;
}

.hero-content h1 span { color: var(--accent); }

.divider {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 45px;
}

.btn {
    padding: 16px 35px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.feat {
    display: flex;
    gap: 15px;
    align-items: center;
}

.feat i {
    font-size: 1.4rem;
    color: var(--accent);
}

.feat h4 { font-size: 0.9rem; }
.feat p { font-size: 0.75rem; color: var(--text-light); }

.quote-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.04);
}

.quote-box i { font-size: 1.8rem; color: var(--accent); margin-bottom: 20px; display: block; }
.quote-box h3 { font-size: 2.2rem; margin-bottom: 20px; color: var(--primary); line-height: 1.3; }
.quote-box p { color: var(--text-light); font-style: italic; font-size: 1rem; }

/* Banner Bar */
.banner-bar {
    background: var(--primary);
    color: var(--white);
    padding: 40px 0;
}

.banner-bar .container {
    display: flex;
    justify-content: space-between;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-item i { font-size: 2rem; color: var(--accent); }
.banner-item h4 { font-size: 1rem; color: var(--white); margin-bottom: 2px; }
.banner-item p { font-size: 0.8rem; opacity: 0.6; }

/* Collection */
.section-title { text-align: center; margin-bottom: 80px; }
.section-title h2 { font-size: 3.8rem; color: var(--primary); margin-bottom: 10px; }
.section-title p { color: var(--accent); font-weight: 600; letter-spacing: 2px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.product-card { text-align: center; }

.product-img {
    height: 450px;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover img { transform: scale(1.1); }
.product-card h3 { font-size: 1.6rem; margin-bottom: 5px; }
.product-card p { font-size: 0.95rem; color: var(--accent); font-weight: 600; }

/* Story */
.story { background: #efece5; border-top: 1px solid rgba(0,0,0,0.05); }
.story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.story-img { position: relative; }
.story-img img { 
    width: 100%; 
    border-radius: 4px; 
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
}
.story-text h2 { font-size: 3.5rem; margin-bottom: 30px; color: var(--primary); line-height: 1.2; }
.story-text p { margin-bottom: 25px; font-size: 1.1rem; color: var(--text-light); }
.sub { color: var(--accent); font-weight: 700; letter-spacing: 4px; margin-bottom: 15px; font-size: 0.9rem; }
.btn-outline { 
    border: 1px solid var(--primary); 
    color: var(--primary); 
    margin-top: 20px; 
    padding: 14px 35px;
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Footer */
footer { background: #1a0a0a; color: var(--white); padding: 100px 0 60px; border-top: 5px solid var(--primary); }
.footer-content { display: flex; justify-content: space-between; gap: 80px; margin-bottom: 100px; align-items: flex-start; }
.f-brand { flex: 1.5; }
.f-brand h2 { font-family: 'Cinzel', serif; letter-spacing: 4px; margin-bottom: 25px; font-size: 2.2rem; color: var(--white); }
.f-brand p { opacity: 0.6; max-width: 480px; font-size: 1rem; line-height: 1.8; margin-bottom: 40px; }
.social { display: flex; gap: 25px; }
.social a { color: var(--accent); font-size: 1.6rem; transition: var(--transition); }
.social a:hover { color: var(--white); transform: translateY(-8px); }
.f-contact { flex: 1; }
.f-contact h4 { color: var(--accent); margin-bottom: 35px; font-size: 1.3rem; letter-spacing: 2px; text-transform: uppercase; }
.f-contact p { margin-bottom: 20px; opacity: 0.7; font-size: 1rem; display: flex; align-items: center; gap: 15px; }
.f-contact i { color: var(--accent); width: 25px; text-align: center; }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 60px; font-size: 0.85rem; opacity: 0.4; letter-spacing: 1.5px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .hero-bg { display: none; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 3.5rem; }
    .divider { margin: 0 auto 30px; }
    .hero-features { justify-content: center; }
    .hero-desc { margin: 0 auto 40px; }
    .nav-links { display: none; }
    .nav-links.active_mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--bg);
        padding: 40px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        gap: 25px;
    }
    .menu-toggle { display: block; }
    .banner-bar .container { flex-direction: column; gap: 40px; align-items: center; }
    .story-grid { grid-template-columns: 1fr; text-align: center; }
    .story-text h2 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .quote-box { padding: 40px 30px; }
    .quote-box h3 { font-size: 1.8rem; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .section-title h2 { font-size: 3rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-features { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .logo-text { display: none; }
    .footer-content { flex-direction: column; text-align: center; gap: 60px; align-items: center; }
}
