/* ── Variables & Reset ───────────────────────────────────────────── */
:root {
  --navy:   #0d2137;
  --navy2:  #1a3a5c;
  --orange: #e85d04;
  --blue:   #1565c0;
  --blue2:  #1976d2;
  --light:  #f5f7fa;
  --white:  #ffffff;
  --text:   #1a1a2e;
  --muted:  #5f6b7a;
  --border: #e2e8f0;
  --shadow: 0 2px 12px rgba(13,33,55,.10);
  --shadow-lg: 0 8px 32px rgba(13,33,55,.14);
  --radius: 10px;
  --radius-sm: 6px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.65;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue2); }
img { max-width: 100%; display: block; }

/* ── Typography ───────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
h2 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h3 { font-size: 1.1rem; font-weight: 600; }
h4 { font-size: .95rem; font-weight: 600; }
p  { color: var(--muted); }

/* ── Header ───────────────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 1.25rem; height: 62px;
}
.site-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem; font-weight: 700;
  color: #fff; white-space: nowrap; flex-shrink: 0;
}
.site-logo span { color: var(--orange); }
.site-logo:hover { color: #fff; text-decoration: none; }

.header-search {
  flex: 1; max-width: 420px;
  display: flex; align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px;
  padding: 0 .75rem 0 1rem;
  transition: background .2s;
}
.header-search:focus-within { background: rgba(255,255,255,.2); }
.header-search input {
  flex: 1; background: transparent; border: none; outline: none;
  color: #fff; font-size: .88rem; padding: .5rem 0;
}
.header-search input::placeholder { color: rgba(255,255,255,.55); }
.header-search button {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.7); font-size: 1rem; padding: .25rem;
  transition: color .2s;
}
.header-search button:hover { color: #fff; }

.header-nav { display: flex; gap: 1.25rem; align-items: center; margin-left: auto; }
.header-nav a { color: rgba(255,255,255,.8); font-size: .85rem; white-space: nowrap; transition: color .2s; }
.header-nav a:hover { color: #fff; }
.header-nav .nav-articles { color: var(--orange); font-weight: 600; }
.header-nav .nav-articles:hover { color: #ff7a2e; }

/* ── Page wrapper ─────────────────────────────────────────────────── */
.page-wrap { max-width: 1180px; margin: 0 auto; padding: 1.75rem 1.25rem 4rem; }

/* ── Breadcrumb ───────────────────────────────────────────────────── */
.breadcrumb {
  font-size: .78rem; color: var(--muted);
  margin-bottom: 1.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: .3rem;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb .sep { color: #bbb; }

/* ── Section headers ──────────────────────────────────────────────── */
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem;
}
.section-head h2 { margin: 0; }
.section-head a { font-size: .85rem; color: var(--blue); }

/* ── HOME ─────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1d5fa8 100%);
  padding: 3.5rem 1.25rem 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 680px; margin: 0 auto; }
.hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .75rem; }
.hero h1 span { color: var(--orange); }
.hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.hero-search {
  display: flex; background: #fff; border-radius: 40px;
  overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.25);
  max-width: 560px; margin: 0 auto;
}
.hero-search input {
  flex: 1; border: none; outline: none; padding: .9rem 1.25rem;
  font-size: .95rem; color: var(--text);
}
.hero-search button {
  background: var(--orange); border: none; cursor: pointer;
  color: #fff; font-size: .9rem; font-weight: 600;
  padding: 0 1.5rem; white-space: nowrap;
  transition: background .2s;
}
.hero-search button:hover { background: #d94f00; }

.hero-stats {
  display: flex; justify-content: center; gap: 2.5rem;
  margin-top: 2.5rem;
}
.hero-stat { color: rgba(255,255,255,.9); text-align: center; }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 700; color: #fff; }
.hero-stat span { font-size: .8rem; color: rgba(255,255,255,.65); }

/* ── Region grid ──────────────────────────────────────────────────── */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.region-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.25rem 1.4rem 1.1rem;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem;
  transition: transform .2s, box-shadow .2s;
  color: var(--text);
}
.region-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; color: var(--text); }
.region-icon { font-size: 1.8rem; flex-shrink: 0; }
.region-info h3 { font-size: .97rem; color: var(--navy); margin-bottom: .15rem; }
.region-count { font-size: .78rem; color: var(--muted); }
.region-count strong { color: var(--orange); }

