/* =========================================================================
   GP CONCEPTS — Feuille de style principale
   Design : navy de marque (#1C2D45) + orange signal (#E8390E)
   Signature : lignes topographiques (Tournette / Charbon) + repères mono
   ========================================================================= */

:root {
  --ink:        #1C2D45;
  --ink-deep:   #131D2E;
  --ink-soft:   #2A3D5C;
  --signal:     #E8390E;
  --signal-dk:  #C42E08;
  --paper:      #F6F8FB;
  --surface:    #FFFFFF;
  --glacier:    #E8EFF6;
  --glacier-dk: #D7E2EE;
  --slate:      #4C5C76;
  --line:       #DCE4EF;
  --line-soft:  #EAEFF5;

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
  --r: 14px;
  --r-sm: 9px;

  --shadow-sm: 0 1px 2px rgba(20,29,46,.06), 0 4px 14px rgba(20,29,46,.05);
  --shadow-md: 0 8px 30px rgba(20,29,46,.10), 0 2px 8px rgba(20,29,46,.06);
  --shadow-lg: 0 24px 60px rgba(20,29,46,.16);

  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-body: "IBM Plex Sans", system-ui, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

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

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.center { text-align: center; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); letter-spacing: -.01em; }
p { color: var(--slate); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--signal);
  display: inline-block;
}
.lede { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--slate); line-height: 1.55; max-width: 60ch; }

.section__head { max-width: 64ch; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head .eyebrow { margin-bottom: 18px; }
.section__head h2 + p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--f-display); font-weight: 500; font-size: 1rem;
  padding: .85em 1.5em; border-radius: var(--r-sm);
  border: 1px solid transparent; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--signal); color: #fff; box-shadow: 0 6px 18px rgba(232,57,14,.28); }
.btn--primary:hover { background: var(--signal-dk); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232,57,14,.34); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--on-dark { background: #fff; color: var(--ink); }
.btn--on-dark:hover { background: var(--glacier); transform: translateY(-2px); }
.btn--ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,.06); transform: translateY(-2px); }

