/* =====================================================================
   WEBI STUDIO — Thème public (refonte 2026)
   Poppins pour les titres, Heebo pour le texte, jaune #face00.
   Les couleurs et polices sont pilotées par les variables CSS injectées
   depuis Réglages > Apparence (ThemeService::cssVariables).
   L'ancien thème est conservé dans theme-original.css.
   ===================================================================== */

:root {
  --brand: #ffd400;          /* jaune principal (vif, unique sur tout le site) */
  --brand-dark: #e8bf00;     /* jaune fonce : survols et bordures */
  --brand-2: #ffe04a;        /* bandeaux jaunes */
  --brand-soft: #fff6c2;     /* fond jaune très clair (icônes, badges) */
  --ink: #0b0d12;            /* titres */
  --text: #4f5a66;           /* texte courant */
  --muted: #646d78;          /* texte secondaire */
  --dark: #0b0d12;           /* pied de page */
  --soft: #f6f7f9;           /* sections gris clair */
  --line: #e6e9ef;           /* bordures */
  --white: #ffffff;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Heebo', sans-serif;
  --header-h: 84px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-btn: 50px;
  --container: 1140px;
  --shadow-card: 0 12px 40px rgba(11, 13, 18, .08);
  --shadow-img: 0 24px 60px rgba(11, 13, 18, .14);
  --transition: .22s ease;
}

/* ------------------------------ Base ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ink); }
p { margin: 0 0 16px; }
ul, ol { margin: 0 0 16px; padding-left: 20px; }
svg { vertical-align: middle; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

h1, .h1 { font-family: var(--font-head); font-size: 46px; line-height: 1.12; font-weight: 700; color: var(--ink); letter-spacing: -.02em; margin: 0 0 18px; }
h2, .h2 { font-family: var(--font-head); font-size: 36px; line-height: 1.18; font-weight: 700; color: var(--ink); letter-spacing: -.02em; margin: 0 0 16px; }
h3, .h3 { font-family: var(--font-head); font-size: 21px; line-height: 1.3; font-weight: 600; color: var(--ink); margin: 0 0 10px; }
h4, .h4 { font-family: var(--font-head); font-size: 18px; line-height: 1.3; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
h5, .h5 { font-family: var(--font-body); font-size: 17px; line-height: 1.4; font-weight: 500; color: var(--text); margin: 0 0 8px; }
h6, .h6 { font-family: var(--font-head); font-size: 14px; line-height: 1.4; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
h1 strong, h2 strong, h3 strong { font-weight: 700; color: var(--ink); }
h1 strong, h2 strong { background: linear-gradient(transparent 62%, var(--brand) 62%, var(--brand) 92%, transparent 92%); padding: 0 .08em; }

::selection { background: var(--brand); color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }
.container.narrow { max-width: 820px; }
.container.full { max-width: none; padding: 0; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  padding: 12px 22px; background: var(--brand); color: var(--ink); font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ------------------------------ Boutons ------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  height: 52px;
  padding: 0 34px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--brand);
  background: var(--brand);
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color .06s linear, border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  box-shadow: 0 8px 20px rgba(255, 212, 0, .25);
}
.btn:hover { background: var(--ink); border-color: var(--ink); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11, 13, 18, .18); }
.btn--primary { background: var(--brand); border-color: var(--brand); color: var(--ink); }
.btn--primary:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn--dark { background: var(--ink); border-color: var(--ink); color: var(--white); box-shadow: 0 8px 20px rgba(11, 13, 18, .18); }
.btn--dark:hover { background: var(--brand); border-color: var(--brand); color: var(--ink); }
.btn--outline { background: transparent; border-color: var(--ink); color: var(--ink); box-shadow: none; }
.btn--outline:hover { border-color: var(--brand); background: var(--brand); color: var(--ink); }
.btn--sm { height: 42px; padding: 0 22px; font-size: 12.5px; }
.btn--block { display: flex; width: 100%; }

/* ------------------------------ En-tête ------------------------------ */
.site-header {
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.site-header.is-sticky-enabled { position: sticky; top: 0; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(11, 13, 18, .08); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
  max-width: 1320px;
}
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo img { max-height: calc(var(--header-h) - 34px); width: auto; height: auto; }
.header__brand { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--ink); }

.main-nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav__item { position: relative; }
.main-nav__item > a {
  position: relative;
  display: block;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
  color: var(--ink);
  line-height: var(--header-h);
  padding: 0 12px;
  transition: color var(--transition);
}
.main-nav__item > a::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: calc(50% - 16px);
  height: 3px; border-radius: 3px; background: var(--brand);
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.main-nav__item > a:hover::after,
.main-nav__item.is-current > a::after { transform: scaleX(1); }
.main-nav__item.is-button > a { display: inline-flex; line-height: 1; }
.main-nav__item.is-button > a::after { display: none; }
.main-nav__item.is-button { margin-left: 14px; }

.main-nav__sub {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: var(--white); list-style: none; margin: 0; padding: 10px 0;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: 0 18px 50px rgba(11, 13, 18, .14);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.main-nav__item:hover .main-nav__sub,
.main-nav__item:focus-within .main-nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav__sub a { display: block; padding: 9px 20px; font-size: 14px; color: var(--ink); }
.main-nav__sub a:hover { background: var(--soft); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: var(--transition); }

/* ------------------------------ Menu mobile ------------------------------ */
.mobile-menu { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(11, 13, 18, .55); opacity: 0; transition: opacity .3s; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(340px, 88vw);
  background: var(--white); padding: 20px 22px; overflow-y: auto;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
}
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-menu__close { background: none; border: 0; cursor: pointer; color: var(--ink); padding: 6px; }
.mobile-menu__list { list-style: none; margin: 0 0 auto; padding: 0; }
.mobile-menu__list > li > a {
  display: block; padding: 14px 4px; font-family: var(--font-head); font-size: 15px; font-weight: 500;
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.mobile-menu__list > li > a:hover { color: var(--ink); }
.mobile-menu__list ul { list-style: none; margin: 0; padding: 0 0 6px 16px; }
.mobile-menu__list ul a { display: block; padding: 8px 4px; font-size: 14px; }
.mobile-menu__foot { display: grid; gap: 12px; padding-top: 18px; }
.mobile-menu__phone { display: flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 500; }

/* ------------------------------ Bannière de titre ------------------------------ */
.page-title {
  position: relative;
  min-height: var(--title-h, 320px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-title.no-image { background: linear-gradient(135deg, #0b0d12 0%, #1c2028 60%, #2a2f39 100%); }
.page-title__bg { position: absolute; inset: -40px; z-index: 0; background-size: cover; background-position: center 35%; filter: grayscale(1) blur(10px) brightness(.9); opacity: 1; transform: scale(1.06); }
.page-title.has-image::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11, 13, 18, .58) 0%, rgba(11, 13, 18, .42) 55%, rgba(11, 13, 18, .62) 100%);
}
.page-title::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--brand);
}
.page-title__inner { position: relative; z-index: 2; padding: 44px 24px; max-width: 900px; }
.page-title__heading {
  font-family: var(--font-head);
  font-size: 46px; line-height: 1.12; font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  margin: 0;
}
.page-title.no-image .page-title__heading { color: var(--white); }
.page-title__subtitle { max-width: 680px; margin: 12px auto 0; color: rgba(255, 255, 255, .85); font-size: 17px; }
.page-title.no-image .page-title__subtitle { color: rgba(255, 255, 255, .8); }

.breadcrumb { margin-bottom: 14px; font-size: 13px; }
.breadcrumb ol { list-style: none; display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 4px; margin: 0; padding: 6px 14px; background: rgba(255, 255, 255, .12); border-radius: 99px; }
.breadcrumb li:not(:first-child)::before { content: '›'; margin: 0 7px; opacity: .6; color: var(--white); }
.breadcrumb a, .breadcrumb span { color: rgba(255, 255, 255, .85); }
.breadcrumb li[aria-current] span { color: var(--brand); }
.page-title.no-image .breadcrumb a, .page-title.no-image .breadcrumb span { color: rgba(255, 255, 255, .85); }
.breadcrumb a:hover { color: var(--brand); }

/* ------------------------------ Sections / blocs ------------------------------ */
.block { position: relative; }
.pad-normal { padding-top: 88px; padding-bottom: 88px; }
.pad-small { padding-top: 44px; padding-bottom: 44px; }
.pad-large { padding-top: 120px; padding-bottom: 120px; }
.pad-none { padding-top: 0; padding-bottom: 0; }
.bg-white { background: var(--white); }
.bg-soft { background: var(--soft); }
.bg-yellow { background: var(--brand); }
.bg-dark { background: var(--dark); color: rgba(255, 255, 255, .78); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-map { position: relative; background: var(--white); }
.bg-map::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url('../../uploads/cms/carte-agences-europe.png') center / min(900px, 90%) no-repeat;
  opacity: .08; filter: grayscale(1);
}
.bg-map > * { position: relative; }

.section-head { margin-bottom: 48px; max-width: 760px; }
.section-head.align-center, .align-center .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__sub { font-size: 18px; color: var(--muted); margin-top: -6px; }
.section-head__intro { margin-top: 12px; }
.section-actions { text-align: center; margin-top: 44px; }
.align-center { text-align: center; }

.prose h2 { font-size: 30px; }
.prose h3 { font-weight: 600; }
.prose a { color: var(--ink); font-weight: 500; border-bottom: 2px solid var(--brand); }
.prose a:hover { background: var(--brand-soft); }
.prose img { border-radius: var(--radius); }
.prose li { margin-bottom: 6px; }
.prose em { color: var(--ink); }
.text-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ------------------------------ Hero ------------------------------ */
.hero {
  position: relative;
  display: flex; align-items: center;
  background-color: var(--dark);
  background-image: var(--hero-img);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.hero--full { min-height: calc(100vh - var(--header-h)); }
.hero--tall { min-height: 640px; }
.hero--medium { min-height: 560px; }
.hero--short { min-height: 440px; }
.hero.has-image::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 18, .82) 0%, rgba(11, 13, 18, .55) 55%, rgba(11, 13, 18, .25) 100%),
    rgba(11, 13, 18, calc(var(--hero-overlay, .25) * .5));
}
.hero--center.has-image::before { background: rgba(11, 13, 18, calc(.35 + var(--hero-overlay, .25) * .5)); }
.hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--brand); }
.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero__content { max-width: 640px; padding: 76px 0; }
.hero--center .hero__content { margin: 0 auto; text-align: center; }
.hero__title {
  font-family: var(--font-head);
  font-size: 54px; line-height: 1.08; font-weight: 700;
  letter-spacing: -.025em;
  color: var(--white); margin: 0 0 22px;
}
.hero__title strong { color: var(--brand); background: none; padding: 0; }
.hero--dark .hero__title { color: var(--ink); }
.hero__text { font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, .88); margin-bottom: 34px; max-width: 560px; }
.hero--center .hero__text { margin-left: auto; margin-right: auto; }
.hero--dark .hero__text { color: var(--text); }

