/* ============================================================
   BLOCK: location-hero
   All selectors scoped under .location-hero (root class on section)
   ============================================================ */

.location-hero {
    position: relative;
    background: var(--charcoal);
    overflow: hidden;
    padding: 100px 0 90px;
}

.location-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 70% at 85% 40%, rgba(198, 140, 63, .14) 0%, transparent 65%),
                repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(198, 140, 63, .03) 39px, rgba(198, 140, 63, .03) 40px);
    pointer-events: none;
}

/* Left accent bar */
.location-hero .hgl {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--copper) 0%, var(--copper-dk) 100%);
}

/* Inner container z-index lift */
.location-hero .hin {
    position: relative;
    z-index: 1;
}

/* Location badge bar */
.location-hero .hbar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(198, 140, 63, .15);
    border: 1px solid rgba(198, 140, 63, .3);
    border-radius: 2px;
    padding: 8px 16px;
    margin-bottom: 28px;
}

.location-hero .hbar span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--copper-lt);
}

/* H1 title */
.location-hero .hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: #fff;
    margin-bottom: 20px;
    max-width: 700px;
    white-space: pre-line;
    span{
        color: var(--copper);
    }
}

/* Description paragraph */
.location-hero .hero-desc {
    font-size: 1.08rem;
    color: var(--c80-2);
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.8;
}

/* CTA button row */
.location-hero .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

/* Trust / badge row */
.location-hero .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--rule-2);
    border-bottom: 1px solid var(--rule-2);
    margin-top: 36px;
}

.location-hero .tp {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .09em;
       text-transform: uppercase;
    color: var(--c80-2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-hero .tp .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--copper);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .location-hero {
        padding: 64px 0 56px;
    }
}