/* ==========================================================================
   PBMULTISERVICES — feuille de style v2
   Réécriture propre du rendu Divi d'origine. Aucune animation hormis :
   l'arrivée de la photo du héro et les effets au survol.
   --------------------------------------------------------------------------
   Sommaire
   1.  Variables (design tokens)
   2.  Reset & base
   3.  Conteneurs & utilitaires
   4.  Boutons
   5.  En-tête / navigation
   6.  Héro
   7.  Sections de contenu (prestations, services, blurbs)
   8.  « Pourquoi choisir » & réalisations
   9.  Avis clients (carrousel)
   10. Pied de page / contact
   11. Bouton retour en haut
   12. Responsive
   ========================================================================== */

/* 1. VARIABLES ============================================================= */
:root {
  --yellow:      #fcd21d;
  --yellow-dark: #e6bd0c;
  --ink:         #353740; /* navy foncé : titres de blurb, héro, « Multiservices » */
  --dark:        #333333; /* titres de section */
  --muted:       #747d88; /* texte courant */
  --light:       #f7f7f7; /* fond gris clair + blanc cassé du titre héro */
  --white:       #ffffff;

  --font-head: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-nav:  'Open Sans', Arial, sans-serif;

  --container:      1280px;
  --container-wide: 1400px;
  --gutter: 40px;
  --section-pad: 130px;
  --radius-pill: 100px;

  --shadow-card: 0 18px 40px rgba(0, 0, 0, .12);
  --shadow-img:  0 22px 45px rgba(0, 0, 0, .22);
}

/* 2. RESET & BASE ========================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

p { margin: 0 0 1em; }

h1, h2, h3, h4 {
  margin: 0 0 .25em;
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.3;
}

/* 3. CONTENEURS & UTILITAIRES ============================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--wide { max-width: 1400px; } /* réalisations */
.container--why  { max-width: 1360px; } /* « pourquoi » */

/* Espacements verticaux des sections (aérés) */
.section          { padding: 130px 0; }
.s-prestations    { padding: 96px 0 36px; }
.s-services       { padding: 72px 0; }
.s-why            { padding: 160px 0; }
.s-realisations   { padding: 150px 0 96px; }
.s-closing        { padding: 96px 0; }
.s-reviews        { padding: 150px 0; }

.section--light { background: var(--light); }
.section--yellow { background: var(--yellow); }

.text-center { text-align: center; }

/* Titre de section générique */
.section-title {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 .3em;
}
.section-title--ink { color: var(--ink); }

/* Texte d'introduction / paragraphe centré */
.lead {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--muted);
}

/* 4. BOUTONS =============================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  border: 2px solid var(--dark);
  border-radius: var(--radius-pill);
  padding: 6px 24px;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease;
}
.btn:hover,
.btn:focus-visible {
  background: var(--dark);
  color: var(--white);
}

/* Variante claire (sur fond jaune) */
.btn--light {
  color: var(--white);
  border-color: var(--white);
}
.btn--light:hover,
.btn--light:focus-visible {
  background: var(--white);
  color: var(--ink);
}

/* Grand bouton du héro */
.btn--lg {
  font-size: 20px;
  border-width: 4px;
  padding: 6px 26px;
}

/* 5. EN-TÊTE / NAVIGATION ================================================== */
/* Liens obfusqués (<a data-h> sans href) : garder l'apparence cliquable. */
[data-h] { cursor: pointer; }