/* ------------------------------ Intro (+ vidéo) ------------------------------ */
.intro-video { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-video.image-left .intro-video__media { order: -1; }
.intro-video__title { font-size: 40px; margin-bottom: 10px; }
.intro-video__subtitle { font-family: var(--font-head); font-size: 17px; font-weight: 500; color: var(--muted); margin-bottom: 20px; }
.intro-video__subtitle em { font-style: normal; color: var(--ink); }
.intro-video__actions { margin-top: 28px; }
.intro-video__media { position: relative; }
.intro-video__media::before {
  content: ''; position: absolute; right: -18px; bottom: -18px; width: 60%; height: 60%;
  background: var(--brand); border-radius: var(--radius); z-index: 0;
}
.intro-video__img, .video-poster { position: relative; z-index: 1; border-radius: var(--radius); box-shadow: var(--shadow-img); overflow: hidden; }
.intro-video__img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.video-poster { display: block; }
.video-poster img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.video-poster__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--brand); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.video-poster:hover .video-poster__play { transform: translate(-50%, -50%) scale(1.08); background: var(--ink); color: var(--white); }
.video-poster iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster.is-playing img, .video-poster.is-playing .video-poster__play { visibility: hidden; }

/* ------------------------------ Image + texte ------------------------------ */
.image-text { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.image-text.image-right .image-text__media { order: 2; }
.image-text__media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-img); }
.image-text.style-shadow .image-text__media img { box-shadow: var(--shadow-img); }
.image-text__cover { min-height: 400px; height: 100%; background-size: cover; background-position: center; border-radius: var(--radius); box-shadow: var(--shadow-img); }
.image-text__title { margin-bottom: 16px; }
.image-text__actions { margin-top: 28px; }

/* Image + liste de services (photo pleine hauteur / contenu sur fond gris) */
.image-services { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.image-services.image-right .image-services__media { order: 2; }
.image-services__media { position: relative; min-height: 460px; }
.image-services__cover { position: absolute; inset: 0; background-size: cover; background-position: center; }
.image-services__content { display: flex; align-items: center; }
.image-services__inner { width: 100%; max-width: 640px; padding: 84px 64px; }
.image-services.image-right .image-services__inner { margin-left: auto; }
.image-services__title { font-size: 34px; margin-bottom: 20px; }
.image-services__text { margin-bottom: 34px; }
.image-services__text p { margin-bottom: 0; }
.image-services__actions { margin-top: 34px; }
.service-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.service-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
.service-item__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--brand-soft); color: var(--ink);
}
.service-item__icon img { width: 30px; height: 30px; object-fit: contain; }
.service-item__title { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--ink); margin: 4px 0 6px; line-height: 1.3; }
.service-item__title a { color: inherit; }
.service-item__title a:hover { color: var(--ink); border-bottom: 2px solid var(--brand); }
.service-item__text { margin: 0; font-size: 15px; }

