/* Paralu Système — feuille de style principale */

@font-face {
  font-family: "Author";
  src: url("../fonts/Author-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Author";
  src: url("../fonts/Author-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Author";
  src: url("../fonts/Author-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Author";
  src: url("../fonts/Author-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette de la charte */
  --structure: #0F2A3D;
  --reflet: #C3CDD8;
  --integration: #AAA9A9;
  --integration-fonce: #716F6F;
  --lumiere: #FCFBFC;
  --matiere: #EAE4D8;
  --accent: #D6C89C;
  --accent-fonce: #B79F52;
  --accent-texte: #75622A; /* or lisible sur fonds clairs (petits textes) */

  /* Dérivés */
  --pierre: #F5F2EE;
  --texte: var(--structure);
  --texte-doux: #3E5364;
  --texte-clair: #CCDAE8;
  --trait: rgba(15, 42, 61, .16);
  --structure-2: #0B2131;

  --police: "Author", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1240px;
  --gouttiere: clamp(20px, 5vw, 64px);
  --section: clamp(72px, 10vw, 144px);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  scrollbar-color: var(--integration) var(--pierre);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--police);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--texte);
  background: var(--lumiere);
  caret-color: var(--accent-fonce);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: var(--structure); }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
figure { margin: 0; }
address { font-style: normal; }
ul, ol { list-style: none; margin: 0; padding: 0; }

a { color: inherit; text-underline-offset: .22em; text-decoration-thickness: 1px; }

h1, h2, h3 {
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}
h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: .01em;
}
h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
p { margin: 0 0 1em; text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--accent-fonce);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + 2 * var(--gouttiere));
  margin-inline: auto;
  padding-inline: var(--gouttiere);
}

.visuellement-cache {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--structure);
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* ---------- Boutons (charte : rectangle, capitales espacées, longue flèche) ---------- */
.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 56px;
  padding: 14px 28px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid currentColor;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.fleche {
  width: 34px;
  height: 10px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  transition: transform .45s var(--ease);
}
.bouton:hover .fleche, .lien-fleche:hover .fleche { transform: translateX(6px); }

.bouton-contour { color: var(--structure); }
.bouton-contour:hover { background: var(--structure); color: var(--lumiere); }

.bouton-plein { background: var(--structure); border-color: var(--structure); color: var(--lumiere); }
.bouton-plein:hover { background: transparent; color: var(--structure); }

.bouton-accent { background: var(--accent); border-color: var(--accent); color: var(--structure); }
.bouton-accent:hover { background: var(--lumiere); border-color: var(--lumiere); }

.bouton-contour-clair { color: var(--lumiere); border-color: rgba(252, 251, 252, .5); }
.bouton-contour-clair:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--structure);
  color: var(--lumiere);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}
.header-logo img { width: 200px; height: auto; }