.site-header {
  background: var(--yellow);
  border-bottom: 1px solid rgba(255, 255, 255, .85);
  position: relative;
  z-index: 50;
}
.site-header__inner {
  max-width: 1360px;          /* en-tête large : logo proche du bord */
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 124px;
}
.site-logo img { height: 100px; width: auto; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav a {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  color: #2b2b2b;
  transition: color .2s ease;
}
.main-nav a:hover,
.main-nav > ul > li:hover > a { color: var(--white); }

/* Sous-menu Services */
.has-submenu { position: relative; }
.has-submenu > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
}
.main-nav .submenu {       /* spécificité > « .main-nav ul » pour annuler le flex (items empilés) */
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;                /* centré sous « Services » */
  transform: translateX(-50%);
  min-width: 290px;
  background: var(--white);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease;
  z-index: 60;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu { opacity: 1; visibility: visible; }
.submenu li { display: block; }
.submenu a {
  display: block;
  padding: 9px 22px;
  font-size: 14px;
  white-space: nowrap;
  color: var(--ink);
}
.submenu a:hover { color: var(--yellow-dark); }

/* Bouton hamburger (mobile) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  height: 2px;
  width: 24px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after  { transform: translateY(5px); }

/* Desktop : logo à gauche, navigation centrée */
@media (min-width: 981px) {
  .site-header__inner { position: relative; justify-content: center; }
  .site-logo {
    position: absolute;
    left: var(--gutter);
    top: 50%;
    transform: translateY(-50%);
  }
}

/* 6. HÉRO ================================================================== */
.hero {
  background: var(--yellow) url(../img/circle-background-pattern.png) no-repeat left bottom;
  overflow: hidden;
}
/* Pleine largeur (pas de conteneur 1080) : colonnes 60/40 comme l'original */
.hero__inner {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: stretch;
  padding-top: 35px;
}
.hero__text { padding: 70px 114px 95px; align-self: center; }
.hero__eyebrow {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 10px;
}
.hero__title {
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 14px;
  color: var(--light);
}
.hero__title .ink { color: var(--ink); white-space: nowrap; }
.hero__desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 18px;
}
.hero__tel {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 22px;
}
.hero__tel a { color: inherit; }
.hero__media { align-self: end; }
.hero__media img { width: 100%; }

/* Animation : arrivée de la photo de Philippe */
.hero__media img {
  animation: hero-photo-in .9s ease-out both;
}
@keyframes hero-photo-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

/* 7. SECTIONS DE CONTENU =================================================== */
.group-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin: 0 0 40px;
}

/* Rangée de blurbs (cliquable vers la page service) */
.blurbs {
  display: grid;
  gap: 44px;
  margin-bottom: 40px;
  color: inherit;
}
.blurbs--3 { grid-template-columns: repeat(3, 1fr); }
.blurbs--4 { grid-template-columns: repeat(4, 1fr); }

.blurb { text-align: center; padding: 0 10px; }
.blurb__icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 16px;
  transition: transform .25s ease;
}
.blurb:hover .blurb__icon { transform: translateY(-4px); }
.blurb__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
.blurb__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.service-cta { text-align: center; }
.service-cta p {
  max-width: 900px;
  margin: 0 auto 26px;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}
.service-cta a.inline-link { color: var(--ink); text-decoration: underline; }

/* 8. POURQUOI CHOISIR & RÉALISATIONS ====================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split__media img {
  border-radius: 6px;
  box-shadow: var(--shadow-img);
}
.why__title {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 .4em;
}
.why__text {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 26px;
}

.realisation__title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark);
  margin: 0 0 14px;
}
.realisation__text {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--muted);
  margin: 0;
}
.closing-text {
  max-width: 920px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  color: var(--muted);
}

/* 9. AVIS CLIENTS (carrousel) ============================================= */
.reviews-heading {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  margin: 0 0 50px;
}
.reviews {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
.reviews__viewport { overflow: hidden; }
.reviews__track {
  display: flex;
  align-items: center;   /* cartes à hauteur de leur contenu, centrées verticalement */
  transition: transform .5s ease;
  will-change: transform;
}
.review {
  flex: 0 0 33.3333%;
  padding: 18px 14px;
  opacity: 1;            /* toutes les cartes ont le même style (pas d'atténuation des latérales) */
}
.review__card {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 28px 26px 30px;
  text-align: center;
}
/* Encadré gris avec bulle (flèche) pointant vers le nom */
.review__inner {
  position: relative;
  background: #efefef;
  border-radius: 6px;
  padding: 20px 18px;
  margin-bottom: 30px;
}
.review__inner::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 13px solid transparent;
  border-bottom: 0;
  border-top-color: #efefef;
}
.review__stars { color: #f3b325; letter-spacing: 4px; font-size: 18px; }
.review__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--muted);
  margin: 12px 0 0;
}
.review__author {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.review__loc { font-size: 14px; color: var(--muted); }

/* Flèches = rond jaune avec petit triangle blanc à l'intérieur */
.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0;            /* masque le chevron du HTML, on dessine le triangle en CSS */
  cursor: pointer;
  transition: background-color .2s ease;
  z-index: 3;
}
.reviews__arrow:hover { background: var(--yellow-dark); }
.reviews__arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}
.reviews__arrow--prev { left: 6px; }
.reviews__arrow--prev::before {
  border-width: 9px 13px 9px 0;
  border-color: transparent var(--white) transparent transparent;
  margin-right: 3px;       /* recentre optiquement le triangle */
}
.reviews__arrow--next { right: 6px; }
.reviews__arrow--next::before {
  border-width: 9px 0 9px 13px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 3px;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}
