/* ============================================================
   HOME V5 — système de composition
   Axe central · menu-terminal · bento · statement plein écran.

   QUATRE REGISTRES, PAS UN DE PLUS
     .display  très grand — hero, chiffres, statement, contact
     .titre    grand — titres de section, clients
     body      normal
     .ui       petit — menu, libellés des boxes, pied de page
   Une police (Inter, déjà auto-hébergée), trois graisses (400/500/600 —
   la 600 uniquement pour les chiffres en gras des accroches).
   Palette : papier · blanc · encre · gris · quatre densités de rose.
   ============================================================ */

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/inter-400-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/inter-400-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/inter-500-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/inter-500-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/inter-600-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/inter-600-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
  --papier: #F0EEE9;          /* Cloud Dancer — Pantone 11-4201 */
  --blanc: #FFFFFF;
  --encre: #141414;
  --gris: #6C6963;
  --panneau: #E8E5DF;          /* le menu-terminal : gris chaud */

  /* accent — le rose de la V4, en aplats complets */
  --accent-1: #FAEFF1;         /* voile — lueurs */
  --accent-2: #EFCBD5;         /* l'aplat V4 — statement, boutons, boxes, cadre */
  --accent-3: #E5A7BB;         /* dense — survols */
  --accent-4: #C9688A;         /* profond — petits indicateurs seulement */

  --grotesk: "Inter", "Suisse Int'l", -apple-system, "Helvetica Neue", sans-serif;

  --t-display: clamp(52px, 9.6vw, 150px);
  --t-titre: clamp(30px, 3.9vw, 58px);
  --t-body: 17px;
  --t-ui: 12px;

  --rayon: 16px;
  --gap: clamp(10px, 1.2vw, 16px);
  --marge: clamp(16px, 4vw, 40px);
  --max: 1240px;
  --s-section: clamp(64px, 9vw, 112px);
}
@media (min-width: 1024px) { :root { --t-body: 18px; --t-ui: 13px; } }

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
strong { font-weight: 600; }
body {
  font-family: var(--grotesk);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--encre);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--encre); outline-offset: 4px; }

/* ---------- les quatre registres ---------- */
.display { font-size: var(--t-display); font-weight: 500; line-height: 0.96; letter-spacing: -0.035em; text-wrap: balance; }
.titre   { font-size: var(--t-titre);   font-weight: 500; line-height: 1.04; letter-spacing: -0.025em; text-wrap: balance; }
.ui      { font-size: var(--t-ui);      font-weight: 500; line-height: 1.2;  letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- un lien, un bouton ---------- */
.lien {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
  text-decoration-color: color-mix(in srgb, currentColor 30%, transparent);
  transition: text-decoration-color 0.25s ease;
}
.lien:hover { text-decoration-color: currentColor; }
.lien .arr, .btn .arr { display: inline-block; transition: transform 0.25s ease; }
.lien:hover .arr, .btn:hover .arr, a.box:hover .arr { transform: translateX(5px); }
.lien:hover .arr-bas, .box:hover .arr-bas { transform: translateY(4px); }

.btn {
  display: inline-block;
  padding: 15px 22px;
  font-weight: 500;
  color: var(--encre);
  border: 1.5px solid transparent;
  border-radius: 12px;
  background: var(--accent-2);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--encre); color: var(--papier); }

/* ---------- le menu-terminal : un objet, pas une barre ---------- */
.term {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 16px;
  background: color-mix(in srgb, var(--panneau) 90%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 13px;
  white-space: nowrap;
}
.term .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-4);
  margin-right: 14px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.term:hover .dot { transform: scale(1.25); }
.term a {
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--gris);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.term a:hover { background: var(--blanc); color: var(--encre); }
.term a.actif { color: var(--encre); }
.term a.actif::before { content: ''; }
/* le sélecteur de langue : discret, au bout du menu */
.term .sep { width: 1px; height: 16px; margin: 0 4px 0 8px; background: color-mix(in srgb, var(--gris) 35%, transparent); }
.term a.lang { padding: 9px 8px; font-size: 11px; }
@media (max-width: 899px) { .term .sep { margin: 0 2px 0 4px; } .term a.lang { padding: 9px 6px; } }