/* ── City list ────────────────────────────────────────────────────── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: .75rem;
}
.city-card {
  background: var(--white); border-radius: var(--radius-sm);
  padding: .8rem 1rem; border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text); font-size: .9rem; font-weight: 500;
  transition: all .18s;
}
.city-card:hover { background: var(--navy); color: #fff; text-decoration: none; box-shadow: var(--shadow-lg); }
.city-card:hover .city-badge { background: rgba(255,255,255,.2); color: #fff; }
.city-badge {
  background: #eef2ff; color: var(--blue);
  font-size: .72rem; font-weight: 700;
  border-radius: 20px; padding: .15rem .6rem;
}

/* ── Garage card grid ─────────────────────────────────────────────── */
.garage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1rem;
}
.garage-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem;
  transition: transform .18s, box-shadow .18s;
}
.garage-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.garage-card-name { font-size: .97rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.garage-card-name a { color: inherit; }
.garage-card-name a:hover { color: var(--blue); }
.garage-card-meta { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; font-size: .8rem; }
.tag-rating { color: #b45309; font-weight: 700; }
.tag-rating .stars { color: #f59e0b; letter-spacing: .05em; }
.tag-phone { color: #166534; font-weight: 500; }
.garage-card-addr { font-size: .8rem; color: var(--muted); display: flex; gap: .35rem; align-items: flex-start; }
.garage-card-addr::before { content: '📍'; flex-shrink: 0; }

/* ── Top 5 section ────────────────────────────────────────────────── */
.top5-section {
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  border: 1px solid #ffd580; border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 2rem;
}
.top5-section h2 { color: var(--navy); margin-bottom: 1rem; font-size: 1.15rem; }
.top5-section h2 span { color: var(--orange); }
.top5-list { display: flex; flex-direction: column; gap: .6rem; }
.top5-item {
  background: var(--white); border-radius: var(--radius-sm);
  padding: .8rem 1rem; display: flex; align-items: center;
  gap: .9rem; box-shadow: 0 1px 4px rgba(0,0,0,.07);
  transition: box-shadow .15s;
}
.top5-item:hover { box-shadow: var(--shadow); }
.top5-rank {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.top5-rank.rank-1 { background: #f59e0b; }
.top5-rank.rank-2 { background: #9ca3af; }
.top5-rank.rank-3 { background: #cd7c2e; }
.top5-info { flex: 1; min-width: 0; }
.top5-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.top5-name a { color: inherit; }
.top5-name a:hover { color: var(--blue); }
.top5-addr { font-size: .78rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top5-rating { font-size: .88rem; color: #b45309; font-weight: 700; white-space: nowrap; }
.top5-stars { color: #f59e0b; font-size: .78rem; }

/* ── Ficha (garage detail) ────────────────────────────────────────── */
.ficha-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.5rem; align-items: start;
}
@media (max-width: 800px) { .ficha-layout { grid-template-columns: 1fr; } }

.ficha-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.ficha-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 1.4rem 1.5rem;
}
.ficha-card-header h1 { color: #fff; font-size: 1.4rem; margin-bottom: .3rem; }
.ficha-breadcrumb-inline { color: rgba(255,255,255,.6); font-size: .8rem; }
.ficha-breadcrumb-inline a { color: rgba(255,255,255,.75); }

.ficha-body { padding: 1.5rem; }
.info-row {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: .8rem 0; border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-icon { font-size: 1.1rem; width: 1.5rem; text-align: center; flex-shrink: 0; margin-top: .05rem; }
.info-label { font-weight: 600; font-size: .82rem; color: var(--muted); min-width: 90px; padding-top: .18rem; }
.info-value { flex: 1; font-size: .9rem; color: var(--text); }
.info-value a { color: var(--blue); }

.rating-display { display: flex; align-items: center; gap: .6rem; }
.rating-score { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.rating-stars { color: #f59e0b; font-size: 1rem; letter-spacing: .08em; }
.rating-count { font-size: .8rem; color: var(--muted); }

.btn-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #16a34a; color: #fff; font-weight: 700; font-size: 1rem;
  padding: .75rem 1.5rem; border-radius: 40px;
  margin-top: .25rem; transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(22,163,74,.35);
}
.btn-phone:hover { background: #15803d; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(22,163,74,.4); text-decoration: none; }

.map-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  overflow: hidden;
}
.map-card-title {
  padding: .9rem 1.1rem .5rem;
  font-size: .85rem; font-weight: 600; color: var(--navy);
}
.map-embed { width: 100%; height: 230px; border: 0; display: block; }
.btn-maps {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  background: var(--blue); color: #fff; font-size: .88rem; font-weight: 600;
  padding: .7rem 1rem; margin: .75rem; border-radius: var(--radius-sm);
  transition: background .2s;
}
.btn-maps:hover { background: var(--blue2); color: #fff; text-decoration: none; }

.plus-code { font-size: .75rem; color: #aaa; padding: 0 1.1rem .75rem; }

/* ── Intro text ───────────────────────────────────────────────────── */
.ficha-intro {
  background: #f8faff; border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .9rem 1.1rem; margin-bottom: 1.25rem;
  font-size: .9rem; color: var(--muted); line-height: 1.7;
}

/* ── Hours table ──────────────────────────────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.hours-table tr:nth-child(even) { background: var(--light); }
.hours-table td { padding: .35rem .5rem; color: var(--text); }
.hours-table td:first-child { font-weight: 600; color: var(--navy); width: 110px; }

/* ── Nearby ───────────────────────────────────────────────────────── */
.nearby-section { margin-top: 2.5rem; }
.nearby-section h2 { font-size: 1.1rem; margin-bottom: .9rem; }
.nearby-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.nearby-list li {
  background: var(--white); border-radius: var(--radius-sm);
  padding: .7rem 1rem; border: 1px solid var(--border);
  font-size: .88rem; box-shadow: 0 1px 3px rgba(0,0,0,.05);
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
}
.nearby-list li a { color: var(--navy); font-weight: 500; }
.nearby-list li a:hover { color: var(--blue); }
.nearby-list li .nearby-addr { color: var(--muted); font-size: .78rem; text-align: right; }

/* ── Articles ─────────────────────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.1rem;
}
.article-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  padding: 1.2rem; display: flex; flex-direction: column; gap: .6rem;
  transition: transform .18s, box-shadow .18s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.article-cat {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .2rem .6rem; border-radius: 20px;
  background: #e8f0fe; color: var(--blue);
}
.article-cat.cat-freins { background: #fce8e8; color: #c62828; }
.article-cat.cat-moteur { background: #e8f5e9; color: #2e7d32; }
.article-cat.cat-pneus  { background: #fff8e1; color: #f57f17; }
.article-cat.cat-electrique { background: #e3f2fd; color: #1565c0; }
.article-cat.cat-conseils   { background: #f3e5f5; color: #6a1b9a; }
.article-cat.cat-entretien  { background: #e0f7fa; color: #006064; }
.article-card h3 { font-size: .97rem; color: var(--navy); line-height: 1.35; }
.article-card h3 a { color: inherit; }
.article-card h3 a:hover { color: var(--blue); }
.article-card p { font-size: .83rem; color: var(--muted); line-height: 1.55; flex: 1; }
.article-card-meta { font-size: .75rem; color: #aaa; display: flex; gap: .75rem; }
.article-read-more { font-size: .82rem; font-weight: 600; color: var(--blue); }

/* ── Article detail page ──────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem; align-items: start;
}
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } }
.article-body { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); padding: 2rem; }
.article-body h1 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: .5rem; }
.article-meta { font-size: .78rem; color: var(--muted); margin-bottom: 1.5rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.article-body .content h2 { font-size: 1.15rem; margin: 1.75rem 0 .6rem; color: var(--navy); }
.article-body .content h3 { font-size: 1rem; margin: 1.25rem 0 .4rem; color: var(--navy2); }
.article-body .content p { font-size: .9rem; color: var(--text); line-height: 1.75; margin-bottom: .9rem; }
.article-body .content ul, .article-body .content ol { margin: .5rem 0 .9rem 1.4rem; }
.article-body .content li { font-size: .9rem; color: var(--text); line-height: 1.65; margin-bottom: .3rem; }
.article-body .content strong { color: var(--navy); font-weight: 600; }
.article-body .content .tip-box {
  background: #f0f7ff; border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .9rem 1.1rem; margin: 1rem 0; font-size: .88rem; color: var(--text);
}
.article-sidebar .sidebar-block {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  padding: 1.2rem; margin-bottom: 1rem;
}
.article-sidebar .sidebar-block h3 { font-size: .9rem; margin-bottom: .75rem; color: var(--navy); }
.article-sidebar .sidebar-block ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.article-sidebar .sidebar-block ul li a { font-size: .83rem; color: var(--blue); display: flex; gap: .4rem; align-items: flex-start; line-height: 1.3; }
.article-sidebar .sidebar-block ul li a::before { content: '→'; flex-shrink: 0; color: var(--orange); }

/* ── Region extra content ─────────────────────────────────────────── */
.region-extra {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  padding: 1.5rem 1.75rem; margin-top: 2rem;
}
.region-extra h2 { font-size: 1.1rem; margin-bottom: .75rem; }
.region-extra p { font-size: .9rem; color: var(--text); line-height: 1.75; margin-bottom: .7rem; }
.region-extra p:last-child { margin-bottom: 0; }
.region-tips { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .75rem; margin-top: 1rem; }
.region-tip {
  background: var(--light); border-radius: var(--radius-sm);
  padding: .9rem 1rem; display: flex; gap: .7rem; align-items: flex-start;
}
.region-tip-icon { font-size: 1.3rem; flex-shrink: 0; }
.region-tip-text { font-size: .82rem; color: var(--text); line-height: 1.5; }
.region-tip-text strong { display: block; color: var(--navy); margin-bottom: .15rem; }

/* ── Search results page ──────────────────────────────────────────── */
.search-results-header { margin-bottom: 1.25rem; }
.search-results-header h1 { font-size: 1.3rem; }
.search-empty { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.search-empty svg { margin-bottom: 1rem; opacity: .3; }

/* ── Static pages (privacy, legal, contact) ───────────────────────── */
.static-page { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); padding: 2rem 2.25rem; max-width: 780px; }
.static-page h1 { font-size: 1.5rem; margin-bottom: .5rem; }
.static-page .updated { font-size: .78rem; color: var(--muted); margin-bottom: 1.75rem; }
.static-page h2 { font-size: 1.05rem; margin: 1.75rem 0 .5rem; }
.static-page p, .static-page li { font-size: .9rem; color: var(--text); line-height: 1.75; margin-bottom: .6rem; }
.static-page ul { margin-left: 1.4rem; margin-bottom: .8rem; }
.contact-form { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.25rem; }
.contact-form label { font-size: .85rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: .3rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: .65rem .9rem; font-size: .9rem; font-family: inherit; color: var(--text);
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); outline: none; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.btn-submit {
  background: var(--navy); color: #fff; border: none; cursor: pointer;
  padding: .8rem 2rem; border-radius: 40px; font-weight: 700; font-size: .95rem;
  font-family: inherit; transition: background .2s, transform .15s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--navy2); transform: translateY(-1px); }

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); margin-top: 4rem; }
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 2.5rem 1.25rem 1.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
}
.footer-brand .logo { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: #fff; display: inline-block; margin-bottom: .5rem; }
.footer-brand .logo span { color: var(--orange); }
.footer-brand p { font-size: .82rem; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: .88rem; font-weight: 600; margin-bottom: .75rem; letter-spacing: .04em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .83rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center; padding: 1rem 1.25rem;
  font-size: .78rem; color: rgba(255,255,255,.4);
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding: 2.25rem 1rem 2.75rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat strong { font-size: 1.3rem; }
  .region-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .garage-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .header-search { display: none; }
  .header-nav { gap: .75rem; }
  .header-nav a:not(.nav-articles) { display: none; }
}
@media (max-width: 400px) {
  .region-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
}

/* ── Ads ──────────────────────────────────────────────────────────── */
.adsense-block { margin: 1.5rem 0; text-align: center; min-height: 90px; }