.reviews__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  transition: width .25s ease, background-color .25s ease;
}
.reviews__dots button.is-active {
  width: 26px;
  border-radius: 6px;
  background: var(--yellow);
}

.reviews-action { text-align: center; margin-top: 46px; }

/* 10. PIED DE PAGE / CONTACT ============================================== */
.contact { background: var(--yellow); }
.contact__inner { padding: 150px 0; }
.contact__title {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark);
  margin: 0 0 .3em;
  line-height: 1.25;
}
.contact__title .white { color: var(--white); }
.contact__sub {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 18px;
}
.contact__phone {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 40px;
}
.contact__phone a { color: inherit; }

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}
/* Champ piège anti-spam : masqué aux humains, laissé au DOM pour les robots. */
.contact-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* Bannière de retour (message envoyé / erreur), injectée par main.js. */
.contact-form__notice {
  max-width: 800px;
  margin: 0 auto 18px;
  padding: 14px 18px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  text-align: center;
}
.contact-form__notice--ok    { background: #e7f6ea; color: #1d6b32; border: 1px solid #b6e0c0; }
.contact-form__notice--error { background: #fdeaea; color: #a32626; border: 1px solid #f0c2c2; }
.contact-form .field { margin-bottom: 6px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .25);
  padding: 16px 2px;
  outline: none;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink); opacity: 1; }
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}
.contact-form .field--select { position: relative; }
.contact-form .field--select::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.contact-form .form-actions {
  text-align: right;
  margin-top: 26px;
}
.contact-form .form-legal {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink);
}
.contact-form .form-legal a { color: inherit; text-decoration: underline; }
/* Pastille reCAPTCHA masquée : autorisé par Google tant que la mention
   « Ce site est protégé par reCAPTCHA… » reste affichée sous le formulaire. */
.grecaptcha-badge { visibility: hidden; }

/* 11. BOUTON RETOUR EN HAUT =============================================== */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 4px;
  background: rgba(0, 0, 0, .35);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 90;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; }

/* 12. PAGES INTÉRIEURES =================================================== */

/* En-tête simple (fond blanc) — pages groupe & légales */
.page-head { padding: 54px 0 0; }
.page-head .container { max-width: 1080px; }
.page-head__title {
  font-size: 30px;
  font-weight: 500;
  color: var(--dark);
  margin: 0;
}

/* Héros titre jaune — pages service détaillées */
.page-hero {
  background: var(--yellow) url(../img/circle-background-pattern.png) no-repeat left bottom;
  padding: 54px 0;
}
.page-hero__title {
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  margin: 0;
}

/* Corps d'article (contenu des pages service) */
.s-article { padding: 70px 0 80px; }
.s-article .container { max-width: 1080px; }
.article-intro {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 44px;
}
.article-block { margin: 0 0 44px; }
.article-block:last-child { margin-bottom: 0; }
.article-block__title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 16px;
}
.article-block p { font-size: 16px; font-weight: 500; color: var(--muted); }
/* Liens contextuels (maillage interne du cocon) dans le corps des pages */
.s-article p a { color: var(--ink); text-decoration: underline; transition: color .2s ease; }
.s-article p a:hover { color: var(--yellow-dark); }
/* Premier bloc : texte + photo côte à côte */
.article-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}
.article-split__media { margin: 6px 0 0; }
.article-split__media img {
  border-radius: 6px;
  box-shadow: var(--shadow-img);
}

