/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --deep-black: #0a0a0a;
    --gold: #c9a961;
    --gold-light: #e4c97a;
    --gray: #1a1a1a;
    --text-light: #e8e8e8;
    --text-muted: #888;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--deep-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== DEMO BANNER ===== */
.demo-banner {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--black);
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 40px;
    z-index: 999;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.logo span { color: var(--text-light); }

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

.nav-links a {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, var(--deep-black) 70%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,97,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -30px); }
}

.hero-content { position: relative; z-index: 2; padding: 40px 20px; }

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span { color: var(--gold); font-style: italic; }

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; }

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-title .divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--gray);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--gold);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.feature-card p { color: var(--text-muted); }

/* ===== CONTACT INLINE (Landing) ===== */
.contact-section {
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--gray) 100%);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--black);
    padding: 50px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.form-group { margin-bottom: 25px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: var(--gray);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== NEWSLETTER ===== */
.newsletter {
    background: var(--black);
    text-align: center;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    background: var(--gray);
    border: 1px solid rgba(201, 169, 97, 0.2);
    color: var(--text-light);
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

/* ===== SHOP ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--gray);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gold);
}

.product-info { padding: 25px; }

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-price {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, var(--deep-black) 70%);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p { color: var(--text-muted); font-size: 1.1rem; }

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    padding: 40px;
    background: var(--black);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-item:last-child { border-bottom: none; }

.info-icon {
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    color: var(--gold);
}

.info-item p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== PRIVACY ===== */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-content h2 {
    color: var(--gold);
    margin: 40px 0 15px;
    font-size: 1.5rem;
}

.privacy-content p,
.privacy-content li {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-content ul {
    padding-left: 25px;
    margin-bottom: 15px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p,
.footer-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: block;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.footer-bottom a:hover { border-bottom-color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        display: none;
        border-top: 1px solid rgba(201, 169, 97, 0.2);
    }
    .nav-links.active { display: flex; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .contact-form { padding: 30px 20px; }
}
