.map-section {
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 6vw, 4rem);
    background: var(--home-light);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: center;
}

.map-section__content {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.map-section__eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.26em;
    color: var(--home-muted);
    margin: 0;
}

.map-section__title {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--home-dark);
}

.map-section__lead {
    margin: 0;
    color: var(--home-muted);
    line-height: 1.6;
}

.map-section__note {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(39, 38, 49, 0.7);
}

.map-section__map-shell {
    position: relative;
    border-radius: var(--home-radius-lg);
    overflow: hidden;
    min-height: 320px;
    background: rgba(12, 16, 20, 0.12);
}

.map-section__map {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.map-section__map[hidden] {
    display: none;
}

.map-section__consent {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    color: var(--home-muted);
    background: rgba(245, 241, 236, 0.92);
}

.map-section__consent[hidden] {
    display: none;
}

.map-section__consent p {
    margin: 0;
    max-width: 34ch;
    line-height: 1.5;
}

.map-section__consent-button {
    border: 1px solid var(--home-dark);
    border-radius: 4px;
    padding: 0.65rem 0.9rem;
    background: var(--home-dark);
    color: #fff;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.map-section__fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    font-size: 0.95rem;
    color: var(--home-muted);
    background: rgba(245, 241, 236, 0.9);
}

.map-section__map.is-loaded + .map-section__fallback {
    display: none;
}

@media (max-width: 768px) {
    .map-section {
        grid-template-columns: 1fr;
    }
}
