/* 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;

  /* 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, 44px); }
.nav-principale ul { display: flex; gap: clamp(18px, 2.6vw, 40px); }
.nav-principale ul a {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-principale ul a::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-principale ul a:hover::after,
.nav-principale ul a[aria-current="true"]::after { transform: scaleX(1); }

.nav-insta {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  color: var(--lumiere);
  transition: color .3s var(--ease);
}
.nav-insta:hover { color: var(--accent); }
.nav-insta svg, .footer-nav svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor; stroke-width: 1.3;
}
.nav-insta .fill { fill: currentColor; stroke: none; }

.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;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 32px;
  min-height: 72px;
  padding-block: 18px;
}
.signature-inner p { margin: 0; }
.signature-phrase {
  font-size: 1.0625rem;
  font-style: italic;
  letter-spacing: .02em;
}
.signature-gammes {
  display: flex;
  font-size: .8125rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.signature-gammes span + span::before {
  content: "";
  display: inline-block;
  width: 1px; height: 14px;
  margin: 0 18px;
  vertical-align: -2px;
  background: var(--accent);
}

/* ---------- 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);
}
.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;
  font-style: italic;
  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 ul { flex-direction: column; gap: 0; }
  .nav-principale ul a {
    display: block;
    padding: 16px 0;
    font-size: .9375rem;
    border-bottom: 1px solid rgba(195, 205, 216, .14);
  }
  .nav-principale ul a::after { display: none; }
  .nav-insta { margin-top: 16px; }

  .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-gammes span + span::before { margin: 0 10px; }
  .signature-gammes { font-size: .75rem; letter-spacing: .14em; }
  .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; }
}