.nav-principale { display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); }
.nav-liste { display: flex; gap: clamp(16px, 2.4vw, 36px); }
.nav-liste > li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-h);
}
.nav-lien, .sous-menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.nav-lien::after, .sous-menu-toggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav-lien:hover::after,
.a-sous-menu:hover > .sous-menu-toggle::after,
.sous-menu-toggle[aria-expanded="true"]::after { transform: scaleX(1); }
.chevron {
  width: 10px; height: 7px;
  fill: none; stroke: currentColor; stroke-width: 1.3;
  transition: transform .35s var(--ease);
}
.sous-menu-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.sous-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  z-index: 10;
  min-width: 270px;
  padding: 12px 0;
  background: var(--structure);
  border-top: 1px solid var(--accent);
  box-shadow: 0 18px 32px rgba(11, 33, 49, .28);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
}
.sous-menu a {
  display: block;
  padding: 11px 24px;
  font-size: .9375rem;
  text-decoration: none;
  color: var(--texte-clair);
  transition: color .25s var(--ease), background-color .25s var(--ease);
}
.sous-menu a:hover { color: var(--lumiere); background: rgba(214, 200, 156, .12); }
@media (min-width: 901px) {
  .a-sous-menu:hover > .sous-menu,
  .a-sous-menu:focus-within > .sous-menu,
  .sous-menu-toggle[aria-expanded="true"] + .sous-menu {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid var(--accent);
  color: var(--lumiere);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.nav-contact:hover { background: var(--accent); color: var(--structure); }

.burger {
  display: none;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}
.burger-lines, .burger-lines::before {
  display: block;
  width: 28px; height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease);
}
.burger-lines { position: relative; transform: translateY(-4px); }
.burger-lines::before { content: ""; position: absolute; top: 8px; }
.burger[aria-expanded="true"] .burger-lines { transform: translateY(0) rotate(45deg); }
.burger[aria-expanded="true"] .burger-lines::before { transform: translateY(-8px) rotate(-90deg); }

/* ---------- Ouverture ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  grid-template-rows: 1fr auto;
  min-height: min(calc(100svh - var(--header-h)), 900px);
  background: linear-gradient(170deg, var(--lumiere) 0%, #EEF1F5 45%, #D9E0E8 100%);
}
.hero-texte {
  align-self: center;
  padding: clamp(56px, 8vw, 120px) clamp(24px, 4vw, 64px) clamp(56px, 8vw, 120px) max(var(--gouttiere), calc((100vw - var(--wrap)) / 2));
}
.hero h1 {
  max-width: 13em;
  font-size: clamp(2.1rem, 3.9vw, 3.5rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .005em;
}
.hero-intro {
  max-width: 34em;
  margin: 28px 0 44px;
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  color: var(--texte-doux);
}
.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
}
.trame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.trame span {
  position: absolute;
  background: var(--accent);
  opacity: .8;
}
.trame .v { top: 0; bottom: 0; width: 1px; transform-origin: top; }
.trame .h { left: 0; right: 0; height: 1px; transform-origin: left; }
.trame .v1 { left: 12%; }
.trame .v2 { left: 88%; }
.trame .h1 { top: 16%; }
.trame .h2 { top: 84%; }
.js .trame .v { transform: scaleY(0); animation: trace-v 1.6s var(--ease) forwards; }
.js .trame .h { transform: scaleX(0); animation: trace-h 1.6s var(--ease) forwards; }
.js .trame .v1 { animation-delay: .35s; }
.js .trame .h1 { animation-delay: .5s; }
.js .trame .v2 { animation-delay: .65s; }
.js .trame .h2 { animation-delay: .8s; }
@keyframes trace-v { to { transform: scaleY(1); } }
@keyframes trace-h { to { transform: scaleX(1); } }

.hero-signature {
  grid-column: 1 / -1;
  background: var(--structure);
  color: var(--lumiere);
}
.signature-inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  min-height: clamp(96px, 10vw, 128px);
  padding-block: 24px;
}
.signature-inner::before, .signature-inner::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent));
}
.signature-inner::after { background: linear-gradient(to left, transparent, var(--accent)); }
.signature-phrase {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.375rem);
  font-style: italic;
  line-height: 1.2;
  letter-spacing: .01em;
  text-align: center;
  white-space: nowrap;
}

/* ---------- En-têtes de section ---------- */
.entete-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.entete-section p {
  max-width: 36em;
  margin: 0;
  color: var(--texte-doux);
}

/* ---------- Gammes ---------- */
.gammes {
  padding-block: var(--section);
  background: var(--pierre);
}
.gammes-grille {
  --ecart: clamp(40px, 6vw, 88px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--ecart);
}
.gamme {
  position: relative;
  display: flex;
  flex-direction: column;
}
.gamme + .gamme::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: calc(var(--ecart) / -2);
  width: 1px;
  background: var(--accent);
}

.gamme-visuel {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 36px;
  background: var(--matiere);
  /* Pans coupés, comme les visuels produits de la brochure (identité visuelle p. 10) */
  --pan: 64px;
  --pan-petit: 26px;
  clip-path: polygon(0 0, calc(100% - var(--pan)) 0, 100% var(--pan), 100% 100%, var(--pan-petit) 100%, 0 calc(100% - var(--pan-petit)));
}
.gamme-visuel img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gamme:hover .gamme-visuel img { transform: scale(1.04); }

