/* Fée-moi gérer · feuille de style unique du site vitrine.
   Palette et polices provisoires, posées en variables : à remplacer quand Julie envoie les siennes.
   Concept : le poids qui s'envole. Clair, chaud, aéré, un seul accent, rythme éditorial aligné à gauche. */

:root {
  /* Palette officielle de Julie (charte Fée-moi gérer) */
  --encre: #33402C;          /* vert très foncé : titres et surfaces sombres */
  --fond: #FDFBFA;           /* blanc chaud */
  --fond-2: #EFF3E9;         /* bande vert très pâle */
  --fond-3: #FCEDE8;         /* bande blush (rose très pâle) */
  --blanc: #FFFFFF;
  --texte: #56534E;          /* corps : gris chaud lisible */
  --mute: #74716B;           /* secondaire, proche du gris 88868D de la charte */
  --ligne: #EAE5DC;

  --accent: #6E855D;         /* vert de la charte : icônes, filet, décor */
  --accent-fonce: #4C5B3E;   /* vert foncé : boutons, liens, bande d'appel, pied */
  --accent-clair: #E1EAD6;   /* vert pâle : pastilles d'icônes */
  --corail: #D96C72;         /* corail de la charte : mots en script, détails */
  --corail-clair: #F1A399;
  --blush: #FCEDE8;
  --ocre: #E1B167;           /* jaune ocre : étincelles, fin du filet, soulignement */

  /* Polices (charte : sans arrondi + script pour les mots « magiques ») */
  --titre: "Quicksand", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --script: "Dancing Script", "Segoe Script", cursive;

  /* Mesures */
  --page: 74rem;
  --texte-max: 44rem;
  --rayon: 16px;
  --rayon-petit: 12px;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--fond);
  color: var(--texte);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { color: var(--encre); font-weight: 500; }
::selection { background: var(--accent-clair); color: var(--accent-fonce); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }

.saut-contenu {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--encre); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; font: 600 15px var(--sans);
}
.saut-contenu:focus { left: 0; }