/* ------------------------------ Deux colonnes ------------------------------ */
.two-columns { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
.two-columns__head { grid-column: 1 / -1; max-width: 760px; }
.two-columns__head:has(+ .two-columns__col) { grid-column: auto; }
.two-columns__title { font-size: 34px; }
.two-columns__links { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.two-columns__links a { color: var(--ink); font-weight: 500; border-bottom: 2px solid var(--brand); }
.two-columns__links a:hover { background: var(--brand-soft); }
.two-columns__actions { grid-column: 1 / -1; }

/* ------------------------------ Boîtes à icônes ------------------------------ */
.icon-boxes { display: grid; gap: 28px; }
.icon-boxes.cols-2 { grid-template-columns: repeat(2, 1fr); }
.icon-boxes.cols-3 { grid-template-columns: repeat(3, 1fr); }
.icon-boxes.cols-4 { grid-template-columns: repeat(4, 1fr); }
.icon-boxes.align-center .icon-box { text-align: center; }
.icon-boxes.align-center .icon-box__icon { margin-left: auto; margin-right: auto; }
.icon-box {
  display: block; padding: 34px 26px; color: inherit;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.icon-boxes.style-card .icon-box { box-shadow: 0 4px 18px rgba(11, 13, 18, .04); }
.icon-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.icon-box__icon {
  display: flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; border-radius: 20px;
  background: var(--brand-soft); color: var(--ink);
  margin-bottom: 20px;
  transition: background var(--transition), color var(--transition);
}
.icon-box:hover .icon-box__icon { background: var(--brand); transform: translateY(-3px) rotate(-4deg); box-shadow: 0 10px 22px rgba(255, 212, 0, .35); }
.icon-box__icon { transition: background var(--transition), transform var(--transition), box-shadow var(--transition); }
.icon-box__icon img { width: 36px; height: 36px; object-fit: contain; }
/* Icones images (pastilles jaunes deja colorees) : pas de fond derriere, juste un leger relief au survol */
.icon-box__icon:has(img) { background: transparent; width: 72px; height: 72px; }
.icon-box__icon:has(img) img { width: 64px; height: 64px; }
.icon-box:hover .icon-box__icon:has(img) { background: transparent; transform: translateY(-4px) scale(1.06); box-shadow: none; filter: drop-shadow(0 10px 16px rgba(255, 212, 0, .45)); }
.icon-box__title { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.icon-box__text { margin: 0; font-size: 15px; }

/* ------------------------------ Liste numérotée ------------------------------ */
.numbered-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px 36px; counter-reset: nl; }
.numbered-list.cols-2 { grid-template-columns: 1fr 1fr; }
.numbered-list__item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px;
}
.numbered-list__num {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
  background: var(--brand); color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.numbered-list__title { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.numbered-list__item p { margin: 0; font-size: 15px; }

/* ------------------------------ Valeurs ------------------------------ */
.values.has-image { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.values.image-left .values__media { order: -1; }
.values__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 36px; }
.value__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px; background: var(--brand-soft); color: var(--ink);
  margin-bottom: 14px;
}
.value__title { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.value p { margin: 0; font-size: 15px; }
.values__media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-img); }

/* ------------------------------ Étapes ------------------------------ */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 54px; }
.step { display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: center; }
.step.is-reverse { grid-template-columns: 1fr 220px; }
.step.is-reverse .step__media { order: 2; }
.step__media { text-align: center; }
.step__media img { border-radius: 50%; box-shadow: var(--shadow-card); }
.step__num { font-family: var(--font-head); font-size: 42px; font-weight: 700; color: var(--brand); line-height: 1; display: block; margin-bottom: 8px; -webkit-text-stroke: 1px var(--ink); }
.step__title { font-family: var(--font-head); font-size: 22px; font-weight: 600; }

/* ------------------------------ FAQ ------------------------------ */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.faq__item[open] { border-color: var(--brand); box-shadow: 0 8px 26px rgba(11, 13, 18, .06); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q svg { flex-shrink: 0; transition: transform var(--transition); color: var(--muted); }
.faq__item[open] .faq__q svg { transform: rotate(180deg); color: var(--ink); }
.faq__a { padding: 0 22px 20px; font-size: 15px; }
.faq__a p:last-child { margin-bottom: 0; }

/* ------------------------------ Témoignages ------------------------------ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.testimonial__stars { color: var(--brand); font-size: 15px; letter-spacing: 2px; display: block; margin-bottom: 12px; }
.testimonial__text { font-size: 15.5px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial__author img { border-radius: 50%; width: 48px; height: 48px; object-fit: cover; }
.testimonial__author b { color: var(--ink); display: block; font-weight: 600; }
.testimonial__author small { display: block; color: var(--muted); font-size: 12.5px; }

/* ------------------------------ Chiffres clés ------------------------------ */
.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 50px 90px; text-align: center; }
.stat__num { font-family: var(--font-head); font-size: 54px; font-weight: 700; color: var(--ink); line-height: 1.1; display: block; }
.stat__label { text-transform: uppercase; font-size: 13px; letter-spacing: 1px; color: var(--muted); }
.bg-dark .stat__num { color: var(--brand); }
.bg-dark .stat__label { color: rgba(255, 255, 255, .7); }

/* ------------------------------ Logos & galerie ------------------------------ */
.logos { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px 64px; }
.logos img { max-height: 56px; width: auto; transition: filter var(--transition), opacity var(--transition); }
.logos.is-grey img { filter: grayscale(1); opacity: .5; }
.logos.is-grey li:hover img { filter: none; opacity: 1; }

.gallery { display: grid; gap: 22px; }
.gallery.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gallery.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery.cols-4 { grid-template-columns: repeat(4, 1fr); }
.gallery__item { margin: 0; }
.gallery__item img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-sm); }
.gallery__item figcaption { font-size: 13px; margin-top: 8px; }

/* ------------------------------ Tarifs ------------------------------ */
.pricing { display: grid; gap: 26px; align-items: stretch; }
.pricing.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pricing.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pricing.cols-4 { grid-template-columns: repeat(4, 1fr); }
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 26px 30px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-card); transform: translateY(-6px); border-color: transparent; }
.price-card.is-featured { border-color: var(--brand); background: linear-gradient(180deg, var(--brand-soft) 0%, var(--white) 45%); }
.price-card.is-featured::before {
  content: attr(data-badge); position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--white); font-family: var(--font-head); font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 99px; white-space: nowrap;
}
.price-card__media { margin-bottom: 18px; }
.price-card__media img { max-height: 140px; width: auto; border-radius: var(--radius-sm); }
.price-card__name { font-family: var(--font-head); font-size: 18px; font-weight: 600; margin-bottom: 14px; }
.price-card__price { margin-bottom: 16px; }
.price-card__prefix { display: block; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.price-card__amount { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--ink); line-height: 1.2; display: block; letter-spacing: -.02em; }
.price-card__amount--2 { font-size: 22px; }
.price-card__line { display: block; width: 44px; height: 4px; border-radius: 4px; background: var(--brand); margin: 0 auto 16px; }
.price-card__text { font-size: 14.5px; flex: 1; }
.price-card__features { list-style: none; margin: 0 0 18px; padding: 0; font-size: 14px; text-align: left; width: 100%; }
.price-card__features li { padding: 5px 0; border-bottom: 1px dashed var(--line); }
.price-card__features li:last-child { border-bottom: 0; }
.price-card__features svg { color: var(--ink); background: var(--brand); border-radius: 50%; padding: 2px; }
.price-card__btn { margin-top: auto; }
.pricing__note { text-align: center; margin-top: 26px; font-size: 13px; color: var(--muted); }

/* ------------------------------ Équipe ------------------------------ */
.team { display: grid; gap: 26px; }
.team.cols-3 { grid-template-columns: repeat(3, 1fr); }
.team.cols-4 { grid-template-columns: repeat(4, 1fr); }
.member { text-align: center; }
.team.style-pricing .member {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px 28px; transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.team.style-pricing .member:hover { box-shadow: var(--shadow-card); transform: translateY(-6px); border-color: transparent; }
.member__media { margin-bottom: 18px; }
.member__media img { width: 100%; max-width: 260px; border-radius: var(--radius-sm); object-fit: cover; aspect-ratio: 1; }
.team.style-team .member__media img { border-radius: 50%; max-width: 200px; }
.member__name { font-family: var(--font-head); font-size: 18px; font-weight: 600; margin-bottom: 2px; }
.member__role { color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.member__rates { margin-bottom: 12px; }
.member__rate { display: block; font-family: var(--font-head); font-size: 21px; font-weight: 700; color: var(--ink); line-height: 1.5; }
.member__text { font-size: 14.5px; }
.member__mail { display: inline-flex; color: var(--muted); }
.member__mail:hover { color: var(--ink); }
.team .btn { margin-top: auto; align-self: center; }

/* ------------------------------ Parallax / espace client ------------------------------ */
.parallax {
  position: relative;
  background-image: var(--bg);
  background-size: cover; background-position: center;
  padding: 110px 0;
  color: var(--white);
}
.parallax.is-fixed { background-attachment: fixed; }
.parallax::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 13, 18, .92) 0%, rgba(11, 13, 18, calc(var(--overlay, .55) + .1)) 100%); }
.parallax__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 5fr 7fr; gap: 60px; align-items: center; }
.parallax__title { font-size: 38px; font-weight: 700; color: var(--white); margin: 0 0 6px; }
.parallax__title strong { color: var(--brand); background: none; padding: 0; }
.parallax__desc { color: rgba(255, 255, 255, .8); }
.parallax__list { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 12px; }
.parallax__list li { display: flex; align-items: center; gap: 13px; color: var(--white); font-size: 16px; }

.icon-round {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand); color: var(--ink);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.icon-round--sm { width: 32px; height: 32px; }
a:hover > .icon-round, .contact-card:hover .icon-round, a.contact-map__item:hover .icon-round { background: var(--ink); color: var(--brand); }

