:root {
    --black: #0B0B0D;
    --deep-black: #050505;
    --charcoal: #1A1A1D;
    --gold: #D4AF37;
    --bright-gold: #F4D03F;
    --dark-gold: #B8941E;
    --cream: #F5F1E8;
    --soft-cream: #E8E4DA;
    --brand-font: 'Italiana', serif;
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background: var(--black);
    color: var(--cream);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(11, 11, 13, 0.95);
    padding: 15px 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-logo {
    font-family: var(--brand-font);
    font-size: 24px;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--cream);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.nav a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 11, 13, 0.85) 0%, rgba(11, 11, 13, 0.65) 50%, rgba(61, 40, 23, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
    animation: heroFadeIn 1.5s ease-out forwards;
    opacity: 0;
}

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

.hero-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 30px;
    animation: lineExpand 1s ease-out 0.5s forwards;
    transform: scaleX(0);
}

@keyframes lineExpand {
    to { transform: scaleX(1); }
}

.hero-brand {
    font-family: var(--brand-font);
    font-size: 28px;
    letter-spacing: 12px;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: uppercase;
    animation: brandGlow 3s ease-in-out infinite;
}

@keyframes brandGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    50% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
}

.hero-headline {
    font-family: var(--heading-font);
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--cream);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.hero-accent {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 30px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.hero-subheadline {
    font-size: 18px;
    font-weight: 300;
    color: var(--soft-cream);
    letter-spacing: 3px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 18px 55px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: buttonPulse 2.5s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 15px 45px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3); }
}

.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.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(212, 175, 55, 0.6);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    display: inline-block;
    padding: 18px 55px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--deep-black);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-quiz-glow {
    animation: heroQuizGlow 2.5s ease-in-out infinite;
}

@keyframes heroQuizGlow {
    0%, 100% { 
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
        border-color: var(--gold);
    }
    50% { 
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3);
        border-color: var(--bright-gold);
    }
}

.btn-quiz-glow:hover {
    animation: none;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
    text-align: center;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
    margin: 0 auto;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollDot {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* Featured Section */
.featured {
    background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
    padding: 120px 0;
}

.section-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-title {
    font-family: var(--heading-font);
    font-size: 56px;
    font-weight: 300;
    color: var(--cream);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.title-accent {
    width: 100px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 80px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.product-card {
    background: rgba(26, 26, 29, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-link {
    text-decoration: none;
    display: block;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: #fff;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 11, 13, 0.3) 100%);
}

.product-content {
    padding: 35px 30px;
}

.product-name {
    font-family: var(--heading-font);
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 8px;
}

.product-brand {
    font-size: 14px;
    color: var(--soft-cream);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-occasion {
    font-size: 12px;
    color: rgba(245, 241, 232, 0.6);
    margin-bottom: 20px;
    font-style: italic;
}

.product-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px 0 25px 0;
    opacity: 0.5;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 16px 0;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-black);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.4s ease;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.view-all-container {
    text-align: center;
    margin-bottom: 40px;
}

.view-all-btn {
    display: inline-block;
    padding: 16px 45px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--gold);
    color: var(--deep-black);
}

.disclosure {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 11px;
    color: rgba(245, 241, 232, 0.5);
    font-style: italic;
}

/* Quiz CTA */
.quiz-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    text-align: center;
}

.quiz-line {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 30px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.quiz-cta h2 {
    font-family: var(--heading-font);
    font-size: 56px;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 25px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.quiz-cta p {
    font-size: 18px;
    color: var(--soft-cream);
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
}

.btn-gold {
    display: inline-block;
    padding: 22px 65px;
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.btn-quiz-pulse {
    animation: quizPulse 2.5s ease-in-out infinite;
    position: relative;
}

@keyframes quizPulse {
    0%, 100% { 
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.7), 0 0 40px rgba(212, 175, 55, 0.5);
        transform: scale(1.02);
    }
}

.btn-quiz-pulse:hover {
    animation: none;
}

.quiz-social-proof {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.9;
}

.quiz-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 48px;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    color: var(--soft-cream);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Trust */
.trust {
    background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 50%, var(--black) 100%);
    padding: 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.trust-badge {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.trust-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 25px;
}

.trust-badge h3 {
    font-family: var(--heading-font);
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 1px;
}

.trust-badge p {
    font-size: 14px;
    color: var(--soft-cream);
    line-height: 1.6;
    font-weight: 300;
}

/* Footer */
.footer {
    background: var(--deep-black);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.footer-brand {
    font-family: var(--brand-font);
    font-size: 32px;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-about {
    font-size: 14px;
    color: var(--soft-cream);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclosure {
    font-size: 11px;
    color: rgba(245, 241, 232, 0.5);
    margin-bottom: 20px;
    font-style: italic;
}

.footer-copyright {
    font-size: 11px;
    color: rgba(245, 241, 232, 0.4);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .container, .container-narrow { padding: 0 30px; }
    .header { padding: 20px 30px; }
    .nav { display: none; }
    .hero-headline { font-size: 56px; }
    .hero-brand { font-size: 24px; letter-spacing: 8px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .section-title { font-size: 42px; }
    .quiz-cta h2 { font-size: 42px; }
    .quiz-stats { flex-direction: column; gap: 30px; }
    .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero-headline { font-size: 42px; }
    .hero-subheadline { font-size: 14px; }
    .hero-brand { font-size: 20px; letter-spacing: 6px; }
    .btn-primary, .btn-secondary { padding: 16px 40px; font-size: 12px; }
    .products-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 36px; }
    .quiz-cta h2 { font-size: 36px; }
}
