/* ==========================================================================
   CONTACT SECTION SCOPED ARCHITECTURE
   ========================================================================== */

/* 1. Panel Host Setup */
#contact.panel {
    background-color: #10103F;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* 2. Main Two-Column Flex Layout Area */
#contact .contact-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 8% 40px 8%;
    box-sizing: border-box;
}

/* --- LEFT COLUMN STYLING --- */
#contact .contact-left {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#contact .contact-left h1.contact-title {
    color: #ffffff;
    margin: 0 0 16px 0;
    font-family: "oscine", sans-serif;
    font-size: 3.5vw;
    font-weight: 300;
    text-transform: lowercase;
    pointer-events: auto;
    line-height: 1.1;
}

#contact .contact-left h2.contact-subtitle {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

#contact .contact-left p.contact-body {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 36px 0;
    max-width: 540px;
}

#contact .contact-left a.contact-email {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 4px;
    transition: border-color 0.3s ease;
}

#contact .contact-left a.contact-email:hover {
    border-color: rgba(255, 255, 255, 1);
}

/* --- RIGHT COLUMN STYLING --- */
#contact .contact-right {
    flex: 1;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#contact .contact-right .headshot-frame {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#contact .contact-right .contact-headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#contact .contact-right .contact-brand-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact .contact-right .contact-logo-text {
    font-family: "oscine", sans-serif;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: lowercase;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

#contact .contact-right .contact-tagline {
    font-size: 0.9rem;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}


/* ==========================================================================
   BLACK PSEUDO-FOOTER (Bottom 1/4 of Screen Layout)
   ========================================================================== */
#contact .pseudo-footer {
    width: 100%;
    background-color: #000000;
    padding: 48px 8% 24px 8%;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#contact .footer-grid {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

#contact .footer-col {
    display: flex;
    flex-direction: column;
}

#contact .footer-col h4 {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 16px 0;
}

#contact .footer-col a.footer-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 10px;
    text-transform: lowercase;
    transition: color 0.2s ease;
}

#contact .footer-col a.footer-link:hover {
    color: #ffffff;
}

/* Horizontal line rule separating metadata */
#contact .footer-bottom-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
}

#contact .footer-bottom-bar p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    margin: 0;
}