.location-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: -76px;
    padding-top: 76px;
}

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

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

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

.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-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-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);
}

.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: 62vh;
    }

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