/* ---------- composition centrée ---------- */
.centre {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 3vw, 40px);
  margin-inline: auto;
}

/* ---------- hero : typographie, espace, une lueur ----------
   plein écran : la lueur remplit tout le premier écran */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 96px var(--marge) 40px;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 100%;
  /* la lueur emplit le hero : dense en bas, l'air libre en haut */
  background:
    radial-gradient(75% 85% at 50% 100%, var(--accent-2) 0%, transparent 80%),
    linear-gradient(180deg, transparent 30%, color-mix(in srgb, var(--accent-2) 70%, transparent) 100%);
  pointer-events: none;
}
.hero .centre { position: relative; z-index: 1; max-width: 1120px; gap: clamp(18px, 2.8vh, 32px); }
/* les liens du hero restent en encre pleine sur la lueur */
.hero .lien { color: var(--encre); }
.hero .ui { color: var(--gris); }
.hero h1 { max-width: 10.6em; }
.hero p { max-width: 30em; }
/* le bouton en avant, le lien secondaire dessous, centrés */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: clamp(4px, 1vw, 12px);
}
/* sur la lueur rose, le bouton passe en encre pour se détacher */
.hero-cta .btn { background: var(--encre); color: var(--papier); }
.hero-cta .btn:hover { background: var(--blanc); color: var(--encre); }

/* ---------- clients : une composition typographique ---------- */
.clients { padding: clamp(72px, 9vw, 128px) var(--marge) 0; }
.clients p {
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.55em;
  row-gap: 0.08em;
  text-align: center;
}
.clients .sep { color: var(--accent-4); }

/* ---------- bento : quelques gros objets ---------- */
.bento {
  max-width: var(--max);
  margin-inline: auto;
  padding: var(--s-section) var(--marge) 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
}
.box {
  container-type: inline-size;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 2.6vw, 32px);
  min-height: clamp(240px, 26vw, 360px);
  background: var(--blanc);
  border-radius: var(--rayon);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), background-color 0.4s ease;
}
a.box:hover { transform: translateY(-4px); background: var(--accent-1); }
.box .ui { color: var(--gris); }
.box .chiffre { font-size: min(var(--t-display), 30cqw); }
.box .chiffre-long { font-size: min(var(--t-display), 17cqw); }
.box .chiffre + p, .box .chiffre-long + p { margin-top: 10px; max-width: 18em; }
.box-pied { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 10px 24px; }
.box-pied > span:first-child { max-width: 24em; }

.box-rose { background: var(--accent-2); }
a.box-rose:hover { background: var(--accent-3); }

.box-grad {
  background: var(--accent-2);
  transition: background-color 0.4s ease, transform 0.4s cubic-bezier(.2,.7,.2,1);
  justify-content: flex-end;
}
a.box-grad:hover { background: var(--accent-3); }

/* bento 1 — preuves */
.b-wingo   { grid-column: 1 / 9;  grid-row: 1 / 3; min-height: clamp(380px, 40vw, 560px); }
.b-wingo .chiffre { font-size: min(36cqw, 230px); } /* la plus grande box porte le plus grand chiffre */
.b-20      { grid-column: 9 / 13; grid-row: 1; }
.b-grad    { grid-column: 9 / 13; grid-row: 2; }
.b-fischer { grid-column: 1 / 13; min-height: clamp(240px, 22vw, 320px); }
.b-fischer .large {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 40px;
}
.b-fischer .large p { max-width: 20em; }

/* bento 2 — autres projets */
.b-tiers { grid-column: span 4; }
.tous { margin-top: clamp(32px, 4vw, 56px); text-align: center; }

