/* OptiFocus — contact (slate brutalist) */

.contact-section {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-top: 70px;
    z-index: 1;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: clamp(0.5rem, 3vw, 1.25rem);
    right: clamp(0.5rem, 3vw, 1.25rem);
    bottom: 1.5rem;
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: var(--radius-lg);
    z-index: 0;
    border: 2px solid #0f172a;
    box-shadow: 6px 6px 0 #0f172a;
}

.section-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--color-ink);
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.page-title::after {
    content: '';
    display: block;
    width: min(100px, 28vw);
    height: 4px;
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #22d3ee, #7c3aed);
}

.contact-info {
    background: #ffffff;
    border: 2px solid #0f172a;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    padding-left: calc(var(--spacing-lg) + 8px);
    box-shadow: 6px 6px 0 #0f172a;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #22d3ee, #7c3aed);
}

.contact-text {
    font-size: clamp(1rem, 2vw, 1.0625rem);
    color: var(--color-text-secondary);
    line-height: 1.9;
    font-weight: 500;
}

.legal-archive {
    border: 2px dashed #64748b;
    border-radius: var(--radius-md);
    background: rgba(241, 245, 249, 0.9);
}

@media (max-width: 768px) {
    .contact-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .contact-section::before {
        top: 1rem;
        left: 0.35rem;
        right: 0.35rem;
        bottom: 1rem;
    }

    .contact-info {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .contact-section {
        margin-top: 60px;
    }
}
