/* ==========================================================================
   FORMA INTERIM — feuille de style principale
   Agence d'intérim BTP · Toulon & Aix-en-Provence
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Marque */
  --blue: #068fdd;
  --blue-700: #0576b8;
  --blue-100: #e4f2fc;
  --blue-050: #f2f9fe;

  --orange: #fca427;
  --orange-700: #ea8d09;
  --orange-100: #fff3e0;

  --navy: #06304f;
  --navy-900: #04223a;
  --navy-700: #0a4874;

  /* Neutres */
  --ink: #0d2436;
  --muted: #5d7386;
  --line: #dbe6ef;
  --line-soft: #eaf1f7;
  --surface: #f3f8fc;
  --white: #ffffff;

  /* Typo */
  --display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --body: "Figtree", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Rayons */
  --r-xs: 8px;
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Ombres */
  --sh-sm: 0 2px 8px rgba(6, 48, 79, .06);
  --sh: 0 10px 30px -12px rgba(6, 48, 79, .18);
  --sh-lg: 0 30px 60px -24px rgba(6, 48, 79, .28);
  --sh-orange: 0 12px 28px -10px rgba(252, 164, 39, .55);
  --sh-blue: 0 12px 28px -10px rgba(6, 143, 221, .45);

  /* Rythme */
  --pad-x: clamp(20px, 5vw, 48px);
  --sec-y: clamp(64px, 8vw, 116px);
  --wrap: 1200px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
/* Étiquette réservée aux lecteurs d'écran */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* L'en-tête est collant : on décale les cibles d'ancre pour qu'elles ne passent pas dessous */
[id] { scroll-margin-top: 118px; }
.anchor { display: block; height: 0; overflow: hidden; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  /* « clip » et non « hidden » : hidden ferait du body un conteneur de
     défilement, ce qui casse les ancres et le positionnement collant.
     La ligne hidden reste en repli pour les navigateurs anciens. */
  overflow-x: hidden;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.08; margin: 0; letter-spacing: -.022em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad-x); }
/* Bandeau large : en-tête et barre de contact respirent sur les grands écrans */
.wrap--wide { max-width: 1580px; }
.section { padding-block: var(--sec-y); position: relative; }
.section--tint { background: var(--surface); }
.section--navy { background: var(--navy); color: #dbeaf5; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--tight { padding-block: clamp(44px, 5vw, 72px); }

.sec-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 56px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 16px; }
.sec-head p { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); }
.section--navy .sec-head p { color: #a9c6dd; }

/* Sur-titre technique (mono, façon fiche de chantier) */
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.section--navy .eyebrow { color: var(--orange); }
.section--navy .eyebrow::before { background: var(--blue); }

/* Bande diagonale de sécurité — signature BTP */
.hazard {
  height: 9px;
  background: repeating-linear-gradient(115deg,
    var(--orange) 0 20px,
    var(--navy) 20px 40px);
}
.hazard--thin { height: 5px; }

/* Fond calque « plan de chantier » */
.blueprint::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(6, 143, 221, .075) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(6, 143, 221, .075) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 78%);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   4. BOUTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.01em;
  line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--orange); color: var(--navy-900); box-shadow: var(--sh-orange); }
.btn--primary:hover { background: var(--orange-700); }

.btn--blue { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); }
.btn--blue:hover { background: var(--blue-700); }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-900); }

.btn--ghost { border: 2px solid var(--line); color: var(--navy); background: #fff; }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn--white { background: #fff; color: var(--navy); }

.btn--lg { padding: 19px 36px; font-size: 18px; }
.btn--full { width: 100%; }

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy);
  color: #b9d4e8;
  font-size: 14px;
  padding: 9px 0;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; min-height: 24px; transition: color .2s; }
.topbar a:hover { color: var(--orange); }
.topbar svg { width: 15px; height: 15px; opacity: .8; }
.topbar__right { display: flex; align-items: center; gap: 24px; }
.topbar__hours { display: inline-flex; align-items: center; gap: 8px; }

