/* ============================================================
   COUVREURS-ZINGUEURS.COM — Design System
   Palette: Navy #003366 | Gold #D4AF37 | Light #F4F4F4
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #003366;
  --navy-hover: #004488;
  --navy-light: #0066AA;
  --gold: #D4AF37;
  --gold-hover: #B8941F;
  --light: #F4F4F4;
  --white: #ffffff;
  --text: #1f2937;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --radius: .5rem;
  --radius-lg: .75rem;
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); line-height: 1.5; background: var(--white); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ============================================================ UTILS */
.container { max-width: 80rem; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px)  { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================ HEADER */
.header { background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,.08); border-bottom: 2px solid rgba(0,51,102,.1); position: sticky; top: 0; z-index: 100; }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }

.logo { display: flex; align-items: center; gap: .75rem; }
.logo__icon { width: 3.5rem; height: 3.5rem; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo__icon svg { width: 1.75rem; height: 1.75rem; color: var(--white); }
.logo__text { display: none; }
@media (min-width: 640px) { .logo__text { display: block; } }
.logo__title { font-size: 1.25rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.logo__title span { color: var(--gold); }
.logo__sub { font-size: .75rem; color: var(--text-muted); margin-top: .125rem; }

.nav { display: none; align-items: center; gap: .5rem; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a { display: flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: var(--radius); font-weight: 500; color: var(--navy); transition: background .15s, color .15s; }
.nav a:hover, .nav a.active { background: var(--light); }
.nav a.active { background: var(--navy); color: var(--white); }
.nav svg { width: 1rem; height: 1rem; }

.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: flex; align-items: center; gap: 1rem; } }
.btn-tel { display: flex; align-items: center; gap: .5rem; background: var(--gold); color: var(--white); padding: .5rem 1rem; border-radius: var(--radius); font-weight: 500; transition: background .15s; }
.btn-tel:hover { background: var(--gold-hover); }
.btn-tel svg { width: 1rem; height: 1rem; }

/* Mobile menu toggle */
.menu-toggle { display: flex; padding: .5rem; border: none; background: none; color: var(--navy); cursor: pointer; border-radius: var(--radius); }
.menu-toggle:hover { background: var(--light); }
.menu-toggle svg { width: 1.5rem; height: 1.5rem; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav { display: none; border-top: 1px solid var(--border); padding: 1rem 0; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: flex; align-items: center; gap: .75rem; padding: .75rem 1rem; border-radius: var(--radius); font-weight: 500; color: var(--navy); margin-bottom: .25rem; }
.mobile-nav a:hover { background: var(--light); }
.mobile-nav a.active { background: var(--navy); color: var(--white); }

/* ============================================================ HERO */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-hover) 50%, var(--navy-light) 100%); color: var(--white); padding: 4rem 0 3rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,.05)'/%3E%3C/svg%3E"); }
.hero__inner { position: relative; max-width: 56rem; margin: 0 auto; text-align: center; padding: 0 1rem; }
.hero__badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 2rem; padding: .375rem .875rem; font-size: .875rem; font-weight: 500; margin-bottom: 1.5rem; }
.hero__badge svg { width: 1rem; height: 1rem; color: var(--gold); }
.hero h1 { font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold); display: block; }
.hero__desc { font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 40rem; margin-left: auto; margin-right: auto; }

.hero__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .hero__stats { grid-template-columns: repeat(4, 1fr); } }
.stat-box { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 1rem; text-align: center; }
.stat-box__num { font-size: 1.5rem; font-weight: 800; color: var(--gold); display: block; }
.stat-box__label { font-size: .75rem; color: rgba(255,255,255,.8); margin-top: .25rem; }
.stat-box svg { width: 1.5rem; height: 1.5rem; margin: 0 auto .375rem; color: var(--gold); }

/* ─── Hero 2 colonnes ─── */
.hero__inner--2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: left;
  max-width: 80rem;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .hero__inner--2col {
    grid-template-columns: 1fr 440px;
    gap: 3rem;
    align-items: center;
  }
}
.hero__text-col {}
.hero__text-col .hero__desc { margin-left: 0; margin-right: 0; }
.hero__text-col .hero__stats { margin-bottom: 1.5rem; }
.hero__map-col {}

/* ─── Map Card ─── */
.map-card {
  background: #fff;
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,51,102,.28), 0 2px 8px rgba(0,0,0,.12);
}
.map-card__header {
  display: flex; align-items: center; gap: .5rem;
  padding: .875rem 1.125rem;
  background: var(--navy);
  font-size: .875rem; font-weight: 600; color: #fff;
  border-bottom: 2px solid var(--gold);
}
.map-card__header svg { width: 1rem; height: 1rem; color: var(--gold); flex-shrink: 0; }
.map-card__body { position: relative; padding: .5rem .75rem .25rem; background: #EEF5FB; }

/* ─── SVG Map ─── */
.idf-svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 2px 6px rgba(0,51,102,.15)); }

