.location-section {
    background: var(--surface);
}

.location-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(36px, 7vw, 90px);
    align-items: center;
}

.location-copy h2 {
    font-size: clamp(2.15rem, 4vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -.05em;
}

.location-copy > p {
    max-width: 570px;
    margin-top: 20px;
    color: var(--text-muted);
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.location-details address {
    font-style: normal;
}

.location-details span,
.location-details strong,
.location-details p {
    display: block;
}

.location-details span {
    margin-bottom: 7px;
    color: var(--primary);
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.location-details strong {
    font-size: .93rem;
}

.location-details p {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: .8rem;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.map-frame {
    overflow: hidden;
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}

.map-frame > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 14px 20px;
    background: var(--surface);
    color: var(--primary-dark);
    font-size: .8rem;
    font-weight: 750;
}

.map-frame > a:hover {
    color: var(--primary);
}

@media (max-width: 820px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .map-frame iframe {
        height: 420px;
    }
}

@media (max-width: 520px) {
    .location-details {
        grid-template-columns: 1fr;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-actions .button {
        width: 100%;
    }

    .map-frame {
        border-radius: var(--radius);
    }

    .map-frame iframe {
        height: 350px;
    }
}