/* Icône + titre sur une ligne, séparés par un filet or (comme le logo complet) */
.gamme-titre {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.gamme-icone {
  flex: none;
  box-sizing: content-box;
  width: 60px;
  height: 38px;
  padding-right: 18px;
  border-right: 1px solid var(--accent);
  object-fit: contain;
  object-position: center;
}
.gamme h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
.gamme h3 a { text-decoration: none; }
.gamme h3 a:hover { text-decoration: underline; }
.gamme > p { color: var(--texte-doux); }

.sous-gammes {
  margin: 8px 0 32px;
  border-top: 1px solid var(--trait);
}
.sous-gammes a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--trait);
  font-size: .9375rem;
  text-decoration: none;
  transition: color .35s var(--ease);
}
.sous-gammes a span { display: inline-block; transition: transform .35s var(--ease); }
.sous-gammes a:hover { color: var(--accent-fonce); }
.sous-gammes a:hover span { transform: translateX(8px); }

.lien-fleche {
  display: inline-flex;
  align-items: center;
  width: 56px; height: 44px;
  margin-top: auto;
  color: var(--structure);
}
.lien-fleche .fleche { width: 44px; }

/* ---------- Savoir-faire ---------- */
.savoir-faire { padding-block: var(--section); }
.sf-grille {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 12fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
}
.sf-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.sf-image img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 50%; }
.sf-image::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(252, 251, 252, .7);
  pointer-events: none;
}
.sf-texte h2 { margin-bottom: 36px; }
.sf-chapeau {
  font-size: clamp(1.1875rem, 1.6vw, 1.375rem);
  line-height: 1.45;
  font-weight: 500;
}
.sf-texte p:not(.sf-chapeau) { max-width: 38em; color: var(--texte-doux); }
.sf-etapes {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  border-top: 1px solid var(--structure);
}
.sf-etapes li {
  flex: 1 1 0;
  min-width: 120px;
  padding: 16px 0 0;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.sf-etapes li + li { padding-left: 20px; border-left: 1px solid var(--trait); }

/* ---------- Valeurs (bande « Reflet » à pans coupés, charte) ---------- */
.valeurs { padding-bottom: var(--section); }
.valeurs-bande {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: clamp(56px, 7vw, 104px) clamp(28px, 5vw, 72px);
  background: var(--reflet);
  clip-path: polygon(0 0, calc(100% - 88px) 0, 100% 88px, 100% 100%, 64px 100%, 0 calc(100% - 64px));
}
.valeur {
  padding-left: 22px;
  border-left: 1px solid var(--structure);
}
.valeur h3 { font-size: 1.0625rem; margin-bottom: 14px; }
.valeur p { margin: 0; font-size: .96875rem; line-height: 1.55; color: #1F3A4E; }

/* ---------- Réalisations ---------- */
.realisations {
  padding-block: var(--section);
  background: var(--structure);
  color: var(--lumiere);
}
.realisations .entete-section p { color: var(--texte-clair); }
.galerie {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.galerie figure { display: flex; flex-direction: column; }
.galerie figure > img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  transition: filter .6s var(--ease);
}
.galerie figure:hover > img { filter: brightness(1.06); }
.galerie figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(214, 200, 156, .5);
  margin-top: 14px;
  font-size: .875rem;
  color: var(--texte-clair);
}
.galerie figcaption strong {
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lumiere);
}
.g-a { grid-column: 1 / span 7; grid-row: span 2; }
.g-a > img { aspect-ratio: 7 / 6; }
.g-b { grid-column: 8 / span 5; }
.g-b > img, .g-c > img { aspect-ratio: 16 / 10; }
.g-c { grid-column: 8 / span 5; }
.g-d { grid-column: 1 / span 4; }
.g-e { grid-column: 5 / span 4; }
.g-f { grid-column: 9 / span 4; }
.g-d > img, .g-e > img, .g-f > img { aspect-ratio: 4 / 3; }

/* ---------- Implantations ---------- */
.implantations { padding-block: var(--section); background: var(--pierre); }
.impl-grille {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
}
.impl-texte h2 { margin-bottom: 28px; }
.impl-texte > p { color: var(--texte-doux); }
.impl-liste {
  margin-top: 36px;
  border-top: 1px solid var(--structure);
  counter-reset: lieu;
}
.impl-liste button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  width: 100%;
  min-height: 52px;
  padding: 12px 4px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--trait);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color .3s var(--ease);
}
.impl-liste button:hover, .impl-liste button[aria-pressed="true"] {
  background: rgba(214, 200, 156, .28);
}
.impl-liste button > span { transition: transform .35s var(--ease); }
.impl-liste button:hover > span, .impl-liste button[aria-pressed="true"] > span { transform: translateX(8px); }
.impl-liste button:hover > .ville, .impl-liste button[aria-pressed="true"] > .ville { transform: translateX(-8px); }
.impl-liste .pays {
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .875rem;
}
.impl-liste .ville { font-size: .9375rem; color: var(--texte-doux); }

