/* =========================================================================
   SOGMKO — sogmko.fr
   Feuille de style unique. Aucune ressource externe : pas de Google Fonts,
   pas de CDN, pas de tracker. Le site se charge en une requête HTML + une
   requête CSS + une requête JS.
   ========================================================================= */

/* ---------- 1. Jetons de design ---------- */

:root {
  /* Palette dérivée du logo : noir d'encre, jaune signal, papier chaud. */
  --encre:      #101010;
  --encre-2:    #1c1c1a;
  --encre-3:    #2b2b28;
  --papier:     #fcfbf8;
  --papier-2:   #f4f2eb;
  --jaune:      #fdd424;
  --jaune-2:    #ffe066;
  --jaune-sombre: #a67c00;
  --gris:       #6c6a63;
  --gris-clair: #9a988f;
  --bord:       #e5e2d8;
  --bord-sombre:#33332e;

  --rayon:      14px;
  --rayon-sm:   9px;
  --largeur:    1180px;
  --gouttiere:  clamp(20px, 5vw, 48px);

  --police: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
            "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
          "Liberation Mono", monospace;

  --ombre-douce: 0 1px 2px rgba(16,16,16,.04), 0 8px 24px -12px rgba(16,16,16,.14);
  --ombre-forte: 0 24px 70px -28px rgba(16,16,16,.45);
}

/* ---------- 2. Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* La barre de navigation est collante : on décale les ancres d'autant. */
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--police);
  font-size: 17px;
  line-height: 1.65;
  color: var(--encre);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

::selection { background: var(--jaune); color: var(--encre); }

:focus-visible {
  outline: 3px solid var(--jaune-sombre);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Lien d'évitement pour la navigation au clavier. */
.saut-contenu {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--encre); color: var(--papier);
  padding: 12px 20px; border-radius: 0 0 var(--rayon-sm) 0;
}
.saut-contenu:focus { left: 0; }

/* ---------- 3. Mise en page ---------- */

.enveloppe { width: 100%; max-width: var(--largeur); margin: 0 auto; padding: 0 var(--gouttiere); }

section { padding: clamp(64px, 9vw, 120px) 0; }

.section-sombre { background: var(--encre); color: var(--papier); }
.section-creme  { background: var(--papier-2); }

.etiquette {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 18px;
}
.etiquette::before {
  content: ""; width: 24px; height: 3px; background: var(--jaune); border-radius: 2px;
}
.section-sombre .etiquette { color: var(--gris-clair); }

.titre-section { font-size: clamp(30px, 4.6vw, 48px); max-width: 20ch; }
.chapo {
  margin-top: 20px; max-width: 62ch;
  font-size: clamp(17px, 1.6vw, 19px); color: var(--gris); line-height: 1.65;
}
.section-sombre .chapo { color: #b4b2a8; }

/* ---------- 4. Boutons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border: 2px solid transparent; border-radius: 999px;
  font: inherit; font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .16s ease, background-color .16s ease,
              border-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primaire {
  background: var(--jaune); color: var(--encre);
  box-shadow: 0 10px 24px -12px rgba(253,212,36,.9);
}
.btn-primaire:hover { background: var(--jaune-2); box-shadow: 0 16px 30px -14px rgba(253,212,36,1); }

.btn-secondaire { background: transparent; color: var(--encre); border-color: var(--encre); }
.btn-secondaire:hover { background: var(--encre); color: var(--papier); }

.section-sombre .btn-secondaire { color: var(--papier); border-color: #4a4a44; }
.section-sombre .btn-secondaire:hover { background: var(--papier); color: var(--encre); border-color: var(--papier); }

.btn-sm { padding: 10px 20px; font-size: 15px; }

/* ---------- 5. Barre de navigation ---------- */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252,251,248,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.est-defilee { border-bottom-color: var(--bord); box-shadow: 0 2px 20px -14px rgba(16,16,16,.5); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 72px;
}

.marque { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.marque img { width: 38px; height: 38px; border-radius: 9px; }
.marque-nom { font-weight: 800; font-size: 19px; letter-spacing: .01em; }
.marque-sous { display: block; font-size: 11px; font-weight: 600; color: var(--gris); letter-spacing: .06em; text-transform: uppercase; margin-top: -2px; }

.nav-liens { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-liens a {
  display: block; padding: 8px 13px; border-radius: 999px; white-space: nowrap;
  font-size: 15px; font-weight: 600; text-decoration: none; color: var(--encre);
  transition: background-color .15s ease;
}
.nav-liens a:hover { background: var(--papier-2); }
/* Le bouton d'appel existe déjà à droite en affichage large : ce doublon
   n'apparaît que dans le menu déroulant mobile. */
.nav-liens .lien-cta { display: none; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none; width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--bord); border-radius: 11px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--encre); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. Héros ---------- */

.heros { padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 104px); overflow: hidden; }
.heros-grille {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
}

.heros-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 15px 7px 9px; border-radius: 999px;
  background: var(--papier-2); border: 1px solid var(--bord);
  font-size: 13px; font-weight: 600; color: var(--gris); margin-bottom: 26px;
}
.heros-eyebrow b { color: var(--encre); font-weight: 700; }
.pastille {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.16); flex-shrink: 0; margin-left: 6px;
}