/* ---------- à propos : court ---------- */
.apropos { padding: clamp(32px, 4.5vw, 56px) var(--marge) 0; }
.apropos .centre { max-width: 38em; gap: clamp(20px, 2.4vw, 32px); }
.portrait { width: min(300px, 64vw); height: auto; border-radius: var(--rayon); filter: grayscale(1); }
/* le parcours et la FAQ : colonne de lecture, alignée à gauche */
.longue {
  max-width: 38em;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-titre { margin-top: clamp(40px, 6vw, 72px); }
.qr { max-width: 38em; text-align: left; }
.qr p:first-child { font-weight: 600; }
.qr p + p { margin-top: 6px; }
.qr + .qr { margin-top: clamp(20px, 3vw, 28px); }
.apropos p { max-width: 34em; }

/* ---------- contact : un dernier écran presque vide ---------- */
.contact {
  position: relative;
  min-height: 74svh;
  display: grid;
  place-items: center;
  padding: clamp(96px, 12vw, 160px) var(--marge) 140px;
}
.contact::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 50vh;
  background: radial-gradient(60% 90% at 50% 0%, var(--accent-2) 0%, transparent 72%);
  opacity: 0.8;
  pointer-events: none;
}
.contact .centre { position: relative; max-width: 900px; }
.contact .voies { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }

/* ---------- pied de page ---------- */
footer { padding: 0 var(--marge) 40px; }
footer p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  color: var(--gris);
  text-align: center;
}
footer a:hover { color: var(--encre); }

/* ---------- apparition au scroll ---------- */
.rv { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.7,.2,1); }
.rv.vu { opacity: 1; transform: none; }

/* ---------- mobile : de grands blocs, pas des cartes ---------- */
@media (max-width: 899px) {
  .term { top: 12px; padding: 5px 5px 5px 14px; }
  .term a { padding: 9px 10px; }
  .hero { padding-top: 100px; }
  .bento > .box { grid-column: 1 / -1; grid-row: auto; }
  .b-wingo { min-height: 72svh; }
  .b-20, .b-grad { min-height: 44svh; }
  .b-fischer { min-height: 52svh; }
  .b-tiers { min-height: 56svh; }
  /* sur mobile les résultats occupent vraiment le bloc */
  .box .chiffre { font-size: min(34cqw, 150px); }
  .box .chiffre-long { font-size: min(20cqw, 150px); }
  .b-wingo .chiffre { font-size: min(38cqw, 230px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .box, .box-grad, .term .dot, .lien .arr, .btn .arr { transition: none; }
}

/* ============================================================
   BOXES DÉPLIABLES (projets, bio, FAQ) — la box s'élargit au clic
   ============================================================ */
.b-7 { grid-column: span 7; }
.b-5 { grid-column: span 5; }

.depliable { cursor: pointer; }
.depliable:not(.ouverte):hover { transform: translateY(-4px); background: var(--accent-1); }
.depliable:not(.ouverte):hover .plus .arr { transform: rotate(90deg); }
/* la box activée se voit : aplat rose, libellés en encre */
.depliable.ouverte { grid-column: 1 / -1; background: var(--accent-2); }
.depliable.ouverte .ui { color: var(--encre); }
/* la tête reste cliquable pour refermer ; le texte laisse la place au bouton Fermer */
.depliable.ouverte .box-tete { padding-right: clamp(100px, 14vw, 130px); }

/* la tête : tout le teaser est le bouton */
.box-tete {
  all: unset;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  flex: 1;
  width: 100%;
  cursor: pointer;
}
.box-tete:focus-visible { outline: 2px solid var(--encre); outline-offset: 4px; }
.accroche { max-width: 30em; }
.accroche strong { font-weight: 600; }

/* l'aperçu : l'image du projet, visible avant d'ouvrir */
.apercu {
  border-radius: calc(var(--rayon) - 6px);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--blanc);
}
.apercu img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.depliable:not(.ouverte):hover .apercu img { transform: scale(1.02); }
.apercu-contenue img { object-fit: contain; padding: clamp(12px, 8%, 40px); }
.depliable.ouverte .apercu { display: none; } /* le détail montre la grande image */
.plus .arr { display: inline-block; transition: transform 0.3s ease; }
.depliable.ouverte .plus { display: none; }

/* fermer : icône et texte, en haut à droite de la bento ouverte */
.fermer-btn {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  top: clamp(10px, 1.4vw, 20px);
  right: clamp(8px, 1.2vw, 18px);
  padding: 12px; /* cible tactile confortable */
  z-index: 2;
  display: none;
  align-items: center;
  gap: 8px;
  font-size: var(--t-ui);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fermer-btn .croix { font-size: 1.5em; line-height: 1; letter-spacing: 0; }
.fermer-btn:hover { color: var(--accent-4); }
.fermer-btn:focus-visible { outline: 2px solid var(--encre); outline-offset: 4px; }
.depliable.ouverte .fermer-btn { display: inline-flex; }

/* le détail : se déplie en hauteur (pilotée en JS, fiable partout) */
.box-detail {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.55s cubic-bezier(.2,.7,.2,1);
}
.detail-in {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 56px);
  padding-top: clamp(32px, 4vw, 56px);
}
.detail-in img { width: 100%; height: auto; border-radius: calc(var(--rayon) - 6px); }
.detail-blocs { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 3vw, 40px); }
.detail-blocs h3 { margin-bottom: 10px; color: var(--gris); }
.detail-blocs p { max-width: 34em; }
@media (min-width: 900px) {
  .detail-blocs { grid-template-columns: 1fr 1fr; column-gap: clamp(40px, 5vw, 80px); }
}

