#contact {
    background: var(--bg-soft);
    text-align: center;
}

#contact > .container > p {
    color: var(--text-muted);
    font-size: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 38px;
}

.contact-card {
    border: 1px solid var(--border);
    background: #fff;
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    border-color: var(--text);
    box-shadow: var(--shadow-hover);
}

.contact-card h4 {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.8;
}

.contact-card a:hover {
    color: var(--text);
}

footer {
    background: var(--text);
    text-align: center;
    padding: 22px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.02em;
}