.heros h1 { font-size: clamp(36px, 5.4vw, 60px); letter-spacing: -0.038em; }
.surligne {
  background: linear-gradient(transparent 58%, var(--jaune) 58%, var(--jaune) 96%, transparent 96%);
  padding: 0 3px;
  /* Sans `clone`, un texte surligné qui passe à la ligne perd son fond sur
     l'un des deux fragments. */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
/* La chute du titre reste d'un seul tenant : coupée, elle laisserait un mot
   surligné orphelin en fin de ligne. */
.heros h1 .surligne { white-space: nowrap; }

.heros-texte { margin-top: 26px; font-size: clamp(17px, 1.7vw, 20px); color: var(--gris); max-width: 56ch; }
/* « 2 à 8 semaines » : un délai coupé en deux lignes se lit mal. */
.heros-texte b { color: var(--encre); font-weight: 700; white-space: nowrap; }
.heros-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.heros-preuves {
  display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid var(--bord);
  font-size: 14.5px; color: var(--gris);
}
.heros-preuves span { display: inline-flex; align-items: center; gap: 8px; }
.heros-preuves b { color: var(--encre); font-weight: 700; }

/* Pile de captures : le visuel du héros. */
.pile { position: relative; aspect-ratio: 4 / 3.35; }
.pile-item {
  position: absolute; border-radius: 12px; overflow: hidden;
  background: #fff; border: 1px solid rgba(16,16,16,.1);
  box-shadow: var(--ombre-forte);
}
.pile-item img { width: 100%; display: block; }
.pile-1 { width: 76%; top: 0;    right: 0;  z-index: 3; }
.pile-2 { width: 60%; top: 33%;  left: 0;   z-index: 2; }
.pile-3 { width: 46%; bottom: 0; right: 1%; z-index: 4; }

/* ---------- 7. Bandeau de confiance ---------- */

.bandeau { border-block: 1px solid var(--bord); background: var(--papier-2); padding: 26px 0; }
.bandeau-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 40px; }
.bandeau-item { display: flex; align-items: baseline; gap: 10px; }
.bandeau-chiffre { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; }
.bandeau-label { font-size: 14px; color: var(--gris); max-width: 22ch; line-height: 1.35; }

/* ---------- 8. Cartes d'offre ---------- */

.grille-offres {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(246px, 1fr));
  gap: 20px; margin-top: 52px;
}
.offre {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--bord); border-radius: var(--rayon);
  padding: 30px 28px 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.offre:hover { transform: translateY(-4px); box-shadow: var(--ombre-douce); border-color: #d6d2c4; }
.offre-icone {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--jaune); color: var(--encre); margin-bottom: 20px;
}
.offre-icone svg { width: 23px; height: 23px; }
.offre h3 { font-size: 20px; margin-bottom: 10px; }
.offre-accroche { font-size: 15.5px; color: var(--gris); }
.offre ul { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.offre li { position: relative; padding-left: 22px; font-size: 15px; color: var(--encre-3); }
.offre li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 2px; background: var(--jaune); transform: rotate(45deg);
}

/* ---------- 9. Méthode (section sombre) ---------- */

