/* ================================================
   PUBLIC.CSS — Cœur de Ville Digital
   Navy #183858 · Orange #E46E4B · Vert #6DB874
   Satoshi (titres) · Inter (corps)
   ================================================ */

/* BASE */
.layout-public {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #111827;
    min-height: 100vh;
}
.layout-public h1,.layout-public h2,.layout-public h3,
.layout-public h4,.layout-public h5 {
    font-family: 'Satoshi','Inter',sans-serif;
    letter-spacing: -0.02em; font-weight: 700; color: #183858; margin: 0;
}
.layout-public p { margin: 0; }
.layout-public a { text-decoration: none; color: inherit; }
*,*::before,*::after { box-sizing: border-box; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.skip-link {
    position: absolute; top: -100%; left: 1rem;
    padding: .5rem 1rem; background: #183858; color: #fff;
    border-radius: 6px; font-size: .875rem; font-weight: 600;
    text-decoration: none; z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ================================================
   HEADER
   ================================================ */

.site-header {
    position: sticky; top: 0; z-index: 200;
    background: #fff;
    border-bottom: 1px solid #EAEAEA;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.site-header .container {
    height: 88px;
    display: flex; align-items: center; gap: 1.5rem;
}

.site-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo img {
    width: 160px !important;
    height: auto !important;
    display: block;
}
.site-logo-mark,.site-logo-text,.site-logo-name,.site-logo-tagline { display: none; }

/* City selector */
.header-city-selector {
    display: flex; align-items: center; gap: .5rem;
    padding: .45rem 1rem;
    background: #F5F7FA; border: 1.5px solid #E5E8EF;
    border-radius: 999px; cursor: pointer;
    transition: border-color 150ms; white-space: nowrap; flex-shrink: 0;
}
.header-city-selector:hover { border-color: #183858; }
.header-city-badge { color: #183858; display: flex; align-items: center; }
.header-city-name {
    font-family: 'Satoshi','Inter',sans-serif;
    font-size: .9rem; font-weight: 600; color: #183858;
}
.header-city-chevron { color: #6B7280; }

/* Search */
.header-search { flex: 1; position: relative; min-width: 0; }
.header-search input {
    width: 100%; height: 44px;
    padding: 0 1.25rem 0 2.75rem;
    background: #F5F7FA; border: 1.5px solid #E5E8EF;
    border-radius: 999px;
    font-family: 'Inter',sans-serif; font-size: .9rem; color: #111827;
    outline: none; transition: border-color 150ms, background 150ms;
}
.header-search input::placeholder { color: #9CA3AF; }
.header-search input:focus {
    background: #fff; border-color: #183858;
    box-shadow: 0 0 0 3px rgba(24,56,88,.08);
}
.header-search-icon {
    position: absolute; left: .875rem; top: 50%;
    transform: translateY(-50%); color: #9CA3AF; pointer-events: none;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: .25rem; flex-shrink: 0; }
.nav-icon-link {
    display: flex; align-items: center; gap: .4rem;
    padding: .5rem .875rem; background: none; border: none; border-radius: 8px;
    font-family: 'Inter',sans-serif; font-size: .875rem; font-weight: 500;
    color: #374151; cursor: pointer; text-decoration: none;
    transition: background 150ms, color 150ms; white-space: nowrap; position: relative;
}
.nav-icon-link:hover { background: #F5F7FA; color: #183858; }
.notif-badge {
    position: absolute; top: 5px; right: 50px;
    background: #E46E4B; color: #fff;
    font-size: .6rem; font-weight: 700;
    width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
}
.btn-header-cta {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .6rem 1.25rem; background: #183858; color: #fff !important;
    font-family: 'Inter',sans-serif; font-size: .875rem; font-weight: 600;
    border-radius: 10px; text-decoration: none; transition: background 150ms; white-space: nowrap;
}
.btn-header-cta:hover { background: #1e4a70; }

.nav-back-link {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .75rem; font-weight: 500; color: #9CA3AF !important;
    text-decoration: none; padding: .3rem .5rem; border-radius: 6px;
    transition: color 150ms, background 150ms; white-space: nowrap;
}
.nav-back-link:hover { color: #183858 !important; background: #F5F7FA; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: .5rem; margin-left: auto;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: #374151; border-radius: 2px; transition: transform .3s, opacity .3s;
}

/* ================================================
   CITY HERO
   ================================================ */

.city-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.city-hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 70% 50% at 65% 25%, rgba(135,206,235,.55) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 65%, rgba(200,180,130,.4) 0%, transparent 60%),
        linear-gradient(170deg,
            #0c2033 0%,
            #1a4a72 12%,
            #3a7fb5 22%,
            #7dbfe8 35%,
            #a8d4b8 50%,
            #c8b890 68%,
            #a87850 85%,
            #7a5030 100%
        );
}
.city-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0; display: block;
}

.city-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(8,20,40,.82) 0%,
        rgba(8,20,40,.65) 38%,
        rgba(8,20,40,.2) 65%,
        transparent 100%
    );
}

.city-hero .container { position: relative; z-index: 2; padding-top: 3.5rem; padding-bottom: 3.5rem; }

.city-hero-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem; align-items: center;
}

/* Text side */
.city-hero-text { color: #fff; }
.city-hero-welcome {
    font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.7);
    letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: .4rem; font-family: 'Inter',sans-serif;
}
.city-hero-name {
    font-family: 'Satoshi','Inter',sans-serif;
    font-size: clamp(3.5rem,7vw,5.5rem); font-weight: 700;
    color: #fff !important; letter-spacing: -.03em;
    line-height: .95; margin-bottom: 1.25rem;
}
.city-hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,.82); line-height: 1.65;
    margin-bottom: 2rem; font-family: 'Inter',sans-serif; max-width: 400px;
}
.city-hero-ctas { display: flex; gap: .875rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-hero-primary {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .875rem 1.75rem; background: #183858; color: #fff;
    font-family: 'Inter',sans-serif; font-size: .95rem; font-weight: 600;
    border-radius: 10px; text-decoration: none; transition: background 150ms;
}
.btn-hero-primary:hover { background: #1e4a70; }
.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .875rem 1.75rem; background: rgba(255,255,255,.12); color: #fff;
    border: 1.5px solid rgba(255,255,255,.4); font-family: 'Inter',sans-serif;
    font-size: .95rem; font-weight: 500; border-radius: 10px; text-decoration: none;
    backdrop-filter: blur(6px); transition: background 150ms;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.22); }

.city-hero-dots { display: flex; gap: .4rem; }
.hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.3); transition: background 150ms, width 200ms;
}
.hero-dot--active { background: #fff; width: 22px; border-radius: 4px; }

/* Stats card */
.city-stats-card {
    background: rgba(255,255,255,.97); border-radius: 20px;
    padding: 1.5rem; box-shadow: 0 12px 40px rgba(0,0,0,.2);
    backdrop-filter: blur(10px);
}
.stats-card-header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem;
}
.stats-card-header strong {
    font-family: 'Satoshi','Inter',sans-serif; font-size: 1rem; font-weight: 700; color: #183858;
}
.stats-card-header a { font-size: .75rem; color: #E46E4B; font-weight: 500; }
.stats-card-header a:hover { text-decoration: underline; }

.stats-card-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem;
}
.stat-card-item { display: flex; flex-direction: column; gap: .15rem; }
.stat-card-icon {
    width: 34px; height: 34px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: .35rem; font-size: 1rem;
}
.stat-card-icon--orange { background: rgba(228,110,75,.12); }
.stat-card-icon--green  { background: rgba(109,184,116,.12); }
.stat-card-icon--blue   { background: rgba(59,125,216,.12); }
.stat-card-icon--purple { background: rgba(139,92,246,.1); }
.stat-card-number {
    font-family: 'Satoshi','Inter',sans-serif;
    font-size: 1.625rem; font-weight: 700; color: #111827; line-height: 1;
}
.stat-card-label { font-size: .75rem; color: #6B7280; font-weight: 400; }

.stats-support-card {
    background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 10px;
    padding: .75rem 1rem; display: flex; align-items: center;
    justify-content: space-between; gap: .5rem;
}
.stats-support-card span { font-size: .8rem; font-weight: 600; color: #166534; }
.stats-support-card a { font-size: .75rem; font-weight: 600; color: #16a34a; white-space: nowrap; flex-shrink: 0; }

/* ================================================
   FEATURE NAV
   ================================================ */

.feature-nav { background: #fff; border-bottom: 1px solid #EAEAEA; }
.feature-nav .container { padding-top: 0; padding-bottom: 0; }
.feature-nav-grid { display: grid; grid-template-columns: repeat(6,1fr); }
.feature-nav-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 1.375rem .75rem; text-decoration: none;
    border-right: 1px solid #EAEAEA; transition: background 150ms; gap: .5rem; text-align: center;
}
.feature-nav-item:last-child { border-right: none; }
.feature-nav-item:hover { background: #F8FAFC; }
.feature-nav-icon {
    width: 46px; height: 46px; border-radius: 13px; background: #F5F7FA;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    transition: background 150ms, transform 150ms;
}
.feature-nav-item:hover .feature-nav-icon { background: #EEF2FF; transform: scale(1.05); }
.feature-nav-item strong {
    font-family: 'Satoshi','Inter',sans-serif; font-size: .82rem; font-weight: 600; color: #111827;
}
.feature-nav-item span { font-size: .72rem; color: #6B7280; line-height: 1.3; }

/* ================================================
   3-COLUMN CONTENT
   ================================================ */

.city-content { background: #F8FAFC; padding: 2.5rem 0; }
.city-content-grid {
    display: grid; grid-template-columns: 1fr 1fr 308px;
    gap: 1.5rem; align-items: start;
}

.section-header-row {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem;
}
.section-header-row h2 { font-size: 1rem; font-weight: 700; color: #111827; }
.section-header-row a { font-size: .8rem; color: #183858; font-weight: 500; }
.section-header-row a:hover { color: #E46E4B; }

/* Event list */
.event-list { background: #fff; border-radius: 12px; border: 1px solid #EAEAEA; overflow: hidden; }
.event-list-item {
    display: flex; align-items: flex-start; gap: .875rem;
    padding: .875rem 1rem; border-bottom: 1px solid #F3F4F6;
    transition: background 150ms; text-decoration: none;
}
.event-list-item:last-child { border-bottom: none; }
.event-list-item:hover { background: #F9FAFB; }
.event-list-thumb { width: 68px; height: 68px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.event-list-thumb-placeholder {
    width: 68px; height: 68px; border-radius: 10px;
    background: linear-gradient(135deg,#C7D2FE,#E0E7FF);
    flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
}
.event-list-body { flex: 1; min-width: 0; }
.event-list-name {
    font-family: 'Satoshi','Inter',sans-serif; font-size: .875rem; font-weight: 600; color: #111827;
    margin-bottom: .25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.event-list-meta { font-size: .75rem; color: #6B7280; margin-bottom: .2rem; display: flex; align-items: center; gap: .3rem; }
.event-list-location { font-size: .75rem; color: #6B7280; display: flex; align-items: center; gap: .3rem; margin-bottom: .35rem; }
.event-list-tag {
    display: inline-block; padding: .15rem .5rem; border-radius: 999px;
    font-size: .7rem; font-weight: 600; background: #FEF3C7; color: #92400E;
}
.event-list-tag--green  { background: #D1FAE5; color: #065F46; }
.event-list-tag--blue   { background: #DBEAFE; color: #1E40AF; }
.event-list-tag--orange { background: #FED7AA; color: #9A3412; }

.btn-bookmark {
    background: none; border: none; cursor: pointer;
    color: #9CA3AF; padding: .25rem; border-radius: 6px;
    transition: color 150ms; flex-shrink: 0;
}
.btn-bookmark:hover { color: #183858; }

.btn-see-all-events {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: .875rem;
    border: 1.5px solid #EAEAEA; border-radius: 10px; background: #fff;
    font-family: 'Inter',sans-serif; font-size: .875rem; font-weight: 500; color: #374151;
    text-decoration: none; margin-top: .75rem; transition: border-color 150ms, background 150ms;
}
.btn-see-all-events:hover { border-color: #183858; background: #F5F7FA; }

/* Map col */
.city-col-map h2 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 1rem; }
.map-placeholder {
    width: 100%; height: 270px; border-radius: 12px; overflow: hidden;
    border: 1px solid #EAEAEA; background-color: #E8EFEA;
    background-image:
        repeating-linear-gradient(0deg,transparent,transparent 29px,rgba(150,185,155,.35) 29px,rgba(150,185,155,.35) 30px),
        repeating-linear-gradient(90deg,transparent,transparent 39px,rgba(150,185,155,.35) 39px,rgba(150,185,155,.35) 40px);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: .75rem; position: relative;
}
.map-placeholder-btn {
    background: #183858; color: #fff; padding: .625rem 1.25rem; border-radius: 10px;
    font-family: 'Inter',sans-serif; font-size: .875rem; font-weight: 600;
    text-decoration: none; display: flex; align-items: center; gap: .5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: background 150ms;
}
.map-placeholder-btn:hover { background: #1e4a70; }
.map-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.map-action-btn {
    display: flex; flex-direction: column; align-items: center; gap: .35rem;
    padding: .75rem .5rem; background: #fff; border: 1.5px solid #EAEAEA; border-radius: 10px;
    text-decoration: none; transition: border-color 150ms, background 150ms; text-align: center;
}
.map-action-btn:hover { border-color: #183858; background: #F5F7FA; }
.map-action-icon { font-size: 1.25rem; }
.map-action-label { font-family: 'Satoshi','Inter',sans-serif; font-size: .75rem; font-weight: 600; color: #111827; }
.map-action-sub { font-size: .68rem; color: #6B7280; }

/* Right col */
.city-col-side { display: flex; flex-direction: column; gap: 1rem; }

.news-card { background: #fff; border-radius: 12px; border: 1px solid #EAEAEA; overflow: hidden; }
.news-card-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: .875rem 1rem; border-bottom: 1px solid #F3F4F6;
}
.news-card-header strong { font-family: 'Satoshi','Inter',sans-serif; font-size: .875rem; font-weight: 700; color: #111827; }
.news-card-header a { font-size: .75rem; color: #183858; font-weight: 500; }
.news-item {
    display: flex; gap: .75rem; padding: .875rem 1rem; border-bottom: 1px solid #F3F4F6;
    text-decoration: none; transition: background 150ms;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: #F9FAFB; }
.news-thumb-placeholder {
    width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.news-body { flex: 1; min-width: 0; }
.news-title {
    font-family: 'Satoshi','Inter',sans-serif; font-size: .8rem; font-weight: 600;
    color: #111827; line-height: 1.4; margin-bottom: .2rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-time { font-size: .7rem; color: #9CA3AF; }

/* Merchant CTA */
.merchant-cta-card { background: #183858; border-radius: 12px; padding: 1.25rem; }
.merchant-cta-card p {
    font-size: .875rem; color: rgba(255,255,255,.82); line-height: 1.55;
    margin-bottom: 1rem; font-family: 'Inter',sans-serif;
}
.merchant-cta-card p strong { font-family: 'Satoshi','Inter',sans-serif; font-size: .9rem; font-weight: 700; color: #fff; display: block; margin-bottom: .35rem; }
.btn-merchant-cta {
    display: block; width: 100%; padding: .75rem; background: #E46E4B; color: #fff;
    text-align: center; border-radius: 8px; font-family: 'Inter',sans-serif;
    font-size: .875rem; font-weight: 600; text-decoration: none; transition: background 150ms;
}
.btn-merchant-cta:hover { background: #d4623f; }

/* Mini events */
.mini-events-card { background: #fff; border-radius: 12px; border: 1px solid #EAEAEA; overflow: hidden; }
.mini-events-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: .875rem 1rem; border-bottom: 1px solid #F3F4F6;
}
.mini-events-header strong { font-family: 'Satoshi','Inter',sans-serif; font-size: .875rem; font-weight: 700; color: #111827; }
.mini-events-header a { font-size: .75rem; color: #183858; font-weight: 500; }
.mini-event-item {
    display: flex; align-items: center; gap: .75rem;
    padding: .75rem 1rem; border-bottom: 1px solid #F3F4F6;
    text-decoration: none; transition: background 150ms;
}
.mini-event-item:last-child { border-bottom: none; }
.mini-event-item:hover { background: #F9FAFB; }
.mini-event-date { display: flex; flex-direction: column; align-items: center; width: 36px; flex-shrink: 0; }
.mini-event-day { font-family: 'Satoshi','Inter',sans-serif; font-size: 1.1rem; font-weight: 700; color: #183858; line-height: 1; }
.mini-event-month { font-size: .65rem; font-weight: 600; color: #9CA3AF; text-transform: uppercase; letter-spacing: .05em; }
.mini-event-name { font-size: .8rem; font-weight: 500; color: #111827; line-height: 1.4; }

/* ================================================
   SHOPS SECTION
   ================================================ */

.city-shops { background: #fff; padding: 2.5rem 0 3.5rem; }

.shops-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.125rem; margin-top: 1.5rem; }

.shop-card-mini {
    border-radius: 14px; overflow: hidden; background: #fff;
    border: 1.5px solid #EAEAEA;
    transition: box-shadow 200ms, transform 200ms, border-color 200ms;
    text-decoration: none; display: flex; flex-direction: column;
}
.shop-card-mini:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    transform: translateY(-3px); border-color: #D0D7E3;
}
.shop-card-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.shop-card-photo-placeholder {
    width: 100%; aspect-ratio: 4/3; display: flex;
    align-items: center; justify-content: center; font-size: 2.25rem;
}
.shop-card-photo-placeholder--boulangerie { background: linear-gradient(135deg,#FDE68A 0%,#FCA5A5 100%); }
.shop-card-photo-placeholder--fleurs      { background: linear-gradient(135deg,#FBB6CE 0%,#F9A8D4 100%); }
.shop-card-photo-placeholder--cafe        { background: linear-gradient(135deg,#DDD6FE 0%,#C4B5FD 100%); }
.shop-card-photo-placeholder--epicerie    { background: linear-gradient(135deg,#BBF7D0 0%,#6EE7B7 100%); }
.shop-card-photo-placeholder--default     { background: linear-gradient(135deg,#BFDBFE 0%,#93C5FD 100%); }

.shop-card-body { padding: .875rem; flex: 1; }
.shop-card-name {
    font-family: 'Satoshi','Inter',sans-serif; font-size: .875rem; font-weight: 700; color: #111827;
    margin-bottom: .15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.shop-card-category { font-size: .73rem; color: #6B7280; margin-bottom: .4rem; }
.shop-card-rating { display: flex; align-items: center; gap: .25rem; font-size: .75rem; color: #374151; }
.shop-card-stars { color: #F59E0B; font-size: .75rem; letter-spacing: -.5px; }
.shop-card-count { color: #9CA3AF; font-size: .7rem; }

/* ================================================
   FOOTER
   ================================================ */

.site-footer { background: #fff; border-top: 1px solid #EAEAEA; padding: 1.75rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 1.25rem; }
.footer-brand img { width: 130px !important; height: auto !important; display: block; opacity: .85; }
.footer-brand-text { font-size: .8rem; color: #6B7280; max-width: 240px; line-height: 1.5; }

.footer-badges { display: flex; gap: 2.5rem; }
.footer-badge { display: flex; align-items: flex-start; gap: .5rem; }
.footer-badge-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(109,184,116,.12); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; color: #6DB874; margin-top: .1rem;
}
.footer-badge-text { display: flex; flex-direction: column; }
.footer-badge-label { font-family: 'Satoshi','Inter',sans-serif; font-size: .8rem; font-weight: 700; color: #111827; }
.footer-badge-sub { font-size: .72rem; color: #6B7280; }

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1100px) {
    .city-hero-inner { grid-template-columns: 1fr 280px; }
    .city-content-grid { grid-template-columns: 1fr 1fr; }
    .city-col-side { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .shops-row { grid-template-columns: repeat(3,1fr); }
    .feature-nav-grid { grid-template-columns: repeat(3,1fr); }
    .feature-nav-item { border-bottom: 1px solid #EAEAEA; }
}

@media (max-width: 768px) {
    .site-header .container { height: 72px; gap: .75rem; }
    .site-logo img { width: 130px !important; }
    .header-city-selector { display: none; }
    .nav-icon-link > span:not(.notif-badge) { display: none; }
    .notif-badge { right: 6px; }

    .city-hero { min-height: auto; }
    .city-hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .city-stats-card { width: 100%; max-width: 400px; }

    .city-content-grid { grid-template-columns: 1fr; }
    .city-col-side { grid-column: 1; display: flex; flex-direction: column; }

    .shops-row { grid-template-columns: repeat(2,1fr); }
    .feature-nav-grid { grid-template-columns: repeat(3,1fr); }

    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-badges { flex-direction: column; gap: .875rem; }

    .nav-toggle { display: flex; }
    .site-nav {
        display: none; position: fixed; top: 72px; left: 0; right: 0;
        background: #fff; padding: 1rem; border-top: 1px solid #EAEAEA;
        flex-direction: column; align-items: flex-start;
        box-shadow: 0 4px 16px rgba(0,0,0,.12); z-index: 199;
    }
    .site-nav.is-open { display: flex; }
}

@media (max-width: 480px) {
    .shops-row { grid-template-columns: 1fr 1fr; }
    .feature-nav-grid { grid-template-columns: repeat(2,1fr); }
    .city-hero-name { font-size: 3rem; }
    .city-hero .container { padding-top: 2.5rem; padding-bottom: 2rem; }
}

@media (min-width: 1441px) {
    .site-header .container { max-width: 1400px; }
    .container { max-width: 1300px; }
    .shops-row { grid-template-columns: repeat(5,1fr); }
}