.link-arrow {
  font-family: var(--f-display); font-weight: 500; color: var(--signal);
  display: inline-flex; align-items: center; gap: .45em;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,248,251,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__bar { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: .65em; font-family: var(--f-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -.01em; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand b { color: var(--signal); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .35em;
  padding: .55em .8em; border-radius: 8px;
  font-size: .96rem; font-weight: 500; color: var(--ink-soft);
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover, .nav__item:hover .nav__link { background: var(--glacier); color: var(--ink); }
.nav__link svg { width: 13px; height: 13px; opacity: .6; }

.nav__panel {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 270px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-md); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav__item:hover .nav__panel, .nav__item:focus-within .nav__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__panel a { display: block; padding: .55em .7em; border-radius: 8px; font-size: .92rem; color: var(--ink-soft); }
.nav__panel a:hover { background: var(--glacier); color: var(--ink); }
.nav__panel a span { display: block; font-size: .76rem; color: var(--slate); font-weight: 400; margin-top: 1px; }

.header__cta { display: flex; align-items: center; gap: 14px; }
.header__phone { font-family: var(--f-mono); font-size: .88rem; font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: .5em; white-space: nowrap; }
.header__phone svg { flex: none; }
.header__phone svg { width: 16px; height: 16px; color: var(--signal); }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* mobile nav */
.mnav { position: fixed; inset: 72px 0 0; background: var(--paper); z-index: 99; transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); overflow-y: auto; padding: 24px var(--gut) 40px; }
.mnav.open { transform: translateX(0); }
.mnav details { border-bottom: 1px solid var(--line); }
.mnav summary { list-style: none; padding: 16px 0; font-family: var(--f-display); font-weight: 500; font-size: 1.15rem; display: flex; justify-content: space-between; align-items: center; }
.mnav summary::-webkit-details-marker { display: none; }
.mnav summary::after { content: "+"; font-family: var(--f-mono); color: var(--signal); }
.mnav details[open] summary::after { content: "–"; }
.mnav__sub a { display: block; padding: 11px 0 11px 14px; color: var(--slate); border-left: 2px solid var(--line); margin-bottom: 2px; }
.mnav__sub { padding-bottom: 14px; }
.mnav > a { display: block; padding: 16px 0; font-family: var(--f-display); font-weight: 500; font-size: 1.15rem; border-bottom: 1px solid var(--line); }
.mnav .btn { width: 100%; justify-content: center; margin-top: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink-deep); color: #fff; overflow: hidden; isolation: isolate; }
.hero__topo { position: absolute; inset: 0; z-index: -1; opacity: .9; }
.hero__topo svg { width: 100%; height: 100%; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 90% at 78% 8%, rgba(232,57,14,.18), transparent 46%); }
.hero__inner { padding-block: clamp(72px, 12vw, 150px); max-width: 760px; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--signal); }
.hero .lede { color: rgba(255,255,255,.82); margin-top: 24px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__coords { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .12em; color: rgba(255,255,255,.5); margin-bottom: 26px; display: inline-flex; align-items: center; gap: .8em; }
.hero__coords::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px rgba(232,57,14,.2); }

.hero__strip { border-top: 1px solid rgba(255,255,255,.12); }
.hero__strip ul { display: flex; flex-wrap: wrap; gap: clamp(20px,5vw,64px); padding-block: 22px; }
.hero__strip li { font-family: var(--f-mono); font-size: .8rem; letter-spacing: .04em; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: .6em; }
.hero__strip li b { color: #fff; font-weight: 600; }
.hero__strip svg { width: 16px; height: 16px; color: var(--signal); }

/* ---------- Trust / partenaires ---------- */
.trust { background: var(--surface); border-bottom: 1px solid var(--line-soft); }
.trust__inner { display: flex; align-items: center; gap: clamp(20px,4vw,48px); flex-wrap: wrap; padding-block: 26px; }
.trust__label { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); }
.trust__logos { display: flex; flex-wrap: wrap; gap: clamp(18px,3vw,40px); align-items: center; }
.trust__logos span { font-family: var(--f-display); font-weight: 600; font-size: 1.02rem; color: var(--ink-soft); opacity: .82; }

/* ---------- Services grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 30px 28px 26px; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--glacier-dk); }
.card__num { font-family: var(--f-mono); font-size: .72rem; color: var(--slate); letter-spacing: .1em; }
.card__icon { width: 46px; height: 46px; border-radius: 11px; background: var(--glacier); display: grid; place-items: center; margin: 16px 0 18px; color: var(--ink); }
.card:hover .card__icon { background: var(--signal); color: #fff; }
.card__icon svg { width: 23px; height: 23px; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: .96rem; flex: 1; }
.card .link-arrow { margin-top: 18px; font-size: .92rem; }

/* ---------- Feature / value rows ---------- */
.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,6vw,80px); align-items: center; }
.featlist { display: grid; gap: 22px; margin-top: 8px; }
.featlist li { display: flex; gap: 16px; }
.featlist .ic { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--ink); color: #fff; display: grid; place-items: center; }
.featlist .ic svg { width: 19px; height: 19px; }
.featlist h4 { font-family: var(--f-display); font-size: 1.08rem; margin-bottom: 3px; }
.featlist p { font-size: .95rem; }