.impl-carte { position: relative; min-height: 460px; }
.carte {
  position: absolute;
  inset: 0;
  z-index: 0;
  isolation: isolate; /* confine les calques Leaflet (z-index 400-1000) sous l'en-tête */
  background: var(--matiere);
  border: 1px solid var(--trait);
}
.carte-noscript { padding: 24px; }
.leaflet-container { font-family: var(--police); background: var(--matiere); }
.leaflet-tile-pane { filter: saturate(.35) sepia(.08); }
.leaflet-control-attribution { font-size: 11px; }
.leaflet-bar a { color: var(--structure); }
.repere {
  width: 16px; height: 16px;
  background: var(--structure);
  border: 3px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.repere.siege { background: var(--accent); border-color: var(--structure); width: 20px; height: 20px; }
.repere.actif { transform: rotate(45deg) scale(1.35); }
.leaflet-popup-content-wrapper { border-radius: 0; box-shadow: 0 8px 24px rgba(15, 42, 61, .18); }
.leaflet-popup-content { margin: 14px 18px; font-size: .9375rem; line-height: 1.4; color: var(--structure); }
.leaflet-popup-content strong { font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Questions (accordéon de la charte) ---------- */
.faq { padding-block: var(--section); }
.faq-grille {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.faq-liste { display: grid; gap: 16px; }
.faq details { border: 1.5px solid var(--structure); }
.faq summary {
  position: relative;
  display: block;
  padding: 22px 72px 22px 28px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after {
  content: "";
  position: absolute;
  right: 28px; top: 50%;
  width: 18px; height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease);
}
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0deg); }
.faq summary:hover { background: var(--pierre); }
.faq details p { max-width: 44em; margin: 0; padding: 0 28px 26px; color: var(--texte-doux); }

/* ---------- Instagram ---------- */
.insta {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  background: var(--matiere);
}
.insta-texte {
  align-self: center;
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px) clamp(64px, 8vw, 120px) max(var(--gouttiere), calc((100vw - var(--wrap)) / 2));
}
.insta-icone { width: 44px; height: auto; margin-bottom: 36px; }
.insta h2 { margin-bottom: 20px; }
.insta p { max-width: 28em; margin-bottom: 40px; color: var(--texte-doux); }
.insta-image { min-height: 380px; position: relative; }
.insta-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact ---------- */
.contact {
  padding-block: var(--section);
  background: var(--structure);
  color: var(--lumiere);
}
.contact-grille {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.contact h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 24px; }
.contact-intro { max-width: 32em; margin-bottom: 44px; color: var(--texte-clair); font-size: 1.125rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.contact-coord {
  padding-left: 28px;
  border-left: 1px solid var(--accent);
  color: var(--texte-clair);
}
.contact-coord p:last-child { margin-bottom: 0; }
.contact-coord .coord-titre {
  color: var(--lumiere);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-coord a { color: var(--lumiere); }
.contact-coord a:hover { color: var(--accent); }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--structure-2); color: var(--texte-clair); }
.footer-haut {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
  padding-block: 72px 56px;
}
.footer-marque img { width: 240px; height: auto; }
.footer-baseline {
  margin: 24px 0 0;
  letter-spacing: .02em;
  color: var(--lumiere);
}
.footer-baseline span {
  font-style: normal;
  font-size: .8125rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--texte-clair);
}
.footer-nav { display: flex; gap: clamp(40px, 6vw, 96px); }
.footer-nav a {
  display: inline-block;
  padding: 6px 0;
  text-decoration: none;
  font-size: .9375rem;
}
.footer-nav a:hover { color: var(--accent); }
.footer-bande { border-top: 1px solid rgba(195, 205, 216, .18); }
.footer-bas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 32px;
  padding-block: 22px;
  font-size: .8125rem;
}
.footer-bas p { margin: 0; }
.footer-devise { letter-spacing: .14em; text-transform: uppercase; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer-legal a { text-decoration: none; }
.footer-legal a:hover { color: var(--accent); text-decoration: underline; }

/* ---------- Page simple (mentions légales) ---------- */
.page-simple { padding-block: clamp(56px, 8vw, 112px) var(--section); }
.page-simple h1 { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; margin-bottom: 48px; }
.page-simple h2 { font-size: 1.25rem; margin: 48px 0 16px; }
.page-simple .contenu { max-width: 46em; }
.page-simple .contenu p, .page-simple .contenu li { color: var(--texte-doux); }

/* ---------- Adaptations ---------- */
@media (max-width: 1080px) {
  .valeurs-bande { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 48px; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .header-logo img { width: 156px; }
  .burger { display: inline-flex; }
  .nav-principale {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px var(--gouttiere) 32px;
    background: var(--structure);
    border-top: 1px solid rgba(195, 205, 216, .18);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s .3s;
  }
  .nav-principale.ouverte {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav-principale { max-height: calc(100svh - var(--header-h)); overflow-y: auto; }
  .nav-liste { flex-direction: column; gap: 0; }
  .nav-liste > li { display: block; min-height: 0; border-bottom: 1px solid rgba(195, 205, 216, .14); }
  .nav-lien, .sous-menu-toggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    font-size: .9375rem;
  }
  .nav-lien::after, .sous-menu-toggle::after { display: none; }
  .sous-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 12px;
    border: 0;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .sous-menu-toggle[aria-expanded="true"] + .sous-menu { display: block; }
  .sous-menu a { padding: 10px 0 10px 16px; border-left: 1px solid var(--accent); }
  .nav-contact { justify-content: center; margin-top: 24px; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-texte { padding: 56px var(--gouttiere) 48px; }
  .hero-image { min-height: 0; aspect-ratio: 4 / 3.4; }

  .entete-section { grid-template-columns: 1fr; }

  .gammes-grille { grid-template-columns: 1fr; gap: 64px; }
  .gamme + .gamme { border-top: 1px solid var(--accent); padding-top: 64px; }
  .gamme + .gamme::before { display: none; }

  .sf-grille { grid-template-columns: 1fr; }
  .sf-image { aspect-ratio: 4 / 3; }

  .galerie { grid-template-columns: 1fr 1fr; }
  .g-a { grid-column: 1 / -1; grid-row: auto; }
  .g-a > img { aspect-ratio: 16 / 10; }
  .g-b, .g-c, .g-d, .g-e, .g-f { grid-column: auto; }
  .g-b > img, .g-c > img { aspect-ratio: 4 / 3; }
  .g-f { grid-column: 1 / -1; }
  .g-f > img { aspect-ratio: 16 / 9; }

  .impl-grille { grid-template-columns: 1fr; }
  .impl-carte { min-height: 380px; }

  .faq-grille { grid-template-columns: 1fr; }

  .insta { grid-template-columns: 1fr; }
  .insta-texte { padding: 64px var(--gouttiere); }
  .insta-image { min-height: 0; aspect-ratio: 3 / 2; }

  .contact-grille { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .valeurs-bande {
    grid-template-columns: 1fr;
    clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
  }
  .galerie { grid-template-columns: 1fr; }
  .g-a > img, .g-b > img, .g-c > img, .g-d > img, .g-e > img, .g-f > img { aspect-ratio: 4 / 3; }
  .signature-phrase { white-space: normal; }
  .faq summary { padding: 18px 60px 18px 20px; letter-spacing: .06em; }
  .faq summary::before, .faq summary::after { right: 20px; }
  .faq details p { padding: 0 20px 22px; }
  .bouton { width: 100%; }
  .footer-nav { flex-direction: column; gap: 16px; }
}

/* =====================================================================
   Pages intérieures
   ===================================================================== */

/* Menu : rubrique courante */
.a-sous-menu.est-actif > .sous-menu-toggle::after,
.nav-lien[aria-current="page"]::after { transform: scaleX(1); }
.sous-menu a[aria-current="page"] { color: var(--accent); }

/* Fil d’Ariane */
.fil-ariane ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  margin-bottom: 28px;
  font-size: .8125rem;
  letter-spacing: .08em;
  color: var(--texte-doux);
}
.fil-ariane li + li::before {
  content: "/";
  margin: 0 10px;
  color: var(--accent-fonce);
}
.fil-ariane a { text-decoration: none; }
.fil-ariane a:hover { text-decoration: underline; }
.fil-ariane [aria-current] { color: var(--structure); }

/* En-tête de page */
.page-entete {
  display: grid;
  grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
  min-height: clamp(420px, 56vh, 600px);
  background: linear-gradient(170deg, var(--lumiere) 0%, #EEF1F5 55%, #DDE3EA 100%);
}
.page-entete-texte {
  align-self: center;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 4vw, 64px) clamp(48px, 7vw, 96px) max(var(--gouttiere), calc((100vw - var(--wrap)) / 2));
}
.page-entete h1 {
  max-width: 16em;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.08;
  text-transform: uppercase;
}
.page-intro { max-width: 40em; margin-top: 28px; }
.page-intro p { color: var(--texte-doux); font-size: clamp(1rem, 1.2vw, 1.125rem); }
.page-entete-image {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  clip-path: polygon(0 0, calc(100% - 96px) 0, 100% 96px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
}
.page-entete-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.sommaire {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.sommaire a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--structure);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.sommaire a:hover { background: var(--structure); color: var(--lumiere); }

/* Blocs de contenu */
.bloc { padding-block: clamp(64px, 8vw, 112px); }
.bloc-pierre { background: var(--pierre); }
.bloc h2 { margin-bottom: 32px; }
.texte { max-width: 46em; }
.texte p { color: var(--texte-doux); }
.texte.encadre {
  max-width: none;
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--matiere);
}
.texte.encadre p { margin: 0; color: var(--structure); }
.plus-paralu {
  max-width: 46em;
  margin: 8px 0 32px;
  padding: 18px 24px;
  border-left: 1px solid var(--accent-fonce);
  background: rgba(214, 200, 156, .22);
}
.plus-paralu strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-texte);
}

/* Systèmes (profils techniques) */
.systemes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.systeme {
  display: flex;
  flex-direction: column;
  padding: 0 0 24px;
  background: var(--lumiere);
  border: 1px solid var(--trait);
}
.bloc-pierre .systeme { background: #fff; }
.systeme-visuel {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 16px;
  background: #fff;
  border-bottom: 1px solid var(--trait);
}
.systeme-visuel img { max-height: 100%; width: auto; object-fit: contain; }
.systeme-sans-visuel img { width: 56px; opacity: .25; }
.systeme h3 {
  margin: 22px 24px 12px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.systeme ul { margin: 0 24px; flex: 1; }
.systeme li {
  padding: 6px 0;
  font-size: .9375rem;
  line-height: 1.45;
  color: var(--texte-doux);
  border-top: 1px solid var(--trait);
}
.systeme li:first-child { border-top: 0; color: var(--structure); }
.lien-doc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 24px 0;
  min-height: 44px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--structure);
}
.lien-doc:hover span { text-decoration: underline; }
.ico-doc { width: 16px; height: 20px; fill: none; stroke: var(--accent-fonce); stroke-width: 1.2; }

/* Fiche réalisation */
.realisation {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 72px);
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--accent);
}
.bloc > .wrap > h2 + .realisation { margin-top: 0; }
.realisation-label {
  margin-bottom: 8px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-texte);
}
.realisation h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); margin-bottom: 24px; }
.fiche { margin: 0; }
.fiche > div {
  display: grid;
  grid-template-columns: 11em 1fr;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--trait);
}
.fiche dt { font-size: .8125rem; letter-spacing: .02em; color: var(--texte-doux); padding-top: 2px; }
.fiche dd { margin: 0; font-size: .9375rem; }

