.location-page-hero {
    padding: 190px 0 95px;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(21, 32, 25, .96), rgba(36, 50, 43, .72)),
        var(--ink);
}

.location-page-hero h1 {
    margin: 12px 0 22px;
    font: 600 clamp(4rem, 9vw, 8.6rem) / .85 var(--serif);
    letter-spacing: -.045em;
}

.location-page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.location-page-section {
    padding: 90px 0 120px;
    background: var(--paper);
}

.location-live-map {
    width: 100%;
    height: 650px;
    min-height: 650px;
    overflow: hidden;
    background: #dfe5df;
    box-shadow: var(--shadow);
}

.location-live-map img,
.location-live-map .leaflet-tile,
.location-live-map .leaflet-marker-icon,
.location-live-map .leaflet-marker-shadow {
    max-width: none !important;
}

.location-project-pin-wrap {
    background: transparent;
    border: 0;
}

.location-project-pin {
    position: relative;
    display: block;
    width: 38px;
    height: 38px;
    border: 4px solid #fff;
    border-radius: 50% 50% 50% 0;
    background: var(--sage);
    transform: rotate(-45deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .28);
}

.location-project-pin i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}

.location-project-label {
    padding: 8px 12px;
    border: 0;
    border-radius: 2px;
    background: var(--ink);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.location-project-label::before {
    border-top-color: var(--ink) !important;
}

.location-map-popup strong {
    display: block;
    margin-bottom: 8px;
    font: 600 1.35rem var(--serif);
}

.location-map-popup p {
    margin: 0 0 12px;
    color: #697169;
    line-height: 1.5;
}

.location-map-popup a {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.location-page-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    padding-top: 90px;
}

.location-page-copy h2 {
    margin: 15px 0 28px;
    font: 600 clamp(3rem, 6vw, 6rem) / .9 var(--serif);
    letter-spacing: -.035em;
}

.location-page-copy p {
    max-width: 500px;
    margin-bottom: 35px;
    color: var(--muted);
}

.location-point-list {
    border-top: 1px solid var(--line);
}

.location-point-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.location-point-card > span {
    color: var(--muted);
    font-size: .76rem;
    letter-spacing: .16em;
}

.location-point-card h3 {
    margin: 0 0 6px;
    font: 600 2rem var(--serif);
}

.location-point-card p {
    margin: 0 0 8px;
    color: var(--muted);
}

.location-point-card a {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .location-page-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .location-live-map {
        height: 500px;
        min-height: 500px;
    }
}

@media (max-width: 560px) {
    .location-page-hero {
        padding: 135px 0 65px;
    }

    .location-page-section {
        padding: 45px 0 80px;
    }

    .location-live-map {
        height: 420px;
        min-height: 420px;
    }

    .location-point-card {
        grid-template-columns: 45px 1fr;
    }

    .location-project-label {
        max-width: 150px;
        white-space: normal;
        text-align: center;
    }
}
