/* ==========================================================================
   Hero — Full-width parallax, gradient overlay, centered content, mobile fallback
   ========================================================================== */

.dp-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    overflow: hidden;
    text-align: center;
}

.dp-hero--small {
    min-height: 40vh;
}

.dp-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.dp-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(9, 9, 12, 0.4) 0%, rgba(9, 9, 12, 0.85) 100%);
    z-index: 1;
}

.dp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: var(--s-120) var(--s-24) var(--s-80);
}

.dp-hero__content .dp-eyebrow {
    margin-bottom: var(--s-16);
}

.dp-hero__content h1 {
    margin-bottom: var(--s-16);
}

.dp-hero__desc {
    font-size: 1.125rem;
    color: var(--c-text);
    margin-bottom: var(--s-32);
    line-height: 1.6;
}

.dp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-12);
    justify-content: center;
    margin-bottom: var(--s-24);
}

/* Mobile: disable parallax */
@media (max-width: 1023px) {
    .dp-hero__bg {
        background-attachment: scroll;
    }
}