/* Couleurs par département */
.dept-path              { stroke: #fff; stroke-width: 2; cursor: pointer; transition: fill .18s, filter .18s, stroke-width .18s; }
#dp-seine-et-marne      { fill: #B4CDE8; }
#dp-val-d-oise          { fill: #A8C5E4; }
#dp-yvelines            { fill: #B0CAEA; }
#dp-essonne             { fill: #9DD0BE; }
#dp-hauts-de-seine      { fill: #78AAD4; }
#dp-paris               { fill: #3A6CC8; }
#dp-seine-saint-denis   { fill: #8AB8D8; }
#dp-val-de-marne        { fill: #BBC8E8; }

.dept-path:hover, .dept-path.hovered {
  fill: var(--gold) !important;
  stroke: var(--gold-hover);
  stroke-width: 2.5;
  filter: drop-shadow(0 3px 8px rgba(212,175,55,.5));
}

/* pastilles petits depts */
.dept-pip {
  stroke: #fff;
  stroke-width: 2;
  cursor: pointer;
  transition: fill .18s, r .12s;
}
#pip-92 { fill: #78AAD4; }
#pip-75 { fill: #3A6CC8; }
#pip-93 { fill: #8AB8D8; }
#pip-94 { fill: #BBC8E8; }

.dept-pip:hover, .dept-pip.hovered {
  fill: var(--gold) !important;
  stroke: var(--gold-hover);
  filter: drop-shadow(0 2px 6px rgba(212,175,55,.5));
}
.dept-pip-label {
  font-size: 11px; font-weight: 800;
  fill: #fff;
  text-anchor: middle; dominant-baseline: middle;
  pointer-events: none; user-select: none;
}

/* étiquettes */
.dept-label {
  font-size: 11.5px; font-weight: 700;
  fill: var(--navy);
  text-anchor: middle;
  pointer-events: none; user-select: none;
  paint-order: stroke;
  stroke: rgba(238,245,251,.85);
  stroke-width: 3.5;
  stroke-linejoin: round;
  letter-spacing: .01em;
}

/* ─── Tooltip ─── */
.map-tip {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .75rem 1rem;
  pointer-events: none;
  display: none;
  min-width: 160px;
  transform: translate(-50%, calc(-100% - 12px));
  z-index: 10;
  border-top: 3px solid var(--gold);
}
.map-tip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--white);
}
.map-tip__code {
  font-size: .75rem; font-weight: 800;
  color: var(--gold); letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.map-tip strong { display: block; font-size: .9375rem; color: var(--navy); }
.map-tip span { display: block; font-size: .8125rem; color: var(--text-muted); margin-top: .125rem; }
.map-tip__cta {
  margin-top: .5rem;
  font-size: .8125rem; font-weight: 700;
  color: var(--gold-hover);
}

/* ─── Chips depts sous la carte ─── */
.map-card__depts {
  display: flex; flex-wrap: wrap; gap: .375rem;
  padding: .75rem 1rem;
  background: #fff;
  border-top: 1px solid var(--border);
}
.map-dept-chip {
  display: flex; align-items: center; gap: .375rem;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: .25rem .625rem;
  font-size: .6875rem; color: var(--text);
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.map-dept-chip:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.map-dept-chip__code {
  font-weight: 800; color: var(--gold-hover); font-size: .6875rem;
}
.map-dept-chip:hover .map-dept-chip__code { color: var(--gold); }
.map-dept-chip__nom { font-size: .6875rem; }

/* ============================================================ SEARCH */
.search-box { background: var(--white); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-lg); max-width: 48rem; margin: 0 auto; }
.search-form { display: flex; gap: .75rem; flex-wrap: wrap; }
.search-form input, .search-form select { flex: 1; min-width: 160px; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 1rem; color: var(--text); background: var(--white); transition: border .15s; }
.search-form input:focus, .search-form select:focus { outline: none; border-color: var(--navy); }
.search-form button { background: var(--navy); color: var(--white); border: none; padding: .75rem 1.5rem; border-radius: var(--radius); font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: .5rem; transition: background .15s; white-space: nowrap; }
.search-form button:hover { background: var(--navy-hover); }
.search-form button svg { width: 1.125rem; height: 1.125rem; }

/* ============================================================ SECTIONS */
.section { padding: 4rem 0; }
.section--light { background: var(--light); }
.section__header { text-align: center; margin-bottom: 2.5rem; }
.section__header h2 { font-size: clamp(1.375rem, 3vw, 2rem); font-weight: 700; color: var(--navy); margin-bottom: .75rem; }
.section__header p { color: var(--text-muted); font-size: 1.0625rem; max-width: 36rem; margin: 0 auto; }
.section__header .divider { width: 3rem; height: .25rem; background: linear-gradient(90deg, var(--navy), var(--gold)); border-radius: 2px; margin: 1rem auto 0; }

/* ============================================================ DEPT CARDS */
.dept-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px)  { .dept-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .dept-grid { grid-template-columns: repeat(4, 1fr); } }

