.contact-layout {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.contact-header {
    margin-bottom: 6rem;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 400;
    font-style: italic;
    margin: 0;
    line-height: 1;
}

.contact-sub-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

.email-section {
    margin-bottom: 6rem;
}

.fancy-email {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 5vw, 2.5rem);
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: opacity 0.3s ease;
}

.fancy-email::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 20%;
    width: 60%;
    height: 1px;
    background: var(--border-color);
    transition: all 0.4s ease;
}

.fancy-email:hover::after {
    width: 100%;
    left: 0;
    background: var(--text-color);
}

.social-section {
    margin-top: 4rem;
}

.social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.social-row a {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-row a:hover {
    opacity: 0.5;
    font-style: italic;
}

.social-divider {
    opacity: 0.2;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .contact-layout {
        margin: 3rem auto;
        padding: 0 1rem;
    }

    .contact-header {
        margin-bottom: 4rem;
    }

    .social-row {
        gap: 1.5rem;
    }

    .fancy-email {
        font-size: 1.2rem;
    }
}