/*
   CONTACT PAGE ISOLATION WRAPPER
   Scoped to #tt-contact-wrapper
*/
#tt-contact-wrapper {
    --bg-color: #F8F8F6;
    --text-color: #111111;
    --meta-color: #666666;
    --border-color: #D6D6D6;
    --accent-color: #3A5F5F;
    --success-color: #3A5F5F;
    --error-color: #dc3232;
    --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-mono: "Menlo", monospace;
    --space-md: 2rem;
    --space-lg: 4rem;

    background: var(--bg-color) !important;
    color: var(--text-color) !important;
    font-family: var(--font-main) !important;
    width: 100% !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    display: block !important;
    min-height: 80vh !important;
}

/* GRID LAYOUT */
#tt-contact-wrapper .tt-contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    min-height: 100% !important;
    width: 100% !important;
    border-left: 1px solid var(--border-color) !important;
    border-right: 1px solid var(--border-color) !important;
}

/* SIDEBAR (Info) */
#tt-contact-wrapper .tt-info-col {
    padding: var(--space-lg) var(--space-md) !important;
    border-right: 1px solid var(--border-color) !important;
}

#tt-contact-wrapper .tt-label {
    font-family: var(--font-mono) !important;
    font-size: 0.8rem !important;
    color: var(--meta-color) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

#tt-contact-wrapper .tt-info-block {
    margin-bottom: var(--space-lg) !important;
}

#tt-contact-wrapper .tt-email-link {
    font-size: 1.2rem !important;
    color: var(--text-color) !important;
    text-decoration: none !important;
    border-bottom: 1px solid transparent !important;
    transition: border-color 0.2s ease !important;
}

#tt-contact-wrapper .tt-email-link:hover {
    border-color: var(--accent-color) !important;
    color: var(--accent-color) !important;
}

#tt-contact-wrapper p {
    margin: 0 0 0.5rem 0 !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

/* MAIN FORM AREA */
#tt-contact-wrapper .tt-form-col {
    padding: var(--space-lg) var(--space-md) !important;
    max-width: 600px !important;
}

#tt-contact-wrapper h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin: 0 0 1rem 0 !important;
    line-height: 1.1 !important;
    color: var(--text-color) !important;
}

#tt-contact-wrapper .tt-intro {
    margin-bottom: var(--space-lg) !important;
    font-size: 1.1rem !important;
    color: var(--text-color) !important;
    line-height: 1.6 !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #tt-contact-wrapper .tt-contact-grid {
        grid-template-columns: 1fr !important;
        border: none !important;
    }

    #tt-contact-wrapper .tt-info-col {
        padding-bottom: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid var(--border-color) !important;
        order: 2 !important;
    }

    #tt-contact-wrapper .tt-form-col {
        padding-bottom: var(--space-lg) !important;
        order: 1 !important;
    }
}