/* ------------------------------ Bandeau CTA ------------------------------ */
.band-cta { display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.band-cta.is-centered { justify-content: center; text-align: center; }
.band-cta__title { margin: 0; font-size: 32px; }
.bg-yellow .band-cta__title { color: var(--ink); }
.bg-yellow .band-cta__title strong { background: none; padding: 0; }
.band-cta__sub { margin: 6px 0 0; font-size: 18px; color: var(--ink); }
.band-cta__text { margin: 6px 0 0; color: rgba(11, 13, 18, .7); }
.bg-dark .band-cta__sub, .bg-dark .band-cta__text { color: rgba(255, 255, 255, .8); }

/* ------------------------------ Coordonnées ------------------------------ */
.contact-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  min-width: 240px; padding: 30px 24px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.contact-card .icon-round { margin-bottom: 10px; }
.contact-card__label { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.contact-card__value { color: var(--ink); font-size: 17px; font-weight: 600; }

.contact-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-list a { display: flex; align-items: center; gap: 13px; }
.contact-list small { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.contact-list b { color: var(--ink); font-weight: 600; }

/* ------------------------------ Formulaire de devis ------------------------------ */
.quote-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.quote-split__form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: 0 4px 18px rgba(11, 13, 18, .04); }
.quote-split__form h2 { font-size: 26px; }
.quote-single { max-width: 780px; margin: 0 auto; }
.qf-hp { position: absolute; left: -9999px; }
.qf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.qf-field { display: flex; flex-direction: column; }
.qf-field--full { grid-column: 1 / -1; }
.qf-field label { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.qf-field input, .qf-field select, .qf-field textarea {
  font-family: var(--font-body);
  font-size: 15px; color: var(--ink);
  background: var(--white);
  border: 1px solid #d5dbe4; border-radius: var(--radius-sm);
  padding: 12px 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.qf-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%230b0d12' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.qf-field textarea { resize: vertical; min-height: 130px; }
.qf-field input:focus, .qf-field select:focus, .qf-field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255, 212, 0, .28); }
.qf-field [aria-invalid="true"] { border-color: #e5484d; }
.qf-consent label { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: 13px; color: var(--text); cursor: pointer; }
.qf-consent input { width: auto; margin-top: 3px; accent-color: var(--ink); }
.qf-actions { display: flex; align-items: center; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.qf-status { font-size: 14px; }
.form-alert { padding: 13px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 14.5px; }
.form-alert--success { background: #e6f7ee; color: #1c7d4d; border: 1px solid #b6e8cd; }
.form-alert--error { background: #fdecec; color: #c92a2a; border: 1px solid #f5c2c2; }

.check-list { list-style: none; margin: 18px 0; padding: 0; display: grid; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.check-list svg { color: var(--ink); background: var(--brand); border-radius: 50%; padding: 3px; flex-shrink: 0; }

/* ------------------------------ Carte ------------------------------ */
.map-embed { line-height: 0; }

/* ------------------------------ Pages locales ------------------------------ */
.local-intro { display: grid; grid-template-columns: 7fr 4fr; gap: 56px; align-items: start; }
.local-card { background: var(--soft); border-radius: var(--radius); padding: 28px 26px; position: sticky; top: calc(var(--header-h) + 20px); }
.local-card__title { font-family: var(--font-head); font-size: 19px; font-weight: 600; margin-bottom: 18px; }
.local-card__item { display: flex; align-items: center; gap: 13px; padding: 9px 0; }
.local-card__item small { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.local-card__item b { color: var(--ink); font-weight: 600; }
.local-card__item .icon-round { width: 44px; height: 44px; }
.local-card__links { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); display: grid; gap: 7px; }
.local-card__links a { color: var(--ink); font-size: 14px; font-weight: 500; }
.local-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.local-siblings__title { font-size: 20px; text-align: center; margin-bottom: 20px; }

/* ------------------------------ Liens réseau (pied de page) ------------------------------ */
.block--local_links { background: var(--soft); border-top: 1px solid var(--line); }
.local-links__title { font-size: 20px; text-align: center; margin-bottom: 22px; }
.local-links__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 22px;
}
.local-links__list a { color: var(--muted); font-size: 13px; line-height: 2; }
.local-links__list a:hover { color: var(--ink); }
.local-links.style-inline .local-links__list + .local-links__list { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 20px; }
.local-links__group { font-size: 15px; text-align: center; margin: 24px 0 10px; font-weight: 600; }

/* ------------------------------ Agences (colonnes pays) ------------------------------ */
.agencies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.agencies-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.agencies-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.agency { font-style: normal; display: grid; gap: 3px; align-content: start; }
.agency__label { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.agency__line { color: var(--text); font-size: 14.5px; line-height: 1.7; }
.agency__contact { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; color: var(--ink); font-weight: 500; font-size: 15px; }
.agency__contact:hover { color: var(--brand); }
.agency__flag { font-size: 18px; line-height: 1; display: inline-flex; }
.flag-svg { border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }
.agency__hours { margin-top: 6px; font-size: 13px; }

/* ------------------------------ Annonce ------------------------------ */
.announcement { font-size: 13.5px; }
.announcement--dark { background: var(--dark); color: rgba(255, 255, 255, .85); }
.announcement--yellow { background: var(--brand); color: var(--ink); }
.announcement__inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 9px 24px; position: relative; }
.announcement__inner p { margin: 0; }
.announcement a { font-weight: 600; text-decoration: underline; }
.announcement--dark a { color: var(--brand); }
.announcement__close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: 0; color: inherit; cursor: pointer; padding: 4px; opacity: .7; }
.announcement__close:hover { opacity: 1; }

/* ------------------------------ Divers ------------------------------ */
.spacer__line { border: 0; border-top: 1px solid var(--line); margin: 0; }

.error-block__code { font-family: var(--font-head); font-size: 110px; font-weight: 700; color: var(--brand); line-height: 1; margin: 0 0 10px; -webkit-text-stroke: 2px var(--ink); }

.quote-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--white);
  font-family: var(--font-head); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .04em;
  padding: 15px 24px; border-radius: 99px;
  box-shadow: 0 12px 34px rgba(11, 13, 18, .28);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.quote-float svg { color: var(--brand); }
.quote-float:hover { transform: translateY(-3px); background: var(--brand); color: var(--ink); }
.quote-float:hover svg { color: var(--ink); }

.to-top {
  position: fixed; right: 26px; bottom: 100px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); color: var(--ink); border: 1px solid var(--line); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(11, 13, 18, .12);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), background var(--transition);
}
body:not(:has(.quote-float)) .to-top { bottom: 26px; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand); border-color: var(--brand); }

.toasts { position: fixed; top: 22px; right: 22px; z-index: 300; display: grid; gap: 10px; }
.toast {
  background: var(--ink); color: var(--white);
  padding: 14px 22px; border-radius: var(--radius-sm); font-size: 14px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .25);
  animation: toast-in .3s ease;
}
.toast--success { border-left: 4px solid #2fbf71; }
.toast--error { border-left: 4px solid #e5484d; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-8px); } }

/* ------------------------------ Pied de page ------------------------------ */
.pre-footer { background: var(--soft); }

.site-footer { background: var(--dark); color: rgba(255, 255, 255, .78); }
.footer__top { padding: 84px 0 64px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; }
.footer__brand img { max-height: 50px; width: auto; height: auto; image-rendering: auto; } /* taille native du logo : pas d'agrandissement flou */
.footer__brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--white); }
.footer__about { margin: 22px 0 0; color: rgba(255, 255, 255, .78); font-size: 15px; line-height: 1.75; max-width: 380px; }
.footer__title { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--white); margin: 0 0 20px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col a:not(.btn) { color: rgba(255, 255, 255, .78); font-size: 15px; }
.footer__col a:not(.btn):hover { color: var(--brand); }
.footer__col .btn--primary { color: var(--ink); }
.footer__col .btn--primary:hover { color: var(--white); }
.footer__contact li { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, .85); }
.footer__contact svg { color: var(--brand); flex-shrink: 0; }
.footer__contact .btn { margin-top: 8px; }

.social-list { list-style: none; margin: 28px 0 0; padding: 0; display: flex; gap: 10px; }
.social-list a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .1); color: var(--white);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-list a:hover { background: var(--brand); color: var(--ink); transform: translateY(-2px); }

