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

/* Hero — dark text hero */
.contact-hero-dark {
    min-height: 50vh;
    background: #000000;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    padding: 8rem var(--gutter) 3rem var(--content-left);
}

.contact-page .home-hero-text {
    width: 100%;
    max-width: 1700px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero-dark {
        min-height: 50svh;
        padding: 6rem 1.5rem 3rem 1.5rem;
        justify-content: center;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .contact-hero-dark {
        min-height: 45svh;
        padding: 5rem 1.25rem 2.5rem 1.25rem;
    }
}

/* Contact Section */
.contact-section {
    background: #000000;
    padding: 5rem var(--gutter) 4rem var(--content-left);
}

.contact-section-content {
    max-width: 900px;
}

.contact-email-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
    line-height: 1.05;
}

.contact-email-title a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-email-title a:hover {
    opacity: 0.7;
}

.contact-intro {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.contact-body {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 750px;
}

.contact-body strong {
    font-weight: 700;
    color: #ffffff;
}

/* Footer */
.contact-footer {
    background: #e02020;
    padding: 3rem 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.contact-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: #000000;
    transition: opacity 0.3s ease;
}

.footer-socials a:hover {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
    }

    .contact-section {
        padding: 4rem 1.5rem 3rem;
    }

    .contact-email-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
        margin-bottom: 1rem;
    }

    .contact-footer {
        padding: 2rem 1.5rem;
    }

    .contact-footer-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 40vh;
    }

    .contact-section {
        padding: 3rem 1.25rem 2.5rem;
    }

    .contact-email-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        margin-bottom: 0.75rem;
    }

    .contact-intro,
    .contact-body {
        font-size: 0.95rem;
    }

    .contact-footer {
        padding: 1.5rem 1.25rem;
    }
}