.wrap { width: 100%; max-width: var(--page); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.wrap-etroit { max-width: 52rem; }

.contenu { display: block; }
.contenu.sections { display: flex; flex-direction: column; }

/* ---------- typographie partagée ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font: 600 0.78rem/1 var(--sans); letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-fonce);
  margin: 0 0 22px;
}
.kicker::before { content: ""; width: 9px; height: 9px; border-radius: 3px; background: var(--corail); flex: none; }

.titre { font-family: var(--titre); font-weight: 600; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.01em; margin: 0; }
.lead { font-size: clamp(1.1rem, 2.1vw, 1.4rem); line-height: 1.5; color: var(--texte); max-width: var(--texte-max); margin: 22px 0 0; }
.accent-mot { font-style: italic; color: var(--accent-fonce); position: relative; white-space: nowrap; }
.souligne { display: inline-block; position: relative; }
.souligne svg { position: absolute; left: 0; right: 0; bottom: -0.28em; width: 100%; height: 0.4em; overflow: visible; color: var(--ocre); }
.souligne svg path { stroke-dasharray: 220; stroke-dashoffset: 220; animation: tracer 1.1s .35s cubic-bezier(.65,.05,.36,1) forwards; }
@keyframes tracer { to { stroke-dashoffset: 0; } }

.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.band { background: var(--fond-2); }
.band-3 { background: var(--fond-3); }

/* ---------- boutons ---------- */
.btn, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: 600 1rem/1 var(--sans); text-decoration: none; cursor: pointer;
  padding: 15px 26px; border-radius: var(--rayon-petit); border: 1.5px solid transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn { background: var(--accent-fonce); color: #fff; box-shadow: 0 12px 26px -16px rgba(60, 74, 61, .9); }
.btn:hover { background: #3D4A31; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--encre); border-color: var(--ligne); }
.btn-ghost:hover { border-color: var(--encre); background: rgba(38, 36, 31, .04); }
.btn svg, .btn-ghost svg { width: 18px; height: 18px; }
.btn-fleche svg { transition: transform .2s ease; }
.btn-fleche:hover svg { transform: translateX(3px); }

/* ---------- en-tête ---------- */
.entete { position: sticky; top: 0; z-index: 60; background: rgba(252, 251, 247, .86); backdrop-filter: saturate(1.2) blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s, background .2s; }
.entete.pose { border-color: var(--ligne); }
.entete-in { max-width: var(--page); margin: 0 auto; padding: 14px clamp(20px, 5vw, 56px); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.marque { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--encre); }
.marque-logo { width: 46px; height: 46px; flex: none; border-radius: 50%; }
.marque-nom { font-family: var(--titre); font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; color: var(--encre); }
.nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); flex-wrap: wrap; }
.nav a { text-decoration: none; color: var(--texte); font-weight: 500; font-size: 0.98rem; padding: 6px 0; position: relative; transition: color .15s; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px; background: var(--accent); transition: right .22s ease; }
.nav a:not(.nav-cta):hover { color: var(--encre); }
.nav a:not(.nav-cta):hover::after, .nav a:not(.nav-cta)[aria-current="page"]::after { right: 0; }
.nav a:not(.nav-cta)[aria-current="page"] { color: var(--encre); }
.nav-cta { color: var(--accent-fonce); border: 1.5px solid var(--ligne); border-radius: 999px; padding: 8px 18px; transition: border-color .18s, background .18s; }
.nav-cta:hover { border-color: var(--accent); background: var(--accent-clair); }
.nav-cta[aria-current="page"] { border-color: var(--accent); color: var(--accent-fonce); }
/* bouton menu (mobile seulement) */
.nav-toggle { display: none; width: 44px; height: 44px; flex: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; background: transparent; border: 0; cursor: pointer; padding: 0; }
.nav-toggle-bar { width: 24px; height: 2px; background: var(--encre); border-radius: 2px; transition: transform .25s ease; }
.entete.nav-ouvert .nav-toggle-bar:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.entete.nav-ouvert .nav-toggle-bar:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- accueil : hero (promesse) ---------- */
.hero { position: relative; padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6.5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero-in { position: relative; max-width: 36rem; }
.hero-titre { margin: 0; line-height: 1.04; }
.hero-l1 { display: block; font-family: var(--titre); font-weight: 600; font-size: clamp(1.6rem, 3.4vw, 2.5rem); letter-spacing: -0.01em; color: var(--encre); }
.hero-script { display: block; font-family: var(--script); font-weight: 700; font-size: clamp(2.7rem, 6.2vw, 4.6rem); line-height: 0.98; color: var(--corail); margin-top: 0.06em; }
.hero-lead { font-size: clamp(1.08rem, 1.9vw, 1.35rem); line-height: 1.5; color: var(--texte); margin: 26px 0 0; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 0; }
.hero-note { margin: 22px 0 0; font: 500 0.92rem/1.4 var(--sans); color: var(--mute); display: inline-flex; align-items: center; gap: 9px; }
.hero-note svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* la photo de Julie : image + texte, chaleureux */
.hero-photo { position: relative; margin: 0; justify-self: center; width: min(86vw, 400px); }
.hero-blob { position: absolute; inset: -7% -9% -11% 6%; z-index: 0; background: var(--blush); border-radius: 47% 53% 52% 48% / 53% 47% 53% 47%; }
.hero-photo img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 22px; box-shadow: 0 30px 60px -30px rgba(76, 91, 62, .45); }
.hero-hello { position: absolute; z-index: 2; left: -6%; bottom: 6%; padding: 8px 16px; background: var(--blanc); border-radius: 14px; box-shadow: 0 14px 30px -16px rgba(76, 91, 62, .5); font-family: var(--script); font-weight: 700; font-size: 1.55rem; color: #B8555B; transform: rotate(-3deg); white-space: nowrap; }
.hero-etincelle { position: absolute; z-index: 2; width: 26px; height: 26px; }
.hero-etincelle.e1 { top: -4%; right: 2%; width: 34px; height: 34px; animation: scintiller 3.2s ease-in-out infinite; }
.hero-etincelle.e2 { top: 20%; right: -6%; animation: scintiller 3.2s ease-in-out infinite .8s; }
@keyframes scintiller { 0%,100% { transform: scale(1) rotate(0); opacity: .9; } 50% { transform: scale(1.18) rotate(8deg); opacity: 1; } }
@keyframes flotter { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(-2.5deg); } }

/* ---------- accueil : les galères qui se soulèvent ---------- */
.galeres-tete { max-width: 40rem; }
.galeres-liste { margin: clamp(2.5rem, 5vw, 4rem) 0 0; display: grid; gap: 0; }
.galere { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 46px); align-items: start; padding: clamp(26px, 4vw, 40px) 0; border-top: 1px solid var(--ligne); }
.galere:last-child { border-bottom: 1px solid var(--ligne); }
.galere-check { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--accent-fonce); background: var(--blanc); border: 2px solid var(--ligne); border-radius: 11px; flex: none; transition: border-color .4s ease, background .4s ease; }
.galere-check svg { width: 26px; height: 26px; }
.galere-check .coche { stroke-dasharray: 30; stroke-dashoffset: 30; }
.galere.vu .galere-check { border-color: var(--accent); background: var(--accent-clair); }
.galere.vu .galere-check .coche { animation: cocher .55s .15s cubic-bezier(.65,.05,.36,1) forwards; }
@keyframes cocher { to { stroke-dashoffset: 0; } }
.galere-txt h3 { font-family: var(--titre); font-size: clamp(1.25rem, 2.4vw, 1.7rem); margin: 2px 0 8px; letter-spacing: -0.01em; }
.galere-txt p { margin: 0; max-width: 40rem; }

