.hero-banner {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    background-color: #173847;
    background-image:
        linear-gradient(rgba(23, 56, 71, 0.91), rgb(23, 56, 71)),
        url('/uploads/hero-banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
    min-height: 420px;
}

.hero-banner-inner {
    width: 100%;
    max-width: 1575px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 420px;
    padding: 0 24px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(23, 56, 71, 0.1);
    z-index: 0;
}

.hero-copy {
    padding: 40px 32px 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    min-width: 0;
}

.hero-brand-mark {
    width: 85%;
    margin-bottom: 0;
}
.hero-brand-mark img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-banner h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.hero-subheadline {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(16px, 1.6vw, 24px);
    line-height: 1.2;
    font-weight: 600;
}

.hero-description {
    margin: 2px 0 0;
    max-width: 50ch;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.6;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.hero-point {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 7px 12px;
    font-size: clamp(11px, 0.9vw, 13px);
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.hero-ctas .btn {
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 0;
    align-self: stretch;
    overflow: visible;
    z-index: 1;
}

.map-shell {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    overflow: visible;
    background: transparent;
    border: 0;
    transform: translate(20%, 4%) scale(1.68);
    transform-origin: center right;
    will-change: transform;
}

.map-shell canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.65s ease 0.08s;
}

.map-shell.is-ready canvas {
    opacity: 1;
}

.map-loader {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.map-shell.is-ready .map-loader,
.map-shell.is-error .map-loader {
    opacity: 0;
}

.map-loader-ring {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-top-color: rgba(255, 255, 255, 0.94);
    border-right-color: rgba(173, 201, 215, 0.8);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
    animation: mapLoaderSpin 0.85s linear infinite;
}

@keyframes mapLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.map-error {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    letter-spacing: 0.04em;
    z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
    .map-loader-ring {
        animation: none;
    }
}

@media (max-width: 900px) {
    .hero-banner-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
        padding: 0 16px;
    }
    .hero-copy {
        padding: 24px 0 0;
    }
    .hero-brand-mark {
        width: 85%;
    }
    .hero-brand-mark img {
        height: auto;
    }
    .hero-visual {
        justify-content: center;
        padding: 12px 0 20px;
        min-height: 320px;
    }
    .map-shell {
        min-height: 300px;
        transform: none;
    }
}

@media (max-width: 560px) {
    .hero-banner h1 {
        font-size: clamp(24px, 7vw, 36px);
    }
    .hero-subheadline {
        font-size: clamp(14px, 4vw, 18px);
    }
    .hero-description {
        font-size: 13px;
    }
    .hero-brand-mark {
        width: 85%;
    }
    .hero-brand-mark img {
        height: auto;
    }
    .map-shell {
        min-height: 240px;
        transform: none;
    }
}