.footer__agencies { margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(255, 255, 255, .1); }
.footer__agencies-title { margin-bottom: 28px; }
.footer__agencies .agency__label { color: var(--white); }
.footer__agencies .agency__line { color: rgba(255, 255, 255, .62); }
.footer__agencies .agency__contact { color: var(--white); }
.footer__agencies .agency__contact:hover { color: var(--brand); }

.footer__bottom { background: rgba(0, 0, 0, .35); border-top: 1px solid rgba(255, 255, 255, .08); padding: 16px 0 14px; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__copy { margin: 0; font-size: 13px; color: rgba(255, 255, 255, .6); }
.footer__legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; }
.footer__legal a { font-size: 13px; color: rgba(255, 255, 255, .6); }
.footer__legal a:hover { color: var(--brand); }
.footer__text { margin: 0; font-size: 12px; color: rgba(255, 255, 255, .45); width: 100%; }

/* ------------------------------ Coordonnées + carte ------------------------------ */
.block--contact_map { padding-top: 0; padding-bottom: 0; }
.contact-map { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.contact-map.image-right .contact-map__media { order: 2; }
.contact-map__media { background-color: var(--soft); background-image: none; background-size: cover; background-position: center; min-height: 320px; }
.contact-map__content { display: flex; flex-direction: column; justify-content: center; padding: 72px max(24px, calc(100% - var(--container) / 2 + 24px)) 72px 56px; background: var(--white); }
.contact-map__title { font-size: 30px; margin-bottom: 6px; }
.contact-map__sub { margin-bottom: 28px; color: var(--muted); }
.contact-map__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.contact-map__item { display: flex; align-items: center; gap: 16px; color: inherit; }
.contact-map__item .icon-round { width: 54px; height: 54px; }
.contact-map__label { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); line-height: 1.4; }
.contact-map__value { display: block; color: var(--ink); font-size: 16px; font-weight: 600; }
.contact-map__actions { margin: 30px 0 0; }
@media (max-width: 860px) {
  .contact-map { grid-template-columns: 1fr; }
  .contact-map.image-right .contact-map__media { order: 0; }
  .contact-map__content { padding: 50px 24px; }
}

/* ------------------------------ Carte interactive (Leaflet / OpenStreetMap) ------------------------------ */
.contact-map__media { position: relative; overflow: hidden; }
.contact-map__map { position: relative; width: 100%; height: 100%; line-height: 0; }
.contact-map__img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact-map__leaflet { position: absolute; inset: 0; background: #e6e9ee; z-index: 0; }
.mode-interactive .contact-map__media { min-height: 520px; }
.contact-map__leaflet .leaflet-control-attribution { font-size: 10px; opacity: .75; }
.contact-map__leaflet.is-gray .leaflet-tile-pane { filter: grayscale(1) brightness(1.05) contrast(.9); }
.contact-map__leaflet .leaflet-bar { border: 0; box-shadow: 0 6px 18px rgba(11, 13, 18, .14); border-radius: 10px; overflow: hidden; }
.contact-map__leaflet .leaflet-bar a { color: var(--ink); }
.ws-pin { background: none; border: 0; }
.ws-pin svg { display: block; filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .22)); transition: transform var(--transition); transform-origin: 50% 100%; }
.ws-pin:hover svg, .ws-pin.is-active svg { transform: scale(1.18); }
.ws-pin svg path { fill: var(--brand); stroke: rgba(0, 0, 0, .15); }
.ws-pin svg circle { fill: var(--white); }
.ws-pin.is-active svg path { fill: var(--ink); }
.ws-pin.is-active svg circle { fill: var(--brand); }
.leaflet-tooltip.ws-tip { background: var(--ink); color: var(--white); border: 0; border-radius: 6px; font-family: var(--font-body); font-size: 12px; padding: 6px 10px; box-shadow: none; }
.leaflet-tooltip.ws-tip::before { border-top-color: var(--ink); }

.contact-map__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 26px; }
.contact-map__tab {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line); color: var(--ink);
  font-family: var(--font-head); font-size: 13.5px; font-weight: 500; padding: 9px 16px; border-radius: 99px; cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.contact-map__tab:hover { border-color: var(--ink); }
.contact-map__tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.contact-map__agency { font-family: var(--font-head); font-size: 20px; font-weight: 600; margin-bottom: 20px; }
.contact-map__panel { animation: cmap-in .3s ease; }
@keyframes cmap-in { from { opacity: 0; transform: translateY(6px); } }