/* l'impact : une rangée de grands chiffres */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px) clamp(36px, 5vw, 80px);
  padding-block: clamp(8px, 1.5vw, 24px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  max-width: 15em;
}
.stat .ui { color: var(--gris); }

/* ============================================================
   COMPLÉMENTS UNE-PAGE — logos, domaines, FAQ bento, contact
   ============================================================ */

/* les références : une bento de logos à côté de la bio */
.refs { justify-content: flex-start; gap: clamp(20px, 2.4vw, 28px); }
.refs .ui { color: var(--gris); }
.refs-grille {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 32px) clamp(16px, 2vw, 28px);
  align-items: center;
  justify-items: center;
  align-content: space-evenly;
  padding-block: clamp(8px, 1.2vw, 16px);
}
.refs-grille img { height: clamp(17px, 1.8vw, 24px); width: auto; max-width: 100%; filter: brightness(0) opacity(0.55); }
.refs-grille img.lg-haut { height: clamp(26px, 2.7vw, 38px); }

/* le portrait : cadre dans la couleur signature, image en noir et blanc.
   Le cadre vit sur un conteneur — un filtre désature TOUT l'élément,
   bordure comprise. */
.cadre {
  display: inline-block;
  border: 8px solid var(--accent-2);
  border-radius: var(--rayon);
  overflow: hidden;
  line-height: 0;
}
.cadre .portrait { border: none; border-radius: 0; }

/* l'intro de la zone projets : un titre posé, sans écraser la zone */
.intro {
  max-width: 30em;
  margin: 0 auto;
  padding: 0 var(--marge);
  text-align: center;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-wrap: balance;
}
.intro + .bento { padding-top: clamp(36px, 4.5vw, 64px); }

/* domaines : trois formats qui convergent vers l'impact */
.domaines { padding: var(--s-section) var(--marge) 0; }
.domaines .centre { max-width: 900px; }
.venn-intro { color: var(--encre); }