/* Galerie + visionneuse */
.galerie-photos ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.bloc > .wrap > .galerie-photos { margin-top: 36px; }
.vignette, .projet-bouton {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--matiere);
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  overflow: hidden;
}
.vignette img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .4s var(--ease);
}
.vignette:hover img { transform: scale(1.05); filter: brightness(1.05); }
.credit { margin: 10px 0 0; font-size: .8125rem; color: var(--texte-doux); }

.visionneuse {
  width: 100vw; height: 100vh;
  max-width: none; max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(11, 33, 49, .96);
  color: var(--lumiere);
}
.visionneuse::backdrop { background: rgba(11, 33, 49, .6); }
.visionneuse[open] { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; }
.visionneuse-haut {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px var(--gouttiere);
  font-size: .875rem;
  letter-spacing: .08em;
}
.visionneuse figure {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0 clamp(64px, 8vw, 120px);
}
.visionneuse img { max-width: 100%; max-height: 100%; object-fit: contain; }
.visionneuse-legende { padding: 14px var(--gouttiere) 24px; text-align: center; font-size: .9375rem; color: var(--texte-clair); }
.visionneuse button {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  padding: 0;
  background: none;
  border: 1px solid rgba(214, 200, 156, .6);
  color: var(--lumiere);
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.visionneuse button:hover { background: var(--accent); color: var(--structure); }
.visionneuse button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.visionneuse .prec, .visionneuse .suiv { position: absolute; top: 50%; transform: translateY(-50%); }
.visionneuse .prec { left: 12px; }
.visionneuse .suiv { right: 12px; }

/* Listes techniques */
.listes-tech {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px clamp(32px, 5vw, 72px);
  margin-top: 36px;
}
.liste-tech h3 {
  padding-bottom: 14px;
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: .1em;
  border-bottom: 1px solid var(--structure);
}
.liste-tech li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--texte-doux);
  border-bottom: 1px solid var(--trait);
}
.liste-tech li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.05em;
  width: 10px; height: 1px;
  background: var(--accent-fonce);
}