/* ------------------------------ Responsive ------------------------------ */
@media (max-width: 1240px) {
  .main-nav__item > a { padding: 0 9px; font-size: 12px; }
  .main-nav__item > a::after { left: 9px; right: 9px; }
  .main-nav__item.is-button { display: none; } /* le bouton Devis reste dans le menu mobile et le pied de page */
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .burger { display: block; }
  h1, .h1 { font-size: 40px; }
  h2, .h2 { font-size: 32px; }
  .page-title__heading { font-size: 40px; }
  .hero__title { font-size: 44px; }
  .intro-video__title { font-size: 34px; }
  .btn { padding: 0 26px; }
  .icon-boxes.cols-4, .pricing.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .team.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .agencies-grid, .agencies-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .image-services__inner { padding: 60px 40px; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .burger { display: block; }
  :root { --header-h: 72px; }
  body { font-size: 15.5px; }
  h1, .h1 { font-size: 34px; }
  h2, .h2 { font-size: 28px; }
  .pad-normal { padding-top: 60px; padding-bottom: 60px; }
  .pad-large { padding-top: 80px; padding-bottom: 80px; }
  .page-title { min-height: min(var(--title-h, 320px), 260px); }
  .page-title__inner { padding: 36px 20px; }
  .page-title.has-image, .parallax.is-fixed { background-attachment: scroll; }
  .page-title__heading { font-size: 32px; }
  .page-title__subtitle { font-size: 15px; }
  .hero--tall, .hero--medium { min-height: 520px; }
  .hero--short { min-height: 400px; }
  .hero__content { padding: 60px 0; }
  .hero__title { font-size: 34px; }
  .hero__text { font-size: 16px; }
  .hero .has-mobile { background-image: var(--hero-img-mobile, var(--hero-img)); }
  .image-services { grid-template-columns: 1fr; }
  .image-services__media { min-height: 280px; }
  .image-services.image-right .image-services__media { order: 0; }
  .image-services__inner { padding: 50px 24px; }
  .image-services__title { font-size: 28px; }
  .intro-video, .image-text, .values.has-image, .local-intro, .local-sections,
  .quote-split, .text-columns { grid-template-columns: 1fr; gap: 36px; }
  .intro-video.image-left .intro-video__media, .image-text.image-right .image-text__media,
  .values.image-left .values__media { order: 0; }
  .intro-video__media::before { right: -10px; bottom: -10px; }
  .two-columns { grid-template-columns: 1fr; gap: 20px; }
  .icon-boxes.cols-2, .icon-boxes.cols-3, .icon-boxes.cols-4, .pricing.cols-2, .pricing.cols-3, .pricing.cols-4,
  .team.cols-3, .team.cols-4, .testimonials, .numbered-list.cols-2, .values__grid,
  .gallery.cols-3, .gallery.cols-4 { grid-template-columns: 1fr; }
  .price-card, .icon-box, .member { min-width: 0; }
  .btn { white-space: normal; }
  .gallery.cols-2 { grid-template-columns: 1fr; }
  .parallax__inner { grid-template-columns: 1fr; }
  .parallax { padding: 72px 0; }
  .step, .step.is-reverse { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .step.is-reverse .step__media { order: 0; }
  .qf-grid { grid-template-columns: 1fr; }
  .quote-split__form { padding: 24px 20px; }
  .band-cta { justify-content: center; text-align: center; }
  .band-cta__title { font-size: 26px; }
  .agencies-grid, .agencies-grid.cols-2 { grid-template-columns: 1fr; text-align: center; }
  .agency__contact { justify-content: center; }
  .footer__top { padding: 60px 0 46px; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__about { margin-left: auto; margin-right: auto; }
  .social-list, .footer__contact li { justify-content: center; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
  .local-card { position: static; }
  .quote-float span { display: none; }
  .quote-float { padding: 15px; border-radius: 50%; }
  .stats { gap: 34px 44px; }
  .stat__num { font-size: 40px; }
  .mode-interactive .contact-map__media { min-height: 360px; }
  .contact-card { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* =====================================================================
   Mega-menu, accordéons mobiles et rappels d'identité (refonte 2026)
   ===================================================================== */
.main-nav__item > a svg { margin-left: 2px; opacity: .55; transition: transform var(--transition); }
.main-nav__item.has-children:hover > a svg,
.main-nav__item.is-open > a svg { transform: rotate(180deg); opacity: 1; }
.main-nav__item.has-mega { position: static; }
.main-nav__item.is-button .btn--sm { height: 44px; padding: 0 22px; box-shadow: none; }

.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(11, 13, 18, .16);
  padding: 34px 0 38px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 50;
}
.mega::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--brand); }
.main-nav__item.has-mega:hover .mega,
.main-nav__item.has-mega:focus-within .mega,
.main-nav__item.has-mega.is-open .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega__inner { display: grid; grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr)); gap: 36px; }
.mega__head {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 15.5px; font-weight: 600; color: var(--ink);
  margin: 0 0 14px; padding: 0 10px;
}
a.mega__head svg { opacity: .5; transition: transform var(--transition), opacity var(--transition); }
a.mega__head:hover svg { transform: translateX(3px); opacity: 1; }
.mega__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.mega__link {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 9px 10px; border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mega__link:hover { background: var(--soft); }
.mega__icon {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--accent-bg, var(--brand)); color: var(--accent-ink, var(--ink));
  box-shadow: 0 6px 14px rgba(11, 13, 18, .10);
}
.mega__body { display: block; min-width: 0; }
.mega__body b { display: block; font-family: var(--font-head); font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.mega__body small { display: block; font-size: 13px; color: var(--muted); line-height: 1.45; margin-top: 2px; }
.mega__col[data-accent="0"] { --accent-bg: var(--brand);  --accent-ink: var(--ink); }
.mega__col[data-accent="1"] { --accent-bg: #3b82f6; --accent-ink: #fff; }
.mega__col[data-accent="2"] { --accent-bg: #f97316; --accent-ink: #fff; }
.mega__col[data-accent="3"] { --accent-bg: #10b981; --accent-ink: #fff; }

/* Colonnes « Nos agences » */
.mega--agencies .mega__head { font-size: 17px; }
.mega__agency { font-size: 13px; color: var(--muted); line-height: 1.55; margin: -6px 0 14px; padding: 0 10px; }
.mega__agency a { color: var(--ink); font-weight: 600; }
.mega__cities { list-style: none; margin: 0; padding: 0 10px; columns: 2; column-gap: 16px; }
.mega__cities li { break-inside: avoid; }
.mega__cities a { display: block; padding: 4px 0; font-size: 14px; color: var(--text); }
.mega__cities a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--brand); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.mega__more { display: inline-flex; align-items: center; gap: 6px; margin: 10px 10px 0; font-family: var(--font-head); font-size: 13.5px; font-weight: 600; color: var(--ink); }
.mega__more svg { transition: transform var(--transition); }
.mega__more:hover svg { transform: translateX(3px); }

/* Menu mobile : accordéons */
.mm-row { display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.mm-row > a { flex: 1; display: block; padding: 14px 4px; font-family: var(--font-head); font-size: 15px; font-weight: 500; color: var(--ink); }
.mm-item.is-button .mm-row > a { color: var(--ink); }
.mm-toggle { background: none; border: 0; padding: 10px; color: var(--ink); cursor: pointer; display: inline-flex; transition: transform var(--transition); }
.mm-toggle[aria-expanded="true"] { transform: rotate(180deg); }
.mm-panel { padding: 4px 0 10px 6px; border-bottom: 1px solid var(--line); }
.mm-group { display: flex; align-items: center; gap: 6px; font-family: var(--font-head); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 12px 0 2px; }
a.mm-group:hover { color: var(--ink); }
.mm-panel ul { list-style: none; margin: 0; padding: 0; }
.mm-panel li a { display: block; padding: 7px 4px; font-size: 14.5px; color: var(--ink); }
.mm-panel .mm-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }

/* Rappels d'identité : barre jaune avant les titres de section */
.section-head h2::before, .image-text__title::before, .image-services__title::before,
.two-columns__title::before, .contact-map__title::before, .quote-split__side h2::before,
.intro-video__title::before, h2.parallax__title::before {
  content: ''; display: block; width: 44px; height: 5px; border-radius: 5px;
  background: var(--brand); margin-bottom: 16px;
}
.section-head.align-center h2::before, .align-center .section-head h2::before { margin-left: auto; margin-right: auto; }
.bg-map { background: var(--soft); }
.bg-map::before { opacity: .05; }
.block--local_links { padding-top: 48px; padding-bottom: 48px; }
.pre-footer .block--local_links { border-top: 1px solid var(--line); }

@media (max-width: 1024px) {
  .mega__inner { gap: 22px; }
  .mega__cities { columns: 1; }
}

/* Mega-menu « Nos agences » : au-delà de 4 pays, une seule colonne de villes par pays */
.mega--agencies[style*="--cols:5"] .mega__cities,
.mega--agencies[style*="--cols:6"] .mega__cities,
.mega--agencies[style*="--cols:7"] .mega__cities { columns: 1; }
.mega--agencies[style*="--cols:6"] .mega__inner,
.mega--agencies[style*="--cols:7"] .mega__inner { gap: 24px; }

/* ------------------------------ Diaporama ------------------------------ */
.slideshow { position: relative; overflow: hidden; background: var(--dark); }
.slideshow__track { display: flex; transition: transform .75s cubic-bezier(.65, 0, .35, 1); will-change: transform; }
.slideshow .slide { flex: 0 0 100%; min-width: 100%; }
.slideshow.hero--tall .slide { min-height: 640px; }
.slideshow.hero--medium .slide { min-height: 560px; }
.slideshow.hero--short .slide { min-height: 440px; }
.slideshow.hero--full .slide { min-height: calc(100vh - var(--header-h)); }
.slideshow .slide::after { display: none; }
.slideshow::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--brand); z-index: 2; }
.slideshow .hero__content { opacity: 0; transform: translateY(18px); transition: opacity .6s ease .35s, transform .6s ease .35s; }
.slideshow .slide.is-active .hero__content { opacity: 1; transform: none; }
.slideshow .slide.has-image { background-size: cover; background-position: center; background-repeat: no-repeat; }
.slideshow.hero--full .slide { min-height: min(calc(100svh - var(--header-h) - 38px), 860px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }
.btn--light { background: transparent; border-color: rgba(255, 255, 255, .7); color: var(--white); box-shadow: none; }
.btn--light:hover { border-color: var(--brand); background: var(--brand); color: var(--ink); }

.slideshow__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .14); color: var(--white);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.slideshow__arrow:hover { background: var(--brand); color: var(--ink); }
.slideshow__arrow--prev { left: 22px; }
.slideshow__arrow--next { right: 22px; }
.slideshow__dots { position: absolute; left: 0; right: 0; bottom: 22px; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.slideshow__dot { width: 32px; height: 32px; border-radius: 99px; border: 0; padding: 8px; background-clip: content-box; cursor: pointer; background: rgba(255, 255, 255, .45); transition: width var(--transition), background var(--transition); }
.slideshow__dot.is-active { width: 52px; background: var(--brand); }
@media (max-width: 860px) {
  .slideshow.hero--tall .slide, .slideshow.hero--medium .slide { min-height: 520px; }
  .slideshow__arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .slideshow .hero__content { opacity: 1; transform: none; }
}

/* ------------------------------ WhatsApp flottant ------------------------------ */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--white);
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  padding: 13px 22px 13px 16px; border-radius: 99px;
  box-shadow: 0 12px 34px rgba(37, 211, 102, .4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: translateY(-3px); color: var(--white); box-shadow: 0 16px 40px rgba(37, 211, 102, .5); }
body:has(.wa-float) .to-top { bottom: 92px; }
@media (max-width: 860px) {
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}
.qf-grid--compact .qf-field { grid-column: 1 / -1; }
.qf-grid--compact { gap: 14px; }
@media (min-width: 640px) { .qf-grid--compact .qf-field:nth-child(2), .qf-grid--compact .qf-field:nth-child(3) { grid-column: auto; } }

/* ------------------------------ Sélecteur de langue ------------------------------ */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 99px; background: var(--white); flex-shrink: 0; }
.lang-switch__item { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 99px; font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--muted); transition: background var(--transition), color var(--transition); }
.lang-switch__item:hover { color: var(--ink); }
.lang-switch__item.is-active { background: var(--ink); color: var(--white); }
.lang-switch__item .flag-svg { width: 18px; height: 12px; }
.lang-switch--mobile { width: 100%; justify-content: center; margin-bottom: 4px; }
.lang-switch--mobile .lang-switch__item { padding: 8px 14px; font-size: 13px; }
@media (max-width: 1240px) { .lang-switch__item span:last-child { display: none; } .lang-switch__item { padding: 6px 8px; } }
@media (max-width: 1024px) { .header__inner .lang-switch { margin-left: auto; margin-right: 6px; } }