.dept-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .625rem; transition: box-shadow .2s, border-color .2s, transform .2s; }
.dept-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy); transform: translateY(-2px); }
.dept-card__icon { width: 3rem; height: 3rem; background: linear-gradient(135deg, var(--navy), var(--navy-hover)); border-radius: .625rem; display: flex; align-items: center; justify-content: center; }
.dept-card__icon svg { width: 1.5rem; height: 1.5rem; color: var(--white); }
.dept-card__code { font-size: .75rem; font-weight: 700; color: var(--gold); letter-spacing: .05em; }
.dept-card__name { font-weight: 600; color: var(--navy); font-size: .9375rem; }
.dept-card__count { font-size: .8125rem; color: var(--text-muted); }

/* ============================================================ COUVREUR CARDS */
.couvreurs-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .couvreurs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .couvreurs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .couvreurs-grid { grid-template-columns: repeat(4, 1fr); } }

.couvreur-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.couvreur-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.couvreur-card__img { position: relative; height: 10rem; overflow: hidden; background: var(--light); flex-shrink: 0; }
.couvreur-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.couvreur-card:hover .couvreur-card__img img { transform: scale(1.05); }
.badge-top { position: absolute; top: .75rem; left: .75rem; background: var(--gold); color: var(--white); font-size: .6875rem; font-weight: 700; padding: .25rem .5rem; border-radius: var(--radius); }
.badge-rating { position: absolute; top: .75rem; right: .75rem; background: rgba(255,255,255,.92); backdrop-filter: blur(4px); border-radius: var(--radius); padding: .25rem .5rem; display: flex; align-items: center; gap: .25rem; font-size: .875rem; font-weight: 600; color: var(--text); }
.badge-rating .star-icon { color: var(--gold); }

.couvreur-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.couvreur-card__name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .375rem; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.couvreur-card:hover .couvreur-card__name { color: var(--gold); }
.couvreur-card__loc { display: flex; align-items: center; gap: .25rem; color: var(--text-muted); font-size: .875rem; margin-bottom: .75rem; }
.couvreur-card__loc svg { width: 1rem; height: 1rem; color: var(--gold); flex-shrink: 0; }

.tags { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: .875rem; }
.tag { background: var(--light); color: var(--navy); font-size: .75rem; padding: .25rem .5rem; border-radius: .375rem; font-weight: 500; }