.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); padding: clamp(26px,4vw,40px); }
.panel--ink { background: var(--ink); color: #fff; border-color: transparent; }
.panel--ink h3, .panel--ink h4 { color: #fff; }
.panel--ink p { color: rgba(255,255,255,.78); }

/* stat block */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.stats > div { background: var(--surface); padding: 30px 24px; }
.stats .n { font-family: var(--f-display); font-weight: 600; font-size: clamp(2rem,4vw,2.7rem); color: var(--ink); letter-spacing: -.03em; }
.stats .n b { color: var(--signal); }
.stats .l { font-size: .9rem; color: var(--slate); margin-top: 4px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 28px; border-top: 2px solid var(--line); }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: -2px; left: 0; padding-top: 8px; font-family: var(--f-mono); font-size: .78rem; color: var(--signal); border-top: 2px solid var(--signal); }
.step h4 { font-family: var(--f-display); margin-bottom: 7px; font-size: 1.1rem; }
.step p { font-size: .93rem; }

/* ---------- Zones (local SEO) ---------- */
.zones { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.zones span { font-family: var(--f-mono); font-size: .82rem; padding: .5em .9em; background: var(--surface); border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft); }
.zones span b { color: var(--signal); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 800px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 24px; font-family: var(--f-display); font-weight: 500; font-size: 1.1rem; display: flex; justify-content: space-between; gap: 20px; align-items: center; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 11px; height: 11px; border-right: 2px solid var(--signal); border-bottom: 2px solid var(--signal); transform: rotate(45deg); transition: transform .2s; margin-top: -4px; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq details > div { padding: 0 24px 22px; }
.faq details p { font-size: .98rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--ink); color: #fff; border-radius: clamp(16px,3vw,26px); padding: clamp(40px,6vw,68px); overflow: hidden; isolation: isolate; }
.cta-band .hero__topo { opacity: .5; }
.cta-band::after { content:""; position:absolute; inset:0; z-index:-1; background: radial-gradient(90% 120% at 85% 0%, rgba(232,57,14,.22), transparent 50%); }
.cta-band h2 { color: #fff; max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 16px; max-width: 52ch; }
.cta-band__row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ---------- Page hero (inner pages) ---------- */
.phero { background: var(--ink-deep); color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.phero .hero__topo { opacity: .7; }
.phero::after { content:""; position:absolute; inset:0; z-index:-1; background: radial-gradient(100% 100% at 90% 0%, rgba(232,57,14,.16), transparent 52%); }
.phero__inner { padding-block: clamp(48px,7vw,86px); max-width: 740px; }
.phero h1 { color: #fff; margin-top: 14px; }
.phero p { color: rgba(255,255,255,.82); margin-top: 18px; }
.breadcrumb { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .06em; color: rgba(255,255,255,.6); display: flex; flex-wrap: wrap; gap: .5em; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* prose */
.prose p { margin-bottom: 18px; max-width: 68ch; }
.prose h2 { margin: 44px 0 16px; }
.prose h3 { margin: 30px 0 12px; }
.prose ul.check { display: grid; gap: 12px; margin: 18px 0; }
.prose ul.check li { position: relative; padding-left: 30px; color: var(--slate); }
.prose ul.check li::before { content:""; position:absolute; left:0; top:7px; width:16px; height:9px; border-left:2px solid var(--signal); border-bottom:2px solid var(--signal); transform: rotate(-45deg); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,52px); }
.field { margin-bottom: 18px; }
.field label { font-family: var(--f-display); font-weight: 500; font-size: .92rem; display: block; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8em .9em; border: 1px solid var(--line); border-radius: var(--r-sm);
  font: inherit; background: var(--surface); color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--signal); box-shadow: 0 0 0 3px rgba(232,57,14,.14); }
.infoline { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.infoline:last-child { border-bottom: none; }
.infoline .ic { flex: none; width: 42px; height: 42px; border-radius: 10px; background: var(--glacier); display: grid; place-items: center; color: var(--ink); }
.infoline .ic svg { width: 20px; height: 20px; }
.infoline b { display: block; font-family: var(--f-display); }
.infoline a, .infoline span { color: var(--slate); font-size: .96rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); color: rgba(255,255,255,.66); padding-top: clamp(56px,7vw,84px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .brand { color: #fff; margin-bottom: 16px; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: .94rem; max-width: 36ch; }
.footer__brand .badge { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-top: 18px; display: inline-block; padding: .4em .8em; border: 1px solid rgba(255,255,255,.16); border-radius: 7px; }
.footer h4 { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 500; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { color: rgba(255,255,255,.72); font-size: .94rem; }
.footer ul a:hover { color: var(--signal); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-block: 26px; font-size: .84rem; color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.16); border-radius: 9px; display: grid; place-items: center; color: rgba(255,255,255,.7); }
.footer__social a:hover { border-color: var(--signal); color: var(--signal); }
.footer__social svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1120px) { .header__phone { display: none; } .nav__link { padding: .5em .65em; } }
@media (max-width: 820px) {
  .nav { display: none; }
  .burger { display: flex; }
}
@media (max-width: 720px) {
  /* En-tête mobile : on ne garde que le logo + le burger (le bouton Devis passe dans le menu) */
  .header__cta .btn--primary { display: none; }
  .brand { font-size: 1.08rem; min-width: 0; }
  .brand span { white-space: nowrap; }
  .header__cta { gap: 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .hero__cta .btn, .cta-band__row .btn { flex: 1 1 auto; justify-content: center; }
}

/* ===== Images & illustrations ===== */
.hero__scene { position:absolute; inset:0; z-index:-2; width:100%; height:100%; opacity:.9; }
.hero__scene svg, .hero__scene img { width:100%; height:100%; object-fit:cover; display:block; }
.hero .hero__topo { opacity:.35; }

/* Logo wall partenaires */
.logos { display:flex; flex-wrap:wrap; align-items:center; gap:clamp(20px,3.4vw,46px); }
.logos img { height:21px; width:auto; opacity:.62; filter:grayscale(1); transition:opacity .2s ease; }
.logos img:hover { opacity:1; }

/* Bannière de service */
.svc-banner { margin:0; }
.svc-banner figure, figure.media { margin:0; }
.svc-media { position:relative; border-radius:var(--r); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow-sm); background:var(--glacier); }
.svc-media img { width:100%; height:clamp(200px,26vw,300px); object-fit:cover; display:block; }
.svc-media__tag { position:absolute; left:16px; bottom:14px; font-family:var(--f-mono); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--slate); background:rgba(255,255,255,.82); border:1px solid var(--line); padding:.4em .7em; border-radius:7px; backdrop-filter:blur(4px); }

/* Figure paysage (a-propos) */
.scene-figure { position:relative; border-radius:var(--r); overflow:hidden; box-shadow:var(--shadow-md); border:1px solid rgba(20,29,46,.08); }
.scene-figure img, .scene-figure svg { width:100%; height:clamp(240px,30vw,360px); object-fit:cover; display:block; }
.scene-figure figcaption { position:absolute; left:16px; bottom:14px; font-family:var(--f-mono); font-size:.72rem; letter-spacing:.1em; color:#fff; background:rgba(19,29,46,.6); padding:.4em .7em; border-radius:7px; }

/* ===== Intégration des vraies images (logo, photo) ===== */
.brand__mark { width:auto; height:30px; }
.hero__scene { opacity:1; }
.hero__scene img { width:100%; height:100%; object-fit:cover; display:block; }
.hero__veil { position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(95deg, rgba(19,29,46,.95) 0%, rgba(19,29,46,.74) 46%, rgba(19,29,46,.42) 100%),
    linear-gradient(0deg, rgba(19,29,46,.82) 0%, rgba(19,29,46,0) 40%); }
.hero .hero__topo { opacity:.20; }
.footer__logo { height:60px; width:auto; display:block; }
.logos img { height:26px; filter:none; opacity:.85; }
.logos img:hover { opacity:1; }

/* équilibrage des logos partenaires (largeurs très variables) */
.logos img { height:24px; max-width:118px; width:auto; object-fit:contain; }

/* ===== Menus déroulants ouvrables au clic / tap ===== */
.nav__link svg { transition: transform .2s ease; }
.nav__item.open .nav__panel { opacity:1; visibility:visible; transform:translateY(0); }
.nav__item.open > .nav__link svg { transform: rotate(180deg); }
.nav__item.open > .nav__link { background: var(--glacier); color: var(--ink); }

/* ===== Vignettes illustrées sur les cartes de services (accueil) ===== */
.card__media { display:block; height:130px; margin:-30px -28px 20px; border-bottom:1px solid var(--line); background:var(--glacier); overflow:hidden; }
.card__media img { width:100%; height:100%; object-fit:cover; object-position:right center; transition:transform .35s ease; }
.card:hover .card__media img { transform:scale(1.05); }

/* ===== Carte des zones d'intervention ===== */
.zones-map { margin:0; position:relative; border-radius:var(--r); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow-sm); background:var(--glacier); }
.zones-map img { width:100%; height:auto; display:block; }
.zones-map figcaption { padding:14px 18px; font-family:var(--f-mono); font-size:.8rem; color:var(--slate); border-top:1px solid var(--line); }

/* ===== Carte réelle (zones d'intervention) ===== */
.map-frame { border:1px solid var(--line); border-radius:var(--r); overflow:hidden; box-shadow:var(--shadow-md); background:var(--surface); }
.map-frame__bar { display:flex; justify-content:space-between; align-items:center; gap:12px; padding:12px 16px; border-bottom:1px solid var(--line); font-family:var(--f-mono); font-size:.76rem; letter-spacing:.04em; color:var(--slate); background:var(--ink); }
.map-frame__bar span { color:#fff; }
.map-frame__bar span::before { content:""; display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--signal); margin-right:8px; box-shadow:0 0 0 3px rgba(232,57,14,.25); }
.map-frame__bar a { color:#fff; opacity:.8; }
.map-frame__bar a:hover { opacity:1; color:var(--signal); }
.map-frame iframe { width:100%; height:clamp(360px,48vw,500px); border:0; display:block; }

/* ===== Infographie métier (pleine largeur) ===== */
.metier-visual { margin:0; border-radius:var(--r); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow-sm); background:#EAF2FB; }
.metier-visual img { width:100%; height:auto; display:block; }

/* cartes accueil : vignettes infographies centrées */
.card__media { height:150px; }
.card__media img { object-position:center 38%; }

/* ===== Liste "Notre promesse" ===== */
.promise-list { list-style:none; margin:24px 0 0; padding:0; display:grid; gap:13px; }
.promise-list li { position:relative; padding-left:32px; color:rgba(255,255,255,.92); font-size:.97rem; line-height:1.45; }
.promise-list li::before { content:"✓"; position:absolute; left:0; top:1px; width:20px; height:20px; line-height:20px; text-align:center; border-radius:50%; background:var(--signal); color:#fff; font-size:12px; font-weight:700; }

/* ===== Avis Google ===== */
.reviews-agg { display:flex; align-items:center; gap:12px; margin-top:14px; font-family:var(--f-mono); font-size:.85rem; color:var(--slate); flex-wrap:wrap; }
.reviews-agg .agg__num { font-family:var(--f-display); font-size:1.5rem; color:var(--ink); font-weight:700; }
.agg__stars { display:inline-flex; gap:2px; }
.star { width:18px; height:18px; fill:#D9DEE7; }
.star--on { fill:#FBBC04; }
.reviews-note { font-family:var(--f-mono); font-size:.74rem; color:var(--slate); opacity:.75; margin:8px 0 20px; }
.reviews { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:860px){ .reviews { grid-template-columns:1fr; } }
.review-card { background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:22px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; gap:13px; }
.review-card header { display:flex; align-items:center; gap:12px; }
.review-card__av { width:42px; height:42px; border-radius:50%; overflow:hidden; flex:none; display:grid; place-items:center; background:var(--glacier); }
.review-card__av img { width:100%; height:100%; object-fit:cover; }
.review-card__ini { font-family:var(--f-display); font-weight:600; color:var(--ink); }
.review-card__who { display:flex; flex-direction:column; line-height:1.25; flex:1; min-width:0; }
.review-card__who b { color:var(--ink); font-size:.95rem; }
.review-card__date { font-family:var(--f-mono); font-size:.72rem; color:var(--slate); }
.review-card__g { width:18px; height:18px; flex:none; }
.review-card__stars { display:flex; gap:2px; }
.review-card p { color:var(--slate); font-size:.94rem; line-height:1.55; margin:0; display:-webkit-box; -webkit-line-clamp:6; -webkit-box-orient:vertical; overflow:hidden; }
