/* ============================================
   CONTACT PAGE — yane.io/contact
   ============================================ */

/* ---- Hero ---- */
.contact-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 180px 12vw 60px;
    box-sizing: border-box;
}

.label-mono {
    font-family: 'Source Code Pro', monospace;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 2vw;
    display: block;
}

.contact-headline {
    font-family: 'Arsenica Trial', serif;
    font-size: 7vw;
    line-height: 1.05;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.contact-subtext {
    font-family: 'Source Code Pro', monospace;
    font-size: clamp(11px, 1vw, 15px);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2.5vw;
    max-width: 550px;
    text-transform: uppercase;
}

/* ---- Email Section ---- */
.contact-email-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12vw;
    margin-top: 2vw;
}

.contact-email-link {
    font-family: 'Source Code Pro', monospace;
    font-size: clamp(18px, 2.2vw, 32px);
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.05em;
    margin-top: 1vw;
    transition: opacity 0.3s ease;
    position: relative;
}

.contact-email-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-email-link:hover::after {
    transform: scaleX(1);
}

.contact-email-link:hover {
    opacity: 0.8;
}

/* ---- Social Icons ---- */
.contact-social-section {
    display: flex;
    justify-content: center;
    padding: 6vw 12vw 0;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 28px;
}

.social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
}

.social-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.social-icon-wrapper:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        0 4px 24px rgba(255, 255, 255, 0.1),
        inset 0 0 12px rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ---- Spacer ---- */
.contact-spacer {
    height: 18vw;
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 70vh;
        padding: 140px 8vw 40px;
    }

    .contact-headline {
        font-size: 12vw;
    }

    .label-mono {
        font-size: 11px;
        letter-spacing: 0.25em;
        margin-bottom: 5vw;
    }

    .contact-subtext {
        font-size: 3.5vw;
        max-width: 90%;
        margin-top: 5vw;
    }

    .contact-email-section {
        margin-top: 4vw;
        padding: 0 8vw;
    }

    .contact-email-link {
        font-size: 5vw;
        margin-top: 2vw;
    }

    .contact-social-section {
        padding: 10vw 8vw 0;
    }

    .social-row {
        gap: 16px;
    }

    .social-icon-wrapper {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .social-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }

    .contact-spacer {
        height: 30vw;
    }
}