.stars { display: flex; align-items: center; gap: .25rem; margin-bottom: 1rem; }
.stars svg { width: .875rem; height: .875rem; }
.stars .filled { color: var(--gold); }
.stars .empty { color: #d1d5db; }
.stars__count { font-size: .8125rem; color: var(--text-muted); margin-left: .25rem; }

.couvreur-card__actions { display: flex; flex-direction: column; gap: .5rem; margin-top: auto; }
.btn-profile { display: block; background: var(--navy); color: var(--white); text-align: center; padding: .5rem 1rem; border-radius: var(--radius); font-weight: 500; font-size: .9375rem; transition: background .15s; }
.btn-profile:hover { background: var(--navy-hover); }
.btn-row { display: flex; gap: .5rem; }
.btn-call { flex: 1; display: flex; align-items: center; justify-content: center; gap: .375rem; background: var(--gold); color: var(--white); padding: .5rem; border-radius: var(--radius); font-size: .875rem; font-weight: 500; transition: background .15s; }
.btn-call:hover { background: var(--gold-hover); }
.btn-wa { flex: 1; display: flex; align-items: center; justify-content: center; gap: .375rem; background: #25d366; color: var(--white); padding: .5rem; border-radius: var(--radius); font-size: .875rem; font-weight: 500; transition: background .15s; }
.btn-wa:hover { background: #1da851; }
.btn-call svg, .btn-wa svg { width: 1rem; height: 1rem; }

/* ============================================================ HOW IT WORKS */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; }
.step__num { width: 3.5rem; height: 3.5rem; background: linear-gradient(135deg, var(--navy), var(--navy-hover)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.25rem; font-weight: 800; color: var(--white); }
.step__icon { width: 1.5rem; height: 1.5rem; color: var(--white); margin-bottom: .5rem; }
.step h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.step p { color: var(--text-muted); font-size: .9375rem; }

/* ============================================================ DETAIL PAGE */
.breadcrumb { padding: .875rem 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: .375rem; list-style: none; font-size: .875rem; }
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { color: var(--gold); text-decoration: underline; }
.breadcrumb .sep { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-muted); }

.profile-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; }
@media (min-width: 1024px) { .profile-grid { grid-template-columns: 2fr 1fr; } }

.profile-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.profile-card__img { height: 14rem; overflow: hidden; background: var(--light); }
.profile-card__img img { width: 100%; height: 100%; object-fit: cover; }
.profile-card__body { padding: 1.75rem; }
.profile-card__name { font-size: 1.625rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.profile-card__loc { display: flex; align-items: center; gap: .375rem; color: var(--text-muted); margin-bottom: 1rem; }
.profile-card__loc svg { width: 1.125rem; height: 1.125rem; color: var(--gold); }
.profile-card__stars { display: flex; align-items: center; gap: .375rem; margin-bottom: 1.25rem; font-size: 1rem; }
.profile-card__stars svg { width: 1.25rem; height: 1.25rem; }
.profile-card__services { margin-bottom: 1.25rem; }
.profile-card__services h3 { font-size: .875rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.profile-info { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.info-row { display: flex; align-items: flex-start; gap: .75rem; padding: .625rem 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: none; }
.info-row svg { width: 1.25rem; height: 1.25rem; color: var(--gold); flex-shrink: 0; margin-top: .125rem; }
.info-row__label { font-size: .8125rem; color: var(--text-muted); }
.info-row__value { font-weight: 500; }

.sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 1.5rem; }
.sidebar-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 2px solid var(--light); }
.btn-primary { display: flex; align-items: center; justify-content: center; gap: .5rem; width: 100%; background: var(--navy); color: var(--white); padding: .875rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem; transition: background .15s; margin-bottom: .75rem; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--navy-hover); }
.btn-gold { background: var(--gold); }
.btn-gold:hover { background: var(--gold-hover); }
.btn-green { background: #25d366; }
.btn-green:hover { background: #1da851; }
.btn-primary svg { width: 1.25rem; height: 1.25rem; }

/* ============================================================ CONTACT FORM */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; color: var(--navy); margin-bottom: .375rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .9375rem; color: var(--text); background: var(--white); transition: border-color .15s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================ PAGINATION */
.pagination { display: flex; justify-content: center; align-items: center; gap: .5rem; padding: 2rem 0; flex-wrap: wrap; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: var(--radius); font-weight: 500; }
.pagination a { color: var(--navy); border: 1px solid var(--border); transition: background .15s, border-color .15s; }
.pagination a:hover { background: var(--light); border-color: var(--navy); }
.pagination span.active { background: var(--navy); color: var(--white); }
.pagination .dots { color: var(--text-muted); border: none; }

/* ============================================================ LISTING PAGE */
.listing-header { background: linear-gradient(135deg, var(--navy), var(--navy-hover)); color: var(--white); padding: 2.5rem 0; }
.listing-header h1 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 800; margin-bottom: .5rem; }
.listing-header p { color: rgba(255,255,255,.85); font-size: 1rem; }
.listing-header .crumb { display: flex; align-items: center; gap: .375rem; font-size: .875rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.listing-header .crumb a { color: rgba(255,255,255,.85); }
.listing-header .crumb a:hover { color: var(--white); }
.listing-header .crumb .sep { color: rgba(255,255,255,.4); }

.listing-intro { background: var(--white); padding: 2rem 0; border-bottom: 1px solid var(--border); }
.listing-intro p { color: var(--text-muted); line-height: 1.75; max-width: 52rem; }

/* ── Dept page enrichie ── */
.dept-intro p { color: var(--text); line-height: 1.85; max-width: 58rem; margin-bottom: .875rem; }
.dept-intro strong { color: var(--navy); }

.dept-stat { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,.12); border-radius: .75rem; padding: .75rem 1.25rem; min-width: 80px; }
.dept-stat__val { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.dept-stat__lbl { font-size: .75rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; margin-top: .125rem; }

.dept-villes-bar { background: var(--white); padding: .875rem 0; border-bottom: 1px solid var(--border); }
.dept-villes-bar__inner { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.dept-villes-bar__label { font-size: .875rem; font-weight: 600; color: var(--navy); margin-right: .25rem; flex-shrink: 0; }
.dept-ville-chip { font-size: .8125rem; background: var(--light); color: var(--navy); padding: .25rem .625rem; border-radius: .375rem; font-weight: 500; transition: background .15s, color .15s; }
.dept-ville-chip em { color: var(--text-muted); font-style: normal; margin-left: .125rem; }
.dept-ville-chip:hover { background: var(--navy); color: #fff; }
.dept-ville-chip:hover em { color: rgba(255,255,255,.7); }

/* Villes clés */
.dept-villes-cles { background: var(--light); }
.villes-cles-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px)  { .villes-cles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .villes-cles-grid { grid-template-columns: repeat(4, 1fr); } }
.ville-cle-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.25rem; border: 1.5px solid var(--border); transition: box-shadow .2s, border-color .2s; }
.ville-cle-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy); }
.ville-cle-card__icon { width: 2rem; height: 2rem; background: var(--navy); border-radius: .5rem; display: flex; align-items: center; justify-content: center; margin-bottom: .75rem; }
.ville-cle-card__icon svg { width: 1rem; height: 1rem; color: var(--gold); }
.ville-cle-card__nom { font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: .5rem; }
.ville-cle-card__desc { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* Tableau de prix */
.dept-prix { background: var(--navy); }
.dept-prix .section-title { color: #fff; }
.prix-table-wrap { overflow-x: auto; margin-top: 1.5rem; border-radius: var(--radius-lg); box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.prix-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; }
.prix-table thead { background: var(--gold); }
.prix-table thead th { padding: .875rem 1.25rem; font-weight: 700; font-size: .9375rem; color: var(--navy); text-align: left; }
.prix-table tbody tr:nth-child(even) { background: var(--light); }
.prix-table tbody tr:hover { background: #e8f0fa; }
.prix-table tbody td { padding: .75rem 1.25rem; font-size: .9375rem; color: var(--text); border-bottom: 1px solid var(--border); }
.prix-table tbody tr:last-child td { border-bottom: none; }
.prix-cell { font-weight: 700; color: var(--navy); white-space: nowrap; }
.prix-note { color: rgba(255,255,255,.75); font-size: .875rem; margin-top: 1.25rem; text-align: center; max-width: 44rem; margin-left: auto; margin-right: auto; }
.btn--gold { background: var(--gold); color: var(--navy); font-weight: 700; }
.btn--gold:hover { background: var(--gold-hover); }

/* FAQ département */
.dept-faq { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.5rem; max-width: 52rem; margin-left: auto; margin-right: auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .2s; }
.faq-item[open] { border-color: var(--navy); }
.faq-item__q { padding: 1.125rem 1.5rem; font-weight: 600; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 1rem; background: var(--white); transition: background .15s; }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after { content: '+'; font-size: 1.25rem; color: var(--gold); font-weight: 400; flex-shrink: 0; margin-left: 1rem; transition: transform .2s; }
.faq-item[open] .faq-item__q { background: #EEF5FF; }
.faq-item[open] .faq-item__q::after { content: '−'; }
.faq-item__a { padding: 1rem 1.5rem 1.25rem; border-top: 1px solid var(--border); font-size: .9375rem; line-height: 1.8; color: var(--text); background: #FAFBFF; }

.filters { background: var(--white); padding: 1rem 0; border-bottom: 1px solid var(--border); position: sticky; top: 5rem; z-index: 50; box-shadow: var(--shadow); }
.filters__row { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.filter-select { padding: .5rem .875rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .875rem; color: var(--text); background: var(--white); cursor: pointer; }
.filter-select:focus { outline: none; border-color: var(--navy); }
.filter-count { font-size: .875rem; color: var(--text-muted); margin-left: auto; }

/* ============================================================ FOOTER */
.footer { background: var(--navy); color: var(--white); padding: 3rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer__brand .logo__title { color: var(--white); }
.footer__brand p { color: rgba(255,255,255,.7); font-size: .9375rem; margin-top: .875rem; line-height: 1.6; }
.footer__brand .socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer__brand .socials a { width: 2.25rem; height: 2.25rem; background: rgba(255,255,255,.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.footer__brand .socials a:hover { background: var(--gold); }
.footer__brand .socials svg { width: 1.125rem; height: 1.125rem; }

.footer h4 { font-size: .9375rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .5rem; }
.footer ul a { color: rgba(255,255,255,.7); font-size: .9375rem; transition: color .15s; }
.footer ul a:hover { color: var(--white); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding: 1.25rem 0; }
.footer__bottom__inner { display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.6); }
@media (min-width: 640px) { .footer__bottom__inner { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer__bottom a { color: rgba(255,255,255,.7); }
.footer__bottom a:hover { color: var(--white); }

/* ============================================================ CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--gold), var(--gold-hover)); color: var(--white); padding: 3rem 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 700; margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.9); margin-bottom: 1.5rem; font-size: 1.0625rem; }
.cta-band .btn { display: inline-flex; align-items: center; gap: .625rem; background: var(--navy); color: var(--white); padding: .875rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 1.0625rem; transition: background .15s; }
.cta-band .btn:hover { background: var(--navy-hover); }
.cta-band .btn svg { width: 1.25rem; height: 1.25rem; }

/* ============================================================ ALERT / NOTICE */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .9375rem; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ============================================================ NO RESULTS */
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--text-muted); }
.empty-state svg { width: 3rem; height: 3rem; margin: 0 auto 1rem; color: var(--border); }
.empty-state h3 { font-size: 1.125rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }

/* ============================================================ VILLE HERO (2 colonnes above-the-fold) */
.ville-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-hover) 55%, var(--navy-light) 100%);
  padding: 2.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.ville-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
}
.ville-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .ville-hero__grid { grid-template-columns: 1fr 420px; gap: 3rem; align-items: center; }
}

/* LEFT — contenu */
.ville-hero__content { color: var(--white); }
.ville-hero__crumb { display: flex; align-items: center; gap: .375rem; font-size: .8125rem; color: rgba(255,255,255,.65); margin-bottom: 1rem; flex-wrap: wrap; }
.ville-hero__crumb a { color: rgba(255,255,255,.8); transition: color .15s; }
.ville-hero__crumb a:hover { color: var(--white); }
.ville-hero__crumb .sep { color: rgba(255,255,255,.35); }

.ville-hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,175,55,.15); border: 1px solid rgba(212,175,55,.4);
  border-radius: 2rem; padding: .3rem .875rem; font-size: .8125rem; font-weight: 600;
  color: var(--gold); margin-bottom: 1.125rem;
}
.ville-hero__badge svg { width: .875rem; height: .875rem; }

.ville-hero__h1 { font-size: clamp(1.625rem, 4vw, 2.375rem); font-weight: 800; line-height: 1.2; margin-bottom: .875rem; }
.ville-hero__h1 span { color: var(--gold); }

.ville-hero__rating { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.125rem; flex-wrap: wrap; }
.ville-hero__rating .stars-row { display: flex; gap: .2rem; }
.ville-hero__rating .stars-row svg { width: 1rem; height: 1rem; }
.ville-hero__rating .score { font-size: 1.125rem; font-weight: 800; color: var(--gold); }
.ville-hero__rating .count { font-size: .875rem; color: rgba(255,255,255,.7); }

.ville-hero__desc { font-size: 1rem; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 1.5rem; max-width: 36rem; }

.ville-hero__trust { display: flex; flex-wrap: wrap; gap: .625rem; margin-bottom: 1.5rem; }
.trust-pill { display: inline-flex; align-items: center; gap: .375rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 2rem; padding: .375rem .875rem; font-size: .8125rem; font-weight: 500; color: rgba(255,255,255,.92); }
.trust-pill svg { width: .875rem; height: .875rem; color: var(--gold); }

.ville-hero__services { display: flex; flex-wrap: wrap; gap: .5rem; }
.svc-chip { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.9); font-size: .8125rem; padding: .3rem .75rem; border-radius: .375rem; font-weight: 500; }

/* RIGHT — formulaire devis */
.ville-hero__form-wrap { position: relative; }
@media (min-width: 1024px) { .ville-hero__form-wrap { position: sticky; top: 6rem; } }

.devis-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  overflow: hidden;
}
.devis-card__head {
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  padding: 1.125rem 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.devis-card__head svg { width: 1.5rem; height: 1.5rem; color: var(--white); flex-shrink: 0; }
.devis-card__head-text { color: var(--white); }
.devis-card__head-text strong { display: block; font-size: 1.0625rem; font-weight: 700; }
.devis-card__head-text span { font-size: .8125rem; opacity: .9; }

.devis-card__body { padding: 1.375rem 1.5rem; }
.devis-field { margin-bottom: .875rem; }
.devis-field label { display: block; font-size: .8125rem; font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.devis-field input,
.devis-field select,
.devis-field textarea {
  width: 100%; padding: .625rem .875rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9375rem; color: var(--text); background: var(--white);
  transition: border-color .15s;
}
.devis-field input:focus,
.devis-field select:focus,
.devis-field textarea:focus { outline: none; border-color: var(--navy); }
.devis-field textarea { resize: vertical; min-height: 4rem; }
.devis-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

.devis-submit {
  width: 100%; padding: .875rem; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  color: var(--white); font-size: 1rem; font-weight: 700;
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; gap: .625rem;
  transition: opacity .15s; margin-top: .25rem;
}
.devis-submit:hover { opacity: .9; }
.devis-submit svg { width: 1.125rem; height: 1.125rem; }
.devis-card__footer { padding: .75rem 1.5rem; background: var(--light); text-align: center; font-size: .8125rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: .5rem; }
.devis-card__footer svg { width: .875rem; height: .875rem; color: #22c55e; }

/* ── texte intro restructuré ── */
.ville-text { padding: 2.5rem 0; background: var(--white); border-bottom: 1px solid var(--border); }
.ville-text__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .ville-text__grid { grid-template-columns: 1fr 320px; } }
.ville-text__main p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: .9875rem; }
.ville-text__sidebar { display: flex; flex-direction: column; gap: 1rem; }
.prix-card { background: var(--light); border-radius: var(--radius-lg); padding: 1.25rem; border: 1.5px solid var(--border); }
.prix-card h3 { font-size: .875rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .875rem; }
.prix-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.prix-row:last-child { border-bottom: none; }
.prix-row__label { color: var(--text-muted); }
.prix-row__val { font-weight: 700; color: var(--navy); }

/* ============================================================ RESPONSIVE UTILS */
@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
  .hero { padding: 2.5rem 0 2rem; }
  .section { padding: 2.5rem 0; }
  .devis-field-row { grid-template-columns: 1fr; }
  .ville-hero { padding: 2rem 0 2.5rem; }
  /* Espace pour la sticky CTA bar */
  body.has-sticky-cta { padding-bottom: 4.5rem; }
}

/* ── Sticky mobile CTA bar ── */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 1023px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--white);
    align-items: center;
    justify-content: space-between;
    padding: .875rem 1.25rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,.2);
    gap: 1rem;
  }
  .mobile-cta-bar__text { font-weight: 700; font-size: .9375rem; line-height: 1.3; }
  .mobile-cta-bar__text small { display: block; font-size: .75rem; font-weight: 400; opacity: .9; }
  .mobile-cta-bar__btn {
    background: var(--white);
    color: var(--gold-hover);
    border: none;
    font-weight: 800;
    font-size: .875rem;
    padding: .625rem 1.125rem;
    border-radius: var(--radius);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
  }
  body { padding-bottom: 4.5rem; }
  /* Fermer la bar si la carte devis est dans le viewport */
  .mobile-cta-bar.hidden { display: none !important; }
}

