/* ══════════════════════════════════════════════════════════════════════
   TRUELLE-CLUSTER — habillage spécifique aux pages domaine (/plomberie,
   /electricite, /jardin-et-exterieur, …). Vient compléter truelle.css,
   ne le redéfinit jamais. Toutes les classes sont préfixées .truelle-dom-
   pour rester isolées du reste du site.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Ancres : compense l'absence de header sticky, air au-dessus du titre ── */
#metiers, #services, #estimateur, #prix, #aides, #villes, #avis, #faq, #devis-form {
  scroll-margin-top: 20px;
}

/* ── Sommaire ancré ────────────────────────────────────────────────── */
.truelle-dom-sommaire-mot {
  display: block;
  text-align: center;
  font-size: 22px;
  margin-bottom: 8px;
}
.truelle-dom-sommaire {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  background: var(--tr-blanc);
  border-radius: var(--tr-r-pilule);
  box-shadow: var(--tr-ombre-douce);
  padding: 10px; max-width: 900px; margin: 0 auto;
}
.truelle-dom-sommaire a {
  padding: 9px 18px;
  border-radius: var(--tr-r-pilule);
  font-weight: 800; font-size: 14px; color: var(--tr-encre);
  white-space: nowrap;
}
.truelle-dom-sommaire a:hover { background: var(--tr-creme); text-decoration: none; }

/* ── Prose (blocs LLM : intro_cluster, quand_faire_appel, aides_et_normes) ── */
.truelle-dom-prose {
  max-width: 72ch;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--tr-texte);
}
.truelle-dom-prose p:last-child { margin-bottom: 0; }
.truelle-dom-prose--etroit { max-width: 68ch; margin: 0 auto 34px; text-align: center; }

/* ── Encart ambre (« quand faire appel ») ─────────────────────────── */
.truelle-dom-encart {
  background: var(--tr-ambre);
  border: 1.5px solid var(--tr-ambre-bord);
  border-radius: var(--tr-r-carte);
  padding: 34px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.truelle-dom-encart-tete { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.truelle-dom-encart-picto {
  display: grid; place-items: center; flex: none;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--tr-blanc); font-size: 21px;
  box-shadow: 0 6px 14px rgba(31, 36, 48, .08);
}
.truelle-dom-encart-tete h2 { margin: 0; font-size: clamp(21px, 2.4vw, 27px); }
.truelle-dom-encart .truelle-dom-prose { color: #6B4E12; max-width: none; }

/* ── Tableau de prix ───────────────────────────────────────────────── */
.truelle-dom-tableau-scroll {
  overflow-x: auto;
  border-radius: var(--tr-r-carte);
  box-shadow: var(--tr-ombre);
  background: var(--tr-blanc);
}
.truelle-dom-tableau { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 15px; }
.truelle-dom-tableau thead th {
  background: var(--tr-p-vert);
  color: var(--tr-vert); text-align: left; font-weight: 800; font-size: 12.5px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 16px 22px;
}
.truelle-dom-tableau thead th:first-child { border-top-left-radius: var(--tr-r-carte); }
.truelle-dom-tableau thead th:last-child { border-top-right-radius: var(--tr-r-carte); }
.truelle-dom-tableau tbody tr:nth-child(even) { background: var(--tr-creme); }
.truelle-dom-tableau td { padding: 15px 22px; border-bottom: 1px solid #F1E9D8; vertical-align: top; }
.truelle-dom-tableau tbody tr:last-child td { border-bottom: 0; }
.truelle-dom-tableau-presta { font-weight: 800; color: var(--tr-encre); white-space: nowrap; }
.truelle-dom-tableau-prix { font-weight: 800; color: var(--tr-orange-fonce); white-space: nowrap; }
.truelle-dom-tableau-note { color: var(--tr-texte-doux); font-size: 14px; }

/* ── Cartes aides & normes (5 pastilles pastel non cliquables) ───────── */
.truelle-damier--cinq { grid-template-columns: repeat(5, 1fr); }
.truelle-damier--cinq .truelle-tuile { padding: 20px 18px; text-align: center; }
.truelle-damier--cinq .truelle-tuile b { display: block; font-size: 15px; color: var(--tr-encre); margin-bottom: 6px; }
.truelle-damier--cinq .truelle-tuile span { display: block; font-size: 12.5px; color: var(--tr-texte); line-height: 1.4; }

/* ── Petit badge département dans les pastilles de villes ─────────── */
.truelle-dom-dept {
  display: inline-grid; place-items: center; margin-left: 8px;
  min-width: 24px; height: 20px; padding: 0 6px;
  border-radius: var(--tr-r-pilule); background: var(--tr-ambre); color: #7A5410;
  font-size: 11px; font-weight: 800;
}

/* ── Réactif ───────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .truelle-damier--cinq { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .truelle-dom-encart { padding: 26px 22px; }
  .truelle-dom-encart-tete h2 { font-size: 20px; }
  .truelle-damier--cinq { grid-template-columns: 1fr; }
  .truelle-dom-sommaire { padding: 8px; gap: 4px; }
  .truelle-dom-sommaire a { padding: 8px 14px; font-size: 13px; }

  /* Le tableau de prix devient une pile de fiches — plus de scroll latéral
     nécessaire sous 640px, la largeur mini de 640px casserait le viewport. */
  .truelle-dom-tableau-scroll { overflow-x: visible; }
  .truelle-dom-tableau { min-width: 0; width: 100%; }
  .truelle-dom-tableau thead { display: none; }
  .truelle-dom-tableau, .truelle-dom-tableau tbody, .truelle-dom-tableau tr, .truelle-dom-tableau td {
    display: block; width: 100%;
  }
  .truelle-dom-tableau tr { padding: 16px 18px; border-bottom: 1px solid #F1E9D8; }
  .truelle-dom-tableau tbody tr:last-child { border-bottom: 0; }
  .truelle-dom-tableau td { padding: 3px 0; border-bottom: 0; white-space: normal; }
  .truelle-dom-tableau-presta { display: block; margin-bottom: 3px; }
  .truelle-dom-tableau-prix { display: inline-block; margin-right: 10px; }
  .truelle-dom-tableau-note { display: block; margin-top: 2px; }
}