/* Chiffres */
.chiffre-cle {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 24px;
  max-width: 60em;
  padding: 28px 0;
  border-block: 1px solid var(--accent);
}
.chiffre-cle strong { font-size: clamp(1.75rem, 3.4vw, 2.75rem); font-weight: 500; line-height: 1.1; }
.chiffre-cle span { flex: 1 1 24em; color: var(--texte-doux); }
.chiffres {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
  border-top: 1px solid var(--structure);
}
.chiffres li { padding: 24px 24px 0 0; }
.chiffres li + li { padding-left: 24px; border-left: 1px solid var(--trait); }
.chiffres strong { display: block; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 500; line-height: 1.1; }
.chiffres span { display: block; margin-top: 8px; color: var(--texte-doux); font-size: .9375rem; }
.labels {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
.labels li {
  display: grid;
  place-items: center;
  width: 220px; height: 110px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--trait);
}
.labels img { max-height: 70px; width: auto; }

/* Rangées (pages catégories) */
.rangees { display: grid; gap: clamp(56px, 7vw, 96px); }
.rangee {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.rangee:nth-child(even) .rangee-visuel { order: 2; }
.rangee-visuel {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--matiere);
  clip-path: polygon(0 0, calc(100% - 72px) 0, 100% 72px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}
.rangee-visuel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.rangee:hover .rangee-visuel img { transform: scale(1.04); }
.rangee h2 { margin-bottom: 20px; }
.rangee h2 a { text-decoration: none; }
.rangee p { margin-bottom: 32px; color: var(--texte-doux); }

/* Voir aussi */
.autres { padding-block: clamp(64px, 8vw, 112px); background: var(--structure); color: var(--lumiere); }
.autres h2 { margin-bottom: 40px; }
.autres-grille { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.autre {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: var(--lumiere);
}
.autre-visuel {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 10px;
  clip-path: polygon(0 0, calc(100% - 56px) 0, 100% 56px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.autre-visuel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.autre:hover .autre-visuel img { transform: scale(1.04); }
.autre-titre { font-size: 1.125rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.autre-texte { color: var(--texte-clair); font-size: .9375rem; }
.autre .fleche { width: 40px; color: var(--accent); }
.autre:hover .fleche { transform: translateX(6px); }

/* Appel à contact */
.appel { background: var(--matiere); }
.appel-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 48px;
  padding-block: clamp(40px, 5vw, 64px);
}
.appel p { max-width: 36em; margin: 0; font-size: clamp(1.125rem, 1.6vw, 1.375rem); font-weight: 500; }
.appel .bouton-accent { background: var(--structure); border-color: var(--structure); color: var(--lumiere); }
.appel .bouton-accent:hover { background: transparent; color: var(--structure); }

/* Réalisations */
.projets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px 28px;
}
.projet-visuel { position: relative; display: block; aspect-ratio: 4 / 3; }
.projet-visuel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.projet-bouton:hover img { transform: scale(1.04); }
.projet-nb {
  position: absolute;
  right: 12px; bottom: 12px;
  padding: 4px 10px;
  background: var(--structure);
  color: var(--lumiere);
  font-size: .75rem;
  letter-spacing: .08em;
}
.projet h3 { margin-top: 16px; font-size: 1.0625rem; letter-spacing: .06em; }
.projet-detail { display: block; margin-top: 6px; font-size: .875rem; color: var(--texte-doux); }

@media (max-width: 1080px) {
  .realisation { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .page-entete { grid-template-columns: 1fr; min-height: 0; }
  .page-entete-texte { padding: 40px var(--gouttiere); }
  .page-entete-image { min-height: 0; aspect-ratio: 16 / 10; clip-path: none; }
  .rangee { grid-template-columns: 1fr; }
  .rangee:nth-child(even) .rangee-visuel { order: 0; }
  .autres-grille { grid-template-columns: 1fr; }
  .chiffres { grid-template-columns: 1fr; }
  .chiffres li, .chiffres li + li { padding: 20px 0; border-left: 0; border-bottom: 1px solid var(--trait); }
}
@media (max-width: 560px) {
  .fiche > div { grid-template-columns: 1fr; gap: 2px; }
  .galerie-photos ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visionneuse figure { padding: 0 8px; }
  .visionneuse .prec, .visionneuse .suiv { top: auto; bottom: 8px; transform: none; }
}

/* Un seul système : carte horizontale */
.systemes-un { grid-template-columns: minmax(0, 760px); }
.systemes-un .systeme { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); grid-template-rows: auto 1fr auto; padding: 0; }
.systemes-un .systeme-visuel { grid-row: 1 / -1; aspect-ratio: auto; min-height: 240px; border-bottom: 0; border-right: 1px solid var(--trait); }
.systemes-un .systeme h3 { margin-top: 28px; }
.systemes-un .systeme ul { margin-bottom: 24px; }
.systemes-un .lien-doc { margin-bottom: 20px; }
@media (max-width: 560px) {
  .systemes-un .systeme { display: flex; }
  .systemes-un .systeme-visuel { border-right: 0; border-bottom: 1px solid var(--trait); min-height: 0; aspect-ratio: 4 / 3; }
}

/* Page contact */
.nav-contact[aria-current="page"] { background: var(--accent); color: var(--structure); }
.coordonnees {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--structure);
}
.coord-bloc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 28px 8px 0;
}
.coord-bloc + .coord-bloc { padding-left: 28px; border-left: 1px solid var(--accent); }
.coord-bloc h3 { font-size: .875rem; letter-spacing: .14em; }
.coord-bloc address, .coord-bloc p { margin: 0; line-height: 1.5; }
.coord-grand { font-size: clamp(1.125rem, 1.6vw, 1.375rem); font-weight: 500; text-decoration: none; overflow-wrap: anywhere; }
.coord-grand:hover { text-decoration: underline; }
.coord-note { color: var(--texte-doux); font-size: .9375rem; }
.coord-bloc .bouton { margin-top: auto; }
.lien-simple { font-size: .9375rem; }
.fiche-societe { max-width: 60em; }
.fiche-societe > div:last-child { border-bottom: 1px solid var(--trait); }
@media (max-width: 1080px) {
  .coordonnees { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coord-bloc:nth-child(3) { padding-left: 0; border-left: 0; }
  .coord-bloc { padding-bottom: 28px; border-bottom: 1px solid var(--trait); }
}
@media (max-width: 560px) {
  .coordonnees { grid-template-columns: 1fr; }
  .coord-bloc, .coord-bloc + .coord-bloc { padding-left: 0; border-left: 0; }
}
.coord-bloc .bouton { white-space: nowrap; gap: 20px; padding-inline: 22px; }
.bloc-societe { padding-top: 0; }

/* Pages légales */
.page-simple .fil-ariane ol { margin-bottom: 32px; }
.chapeau-legal { font-size: clamp(1.0625rem, 1.4vw, 1.25rem); line-height: 1.55; color: var(--structure) !important; }
.maj-legal { margin-top: 48px; padding-top: 16px; border-top: 1px solid var(--trait); font-size: .875rem; }