/* ---------- le fil (attracteur : la ligne qui se dessine au scroll) ---------- */
.fil { position: relative; }
.fil-piste { position: absolute; left: 23px; top: 8px; bottom: 8px; width: 2px; background: var(--ligne); border-radius: 2px; }
.fil-avance { position: absolute; left: 0; top: 0; width: 100%; height: calc(var(--p, 0) * 100%); background: linear-gradient(var(--accent), var(--ocre)); border-radius: 2px; transition: height .15s linear; }

/* ---------- accueil : la démarche en 3 étapes ---------- */
.etapes { position: relative; margin: clamp(2.5rem, 5vw, 3.5rem) 0 0; display: grid; gap: clamp(28px, 4vw, 44px); }
.etape { display: grid; grid-template-columns: 48px 1fr; gap: clamp(18px, 3vw, 30px); align-items: start; position: relative; z-index: 1; }
.etape-num { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--fond); border: 2px solid var(--ligne); color: var(--accent-fonce); font-family: var(--titre); font-weight: 600; font-size: 1.25rem; transition: border-color .3s, background .3s, color .3s; }
.etape.vu .etape-num { border-color: var(--accent-fonce); background: var(--accent-fonce); color: #fff; }
.etape h3 { font-family: var(--titre); font-size: clamp(1.2rem, 2.2vw, 1.55rem); margin: 8px 0 8px; }
.etape p { margin: 0; max-width: 38rem; }

/* ---------- accueil : pour qui ---------- */
.pourqui-grille { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.publics { list-style: none; margin: clamp(1.5rem,3vw,2rem) 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 24px; }
.publics li { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--ligne); font-weight: 500; color: var(--encre); }
.publics svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.pourqui-note { font-size: 1.05rem; }

/* ---------- accueil : engagements (la preuve honnête) ---------- */
.engagements-grille { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 2.6rem); margin: clamp(2.4rem,5vw,3.4rem) 0 0; }
.engagement h3 { font-family: var(--titre); font-size: 1.35rem; margin: 0 0 10px; display: flex; align-items: center; gap: 12px; }
.engagement h3 svg { width: 22px; height: 22px; color: var(--accent); }
.engagement p { margin: 0; }