/* En-tête à sept onglets : version compacte sous 1900 px, bouton Devis masqué sous 1300 px, burger sous 1200 px */
.header__inner { max-width: 1360px; }
@media (max-width: 1900px) {
  .header__logo img { max-height: 44px; }
  .main-nav__item > a { padding: 0 8px; font-size: 12px; letter-spacing: .02em; }
  .main-nav__item > a::after { left: 8px; right: 8px; }
  .main-nav__item > a svg { width: 12px; height: 12px; margin-left: 0; }
  .main-nav__item.is-button .btn--sm { padding: 0 14px; font-size: 11.5px; height: 40px; }
  .main-nav__item.is-button { margin-left: 6px; }
  .lang-switch__item span:last-child { display: none; }
  .lang-switch__item { padding: 6px 7px; }
}
@media (max-width: 1300px) { .main-nav__item.is-button { display: none; } }
@media (max-width: 1200px) { .main-nav { display: none; } .burger { display: block; } .header__inner .lang-switch { margin-left: auto; margin-right: 6px; } }

/* ------------------------------ Réalisations / portfolio ------------------------------ */
.portfolio__filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: -12px 0 34px; }
.portfolio__filter {
  background: var(--white); border: 1px solid var(--line); color: var(--ink);
  font-family: var(--font-head); font-size: 13.5px; font-weight: 500; padding: 9px 18px; border-radius: 99px; cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.portfolio__filter:hover { border-color: var(--ink); }
.portfolio__filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.portfolio__grid { display: grid; gap: 28px; }
.portfolio__grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.portfolio__grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.portfolio__grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.portfolio__item { margin: 0; display: flex; flex-direction: column; transition: opacity .3s ease, transform .3s ease; }
.portfolio__item.is-hidden { display: none; }
.portfolio__media {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius);
  background: var(--soft); border: 1px solid var(--line);
  transition: box-shadow var(--transition), transform var(--transition);
}
.portfolio__media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s ease; }
.portfolio__media:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.portfolio__media:hover img { transform: scale(1.04); }
.portfolio__zoom {
  position: absolute; right: 14px; bottom: 14px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); color: var(--ink); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px); transition: opacity var(--transition), transform var(--transition);
}
.portfolio__media:hover .portfolio__zoom { opacity: 1; transform: none; }
.portfolio__caption { padding: 14px 4px 0; }
.portfolio__cat { display: inline-block; font-family: var(--font-head); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 4px; }
.portfolio__title { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--ink); }
.portfolio__caption small { display: block; font-size: 13.5px; color: var(--text); margin-top: 2px; }

.lightbox { position: fixed; inset: 0; z-index: 400; background: rgba(11, 13, 18, .92); display: flex; align-items: center; justify-content: center; padding: 40px; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 100%; max-height: calc(100vh - 120px); border-radius: var(--radius-sm); box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.lightbox__caption { position: absolute; left: 0; right: 0; bottom: 22px; text-align: center; color: rgba(255, 255, 255, .85); font-family: var(--font-head); font-size: 14px; }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; background: rgba(255, 255, 255, .12); color: var(--white); border: 0; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--brand); color: var(--ink); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 1024px) { .portfolio__grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  .portfolio__grid.cols-2, .portfolio__grid.cols-3, .portfolio__grid.cols-4 { grid-template-columns: 1fr; }
  .lightbox { padding: 16px; }
  .lightbox__prev, .lightbox__next { display: none; }
}

/* ------------------------------ Barre supérieure ------------------------------ */
.topbar { background: var(--ink); color: rgba(255, 255, 255, .8); font-size: 13px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; max-width: 1360px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__left a, .topbar__contact { display: inline-flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, .8); }
.topbar__left a svg, .topbar__contact svg { color: var(--brand); }
.topbar__left a:hover, .topbar__contact:hover { color: var(--white); }
.topbar__contact { font-family: var(--font-head); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; font-size: 12px; }
.topbar .lang-switch { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .15); }
.topbar .lang-switch__item { color: rgba(255, 255, 255, .7); padding: 4px 9px; font-size: 11.5px; }
.topbar .lang-switch__item:hover { color: var(--white); }
.topbar .lang-switch__item.is-active { background: var(--brand); color: var(--ink); }
.topbar .lang-switch__item span:last-child { display: inline; }
@media (max-width: 1200px) { .topbar { display: none; } }

/* Ligne principale allégée : plus de sélecteur de langue, le bouton Devis reste visible plus longtemps */
.header__inner { max-width: 1360px; }
@media (max-width: 1900px) { .main-nav__item.is-button { display: block; } }
@media (max-width: 1400px) { .main-nav__item.is-button { display: none; } }

/* Badge note Google */
.google-badge { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 16px; margin: -10px auto 34px; padding: 14px 22px; max-width: 640px; background: var(--white); border: 1px solid var(--line); border-radius: 99px; box-shadow: 0 6px 20px rgba(11, 13, 18, .05); }
.google-badge__logo { display: inline-flex; }
.google-badge__score { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--ink); }
.google-badge__score small { font-size: 13px; color: var(--muted); font-weight: 500; margin-left: 2px; }
.google-badge__stars { color: #f5b301; font-size: 18px; letter-spacing: 2px; }
.google-badge__text { font-size: 13.5px; color: var(--muted); }
.google-badge__link { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--brand); }
.testimonials:empty { display: none; }
/* Le conteneur du diaporama ne doit pas hériter des hauteurs du hero : seules les slides comptent */
.slideshow.hero--full, .slideshow.hero--tall, .slideshow.hero--medium, .slideshow.hero--short { min-height: 0; }