.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s;
}
.hdr.is-stuck { box-shadow: 0 6px 24px -14px rgba(6, 48, 79, .35); }
.hdr__inner { display: flex; align-items: center; gap: 34px; height: 98px; }
.hdr__logo { display: flex; align-items: center; flex: none; }
.hdr__logo img { height: 54px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: 10px 15px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  transition: background .2s, color .2s;
}
.nav a:hover { background: var(--blue-050); color: var(--blue); }
.nav a.is-active { color: var(--blue); background: var(--blue-100); }

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

.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  align-items: center; justify-content: center;
  margin-left: auto;
}
.burger svg { width: 22px; height: 22px; }

.mobnav {
  position: fixed; inset: 0;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 26px var(--pad-x) 40px;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.mobnav.is-open { display: flex; }
.mobnav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.mobnav__top img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.mobnav__close { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.12); display: grid; place-items: center; }
.mobnav__close svg { width: 22px; height: 22px; }
.mobnav a.mobnav__link {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: space-between;
}
.mobnav__actions { margin-top: 32px; display: grid; gap: 12px; }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 82% -8%, rgba(6, 143, 221, .16), transparent 62%),
    radial-gradient(700px 460px at 6% 108%, rgba(252, 164, 39, .16), transparent 60%),
    linear-gradient(180deg, #fbfdff 0%, #eef6fc 100%);
  padding-block: clamp(52px, 7vw, 96px) clamp(56px, 7vw, 92px);
}
.hero__inner { position: relative; z-index: 2; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__title {
  font-size: clamp(38px, 6.2vw, 74px);
  line-height: .98;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero__title em {
  font-style: normal;
  color: var(--blue);
  position: relative;
  white-space: nowrap;
}
.hero__title em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: .04em;
  height: .16em;
  background: var(--orange);
  border-radius: 3px;
  opacity: .95;
  z-index: -1;
}
.hero__lead {
  font-size: clamp(17px, 1.9vw, 20.5px);
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 30px;
}
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; }
.hero__proof li {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; color: var(--navy);
}
.hero__proof svg { width: 19px; height: 19px; color: var(--blue); flex: none; }