/* Section sombre « Toutes les prestations » (maillage interne) */
.s-all-services { background: #171717; padding: 56px 0; }
.s-all-services .container { max-width: 1080px; }
.all-services__title {
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 16px;
}
.all-services__intro {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  margin: 0 0 18px;
}
.all-services__list a {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  transition: color .2s ease;
}
.all-services__list a:hover { color: var(--yellow); }

/* Pages groupe : rangées image + texte */
.s-group { padding: 60px 0 80px; }
.s-group .container { max-width: 1080px; }
.service-row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 54px;
}
.service-row:last-child { margin-bottom: 0; }
.service-row__media img { border-radius: 6px; box-shadow: var(--shadow-img); }
.service-row__title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 14px;
}
.service-row__text { font-size: 16px; font-weight: 500; color: var(--muted); margin: 0; }
.service-row__link { color: var(--ink); text-decoration: underline; transition: color .2s ease; }

/* Rangée entièrement cliquable (« stretched link ») : un seul <a> dans le DOM,
   son texte d'ancrage descriptif reste le seul lien vu par Google ; sa zone de
   clic est simplement étirée sur toute la rangée via un pseudo-élément. */
.service-row { position: relative; }
.service-row__media img { transition: transform .25s ease, box-shadow .25s ease; }
.service-row__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.service-row:hover .service-row__media img {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, .26);
}
.service-row:hover .service-row__link { color: var(--yellow-dark); }

/* Pages légales (texte long) */
.s-legal { padding: 30px 0 80px; }
.s-legal .container { max-width: 1080px; }
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 12px;
}
.legal p { font-size: 16px; font-weight: 500; color: var(--muted); }
.legal a { color: var(--ink); text-decoration: underline; }

/* 13. RESPONSIVE ========================================================== */
@media (max-width: 1100px) {
  .hero__title { font-size: 52px; }
}

@media (max-width: 980px) {
  :root { --section-pad: 70px; }

  /* Navigation repliée */
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--yellow);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .12);
    display: none;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }
  .main-nav > ul > li > a {
    display: block;
    padding: 14px 30px;
  }
  .has-submenu > a::after { float: right; }
  .main-nav .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-top: 0;
    min-width: 0;
    padding: 0 0 8px;
  }
  .submenu a { padding: 10px 46px; color: var(--muted); }

  /* Héro empilé */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__text { padding: 30px 24px 40px; align-self: auto; }
  .hero__media { text-align: center; }
  .hero__media img { margin: 0 auto; width: auto; max-width: 80%; }
  .hero { background-position: center bottom; }

  /* Grilles */
  .blurbs--3,
  .blurbs--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .why__title { text-align: center; }
  .why { text-align: center; }
  .review { flex-basis: 50%; }

  /* Pages intérieures empilées */
  .article-split { grid-template-columns: 1fr; gap: 30px; }
  .article-split__media { order: -1; }
  .service-row { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  :root { --gutter: 22px; }
  .hero__title { font-size: 30px; }
  .section-title,
  .why__title,
  .contact__title,
  .page-hero__title,
  .reviews-heading { font-size: 30px; }
  .article-block__title,
  .service-row__title { font-size: 24px; }
  .blurbs--3,
  .blurbs--4 { grid-template-columns: 1fr; }
  .review { flex-basis: 100%; }
  .reviews { padding: 0 44px; }
}

/* 14. V3 — FIL D'ARIANE, FAQ, ZONES ====================================== */

/* Fil d'Ariane (sous le titre des pages intérieures) */
.breadcrumb { background: var(--white); }
.breadcrumb .container {
  max-width: 1080px;
  padding-top: 16px;
  padding-bottom: 0;
  font-family: var(--font-nav);
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); cursor: pointer; }
.breadcrumb a:hover { color: var(--yellow-dark); text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 600; }
.breadcrumb__sep { color: #c4c4c4; }

/* FAQ (accordéon) — couche GEO */
.s-faq { padding: 80px 0; background: var(--light); }
.s-faq .container { max-width: 880px; }
.faq__title {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark);
  margin: 0 0 36px;
}
.faq__item {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 0 24px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .04);
}
.faq__q {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  padding: 20px 38px 20px 0;
  position: relative;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--yellow-dark);
}
.faq__item[open] .faq__q::after { content: "\2013"; }
.faq__a { padding: 0 0 20px; }
.faq__a p { margin: 0; font-size: 16px; font-weight: 500; color: var(--muted); }

