.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: var(--space-24) 0;
    overflow: hidden;
}

.hero--large {
    min-height: 80vh; /* Adjust for homepage */
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient from left to right as seen in design */
    background: linear-gradient(to right, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.4) 50%, rgba(9, 9, 11, 0.1) 100%);
    z-index: -1;
}

.hero__content {
    max-width: 600px; /* Constrain text width for left-aligned layout */
    padding-top: var(--space-12); /* Offset for fixed header */
}

.hero__badge {
    display: inline-block;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: var(--space-4);
}

.hero__title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero__description {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Hero Visuals & Animation */
@keyframes spin-slow {
    100% { transform: rotate(360deg); }
}

.hero__visuals {
    position: relative;
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    pointer-events: none;
    padding: 2rem;
}

.hero__mandala {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 600px;
    opacity: 0.25;
    animation: spin-slow 90s linear infinite;
    color: var(--color-gold);
}

.hero__figure {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: auto;
    z-index: 2;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

@media (max-width: 1024px) {
    .hero__visuals {
        width: 100%;
        margin-top: 2rem;
        padding: 1rem;
    }
    .hero__content {
        position: relative;
        z-index: 5;
    }
}