/* Les 2 portes : candidat / entreprise */
.doors { display: grid; gap: 16px; }
.door {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: 30px 30px 26px;
  display: block;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  isolation: isolate;
}
.door::after {
  content: "";
  position: absolute; inset: auto -30% -70% auto;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  transition: transform .5s var(--ease);
  z-index: -1;
}
.door:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.door:hover::after { transform: scale(1.5); }
.door--cand { background: linear-gradient(135deg, var(--blue) 0%, #0a6ba8 100%); color: #fff; box-shadow: var(--sh-blue); }
.door--ent { background: linear-gradient(135deg, var(--navy) 0%, #0a4874 100%); color: #fff; box-shadow: var(--sh); }
.door__tag {
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  opacity: .78; display: block; margin-bottom: 12px;
}
.door__title { font-size: clamp(24px, 2.7vw, 31px); margin-bottom: 8px; }
.door__text { font-size: 15.5px; opacity: .86; margin-bottom: 20px; max-width: 34ch; }
.door__go {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  padding: 12px 22px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  transition: background .25s, gap .25s;
}
.door:hover .door__go { background: var(--orange); color: var(--navy-900); border-color: var(--orange); gap: 15px; }
.door__go svg { width: 17px; height: 17px; }

/* --------------------------------------------------------------------------
   7. BANDEAU MÉTIERS DÉFILANT
   -------------------------------------------------------------------------- */
.marquee {
  background: var(--navy);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 14px; padding-right: 14px; }
.mchip {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  color: #cfe4f3;
  padding: 9px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-pill);
  white-space: nowrap;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease);
}
/* Le bandeau se met en pause au survol : les puces sont donc cliquables. */
.mchip:hover, .mchip:focus-visible {
  background: #fff; color: var(--navy); border-color: #fff;
  transform: translateY(-2px);
}
.mchip--hot { background: var(--orange); color: var(--navy-900); border-color: var(--orange); }
.mchip--hot:hover, .mchip--hot:focus-visible { background: #fff; color: var(--navy); border-color: #fff; }
@keyframes slide { to { transform: translateX(-50%); } }

/* Sur écran tactile il n'y a pas de survol pour mettre en pause :
   on ralentit pour que la cible reste attrapable au doigt. */
@media (hover: none) {
  .marquee__track { animation-duration: 72s; }
}

/* --------------------------------------------------------------------------
   8. CHIFFRES
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: #fff; padding: 32px 26px; text-align: center; }
.section--tint .stat { background: #fff; }
.stat__num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(34px, 4.6vw, 52px);
  color: var(--blue); line-height: 1; letter-spacing: -.03em;
  display: block; margin-bottom: 8px;
}
.stat:nth-child(2) .stat__num, .stat:nth-child(4) .stat__num { color: var(--orange-700); }
.stat__label { font-size: 14.5px; color: var(--muted); font-weight: 500; line-height: 1.4; }

/* --------------------------------------------------------------------------
   9. CARTES
   -------------------------------------------------------------------------- */
.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--blue-100); }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--blue-100);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: background .3s, color .3s;
}
.card:hover .card__icon { background: var(--orange); color: var(--navy-900); }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 20.5px; margin-bottom: 10px; color: var(--navy); }
.card p { color: var(--muted); font-size: 15.8px; }
.card__list { margin-top: 16px; display: grid; gap: 8px; }
.card__list li { display: flex; gap: 9px; font-size: 15.2px; color: var(--ink); align-items: flex-start; }
.card__list svg { width: 17px; height: 17px; color: var(--blue); flex: none; margin-top: 4px; }

/* --------------------------------------------------------------------------
   10. MÉTIERS (colonnes)
   -------------------------------------------------------------------------- */
.metiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.metier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.metier:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--sh); }
.metier__head { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.metier__head svg { width: 26px; height: 26px; color: var(--orange-700); flex: none; }
.metier h3 { font-size: 19px; color: var(--navy); }
.metier ul { display: flex; flex-wrap: wrap; gap: 7px; }
.metier li {
  font-size: 14.2px; font-weight: 500;
  background: var(--surface);
  color: var(--navy-700);
  padding: 6px 13px;
  border-radius: var(--r-pill);
}

/* --------------------------------------------------------------------------
   10 bis. POSTES (tuiles métier)
   -------------------------------------------------------------------------- */
.trades { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trade {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.trade:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--blue-100); }
.trade__ic {
  width: 50px; height: 50px; border-radius: 15px;
  background: var(--blue-100); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 18px;
  transition: background .3s, color .3s;
}
.trade:hover .trade__ic { background: var(--orange); color: var(--navy-900); }
.trade__ic svg { width: 25px; height: 25px; }
.trade h3 { font-size: 19px; color: var(--navy); margin-bottom: 7px; }
.trade p { font-size: 14.8px; color: var(--muted); }
.trade__tag {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--orange-100); color: #a76400;
  padding: 4px 10px; border-radius: var(--r-pill);
}