/* Hub Zones : grille des secteurs / communes */
.s-zones { padding: 10px 0 90px; }
.s-zones .container { max-width: 1080px; }
.zones__title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark);
  margin: 0 0 34px;
}
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.zones-sector {
  background: var(--light);
  border-radius: 10px;
  padding: 24px 26px;
}
.zones-sector__title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--ink);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--yellow);
}
.zones-list { list-style: none; margin: 0; padding: 0; }
.zones-list li { margin: 0 0 8px; }
.zones-list a {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  transition: color .2s ease;
}
.zones-list a:hover { color: var(--yellow-dark); text-decoration: underline; }

/* Bandeau « zones » sur l'accueil (teaser vers le hub) */
.s-zones-teaser { padding: 90px 0; background: var(--light); }
.s-zones-teaser .container { max-width: 1000px; text-align: center; }
.zones-teaser__title {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 18px;
}
.zones-teaser__text {
  max-width: 820px;
  margin: 0 auto 26px;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}
.zones-teaser__list {
  max-width: 860px;
  margin: 0 auto 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 2;
}

@media (max-width: 980px) {
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .zones-grid { grid-template-columns: 1fr; }
  .faq__title, .zones__title, .zones-teaser__title { font-size: 26px; }
}

/* Question de FAQ rendue en <h3> (GEO) mais visuellement comme le summary */
.faq__qh { display: inline; margin: 0; padding: 0; font-size: inherit; font-weight: inherit; line-height: inherit; color: inherit; }

/* Ligne « Mis à jour le » (fraîcheur visible — E-E-A-T / GEO) */
.page-updated { margin: 4px 0 0; font-size: 13px; color: #8a8a8a; }

/* Tableau récapitulatif citable (hubs) */
.geo-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 48px;
  font-size: 15px;
  background: var(--white);
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(53, 55, 64, 0.07);
}
.geo-table caption {
  text-align: left;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 14px;
  color: var(--ink, #353740);
  caption-side: top;
}
.geo-table th,
.geo-table td {
  padding: 13px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #ededed;
}
.geo-table thead th {
  background: var(--ink, #353740);
  color: var(--white);
  font-weight: 600;
  letter-spacing: .2px;
}
.geo-table thead th:first-child { border-top-left-radius: 0; }
.geo-table tbody tr:nth-child(even) { background: #fafafa; }
.geo-table tbody tr:hover { background: #fff8d8; }
.geo-table tbody tr:last-child td { border-bottom: 0; }
/* 1re colonne = intitulé de prestation : mise en avant */
.geo-table tbody td:first-child {
  font-weight: 600;
  color: var(--dark, #333);
  border-left: 3px solid var(--yellow, #fcd21d);
}

/* Bandeau légal (footer) — liens crawlables mentions légales / cookies */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 22px;
  padding: 22px 16px;
  background: #171717;
  font-size: 14px;
}
.footer-legal a { color: #cfcfcf; text-decoration: none; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }
.footer-legal__copy { color: #8a8a8a; }

/* 13. BANDEAU COOKIES (consentement RGPD) — injecté par assets/js/consent.js.
   Accepter et Refuser : mêmes boutons, même taille (exigence CNIL). */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, .3);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px 28px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  margin: 0;
  flex: 1 1 420px;
  font-size: 14px;
  line-height: 1.6;
  color: #e6e6e6;
}
.cookie-banner__text strong { color: #fff; }
.cookie-banner__text a { color: var(--yellow); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner__btn {
  color: var(--white);
  border-color: var(--white);
}
.cookie-banner__btn:hover,
.cookie-banner__btn:focus-visible {
  background: var(--white);
  color: var(--ink);
}
@media (max-width: 600px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1 1 auto; text-align: center; }
}

/* Bouton « Gérer les cookies » du pied de page (même rendu que les liens) */
.footer-legal button[data-cookie-manage] {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: #cfcfcf;
  cursor: pointer;
}
.footer-legal button[data-cookie-manage]:hover { color: #fff; text-decoration: underline; }

/* Respect des préférences de réduction d'animation */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
