#contact {
    background: var(--warm-white);
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.contact-row {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.contact-card-wrap {
    flex: 5;
    min-width: 280px;
}

.contact-map-wrap {
    flex: 7;
    min-width: 280px;
    min-height: 340px;
}

.contact-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
}

.contact-card-title {
    font-family: var(--font-display), serif;
    font-size: 1.4rem;
    color: var(--brown);
    margin-bottom: 0.25rem;
}

.contact-card-subtitle {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--sand);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--warm-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1rem;
    font-weight: 400;
    color: var(--brown);
}

.contact-value a {
    color: var(--brown);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-value a:hover {
    color: var(--terracotta);
}

.contact-map {
    background: var(--sand);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder .placeholder-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.map-placeholder p {
    font-size: 0.85rem;
}

/* Hours table */
.hours-table {
    width: 100%;
    font-size: 0.88rem;
    margin-top: 0.25rem;
}

.hours-table td {
    padding: 0.35rem 0;
    color: var(--text-mid);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-light);
}