.location-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: -76px;
    /* 76px offsets the negative margin, +76px clears the fixed navbar so
       centered content can never slide under it when the hero is content-tall. */
    padding-top: 152px;
    padding-bottom: 2.5rem;
}

.location-hero-inner {
    max-width: 760px;
}

.location-hero .lead {
    max-width: 680px;
}

.location-section {
    background: var(--bg-main);
    overflow-x: hidden;
}

.location-eyebrow {
    color: var(--accent);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.location-card {
    background: var(--bg-box);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    height: 100%;
}

.location-step-card {
    height: auto;
}

.location-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.location-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-stat {
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
}

.location-link {
    display: block;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
}

.location-link:hover {
    color: var(--accent);
    border-color: rgba(189, 158, 127, 0.45);
}

.location-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.location-list li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.location-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.location-cta {
    background: linear-gradient(135deg, rgba(189, 158, 127, 0.18), rgba(255, 255, 255, 0.04));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: hidden;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(189, 158, 127, 0.45);
    border-radius: 999px;
    color: #fff;
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
}

.location-direct-contact {
    max-width: 700px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.location-direct-contact-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(189, 158, 127, 0.35);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.16);
}

.location-direct-contact-link:hover {
    color: #fff;
    border-color: rgba(189, 158, 127, 0.7);
    background: rgba(189, 158, 127, 0.12);
}

.location-direct-contact-link i {
    flex: 0 0 auto;
    color: var(--accent);
}

.location-direct-contact-link span {
    min-width: 0;
}

.location-direct-contact-link small {
    display: block;
    color: var(--text-body);
    font-size: 0.78rem;
    line-height: 1.25;
}

.location-direct-contact-link strong {
    display: block;
    overflow-wrap: anywhere;
    font-weight: 600;
    line-height: 1.25;
}

@media (max-width: 767.98px) {
    .location-hero {
        min-height: auto;
        padding-top: 170px;
        padding-bottom: 4rem;
    }

    .location-hero .display-2 {
        font-size: 3.4rem;
        line-height: 0.98;
    }

    .location-hero .lead {
        font-size: 1.08rem;
        line-height: 1.55;
    }

    .location-hero .btn {
        width: 100%;
        max-width: 360px;
    }

    .location-direct-contact {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-height: 520px) {
    .location-hero {
        align-items: flex-start;
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 1.25rem;
    }

    .location-hero-inner {
        max-width: 980px;
    }

    .location-eyebrow {
        font-size: 0.95rem;
        margin-bottom: 0.2rem !important;
    }

    .location-hero .display-2 {
        font-size: clamp(2.1rem, 3.2vw, 3.1rem);
        line-height: 0.95;
        margin-bottom: 0.55rem !important;
    }

    .location-hero .lead {
        max-width: 860px;
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.55rem !important;
    }

    .location-hero .d-flex.gap-2 {
        gap: 0.4rem !important;
        margin-bottom: 0.75rem !important;
    }

    .location-pill {
        padding: 0.28rem 0.65rem;
        font-size: 0.8rem;
    }

    .location-hero .btn {
        padding-top: 0.55rem !important;
        padding-bottom: 0.55rem !important;
        font-size: 0.92rem;
    }
}