/* ============================================================
   §1 — SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: inherit;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.service-card__icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .25rem;
}
.service-card__icon svg { width: 1.5rem; height: 1.5rem; color: #fff; }

.service-card h3 { font-size: .9375rem; font-weight: 700; color: var(--navy); }
.service-card p { font-size: .8125rem; color: var(--text-muted); line-height: 1.5; }
.service-card__prix {
  display: inline-block;
  margin-top: .25rem;
  background: var(--light);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .625rem;
  border-radius: 999px;
}

/* ============================================================
   §2 — CALCULATEUR
   ============================================================ */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 52rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .calc-wrap { grid-template-columns: 1fr 1fr; align-items: start; } }

.calc-form { display: flex; flex-direction: column; gap: 1rem; }
.calc-field label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: .375rem; }
.calc-field select,
.calc-field input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s;
}
.calc-field select:focus,
.calc-field input:focus { outline: none; border-color: var(--gold); }

.calc-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-hover));
  color: var(--white);
  border: none; border-radius: var(--radius);
  padding: .875rem 1.5rem;
  font-size: 1rem; font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.calc-btn svg { width: 1.25rem; height: 1.25rem; }
.calc-btn:hover { opacity: .92; transform: translateY(-1px); }

.calc-result {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.calc-result__label { font-size: .8125rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-weight: 600; margin-bottom: .5rem; }
.calc-result__range { font-size: 1.875rem; font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: .5rem; }
.calc-result__note { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.calc-result__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  color: var(--white);
  font-weight: 700; font-size: .9375rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  transition: opacity .2s;
}
.calc-result__cta svg { width: 1.125rem; height: 1.125rem; }
.calc-result__cta:hover { opacity: .9; }

/* ============================================================
   §3 — GUIDE PRIX
   ============================================================ */
.prix-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .prix-guide-grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }

.prix-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.prix-table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.prix-table thead { background: var(--navy); color: var(--white); }
.prix-table th { padding: .75rem 1rem; text-align: left; font-weight: 700; font-size: .8125rem; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.prix-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.prix-table tbody tr:nth-child(even) { background: var(--light); }
.prix-table tbody tr:hover { background: rgba(212,175,55,.08); }

.prix-guide-text h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: .875rem; }
.prix-guide-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: .75rem; }
.prix-list { margin-left: 1.25rem; display: flex; flex-direction: column; gap: .625rem; }
.prix-list li { color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   §4 — TRUST / POURQUOI CHOISIR
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--gold);
}
.trust-item__icon {
  width: 3.5rem; height: 3.5rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.trust-item__icon svg { width: 1.75rem; height: 1.75rem; color: var(--gold); }
.trust-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .625rem; }
.trust-item p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   §5 — TÉMOIGNAGES
   ============================================================ */
.temoignages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px)  { .temoignages-grid { grid-template-columns: repeat(3, 1fr); } }

.temoignage-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow);
  position: relative;
}
.temoignage-card::before {
  content: '\201C';
  position: absolute; top: .75rem; left: 1.25rem;
  font-size: 3.5rem; line-height: 1; color: var(--gold); opacity: .3;
  font-family: Georgia, serif;
  pointer-events: none;
}
.temoignage-card__stars { display: flex; gap: .2rem; }
.temoignage-card__stars svg { width: 1rem; height: 1rem; }
.temoignage-card__text { font-size: .9375rem; color: var(--text-muted); line-height: 1.75; font-style: italic; padding-top: .5rem; }
.temoignage-card__author { display: flex; align-items: center; gap: .875rem; margin-top: auto; }
.temoignage-card__avatar {
  width: 2.5rem; height: 2.5rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .875rem;
  flex-shrink: 0;
}
.temoignage-card__author strong { display: block; font-size: .9375rem; color: var(--navy); }
.temoignage-card__author span { font-size: .8125rem; color: var(--text-muted); }

