/* ========== HERO ULTRA PREMIUM ========== */
.hero {
    margin-top: 70px;
    padding: 180px 0 160px;
    background: 
        radial-gradient(ellipse at top, rgba(200, 155, 60, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(26, 15, 8, 0.4) 0%, transparent 60%),
        linear-gradient(135deg, #1a0f08 0%, #0a0808 50%, #1a0f08 100%);
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(200, 155, 60, 0.8);
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg,
            rgba(200, 155, 60, 0.15) 60deg,
            transparent 120deg,
            rgba(200, 155, 60, 0.2) 180deg,
            transparent 240deg,
            rgba(200, 155, 60, 0.15) 300deg,
            transparent 360deg);
    animation: heroSpiral 40s linear infinite;
    pointer-events: none;
}

@keyframes heroSpiral {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-text {
    flex: 1;
    max-width: 580px;
    animation: fadeInLeft 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-tagline {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.7rem;
    color: var(--gold-light);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: 
        linear-gradient(135deg, 
            rgba(200, 155, 60, 0.25), 
            rgba(200, 155, 60, 0.1));
    border-radius: 50px;
    border: 2px solid var(--gold);
    margin-bottom: 28px;
    box-shadow: 
        0 0 30px rgba(200, 155, 60, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: taglinePulse 3s ease-in-out infinite;
}

@keyframes taglinePulse {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(200, 155, 60, 0.4),
            0 8px 25px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: scale(1);
    }
    50% { 
        box-shadow: 
            0 0 50px rgba(200, 155, 60, 0.8),
            0 12px 35px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: scale(1.02);
    }
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    margin: 0 0 12px;
    color: transparent;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        var(--gold-light) 25%,
        #ffffff 50%,
        var(--gold-light) 75%,
        #ffffff 100%);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
    animation: heroTitleGradient 8s ease infinite;
    position: relative;
    text-shadow: 
        0 0 80px rgba(200, 155, 60, 0.6),
        0 10px 40px rgba(0, 0, 0, 0.5);
}

@keyframes heroTitleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin: 0 0 32px;
    color: var(--gold-light);
    position: relative;
    display: inline-block;
    animation: subtitleFloat 4s ease-in-out infinite;
    text-shadow: 
        0 0 30px rgba(200, 155, 60, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.5);
}

@keyframes subtitleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.hero p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 2;
    color: rgba(247, 241, 232, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 44px;
    background: linear-gradient(135deg, 
        var(--gold) 0%, 
        var(--gold-light) 25%,
        var(--gold) 50%,
        var(--gold-light) 75%,
        var(--gold) 100%);
    background-size: 400% 100%;
    color: #000000;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 
        0 0 40px rgba(200, 155, 60, 0.6),
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.8) 50%, 
        transparent 70%);
    animation: buttonShine 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes buttonShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(180deg); }
}

.btn-cta:hover {
    transform: translateY(-6px) scale(1.05);
    background-position: 100% 0;
    box-shadow: 
        0 0 80px rgba(200, 155, 60, 1),
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-cta:active {
    transform: translateY(-3px) scale(1.02);
}

.hero-image {
    flex-shrink: 0;
    position: relative;
    animation: fadeInRight 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: 
        drop-shadow(0 0 50px rgba(200, 155, 60, 0.9))
        drop-shadow(0 50px 100px rgba(0, 0, 0, 0.7));
    animation: beanFloat 7s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes beanFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% { 
        transform: translateY(-25px) rotate(-4deg) scale(1.05);
    }
    50% { 
        transform: translateY(-40px) rotate(0deg) scale(1.08);
    }
    75% { 
        transform: translateY(-25px) rotate(4deg) scale(1.05);
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: orbFloat 15s ease-in-out infinite;
    pointer-events: none;
}

.orb.orb1 {
    width: 250px;
    height: 250px;
    background: rgba(200, 155, 60, 0.3);
    top: -80px;
    right: -80px;
    animation-delay: 0s;
}

.orb.orb2 {
    width: 180px;
    height: 180px;
    background: rgba(74, 43, 25, 0.4);
    bottom: -60px;
    left: -60px;
    animation-delay: 2s;
}

.orb.orb3 {
    width: 200px;
    height: 200px;
    background: rgba(200, 155, 60, 0.25);
    top: 50%;
    left: -80px;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(40px, -40px) scale(1.2);
        opacity: 0.8;
    }
}