/* ------------------------------ Tableau comparatif ------------------------------ */
.table-wrap { overflow-x: auto; margin: 28px 0; border-radius: var(--radius); border: 1px solid var(--line); }
.table-compare { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 640px; }
.table-compare th, .table-compare td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.table-compare thead th { background: var(--ink); color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.table-compare tbody tr:nth-child(even) { background: var(--soft); }
.table-compare tbody tr:last-child td { border-bottom: 0; }
.table-compare td strong { color: var(--ink); white-space: nowrap; }
.table-compare td a { border-bottom-width: 1px; }

/* ------------------------------ Photos dans les contenus ------------------------------ */
.prose-figure { margin: 8px 0 24px 40px; float: right; width: min(42%, 420px); }
.prose-figure img { display: block; width: 100%; height: auto; border-radius: var(--radius); filter: grayscale(1); box-shadow: 0 18px 40px rgba(11, 13, 18, .14); }
.prose-figure figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.prose-figure--left { float: left; margin: 8px 40px 24px 0; }
.prose::after { content: ""; display: table; clear: both; }
@media (max-width: 720px) {
  .prose-figure, .prose-figure--left { float: none; width: 100%; margin: 20px 0 28px; }
}

/* ------------------------------ Blog : cartes d'articles ------------------------------ */
.posts { display: grid; gap: 32px; }
.posts.cols-3 { grid-template-columns: repeat(3, 1fr); }
.posts.cols-2 { grid-template-columns: repeat(2, 1fr); }
.post-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(11, 13, 18, .12); }
.post-card__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--soft); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform .5s ease; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { display: flex; flex-direction: column; gap: 10px; padding: 24px 26px 28px; flex: 1; }
.post-card__meta { font-size: 13px; color: var(--muted); margin: 0; }
.post-card__title { font-size: 20px; line-height: 1.3; margin: 0; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--brand); text-decoration-thickness: 3px; }
.post-card__excerpt { margin: 0; color: var(--muted); font-size: 15px; flex: 1; }
.post-card__more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink); margin-top: 6px; }
.post-card__more:hover { color: var(--ink); gap: 10px; }
.posts__all { margin-top: 44px; }
@media (max-width: 960px) { .posts.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .posts.cols-3, .posts.cols-2 { grid-template-columns: 1fr; } }

/* ------------------------------ Blog : article ------------------------------ */
.article { padding: 56px 0 72px; }
.article__wrap { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 64px; align-items: start; }
.article__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0 0 28px; font-size: 14px; color: var(--muted); }
.article__meta span { display: inline-flex; align-items: center; gap: 7px; }
.article__meta svg { color: var(--brand); }
.article__cover { margin: 0 0 36px; }
.article__cover img { display: block; width: 100%; height: auto; max-height: 520px; object-fit: cover; border-radius: var(--radius); filter: grayscale(1); }
.article__content { font-size: 17px; }
.article__content h2 { margin-top: 44px; font-size: 27px; }
.article__content h3 { margin-top: 30px; font-size: 20px; }
.article__content .note { background: var(--brand-soft); border-left: 4px solid var(--brand); padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; margin: 28px 0; }
.article__author { display: flex; gap: 20px; align-items: center; margin-top: 48px; padding: 26px 28px; background: var(--soft); border-radius: var(--radius); }
.article__author img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex: none; }
.article__author-name { margin: 0 0 6px; }
.article__author-text { margin: 0; color: var(--muted); font-size: 15px; }
.article__side { position: sticky; top: calc(var(--header-h, 90px) + 24px); display: grid; gap: 24px; }
.article__card { padding: 28px; border-radius: var(--radius); background: var(--ink); color: var(--white); display: grid; gap: 14px; }
.article__card p { margin: 0; color: rgba(255, 255, 255, .75); }
.article__card .btn { justify-content: center; }
.article__card .btn--outline { color: var(--white); border-color: rgba(255, 255, 255, .35); }
.article__card .btn--outline:hover { background: var(--white); color: var(--ink); }
.article__card-title { font-size: 20px; margin: 0; color: var(--white); }
.article__card--list { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.article__card--list .article__card-title { color: var(--ink); }
.article__card--list ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.article__card--list li { padding-left: 16px; position: relative; }
.article__card--list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.article__card--list a { color: var(--ink); font-weight: 500; }
@media (max-width: 960px) {
  .article__wrap { grid-template-columns: 1fr; gap: 40px; }
  .article__side { position: static; }
}

/* ------------------------------ Style photo : noir et blanc partout (mockups du portfolio exclus) ------------------------------ */
.image-text__media img, .values__media img, .step__media img, .team .member__media img[src*="/photos/"] { filter: grayscale(1); }
.step__media img { width: 150px; height: 150px; object-fit: cover; }
.image-services__cover { filter: grayscale(1); }

/* ------------------------------ Revue pre-lancement ------------------------------ */
.portfolio__item { cursor: pointer; }
.post-card__more, .google-badge__link { padding: 6px 0; }
@media (max-width: 768px) {
  body { font-size: 16px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ------------------------------ Banniere : titre a gauche, photo nette a droite ------------------------------ */
.page-title.is-split { text-align: left; }
.page-title.is-split .page-title__inner { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: center; max-width: var(--container); width: 100%; padding: 36px 24px; }
.page-title.is-split .breadcrumb ol { display: inline-flex; }
.page-title.is-split .page-title__subtitle { margin-left: 0; }
.page-title__photo { margin: 0; }
.page-title__photo img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 30%; border-radius: var(--radius); filter: grayscale(1); box-shadow: 0 24px 50px rgba(0, 0, 0, .45); border: 1px solid rgba(255, 255, 255, .12); }
@media (max-width: 960px) {
  .page-title.is-split .page-title__inner { grid-template-columns: minmax(0, 1fr) 240px; gap: 32px; }
}
@media (max-width: 720px) {
  .page-title.is-split { text-align: center; }
  .page-title.is-split .page-title__inner { grid-template-columns: 1fr; }
  .page-title.is-split .page-title__subtitle { margin-left: auto; }
  .page-title__photo { display: none; }
}
.image-services__item a, .image-services__list a { display: inline-flex; align-items: center; min-height: 44px; }
.footer__col li a, .footer__legal a { display: inline-block; padding: 3px 0; }

/* ------------------------------ Boutons : jaune unique, texte toujours lisible ------------------------------ */
.btn, .btn:link, .btn:visited { text-decoration: none; }
.btn--primary:focus-visible, .btn--primary:active { color: var(--ink); }
.btn--light:focus-visible, .btn--light:active { background: var(--brand); border-color: var(--brand); color: var(--ink); }
.btn--dark:hover, .btn--dark:focus-visible { background: var(--brand); border-color: var(--brand); color: var(--ink); }
.btn--outline:focus-visible { background: var(--brand); border-color: var(--brand); color: var(--ink); }
.bg-yellow .btn--primary, .band-cta--yellow .btn--primary { background: var(--ink); border-color: var(--ink); color: var(--white); box-shadow: 0 8px 20px rgba(11, 13, 18, .18); }
.bg-yellow .btn--primary:hover, .band-cta--yellow .btn--primary:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

/* Banniere : photo uniquement en fond flou, titre centre */
.page-title.is-split { text-align: center; }
.page-title.is-split .page-title__inner { display: block; }
.page-title__photo { display: none; }

/* Boutons : jamais plus larges que leur colonne, texte qui passe a la ligne si besoin */
.btn { max-width: 100%; }
.footer__col .btn, .article__card .btn, .price-card .btn, .quote-split__form .btn {
  white-space: normal; height: auto; min-height: 46px; padding: 12px 22px; line-height: 1.25;
}
.footer__col .btn { width: 100%; }

/* ------------------------------ Liens par ville : repli natif (details/summary) ------------------------------ */
.local-links__fold { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.local-links__summary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 8px; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: .04em;
  transition: color var(--transition);
}
.local-links__summary::-webkit-details-marker { display: none; }
.local-links__summary:hover { color: var(--brand-dark, var(--brand)); }
.local-links__summary svg { transition: transform var(--transition); color: var(--brand-dark, var(--brand)); }
.local-links__fold[open] .local-links__summary svg { transform: rotate(180deg); }
.local-links__fold[open] .local-links { padding-bottom: 22px; }
.local-links__fold .local-links { padding-top: 4px; }
@media (prefers-reduced-motion: reduce) { .local-links__summary svg { transition: none; } }

/* ------------------------------ Preuves (affichees tant qu'aucun avis n'est saisi) ------------------------------ */
.proof-list { list-style: none; margin: 34px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.proof { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; }
.proof__icon { width: 52px; height: 52px; }
.proof__value { font-family: var(--font-head); font-size: 24px; text-wrap: balance; font-weight: 700; color: var(--ink); line-height: 1.1; }
.proof__label { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.proof-note { margin: 22px 0 0; text-align: center; font-size: 13.5px; color: var(--muted); }
@media (max-width: 900px) { .proof-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .proof-list { grid-template-columns: 1fr; } }