/* Tuile « Autre métier » */
.trade--other {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-700) 100%);
  border-color: transparent; color: #fff;
  box-shadow: var(--sh);
}
.trade--other h3 { color: #fff; }
.trade--other p { color: #a9c6dd; }
.trade--other .trade__ic { background: var(--orange); color: var(--navy-900); }
.trade--other .trade__go {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 16px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  padding: 10px 18px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.26);
  transition: background .25s, gap .25s;
}
.trade--other:hover .trade__go { background: var(--orange); color: var(--navy-900); border-color: var(--orange); gap: 14px; }
.trade--other .trade__go svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   10 ter. SECTEURS D'ACTIVITÉ
   -------------------------------------------------------------------------- */
.sectors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sector {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.sector:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.sector__ic {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 18px;
  transition: background .3s, color .3s;
}
.sector__ic svg { width: 26px; height: 26px; }
.sector h3 { font-size: 20px; color: var(--navy); margin-bottom: 9px; }
.sector p { font-size: 15px; color: var(--muted); }
.sector__state {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
}
.sector__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.sector__chips li {
  font-size: 13.6px; font-weight: 500;
  background: var(--surface); color: var(--navy-700);
  padding: 5px 12px; border-radius: var(--r-pill);
}

/* Secteur actif */
.sector--live { border-color: var(--blue); box-shadow: var(--sh-sm); }
.sector--live::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: repeating-linear-gradient(115deg, var(--orange) 0 14px, var(--blue) 14px 28px);
}
.sector--live .sector__ic { background: var(--blue); color: #fff; }
.sector--live .sector__state { background: var(--blue-100); color: var(--blue-700); }

/* Secteur à venir */
.sector--soon { background: var(--surface); border-style: dashed; }
.sector--soon .sector__ic { background: #fff; color: var(--muted); border: 1px solid var(--line); }
.sector--soon .sector__state { background: var(--orange-100); color: #a76400; }
.sector--soon h3 { color: var(--navy-700); }
.sector--soon:hover .sector__ic { background: var(--orange); color: var(--navy-900); border-color: var(--orange); }
.sector--soon .sector__chips li { background: #fff; }

/* --------------------------------------------------------------------------
   10 quater. PARTENAIRES
   -------------------------------------------------------------------------- */
.partners { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.partner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 20px 22px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.partner:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: var(--blue-100); }
.partner__logo { height: 88px; width: 100%; display: grid; place-items: center; }
.partner__logo img {
  max-height: 88px; max-width: 100%; width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(1); opacity: .72;
  transition: filter .35s var(--ease), opacity .35s var(--ease), transform .35s var(--ease);
}
.partner:hover .partner__logo img { filter: none; opacity: 1; transform: scale(1.04); }
/* Monogramme de repli quand le logo n'est pas encore déposé */
.partner__mono {
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff; font-family: var(--display); font-weight: 800; font-size: 24px;
  letter-spacing: -.02em;
}
.partner__name { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--navy); line-height: 1.25; }
.partner__cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.partner__link {
  margin-top: auto; font-size: 13.5px; font-weight: 600; color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
}
.partner__link svg { width: 14px; height: 14px; }
.partner:hover .partner__link { color: var(--orange-700); }

/* --------------------------------------------------------------------------
   11. ÉTAPES
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; padding-top: 26px; }
.step::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(6,143,221,.15));
}
.step:nth-child(even)::before { background: linear-gradient(90deg, var(--orange), rgba(252,164,39,.15)); }
.step__n {
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  color: var(--blue); letter-spacing: .12em; display: block; margin-bottom: 12px;
}
.step:nth-child(even) .step__n { color: var(--orange-700); }
.step h3 { font-size: 19.5px; color: var(--navy); margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 15.4px; }
.section--navy .step h3 { color: #fff; }
.section--navy .step p { color: #a9c6dd; }

/* --------------------------------------------------------------------------
   12. SPLIT (texte + panneau)
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.split--rev .split__media { order: -1; }
.panel {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(30px, 3.6vw, 46px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.panel::before {
  content: "";
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,143,221,.5), transparent 70%);
}
.panel__list { display: grid; gap: 18px; position: relative; }
.panel__list li { display: flex; gap: 15px; align-items: flex-start; }
.panel__list .ic {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: rgba(255,255,255,.1); display: grid; place-items: center;
  color: var(--orange);
}
.panel__list svg { width: 20px; height: 20px; }
.panel__list strong { display: block; font-family: var(--display); font-size: 17.5px; margin-bottom: 3px; }
.panel__list span { font-size: 15.2px; color: #a9c6dd; }

.checklist { display: grid; gap: 13px; margin-top: 26px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.2px; }
.checklist svg { width: 22px; height: 22px; color: var(--blue); flex: none; margin-top: 2px; }

/* --------------------------------------------------------------------------
   12 bis. MÉDIAS PHOTO
   Chaque bloc a un dégradé de secours : si le fichier .jpg est absent,
   le visuel reste propre. Dépose l'image au bon nom pour l'activer.
   -------------------------------------------------------------------------- */
.shot {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--sh-lg);
  background-color: var(--navy);
  background-image: linear-gradient(150deg, var(--navy) 0%, var(--blue-700) 100%);
  background-size: cover;
  background-position: center;
}
.shot--tall { aspect-ratio: 3 / 4; }
.shot--wide { aspect-ratio: 16 / 10; }
.shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 35%, rgba(4, 34, 58, .55) 100%);
}
/* Motif de secours visible uniquement quand aucune photo n'est chargée */
.shot::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 26px, transparent 26px 52px);
}
.shot[style*="url"]::before { opacity: 0; }

