.contact { background: var(--bg); }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(166, 124, 61, 0.1);
    border-radius: 50%;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.5;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Address */
.contact-card address {
    font-style: normal;
}

/* Comment venir */
.contact-access {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid var(--border);
}

.contact-access h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text);
}

.contact-access p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.contact-access strong {
    color: var(--text);
    font-weight: 600;
}

/* Map */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}
