/* Shared city SEO landing page styles */
.city-page {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    margin: 0 auto;
}

.city-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.city-nav a {
    color: var(--mist);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 180ms ease;
}

.city-nav a:hover {
    color: var(--brand, var(--sky-400));
}

.city-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.1rem;
}

.city-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    gap: clamp(1rem, 3vw, 1.75rem);
    align-items: center;
    margin-bottom: 1.75rem;
}

.city-hero-copy {
    min-width: 0;
}

.city-hero .eyebrow {
    margin-bottom: 0.65rem;
    color: var(--brand, var(--sky-400));
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.city-hero h1 {
    font-family: var(--display);
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    color: var(--ice);
}

.city-hero .lead {
    margin-top: 0.9rem;
    max-width: 36rem;
    color: var(--mist);
    font-size: 1.05rem;
    line-height: 1.65;
}

.city-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.city-hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(180px, 28vw, 260px);
    pointer-events: none;
}

.city-hero-glow {
    position: absolute;
    inset: 10% 2% 8%;
    border-radius: 42%;
    background: radial-gradient(ellipse at center, rgba(196, 30, 58, 0.12), transparent 68%);
    filter: blur(16px);
}

.city-transport {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: min(34vh, 280px);
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 16px 30px rgba(29, 29, 31, 0.08));
}

.city-card {
    margin-bottom: 1rem;
    padding: 1.35rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.city-card h2 {
    margin-bottom: 0.7rem;
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.city-card p,
.city-card li {
    color: var(--mist);
    font-size: 0.95rem;
    line-height: 1.6;
}

.city-card ul {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.city-card li {
    position: relative;
    padding-left: 1.1rem;
}

.city-card li::before {
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sky-400);
    content: '';
}

.city-contact-grid {
    display: grid;
    gap: 0.85rem;
}

.city-contact-item strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--ice);
    font-size: 0.88rem;
}

.city-contact-item a {
    color: var(--brand, var(--sky-400));
    text-decoration: none;
}

.city-contact-item a:hover {
    text-decoration: underline;
}

.city-faq details {
    margin-bottom: 0.55rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
}

.city-faq summary {
    cursor: pointer;
    color: var(--ice);
    font-weight: 650;
    font-size: 0.95rem;
}

.city-faq details p {
    margin-top: 0.65rem;
    color: var(--mist);
    font-size: 0.9rem;
}

.city-related {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.35rem;
}

.city-related a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--ice);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 180ms ease, background 180ms ease;
}

.city-related a:hover {
    border-color: rgba(196, 30, 58, 0.35);
    background: rgba(196, 30, 58, 0.08);
}

.city-related-center {
    justify-content: center;
    margin-top: 1rem;
}

@media (max-width: 720px) {
    .city-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .city-hero {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        text-align: left;
    }

    .city-hero-visual {
        min-height: 0;
        max-width: 360px;
        margin-inline: auto;
        width: 100%;
    }

    .city-transport {
        max-height: min(28vh, 220px);
    }

    .city-hero h1 {
        font-size: clamp(1.65rem, 7vw, 2.25rem);
    }

    .city-hero .lead {
        font-size: 0.98rem;
    }
}

@media (max-width: 520px) {
    .city-actions .btn {
        flex: 1 1 100%;
        justify-content: center;
        min-height: 2.75rem;
    }

    .city-card {
        padding: 1.15rem;
    }

    .city-related a {
        flex: 1 1 auto;
        justify-content: center;
    }

    .city-transport {
        max-height: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .city-transport {
        filter: none;
    }
}