/* Étiquette posée sur la photo */
.shot__badge {
  position: absolute; z-index: 2;
  left: 22px; bottom: 22px; right: 22px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.shot__badge .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--orange); color: var(--navy-900); display: grid; place-items: center; flex: none; }
.shot__badge svg { width: 21px; height: 21px; }
.shot__badge strong { display: block; font-family: var(--display); font-size: 16.5px; color: var(--navy); line-height: 1.2; }
.shot__badge span { font-size: 13.8px; color: var(--muted); }

/* Photo décorative dans le hero */
.hero__shot {
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  background-size: cover;
  background-position: center;
  opacity: .17;
  -webkit-mask-image: linear-gradient(270deg, #000 10%, transparent 92%);
  mask-image: linear-gradient(270deg, #000 10%, transparent 92%);
  pointer-events: none;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   13. ZONE D'INTERVENTION
   -------------------------------------------------------------------------- */
.zone { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.agency {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 30px;
  position: relative; overflow: hidden;
}
.agency::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: repeating-linear-gradient(115deg, var(--orange) 0 14px, var(--blue) 14px 28px);
}
.agency h3 { font-size: 25px; color: var(--navy); margin-bottom: 6px; }
.agency__dept { font-family: var(--mono); font-size: 13px; color: var(--blue); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; display: block; }
.villes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ville { font-size: 14px; font-weight: 500; background: var(--surface); color: var(--navy-700); padding: 6px 14px; border-radius: var(--r-pill); }
.agency__contact { margin-top: 22px; display: grid; gap: 10px; }
.agency__contact a { display: inline-flex; align-items: center; gap: 11px; font-weight: 600; color: var(--navy); font-size: 15.6px; transition: color .2s; }
.agency__contact a:hover { color: var(--blue); }
.agency__contact svg { width: 18px; height: 18px; color: var(--blue); flex: none; }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.qa {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.qa[open] { border-color: var(--blue); box-shadow: var(--sh-sm); }
.qa summary {
  padding: 20px 24px;
  font-family: var(--display); font-weight: 700; font-size: 18px;
  color: var(--navy);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  font-size: 26px; font-weight: 400; color: var(--blue);
  transition: transform .3s var(--ease);
  flex: none; line-height: 1;
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa__body { padding: 0 24px 22px; color: var(--muted); font-size: 16px; }

/* --------------------------------------------------------------------------
   15. BANDE CTA
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-700) 55%, var(--blue-700) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 62px) clamp(28px, 4.5vw, 62px);
  display: grid; grid-template-columns: 1.4fr auto;
  gap: 32px; align-items: center;
  position: relative; overflow: hidden;
  box-shadow: var(--sh-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.045) 0 22px, transparent 22px 44px);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(27px, 3.6vw, 42px); margin-bottom: 12px; position: relative; }
.cta-band p { color: #b5d3e8; font-size: 17px; position: relative; max-width: 52ch; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; position: relative; }

/* --------------------------------------------------------------------------
   15 bis. ZONE « QUEL POSTE VOUS MANQUE ? »
   Sert à découvrir la demande réelle plutôt qu'à deviner une liste de métiers.
   -------------------------------------------------------------------------- */
.ask {
  background: linear-gradient(130deg, var(--navy) 0%, var(--navy-700) 58%, var(--blue-700) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(32px, 4.4vw, 56px);
  position: relative; overflow: hidden;
  box-shadow: var(--sh-lg);
}
.ask::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 22px, transparent 22px 44px);
  pointer-events: none;
}
.ask__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
  position: relative;
}
.ask h2 { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 14px; color: #fff; }
.ask__lead { color: #b5d3e8; font-size: 16.8px; }
.ask__note { color: #8fb4d0; font-size: 14.2px; margin-top: 14px; }

.ask__form { display: grid; gap: 11px; }

/* Sélecteur candidat / entreprise */
.ask__seg { display: grid; grid-template-columns: 1fr 1fr; gap: 5px;
  background: rgba(255,255,255,.1); padding: 5px; border-radius: var(--r-pill); }
.ask__seg input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.ask__seg span {
  display: block; text-align: center; padding: 11px 8px;
  border-radius: var(--r-pill);
  font-family: var(--display); font-weight: 700; font-size: 14.6px;
  color: #cfe4f3; cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease);
}
.ask__seg input:checked + span { background: #fff; color: var(--navy); }
.ask__seg input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }

.ask__form input[type="text"],
.ask__form input[type="tel"] {
  width: 100%;
  border: 1.5px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
  transition: border-color .2s, background .2s;
}
.ask__form input::placeholder { color: #8fb4d0; }
.ask__form input:focus {
  outline: none; border-color: var(--orange);
  background: rgba(255,255,255,.13);
}
.ask .form__status.is-ok { background: rgba(255,255,255,.14); color: #fff; }
.ask .form__status.is-err { background: rgba(224,87,79,.22); color: #ffd9d6; }

@media (max-width: 900px) { .ask__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   16. FORMULAIRES
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 56px); align-items: start; }

.formcard {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--sh);
}
.tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--surface); padding: 6px; border-radius: var(--r-pill); margin-bottom: 28px; }
.tab {
  padding: 12px 16px; border-radius: var(--r-pill);
  font-family: var(--display); font-weight: 700; font-size: 15.5px;
  color: var(--muted); text-align: center;
  transition: background .25s, color .25s, box-shadow .25s;
}
.tab.is-active { background: #fff; color: var(--navy); box-shadow: var(--sh-sm); }

.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 14.5px; font-weight: 600; color: var(--navy); }
.field label span { color: var(--orange-700); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(6, 143, 221, .13);
}
.field input::placeholder, .field textarea::placeholder { color: #9db0be; }
/* --- Dépôt de fichier (CV) --- */
.filezone {
  display: block; position: relative;
  border: 2px dashed var(--line);
  background: var(--surface);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color .22s var(--ease), background .22s var(--ease);
}
.filezone:hover, .filezone.is-over { border-color: var(--blue); background: var(--blue-050); }
.filezone:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(6,143,221,.13); }
.filezone.is-err { border-color: #e0574f; background: #fdecec; }
/* Champ natif masqué mais accessible au clavier */
.filezone input[type="file"] {
  position: absolute; width: 1px; height: 1px;
  opacity: 0; overflow: hidden; padding: 0; border: 0;
}
.filezone__ic {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--blue-100); color: var(--blue);
  display: grid; place-items: center; margin: 0 auto 12px;
  transition: background .22s, color .22s;
}
.filezone:hover .filezone__ic { background: var(--orange); color: var(--navy-900); }
.filezone__ic svg { width: 22px; height: 22px; }
.filezone__t { display: block; font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--navy); }
.filezone__s { display: block; font-size: 13.5px; color: var(--muted); margin-top: 4px; }

.filepick {
  display: none; align-items: center; gap: 12px;
  background: #fff; border: 1.5px solid var(--blue);
  border-radius: 14px; padding: 12px 14px; margin-top: 10px;
}
.filepick.is-on { display: flex; }
.filepick__ic { width: 34px; height: 34px; border-radius: 10px; background: var(--blue-100); color: var(--blue); display: grid; place-items: center; flex: none; }
.filepick__ic svg { width: 17px; height: 17px; }
.filepick__n { font-weight: 600; font-size: 15px; color: var(--navy); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.filepick__s { font-size: 13px; color: var(--muted); flex: none; }
.filepick__x { margin-left: auto; width: 32px; height: 32px; border-radius: 9px; background: var(--surface); display: grid; place-items: center; flex: none; color: var(--muted); transition: background .2s, color .2s; }
.filepick__x:hover { background: #fdecec; color: #b4232a; }

.form__note { font-size: 13.5px; color: var(--muted); }
.form__note a { color: var(--blue); text-decoration: underline; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.consent input { width: 19px; height: 19px; margin-top: 2px; flex: none; accent-color: var(--blue); }
.form__status { font-size: 15px; font-weight: 600; padding: 13px 16px; border-radius: 14px; display: none; }
.form__status.is-ok { display: block; background: var(--blue-100); color: var(--navy-700); }
.form__status.is-err { display: block; background: #fdecec; color: #b4232a; }

.info-side { display: grid; gap: 16px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; }
.info-card h3 { font-size: 19px; color: var(--navy); margin-bottom: 16px; }
.info-list { display: grid; gap: 15px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--blue-100); color: var(--blue); display: grid; place-items: center; flex: none; }
.info-list svg { width: 19px; height: 19px; }
.info-list strong { display: block; font-size: 12.5px; font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; font-weight: 600; }
.info-list a, .info-list span { font-weight: 600; color: var(--navy); font-size: 16.5px; }
.info-list a:hover { color: var(--blue); }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.ftr { background: var(--navy-900); color: #9fbdd4; padding-block: clamp(46px, 6vw, 76px) 0; }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.ftr__logo { height: 52px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.ftr__about { font-size: 15.2px; max-width: 34ch; }
.ftr .ftr__h { font-family: var(--display); font-size: 15px; color: #fff; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 18px; font-weight: 800; }
.ftr ul { display: grid; gap: 11px; }
/* Cibles tactiles : 24 px minimum (WCAG 2.2). Sur un chantier, on clique
   avec des gants ou les mains sales — la marge n'est pas décorative. */
.ftr ul a, .ftr ul span { font-size: 15.2px; transition: color .2s; display: inline-flex; align-items: center; min-height: 24px; }
.ftr ul a:hover { color: var(--orange); }
.ftr__social { display: flex; gap: 10px; margin-top: 20px; }
.ftr__social a {
  width: 42px; height: 42px; border-radius: 13px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
}
.ftr__social a:hover { background: var(--blue); transform: translateY(-3px); }
.ftr__social svg { width: 19px; height: 19px; color: #fff; }
.ftr__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 22px 26px;
  display: flex; flex-wrap: wrap; gap: 12px 26px;
  align-items: center; justify-content: space-between;
  font-size: 14px;
}
.ftr__bottom a:hover { color: var(--orange); }
.ftr__legal { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.ftr__bottom a { display: inline-flex; align-items: center; min-height: 24px; }
/* Signature de l'agence qui a réalisé le site — discrète, jamais concurrente
   des liens légaux qui l'entourent. */
.ftr__credit {
  opacity: .55;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .16);
  transition: opacity .22s, color .22s;
}
.ftr__credit:hover { opacity: 1; }
@media (max-width: 640px) {
  .ftr__credit { padding-left: 0; border-left: 0; }
}

/* --------------------------------------------------------------------------
   18. BARRE D'APPEL MOBILE
   -------------------------------------------------------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(6, 48, 79, .18);
  box-shadow: 0 -6px 24px -10px rgba(6, 48, 79, .4);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 10px;
  font-family: var(--display); font-weight: 700; font-size: 15.5px;
}
.callbar svg { width: 18px; height: 18px; }
.callbar__tel { background: var(--orange); color: var(--navy-900); }
.callbar__mail { background: var(--navy); color: #fff; }

/* --------------------------------------------------------------------------
   19. PAGE INTERNE — HERO COMPACT
   -------------------------------------------------------------------------- */
.phero {
  background:
    radial-gradient(760px 380px at 88% -20%, rgba(6, 143, 221, .18), transparent 62%),
    radial-gradient(520px 320px at 2% 120%, rgba(252, 164, 39, .15), transparent 60%),
    linear-gradient(180deg, #fbfdff, #eef6fc);
  padding-block: clamp(46px, 6vw, 78px);
  position: relative; overflow: hidden;
}
.phero__inner { position: relative; z-index: 2; max-width: 780px; }
.phero h1 { font-size: clamp(33px, 5.2vw, 58px); color: var(--navy); margin-bottom: 18px; line-height: 1.02; }
.phero p { font-size: clamp(16.5px, 1.8vw, 20px); color: var(--muted); max-width: 60ch; }
.phero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.crumb { font-family: var(--mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }
.crumb a:hover { color: var(--orange-700); }
.crumb span { opacity: .5; }

/* Prose (mentions légales) */
.prose { max-width: 820px; }
.prose h2 { font-size: clamp(22px, 2.6vw, 30px); color: var(--navy); margin: 42px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); font-size: 16.4px; margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose a { color: var(--blue); text-decoration: underline; }
.prose strong { color: var(--ink); }
.todo { background: var(--orange-100); border-left: 4px solid var(--orange); padding: 14px 18px; border-radius: 0 12px 12px 0; font-size: 15px; color: #7a4c00; margin-bottom: 18px; }
/* Champs restant à renseigner dans les mentions légales */
.prose mark {
  background: var(--orange-100);
  color: #8a5500;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px dashed var(--orange);
}

/* --------------------------------------------------------------------------
   20. ANIMATIONS D'APPARITION
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .4s; }

/* --------------------------------------------------------------------------
   21. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  .doors { grid-template-columns: 1fr 1fr; }
  .cards--4, .sectors, .partners { grid-template-columns: repeat(2, 1fr); }
  .ftr__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .ftr__grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav, .hdr__cta { display: none; }
  .burger { display: flex; }
  .cards--3, .metiers, .steps, .trades { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .zone { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .cta-band { grid-template-columns: 1fr; }
  .topbar__hours { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .doors { grid-template-columns: 1fr; }
  .cards--3, .cards--2, .cards--4, .metiers, .steps, .trades, .sectors { grid-template-columns: 1fr; }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .partner__logo { height: 66px; }
  .partner__logo img { max-height: 66px; }
  .form__row { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; gap: 32px; }
  .callbar { display: grid; }
  body { padding-bottom: 54px; }
  .topbar { font-size: 13px; }
  .topbar__right { gap: 14px; }
  .hdr__inner { height: 74px; gap: 14px; }
  .hdr__logo img { height: 38px; }
  .hero__proof { gap: 8px 16px; }
  .ftr__bottom { justify-content: flex-start; }
}

/* Sous 360 px, le « nowrap » du titre déborderait : on le laisse se couper. */
@media (max-width: 360px) {
  .hero__title em { white-space: normal; }
  .hero__title { font-size: 34px; }
}

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

@media print {
  .hdr, .topbar, .callbar, .marquee, .cta-band { display: none !important; }
}
