.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 32px;
}

.contact-info h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.contact-info p.lede {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.info-row .icon-badge {
    margin-bottom: 0;
    flex-shrink: 0;
}

.info-row h4 {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.info-row p {
    font-size: 14.5px;
    color: var(--text);
}

.social-block {
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.social-block h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.social-block p {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.social-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
}

.social-circle svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-muted);
    fill: none;
}

.social-circle:hover {
    border-color: var(--green-light);
    background: rgba(103, 253, 103, 0.10);
}

/* social icons */
.social-icons {
    display: flex;
    gap: 16px;
    padding: 10px;
}

.social-icons a {
    /* color: #fd1d1d; */
    /* margin: 10px; */
    text-decoration: none;
    font-size: 16px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.fa-linkedin {
    background: #0077b5;
    color: white;
}

.fa-github {
    background: #181717;
    color: white;
}

.fa-instagram {
    background: linear-gradient(45deg, #fd1d1d, #e1306c, #f77737);
    color: white;
}

.fa-tiktok {
    background: #181717;
    color: white;
}

/* form  */
.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.field label {
    font-size: 12.5px;
    color: var(--text-dim);
}

.field input,
.field textarea {
    background: #0a0a0e;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--text);
    font-size: 14px;
    transition: border-color .15s;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--green-light);
    outline: none;
}

.field textarea {
    resize: vertical;
    min-height: 110px;
}
