.inner-hero,
.contact-links-section,
.contact-seo,
.location-band,
.map-section,
.coverage-section {
    padding-left: max(24px, calc((100vw - 1180px) / 2));
    padding-right: max(24px, calc((100vw - 1180px) / 2));
}

.inner-hero {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 70px;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(13, 27, 42, 0.95), rgba(18, 48, 82, 0.74)),
        url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.inner-hero h1,
.location-band h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.05;
}

.inner-hero h1 {
    max-width: 860px;
    font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.inner-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    font-size: 1.04rem;
}

.contact-links-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-top: 64px;
    padding-bottom: 64px;
    background: var(--white);
}

.contact-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfe;
    box-shadow: 0 12px 34px rgba(13, 27, 42, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
}

.contact-seo {
    padding-top: 58px;
    padding-bottom: 60px;
    background: var(--paper);
}

.contact-seo h2 {
    max-width: 840px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    line-height: 1.05;
}

.contact-seo p:last-child {
    max-width: 900px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.04rem;
}

.contact-card i {
    color: var(--blue);
    font-size: 2rem;
}

.contact-card span {
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 800;
}

.contact-card small {
    color: var(--muted);
    font-size: 0.95rem;
}

.location-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding-top: 58px;
    padding-bottom: 58px;
    background: var(--paper);
}

.location-band h2,
.map-copy h2,
.coverage-copy h2 {
    color: var(--navy);
    font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.location-band p,
.map-copy p,
.coverage-copy p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.04rem;
}

.location-band > i {
    color: var(--gold);
    font-size: clamp(3rem, 9vw, 7rem);
}

.map-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 34px;
    padding-top: 64px;
    padding-bottom: 64px;
    background: var(--white);
}

.map-copy h2,
.coverage-copy h2 {
    margin: 0;
    line-height: 1.05;
}

.map-frame {
    min-height: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.coverage-section {
    display: grid;
    grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 64px;
    background: var(--paper);
}

.coverage-map {
    display: grid;
    place-items: center;
    padding: 0;
    background: transparent;
}

.coverage-map img {
    width: min(100%, 320px);
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 28px rgba(13, 27, 42, 0.18));
}

@media (max-width: 980px) {
    .contact-links-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .map-section,
    .coverage-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .location-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    .inner-hero,
    .contact-links-section,
    .contact-seo,
    .location-band,
    .map-section,
    .coverage-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .contact-links-section {
        grid-template-columns: 1fr;
    }

    .inner-hero {
        min-height: 390px;
    }
}