/* le venn : trois grands cercles, un minimum de texte, la densité fait le reste */
.venn { width: min(100%, 760px); height: auto; }
.venn circle {
  mix-blend-mode: multiply;
  stroke: var(--encre);
  stroke-opacity: 0.12;
  stroke-width: 1;
}
.venn .c-continu   { fill: var(--accent-3); fill-opacity: 0.10; }
.venn .c-projet    { fill: var(--accent-2); fill-opacity: 0.14; }
.venn .c-transfert { fill: var(--accent-4); fill-opacity: 0.07; }
.venn text { font-family: var(--grotesk); fill: var(--encre); text-anchor: middle; }
.venn .venn-titre  { font-size: 22px; font-weight: 600; }
.venn .venn-txt    { font-size: 17px; font-weight: 400; }
.venn .venn-centre { font-size: 20px; font-weight: 600; }

/* la variante verticale : trois cercles en chaîne pour les petits écrans */
.venn-mobile { display: none; width: min(100%, 380px); }
.venn-mobile .venn-titre  { font-size: 23px; }
.venn-mobile .venn-txt    { font-size: 18px; }
.venn-mobile .venn-centre { font-size: 22px; }
@media (max-width: 639px) {
  .venn-desktop { display: none; }
  .venn-mobile { display: block; }
}

/* FAQ en bento */
.faq { padding: var(--s-section) var(--marge) 0; }
.faq > .titre { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.faq .bento { padding: 0; }
.box-faq { min-height: 0; justify-content: flex-start; gap: 10px; text-align: left; }
.box-faq p:first-child { font-weight: 600; }
.b-4 { grid-column: span 4; }
.b-6 { grid-column: span 6; }

/* mission : la ligne d'ouverture du détail */
.mission { font-weight: 600; }

/* résultats : la liste des chiffres du cas */
.chiffres { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.detail-blocs-3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  text-align: left;
}
.detail-blocs-3 h3 { margin-bottom: 10px; color: var(--gris); }
@media (min-width: 900px) {
  .detail-blocs-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: clamp(32px, 4vw, 64px); }
}

/* fil de lecture : où j'en suis sur la page */
.progression { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--accent-4); z-index: 60; }

/* copier l'adresse en un clic */
.copier {
  all: unset;
  cursor: pointer;
  font-size: var(--t-ui);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris);
  padding: 7px 12px;
  border-radius: 9px;
  background: var(--panneau);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.copier:hover { color: var(--encre); background: var(--blanc); }
.copier:focus-visible { outline: 2px solid var(--encre); outline-offset: 3px; }

/* ============================================================
   BIO ET FAQ DÉPLIABLES
   ============================================================ */
.b-centre { grid-column: 1 / -1; }
@media (min-width: 900px) { .b-centre { grid-column: 3 / 11; } .depliable.ouverte.b-centre { grid-column: 1 / -1; } }
.box .cadre { width: min(210px, 48vw); }
.box .portrait { width: 100%; }
.bio-detail p { max-width: 38em; }
.bio-detail p + p { margin-top: 14px; }

/* FAQ : une question par ligne, un simple + à droite */
.box-faq {
  grid-column: 1 / -1;
  min-height: 0;
  padding: clamp(18px, 2.2vw, 26px) clamp(22px, 2.6vw, 36px);
}
.box-faq .box-tete { flex-direction: row; align-items: center; justify-content: space-between; gap: 18px; }
.box-faq .accroche { font-weight: 600; max-width: none; }
.box-faq .signe { font-size: 24px; line-height: 1; transition: transform 0.3s ease; }
.box-faq.ouverte .signe { transform: rotate(45deg); }
.box-faq.ouverte .box-tete { padding-right: 0; } /* pas de bouton Fermer ici */
.box-faq .detail-in { padding-top: 16px; gap: 0; }
.box-faq .detail-in p { max-width: 42em; }

/* la box d'appel en fin de projets : un projet en tête ? → contact */
.box-cta { justify-content: space-between; }
.box-cta .cta-titre {
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 12em;
}
.box-cta .btn { align-self: flex-start; background: var(--encre); color: var(--papier); }
a.box-cta:hover .btn { background: var(--blanc); color: var(--encre); }
@media (max-width: 899px) {
  /* sur mobile, la box d'appel se dimensionne sur son contenu */
  .box-cta { min-height: 0; gap: 28px; }
}
