/* Shared styles for city landing pages */
.city-hero { padding: clamp(48px, 8vw, 96px) 0 clamp(32px, 5vw, 64px); }
.city-hero .breadcrumb { font-family: 'JetBrains Mono', 'Mono Fallback', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
.city-hero .breadcrumb a { color: var(--muted); }
.city-hero .breadcrumb a:hover { color: var(--accent-deep); }
.city-hero h1 { font-size: clamp(40px, 6.5vw, 88px); max-width: 14ch; margin-top: 20px; }
.city-hero h1 .accent { color: var(--accent); font-style: italic; font-family: 'Instrument Serif', 'Serif Fallback', Georgia, serif; font-weight: 400; }
.city-hero .lede { max-width: 56ch; font-size: 18px; color: var(--ink-soft); margin-top: 24px; }
.city-hero .meta { display:flex; gap:28px; margin-top: 28px; flex-wrap: wrap; font-size: 14px; color: var(--ink-soft); }
.city-hero .meta .num { font-family: 'Instrument Serif', 'Serif Fallback', Georgia, serif; font-size: 28px; color: var(--accent); display: block; font-style: italic; line-height: 1; }
.city-hero .ctas { display:flex; gap:12px; margin-top: 32px; flex-wrap: wrap; }

.svc-inline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.svc-inline a { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: white; transition: border-color .15s ease, transform .15s ease; display: block; }
.svc-inline a:hover { border-color: var(--accent); transform: translateY(-2px); }
.svc-inline h3 { font-size: 16px; font-weight: 500; }
.svc-inline p { font-size: 13px; color: var(--muted); margin-top: 4px; }
@media (max-width: 900px) { .svc-inline { grid-template-columns: 1fr 1fr; } }

.why { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }
.why .illus { aspect-ratio: 1.2/1; background: var(--bg-warm); border-radius: 24px; position: relative; overflow: hidden; padding: 40px; display: grid; place-items: center; }
.why .illus .dot { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 8px rgba(255,90,31,0.15), 0 0 0 20px rgba(255,90,31,0.07); }
.why .illus .city-name { font-family: 'Instrument Serif', 'Serif Fallback', Georgia, serif; font-style: italic; font-size: clamp(48px, 8vw, 96px); color: var(--ink); letter-spacing: -0.02em; position: relative; z-index: 1; }

.bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.bullets li { padding-left: 36px; position: relative; }
.bullets li::before { content: '→'; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: white; display: grid; place-items: center; font-size: 12px; }
.bullets strong { display: block; font-weight: 500; margin-bottom: 4px; }
.bullets span { color: var(--ink-soft); font-size: 15px; }

.neighbor { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 800px) { .neighbor { grid-template-columns: 1fr; } }
.neighbor a { padding: 20px; background: white; border: 1px solid var(--line); border-radius: 14px; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: border-color .15s ease, transform .15s ease; }
.neighbor a:hover { border-color: var(--accent); transform: translateY(-2px); }
.neighbor .arrow { color: var(--accent); transition: transform .15s ease; }
.neighbor a:hover .arrow { transform: translateX(3px); }

.sec-head { max-width: 720px; margin-bottom: 40px; }
.sec-head h2 { margin-top: 16px; }

.cta-band { background: var(--accent); color: white; border-radius: 24px; padding: clamp(48px, 7vw, 80px); text-align: center; }
.cta-band h2 { color: white; max-width: 18ch; margin: 0 auto; }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 16px; max-width: 50ch; margin-left: auto; margin-right: auto; font-size: 17px; }
.cta-band .btn-primary { background: white; color: var(--accent-deep); margin-top: 28px; }
