.sa-hero {
    position: relative;
    background: var(--navy);
    padding-block: clamp(100px, 13vw, 130px) 32px;
    overflow: hidden;
    text-align: center;
}
.sa-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(255, 130, 16, 0.38) 0%, transparent 48%),
        radial-gradient(ellipse at 85% 70%, rgba(3, 152, 158, 0.32) 0%, transparent 52%),
        radial-gradient(circle at 65% 10%, rgba(248, 62, 12, 0.18) 0%, transparent 38%);
    z-index: 0;
}
.sa-hero .wrapper {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.sa-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 18px;
}
.sa-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 18px;
}
.sa-headline em {
    color: var(--orange);
    font-style: italic;
}
.sa-lede {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 640px;
    margin: 0 auto;
}
.sa-map-section {
    background: var(--navy);
    padding-block: 0 56px;
}
.sa-map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(248, 62, 12, 0.25), 0 20px 60px rgba(0, 0, 0, 0.35);
    background: var(--warm-white);
}
.sa-map {
    width: 100%;
    height: 560px;
    background: #f5f0e8;
}
.sa-map-caption {
    margin: 22px auto 0;
    max-width: 640px;
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}
.sa-cta-band {
    background: var(--gradient-warm);
    padding: 40px 0;
}
.sa-cta-band__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.sa-cta-band__text {
    flex: 1 1 380px;
}
.sa-cta-band__heading {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
}
.sa-cta-band__sub {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 480px;
    line-height: 1.55;
    margin: 0;
}
.sa-cta-band__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.sa-cta-band__phone {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 4px;
}
.sa-cta-band__phone:hover {
    text-decoration-color: #ffffff;
}
.sa-regions-section {
    padding: 32px 0 48px;
}
.sa-section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin: 0 0 10px;
}
.sa-section-sub {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(27, 41, 60, 0.68);
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.sa-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.sa-region-card {
    display: block;
    background: var(--paper);
    border: 2px solid var(--navy);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 4px 4px 0 var(--red-orange);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.sa-region-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--red-orange);
}
.sa-region-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 10px;
}
.sa-region-card__desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(27, 41, 60, 0.72);
    margin: 0 0 16px;
}
.sa-region-card .experience-tags {
    margin-top: 0;
    padding-left: 0;
    gap: 8px;
}
.sa-outside-section {
    padding: 0 0 56px;
}
.sa-outside-card {
    background: var(--navy);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sa-outside-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(255, 130, 16, 0.28), transparent 55%),
        radial-gradient(ellipse at 80% 85%, rgba(248, 62, 12, 0.18), transparent 55%);
    pointer-events: none;
}
.sa-outside-heading {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 14px;
    position: relative;
}
.sa-outside-text {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 580px;
    margin: 0 auto 24px;
    position: relative;
}
.sa-outside-actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    position: relative;
}
.leaflet-container {
    font-family: var(--font-body);
    background: #f5f0e8 !important;
}
.leaflet-control-zoom a {
    background: var(--warm-white) !important;
    color: var(--navy) !important;
    border-color: rgba(27, 41, 60, 0.18) !important;
}
.leaflet-control-zoom a:hover {
    background: var(--cream) !important;
}
.leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.9) !important;
    color: rgba(15, 10, 6, 0.45) !important;
    font-size: 0.62rem !important;
}
.leaflet-control-attribution a {
    color: rgba(15, 10, 6, 0.6) !important;
}
@media (max-width: 720px) {
    .sa-hero {
        padding-block: 88px 24px;
    }
    .sa-map-section {
        padding-block: 0 40px;
    }
    .sa-map {
        height: 420px;
    }
    .sa-map-caption {
        font-size: 0.88rem;
    }
    .sa-cta-band {
        padding: 32px 0;
    }
    .sa-cta-band__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 16px;
    }
    .sa-cta-band__text {
        flex: 0 0 auto;
    }
    .sa-cta-band__actions {
        justify-content: center;
    }
    .sa-regions-section {
        padding: 24px 0 40px;
    }
    .sa-region-card {
        padding: 22px;
    }
    .sa-outside-card {
        padding: 36px 22px;
    }
}

.sa-services-nudge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
    padding: 28px 32px;
    background: var(--paper);
    border: 2px solid var(--navy);
    border-radius: var(--radius-lg);
    box-shadow: 4px 4px 0 var(--navy);
}
.sa-services-nudge__text {
    font-size: 0.98rem;
    color: var(--pub-text-secondary);
    line-height: 1.55;
    margin: 0;
    max-width: 480px;
}

@media (max-width: 640px) {
    .sa-services-nudge {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }
}