/* ---------- appel final ---------- */
.appel { background: var(--accent-fonce); color: #EEF2EA; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.appel .titre { color: #fff; }
.appel-in { max-width: 44rem; }
.appel p { color: #D3DCCE; margin: 20px 0 0; font-size: 1.15rem; }
.appel .hero-actions { margin-top: 34px; }
.appel .btn { background: #fff; color: var(--accent-fonce); box-shadow: none; }
.appel .btn:hover { background: var(--accent-clair); }
.appel .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.appel .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- en-tête de page (présentation / services / contact / mentions) ---------- */
.entete-page { padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.entete-page .titre { font-size: clamp(2.3rem, 5vw, 4rem); }
.entete-page .lead { margin-top: 24px; }

/* ---------- présentation ---------- */
.presentation-grille { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.portrait { position: sticky; top: 96px; }
.portrait img { width: 100%; border-radius: var(--rayon); background: var(--fond-3); aspect-ratio: 4 / 5; object-fit: cover; }
.portrait-lg { margin: 16px 0 0; font-size: 0.9rem; color: var(--mute); }
.recit > * + * { margin-top: 1.35em; }
.recit p { max-width: 40rem; }
.recit h2 { font-family: var(--titre); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 2em; }
.citation { font-family: var(--script); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.16; color: var(--corail); border-left: 3px solid var(--corail-clair); padding-left: clamp(18px, 3vw, 30px); margin: 2.4em 0; }
.signature { font-family: var(--script); font-weight: 700; font-size: 2.3rem; color: var(--corail); }

/* ---------- services ---------- */
.services-liste { margin: clamp(1rem, 3vw, 2rem) 0 0; }
.service { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 48px); padding: clamp(30px, 5vw, 52px) 0; border-top: 1px solid var(--ligne); align-items: start; }
.service:last-of-type { border-bottom: 1px solid var(--ligne); }
.service-num { font-family: var(--titre); font-weight: 600; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1; color: #C9D3BF; transition: color .35s; letter-spacing: -0.01em; }
.service.vu .service-num { color: var(--accent); }
.service-titre { font-family: var(--titre); font-size: clamp(1.4rem, 2.8vw, 2rem); margin: 0 0 12px; letter-spacing: -0.01em; }
.service-corps { max-width: 42rem; margin: 0 0 22px; }
.service-detail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 28px; }
.service-detail dt { font: 600 0.72rem/1.2 var(--sans); letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); margin: 0 0 8px; }
.service-detail dd { margin: 0; font-size: 0.98rem; }
.services-devis { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; font: 600 0.92rem/1.3 var(--sans); color: var(--accent-fonce); }
.services-devis svg { width: 18px; height: 18px; color: var(--accent); }
.hors-champ { margin: clamp(2.5rem, 5vw, 4rem) 0 0; padding: clamp(24px, 4vw, 36px); background: var(--fond-2); border-radius: var(--rayon); max-width: 44rem; }
.hors-champ h2 { font-family: var(--titre); font-size: 1.3rem; margin: 0 0 10px; }
.hors-champ p { margin: 0; }

/* ---------- contact ---------- */
.contact-grille { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.formulaire { display: grid; gap: 18px; }
.champ { display: grid; gap: 8px; }
.champ label { font: 600 0.85rem/1 var(--sans); letter-spacing: 0.02em; color: var(--encre); }
.champ input, .champ textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--ligne); border-radius: var(--rayon-petit);
  background: var(--blanc); color: var(--encre); font: 1rem/1.5 var(--sans); transition: border-color .15s, box-shadow .15s;
}
.champ textarea { min-height: 150px; resize: vertical; }
.champ input:focus, .champ textarea:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(110, 133, 93, .28); }
.champ input[aria-invalid="true"], .champ textarea[aria-invalid="true"] { border-color: #B4472E; box-shadow: 0 0 0 3px rgba(180, 71, 46, .16); }
.piege { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-bas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.form-note { font-size: 0.88rem; color: var(--mute); }
.form-msg { margin: 0; font-size: 0.98rem; }
.form-msg[data-etat="ok"] { color: var(--accent-fonce); }
.form-msg[data-etat="erreur"] { color: #B4472E; }
.confirme { padding: clamp(24px, 4vw, 34px); background: var(--accent-clair); border-radius: var(--rayon); }
.confirme h2 { font-family: var(--titre); font-size: 1.5rem; margin: 0 0 8px; display: flex; align-items: center; gap: 12px; }
.confirme h2 svg { width: 24px; height: 24px; color: var(--accent-fonce); }
.confirme p { margin: 0; color: var(--accent-fonce); }
.contact-coords { display: grid; gap: 26px; align-content: start; }
.coord-bloc p.coord-titre { font: 600 0.72rem/1 var(--sans); letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); margin: 0 0 10px; }
.coord-bloc > a { color: var(--encre); text-decoration: none; font-weight: 500; display: flex; width: fit-content; align-items: center; gap: 10px; }
.coord-bloc > a:hover { color: var(--accent-fonce); }
.coord-bloc > a + a { margin-top: 12px; }
.coord-bloc svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.coord-reseaux { display: flex; gap: 14px; }
.coord-reseaux a { width: 46px; height: 46px; justify-content: center; border: 1.5px solid var(--ligne); border-radius: 999px; color: var(--accent-fonce); }
.coord-reseaux a svg { width: 21px; height: 21px; }
.coord-reseaux a:hover { border-color: var(--accent); background: var(--accent-clair); }

/* ---------- mentions / légal ---------- */
.legal h2 { font-family: var(--titre); font-size: clamp(1.35rem, 2.6vw, 1.8rem); margin: 2.2em 0 0.6em; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { max-width: 46rem; }
.legal ul { padding-left: 1.2em; }
.legal a { color: var(--accent-fonce); }
.a-completer { background: #FBEED0; color: #7A5A12; padding: 1px 6px; border-radius: 4px; }

/* ---------- pied de page ---------- */
.pied { background: var(--encre); color: #CFC9BE; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; margin-top: 0; }
.pied-in { max-width: var(--page); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.pied-nom { font-family: var(--titre); font-size: 1.5rem; color: #fff; }
.pied-baseline { margin: 10px 0 0; font-size: 0.95rem; color: #A8A296; max-width: 22rem; }
.pied-titre { font: 600 0.72rem/1 var(--sans); letter-spacing: 0.1em; text-transform: uppercase; color: #989285; margin: 0 0 14px; }
.pied-nav { display: grid; gap: 10px; align-content: start; padding-top: 6px; }
.pied-nav a { color: #CFC9BE; text-decoration: none; width: fit-content; transition: color .15s; }
.pied-nav a:hover { color: #fff; }
.pied-contact { display: grid; gap: 6px; align-content: start; }
.pied-lien { color: #CFC9BE; text-decoration: none; width: fit-content; transition: color .15s; }
.pied-lien:hover { color: #fff; }
.pied-reseaux { display: flex; gap: 12px; margin-top: 12px; }
.pied-reseaux a { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #CFC9BE; transition: border-color .15s, color .15s; }
.pied-reseaux a:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.pied-reseaux svg { width: 20px; height: 20px; }
.pied-bas { max-width: var(--page); margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; padding: 22px clamp(20px, 5vw, 56px) 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 12px 30px; flex-wrap: wrap; font-size: 0.85rem; color: #989285; }
.pied-bas a { color: #A8A296; }
.pied-bas p { margin: 0; }

/* ---------- révélation au scroll ----------
   Le contenu est toujours visible (robuste sans JavaScript). La classe .reveal n'est qu'une
   accroche : au scroll, main.js ajoute .vu, qui déclenche les seules micro-animations qui portent
   un sens (l'icône qui se soulève, le numéro qui s'allume, le fil qui se dessine). Pas de fondu de bloc. */

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: clamp(1.4rem, 4vw, 2.2rem); }
  .hero-photo { width: min(72vw, 300px); margin-top: 4px; }
  .hero-hello { left: auto; right: 4%; bottom: 5%; font-size: 1.3rem; }
  .pourqui-grille, .presentation-grille, .contact-grille { grid-template-columns: 1fr; }
  .engagements-grille { grid-template-columns: 1fr; gap: 1.8rem; }
  .portrait { position: static; }
  .portrait img { aspect-ratio: 3 / 4; max-width: 360px; }
  .service-detail { grid-template-columns: 1fr; gap: 16px; }
  .pied-in { grid-template-columns: 1fr 1fr; }
  .pied-marque { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .entete-in { flex-wrap: nowrap; gap: 12px; padding: 12px clamp(16px, 5vw, 24px); }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 59;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--fond); border-bottom: 1px solid var(--ligne);
    box-shadow: 0 16px 26px -18px rgba(38, 36, 31, .35);
    padding: 4px clamp(16px, 5vw, 24px) 16px;
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transition: max-height .26s ease, opacity .2s ease, visibility .26s;
  }
  .entete.nav-ouvert .nav { max-height: 80vh; opacity: 1; visibility: visible; }
  .nav a:not(.nav-cta) { font-size: 1.05rem; padding: 14px 2px; border-bottom: 1px solid var(--ligne); }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { align-self: flex-start; margin-top: 12px; padding: 11px 22px; }
}
@media (max-width: 620px) {
  .publics { grid-template-columns: 1fr; }
  .hero-actions .btn, .hero-actions .btn-ghost, .appel .btn, .appel .btn-ghost { flex: 1 1 100%; }
  .pied-in { grid-template-columns: 1fr; }
  .pied-bas { flex-direction: column; }
  .service { grid-template-columns: 1fr; gap: 8px; }
  .galere { grid-template-columns: auto 1fr; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-etincelle { animation: none; }
  .galere-check, .etape-num, .service-num, .fil-avance { transition: none; }
  .galere-check .coche { animation: none; stroke-dashoffset: 0; }
}