/* ============================================================
   §7 — BLOG ARTICLES
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(4, 1fr); } }

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img { position: relative; }
.blog-card__img img { width: 100%; height: 10rem; object-fit: cover; }
.blog-card__cat {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--gold); color: var(--white);
  font-size: .6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .625rem; border-radius: 999px;
}
.blog-card__body { padding: 1.125rem 1rem; display: flex; flex-direction: column; gap: .625rem; flex: 1; }
.blog-card__body h3 { font-size: .9375rem; font-weight: 700; color: var(--navy); line-height: 1.45; }
.blog-card__body p { font-size: .8125rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-card__link { font-size: .8125rem; font-weight: 700; color: var(--gold-hover); margin-top: auto; }
.blog-card__link:hover { text-decoration: underline; }

/* ============================================================
   §8 — FAQ
   ============================================================ */
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item:focus-within,
.faq-item:has([aria-expanded="true"]) { border-color: var(--gold); }

.faq-btn {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem;
  background: none; border: none; cursor: pointer;
  font-size: .9375rem; font-weight: 600; color: var(--navy);
  line-height: 1.5;
}
.faq-icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; transition: transform .25s; color: var(--gold); }
.faq-answer { display: none; padding: 0 1.25rem 1rem; }
.faq-answer p { font-size: .9375rem; color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   §9 — NAVIGATION VILLES
   ============================================================ */
.villes-nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .villes-nav-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .villes-nav-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .villes-nav-grid { grid-template-columns: repeat(4, 1fr); } }

.villes-dept-bloc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.villes-dept-titre {
  display: flex; align-items: center; gap: .625rem;
  padding: .875rem 1rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 700; font-size: .9375rem;
  flex-wrap: wrap;
}
.villes-dept-titre:hover { background: var(--navy-hover); }
.dept-code-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: .75rem; font-weight: 800;
  padding: .15rem .5rem; border-radius: 999px;
  flex-shrink: 0;
}
.dept-count-badge {
  margin-left: auto;
  background: rgba(255,255,255,.15);
  font-size: .75rem; font-weight: 600;
  padding: .15rem .625rem; border-radius: 999px;
  white-space: nowrap;
}
.villes-list { padding: .75rem; display: flex; flex-direction: column; gap: .25rem; }
.ville-link {
  padding: .4rem .625rem;
  font-size: .875rem; color: var(--text);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .15s, color .15s;
}
.ville-link:hover { background: var(--light); color: var(--navy); }
.ville-link span { font-size: .75rem; color: var(--text-muted); }
.ville-link--more { font-weight: 700; color: var(--gold-hover); }
.ville-link--more:hover { background: rgba(212,175,55,.1); }