/* Quatre cartes au texte dense : deux colonnes se lisent mieux que quatre. */
.methode-grille {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px; margin-top: 56px;
}
@media (max-width: 720px) { .methode-grille { grid-template-columns: 1fr; } }
.methode-carte {
  background: var(--encre-2); border: 1px solid var(--bord-sombre);
  border-radius: var(--rayon); padding: 30px 28px;
}
.methode-num {
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  color: var(--jaune); letter-spacing: .12em; margin-bottom: 16px;
}
.methode-carte h3 { font-size: 20px; margin-bottom: 12px; }
.methode-carte p { font-size: 15.5px; color: #b4b2a8; }

.encart-experience {
  margin-top: 56px; padding: clamp(28px, 4vw, 44px);
  background: var(--jaune); color: var(--encre); border-radius: var(--rayon);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: center;
}
.encart-experience h3 { font-size: clamp(23px, 2.7vw, 30px); margin-bottom: 14px; }
.encart-experience p { font-size: 16.5px; max-width: 60ch; }
.encart-experience .btn-secondaire { border-color: var(--encre); }

/* ---------- 10. Réalisations ---------- */

.projet {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(28px, 4.5vw, 60px); align-items: center;
  padding: clamp(40px, 5vw, 60px) 0;
  border-top: 1px solid var(--bord);
}
.projet:first-of-type { border-top: none; }
.projet.inverse .projet-texte { order: 2; }
.projet.inverse .projet-visuel { order: 1; }

.projet-entete { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.projet h3 { font-size: clamp(26px, 3.2vw, 34px); }
.badge-statut {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .02em;
  border: 1px solid var(--bord); background: #fff; color: var(--gris);
}
.badge-statut::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge-prod  { color: #0f7a45; border-color: #b6e2ca; background: #eefaf3; }
.badge-pilote{ color: #9a6a00; border-color: #f0dfa8; background: #fdf7e6; }

.projet-role { font-size: 14px; font-weight: 600; color: var(--gris); margin-bottom: 16px; }
.projet p.projet-desc { color: var(--gris); font-size: 16.5px; }

.projet-points { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.projet-points li { position: relative; padding-left: 26px; font-size: 15.5px; }
.projet-points li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--jaune-sombre); font-weight: 700;
}

.puces { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.puce {
  font-family: var(--mono); font-size: 12.5px; padding: 5px 11px;
  border: 1px solid var(--bord); border-radius: 7px; background: #fff; color: var(--encre-3);
}
.section-creme .puce { background: var(--papier); }

.projet-lien {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  font-weight: 700; text-decoration: none;
  border-bottom: 2px solid var(--jaune); padding-bottom: 2px;
}
.projet-lien:hover { border-bottom-color: var(--encre); }

/* Cadre « fenêtre de navigateur » autour des captures. */
.fenetre {
  border-radius: 12px; overflow: hidden; background: #fff;
  border: 1px solid var(--bord); box-shadow: var(--ombre-douce);
}
.fenetre-barre {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px; background: var(--papier-2); border-bottom: 1px solid var(--bord);
}
.fenetre-pastilles { display: flex; gap: 6px; }
.fenetre-pastilles i { width: 10px; height: 10px; border-radius: 50%; background: #d9d5c8; }
.fenetre-url {
  flex: 1; min-width: 0; margin-left: 6px;
  font-family: var(--mono); font-size: 11.5px; color: var(--gris);
  background: #fff; border: 1px solid var(--bord); border-radius: 6px;
  padding: 4px 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fenetre img { width: 100%; display: block; }

/* Ligne de conclusion sous une série de blocs (fin des réalisations). */
.note-section {
  margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--bord);
  max-width: 66ch; color: var(--gris); font-size: 16.5px;
}
.note-section a {
  color: var(--encre); font-weight: 600; text-decoration: none;
  border-bottom: 2px solid var(--jaune); padding-bottom: 1px;
}
.note-section a:hover { border-bottom-color: var(--encre); }

/* ---------- 11. Process ---------- */

.etapes { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 52px; }
.etape { position: relative; padding: 28px 24px; background: #fff; border: 1px solid var(--bord); border-radius: var(--rayon); }
.etape-num {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--encre); color: var(--jaune);
  font-size: 15px; font-weight: 800; margin-bottom: 18px;
}
.etape h3 { font-size: 18px; margin-bottom: 9px; }
.etape p { font-size: 15px; color: var(--gris); }
.etape-delai {
  display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: 12px;
  color: var(--jaune-sombre); font-weight: 700;
}

/* ---------- 12. FAQ ---------- */

.faq { margin-top: 46px; max-width: 860px; }
.faq details {
  border-bottom: 1px solid var(--bord);
}
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-size: clamp(17px, 1.9vw, 19px); font-weight: 700; letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex-shrink: 0;
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--papier-2); font-size: 20px; font-weight: 400; line-height: 1;
  transition: transform .2s ease, background-color .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--jaune); }
.faq-reponse { padding: 0 0 24px; color: var(--gris); max-width: 68ch; font-size: 16px; }
.faq-reponse p + p { margin-top: 12px; }

/* ---------- 13. Contact ---------- */

.contact-bloc {
  background: var(--jaune); border-radius: clamp(16px, 2.5vw, 24px);
  padding: clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(30px, 5vw, 60px); align-items: center;
}
.contact-bloc h2 { font-size: clamp(30px, 4.2vw, 46px); }
.contact-bloc p { margin-top: 18px; font-size: 17.5px; max-width: 46ch; }

.contact-carte {
  background: var(--encre); color: var(--papier);
  border-radius: var(--rayon); padding: 32px 30px;
}
.contact-carte h3 { font-size: 17px; margin-bottom: 20px; color: var(--jaune); }
.contact-ligne { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-top: 1px solid var(--bord-sombre); font-size: 15.5px; }
.contact-ligne:first-of-type { border-top: none; padding-top: 0; }
.contact-ligne .ic { flex: 0 0 19px; width: 19px; height: 19px; margin-top: 3px; color: var(--jaune); }
.contact-carte a { color: var(--papier); font-weight: 600; text-decoration: none; border-bottom: 1px solid #55554d; word-break: break-word; }
.contact-carte a:hover { border-bottom-color: var(--jaune); color: var(--jaune); }
.contact-note { margin-top: 22px; font-size: 13.5px; color: var(--gris-clair); line-height: 1.55; }

/* ---------- 14. Pied de page ---------- */

.pied { background: var(--encre); color: #a3a199; padding: 60px 0 32px; font-size: 15px; }
.pied-haut {
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--bord-sombre);
}
.pied .marque-nom { color: var(--papier); }
.pied .marque-sous { color: var(--gris-clair); }
.pied-desc { margin-top: 18px; max-width: 38ch; font-size: 14.5px; }
.pied h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--papier); margin-bottom: 16px; }
.pied ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pied a { text-decoration: none; color: inherit; }
.pied a:hover { color: var(--jaune); }
.pied-bas {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 28px;
  padding-top: 26px; font-size: 13.5px; color: var(--gris-clair);
}

/* ---------- 15. Page intérieure (mentions légales) ---------- */

.page-texte { padding: clamp(48px, 7vw, 88px) 0 clamp(64px, 8vw, 104px); max-width: 780px; }
.page-texte h1 { font-size: clamp(32px, 5vw, 46px); margin-bottom: 14px; }
.page-texte .maj { color: var(--gris); font-size: 14.5px; margin-bottom: 44px; }
.page-texte h2 { font-size: 22px; margin: 44px 0 14px; }
.page-texte p, .page-texte li { color: var(--encre-3); font-size: 16.5px; }
.page-texte p + p { margin-top: 12px; }
.page-texte ul { margin: 12px 0 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.page-texte a { color: var(--encre); text-decoration: underline; text-decoration-color: var(--jaune); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.page-texte dl { margin: 14px 0 0; display: grid; grid-template-columns: max-content 1fr; gap: 8px 20px; font-size: 16px; }
.page-texte dt { color: var(--gris); }
.page-texte dd { margin: 0; }
.retour {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px;
  font-size: 15px; font-weight: 600; text-decoration: none; color: var(--gris);
}
.retour:hover { color: var(--encre); }

/* ---------- 16. Animation d'apparition ---------- */

.apparait { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.apparait.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .apparait { opacity: 1; transform: none; }
}

/* ---------- 17. Adaptatif ---------- */

@media (max-width: 1040px) {
  .heros-grille { grid-template-columns: 1fr; }
  .pile { max-width: 620px; margin: 8px auto 0; }
  .projet, .projet.inverse { grid-template-columns: 1fr; }
  .projet.inverse .projet-texte, .projet.inverse .projet-visuel { order: initial; }
  .projet-visuel { order: -1; }
  /* Empilé, le bouton ne doit pas s'étirer sur toute la largeur du bloc. */
  .encart-experience { grid-template-columns: 1fr; justify-items: start; }
  .contact-bloc { grid-template-columns: 1fr; }
  .pied-haut { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .burger { display: flex; }
  .nav-liens {
    position: fixed; inset: 72px 0 auto; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--papier); border-bottom: 1px solid var(--bord);
    padding: 14px var(--gouttiere) 22px;
    box-shadow: 0 20px 40px -24px rgba(16,16,16,.4);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-liens.ouvert { transform: none; opacity: 1; pointer-events: auto; }
  .nav-liens a { padding: 13px 12px; font-size: 17px; }
  .nav-actions .btn { display: none; }
  /* Le bouton d'appel de la barre disparaît ici : on le remet en bas du menu. */
  .nav-liens .lien-cta {
    display: block; margin-top: 10px; padding: 15px 12px;
    background: var(--jaune); border-radius: 999px;
    text-align: center; font-weight: 700;
  }
  .nav-liens .lien-cta:hover { background: var(--jaune-2); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .marque-sous { display: none; }
  .heros-actions .btn { width: 100%; }
  .bandeau-inner { gap: 18px 24px; }
  .bandeau-chiffre { font-size: 25px; }
  .encart-experience .btn { width: 100%; }
  .pied-haut { grid-template-columns: 1fr; gap: 30px; }
  .page-texte dl { grid-template-columns: 1fr; gap: 2px 0; }
  .page-texte dd { margin-bottom: 10px; }
}

/* ---------- 18. Impression ---------- */

@media print {
  .nav, .contact-bloc .btn, .burger { display: none; }
  body { background: #fff; }
  .section-sombre { background: #fff; color: #000; }
}
