.contact-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    padding: 0 var(--space-xl);
    color: var(--color-text);
    overflow: hidden;
}

/* SLIDER */
.contact-hero__slider {
    position: absolute;
    inset: 0;
}

.contact-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity var(--transition-slow);
}

/* ACTIVE */
.contact-slide.active {
    opacity: 1;
}

/* OVERLAY */
.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.9) 30%,
        rgba(0,0,0,0.5) 60%,
        rgba(0,0,0,0.1) 100%
    );
}

/* CONTENT */
.contact-hero__content {
    position: relative;
    max-width: 500px;
    z-index: 2;
}

/* SUBTITLE */
.contact-hero__subtitle {
    color: var(--color-primary);
    font-size: var(--fs-sm);
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

/* TITLE */
.contact-hero__content h1 {
    font-size: var(--fs-hero);
    font-family: var(--font-title);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    position: relative;
}

/* TRAIT */
.contact-hero__content h1::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    margin-top: 10px;
}

/* TEXT */
.contact-hero__content p {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .contact-hero {
        height: 90vh;
        padding: 0 var(--space-md);
        text-align: center;
        justify-content: center;
    }

    .contact-hero__content {
        max-width: 320px;
    }

    .contact-hero__content h1 {
        font-size: 30px;
    }

    .contact-hero__content h1::after {
        margin-left: auto;
        margin-right: auto;
    }
}