/* =========================
CONTACT PAGE
========================= */

.contact {

    position: relative;

    min-height: 100svh;

    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 140px 20px 100px;
}

/* =========================
BACKGROUND
========================= */

.contact-bg {

    position: absolute;
    inset: -40px;

    background-image:
        url('../../assets/images/artist/ethan-needham-hero-black-and-white.png');

    background-size: cover;
    background-position: center;

    opacity: 0.35;

    filter: blur(14px);

    transform: scale(1.08);

    z-index: 0;
}

.contact::after {

    content: '';

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.70),
            rgba(0,0,0,0.85)
        );

    z-index: 1;
}

/* =========================
CONTENT
========================= */

.contact-inner {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 700px;

    padding: 20px;
}

.contact-inner h1 {

    font-family: var(--font-display);

    font-size: clamp(3rem, 8vw, 6rem);

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: 0.04em;

    text-transform: uppercase;
}

/* =========================
SIGNAL TEXT
========================= */

.contact-intro {

    margin-top: 24px;

    font-family: var(--font-mono);

    font-size: 0.8rem;

    font-weight: 400;

    letter-spacing: 0.35em;

    text-transform: uppercase;

    opacity: 0.55;
}

.contact-intro::before {

    content: '';

    display: block;

    width: 40px;
    height: 1px;

    margin: 0 auto 14px;

    background: rgba(255,255,255,0.35);
}

/* =========================
CONTACT GRID
========================= */

.contact-grid {

    margin-top: 70px;

    display: flex;
    flex-direction: column;

    gap: 40px;
}

.contact-item {

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.label {

    font-family: var(--font-mono);

    font-size: 0.7rem;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    opacity: 0.5;
}

.contact-item a {

    font-family: var(--font-display);

    font-size: clamp(1rem, 2vw, 1.15rem);

    color: white;

    text-decoration: none;

    opacity: 0.85;

    transition: opacity var(--transition-fast);
}

.contact-item a:hover {

    opacity: 1;
}

/* =========================
MOBILE
========================= */

@media (max-width: 768px) {

    .contact {

        padding: 120px 20px 80px;
    }

    .contact-inner h1 {

        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .contact-grid {

        margin-top: 50px;
    }

}