/* ===== Enhanced city hero (preview) ===== */
.inner-hero-enhanced {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.inner-hero-enhanced .inner-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.inner-hero-enhanced .inner-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.inner-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.35) 40%, rgba(10,22,40,0.92) 100%),
                linear-gradient(90deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.25) 60%, rgba(10,22,40,0) 100%);
}
.inner-hero-enhanced .inner-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 3rem;
    padding-top: 6rem;
}
.inner-hero-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    max-width: 18ch;
}
.inner-hero-lead {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 60ch;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}
.inner-hero-divider {
    width: 64px;
    height: 3px;
    background: var(--accent, #c8a45e);
    margin: 1rem 0 1.25rem;
}
.inner-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
}
.inner-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.inner-hero-jumpbar {
    position: relative;
    z-index: 2;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.12);
    background: rgba(10,22,40,0.6);
    backdrop-filter: blur(6px);
}
.inner-hero-jumpnav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0.9rem 0;
}
.inner-hero-jumpnav a {
    color: rgba(255,255,255,0.82);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease;
}
.inner-hero-jumpnav a:hover {
    color: var(--accent, #c8a45e);
}
@media (max-width: 768px) {
    .inner-hero-enhanced { min-height: 60vh; }
    .inner-hero-jumpnav { gap: 1rem; overflow-x: auto; flex-wrap: nowrap; }
    .inner-hero-jumpnav a { white-space: nowrap; }
}
