/* ==========================================================================
   Hero — photo plein écran, overlay discret, message unique
   ========================================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    color: var(--color-white);
}

.hero__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(15, 13, 11, 0.68) 0%,
        rgba(15, 13, 11, 0.5) 45%,
        rgba(15, 13, 11, 0.72) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-block: calc(var(--header-height) + var(--space-xl)) var(--space-2xl);
}

.hero__eyebrow {
    font-size: var(--fs-tag);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: var(--space-md);
}

.hero__title {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.hero__title span {
    color: var(--color-gold-light);
    font-style: italic;
    font-weight: 500;
}

.hero__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-lead);
    max-width: 520px;
    margin-bottom: var(--space-lg);
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: var(--space-lg);
    z-index: 2;
    transform: translateX(-50%);
    color: var(--color-white);
    opacity: 0.75;
    animation: hero-bounce 2.4s ease-in-out infinite;
}

.hero__scroll svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.hero__scroll:hover {
    opacity: 1;
}

@keyframes hero-bounce {
    0%,
    100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__scroll {
        animation: none;
    }
}

@media (min-width: 768px) {
    .hero__content {
        padding-block: calc(var(--header-height) + var(--space-2xl)) var(--space-3xl);
    }
}
