.reach-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 5rem 2rem;
}

.reach-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: 1100px;
}

.reach-text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
}

.reach-subject-part {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--c-surface-alt);
    width: 100%;
}

.reach-person-part {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.reach-avatar {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--c-surface-bg);
    border: 1px solid var(--c-surface-alt);
    overflow: hidden;
    box-shadow: 0 10px 20px var(--c-shadow-light);
}

.reach-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reach-person-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
}

.reach-contact-label {
    font-size: 0.95rem;
    color: var(--c-text-1);
    margin-bottom: 0.2rem;
}

.reach-name {
    font-size: 2.2rem;
    color: var(--c-text-2);
    margin: 0;
    font-family: inherit;
    line-height: 1.1;
}

.reach-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-brand-tertiary);
    margin-bottom: 0.8rem;
}

.reach-desc {
    font-size: 1.15rem;
    color: var(--c-text-1);
    line-height: 1.7;
    margin: 0;
}

.contact-btn {
    margin-top: 0.5rem;
}

.reach-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reach-image-wrapper {
    height: 75vh;
    max-height: 600px;
    width: auto;
    aspect-ratio: 9 / 16;
    background: var(--c-surface-bg);
    border: 1px solid var(--c-surface-alt);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--c-shadow-light);
    transition: border-color 0.3s ease;
}

.reach-image-wrapper:hover {
    border-color: var(--c-brand-primary);
}

.reach-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 900px) {
    .reach-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .reach-text-column {
        align-items: center;
        text-align: center;
    }

    .reach-subject-part {
        align-items: center;
    }

    .reach-person-part {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .reach-person-info {
        align-items: center;
    }
    
    .reach-image-wrapper {
        height: auto;
        width: 100%;
        max-width: 280px;
        max-height: 70vh;
    }
}