/* Zehor Car, Agdal Rabat. Kit: or prestige #D4AF37, noir #000000,
   beige sable #F5F1E6, gris anthracite #2D2D2D, Montserrat.
   Shell: noir-dominant, the fleet is the one beige-sable block.
   Montserrat carries the titles (kit), Manrope carries body + micro type. */

:root {
  /* Kit, panneau 01, verbatim */
  --or:         #D4AF37;
  --noir:       #000000;
  --sable:      #F5F1E6;
  --anthracite: #2D2D2D;

  /* Derives */
  --encre:      #0B0B0B;   /* page ground, one notch off pure black */
  --encre-2:    #131313;   /* alternate dark block */
  --or-clair:   #E3C462;
  --or-sombre:  #A8862A;
  --sable-2:    #EBE4D2;   /* card plate on the beige band */
  --sable-3:    #DED5BE;   /* hairline on the beige band */

  --sur-noir:        #F5F1E6;
  --sur-noir-doux:   rgba(245, 241, 230, .74);
  --sur-noir-faible: rgba(245, 241, 230, .50);
  --ligne-noir:      rgba(245, 241, 230, .14);

  --sur-sable:       #17150F;
  --sur-sable-doux:  #565043;

  --titre: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --corps: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 54px);
  --nav-h: 76px;
  --r: 2px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--encre);
  color: var(--sur-noir);
  font-family: var(--corps);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--or); color: var(--noir); }

:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 3px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 400;
  background: var(--or); color: var(--noir); padding: 12px 18px;
  font-family: var(--corps); font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

/* ------------------------------------------------------------- typography */

.h1, .h2, .h3 {
  font-family: var(--titre);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.14;
  margin: 0;
}
.h1 { font-size: clamp(2.15rem, 5.4vw, 3.7rem); }
.h2 { font-size: clamp(1.6rem, 3.1vw, 2.35rem); line-height: 1.2; }
.h3 { font-size: clamp(1.06rem, 1.5vw, 1.2rem); line-height: 1.3; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.06rem; color: var(--sur-noir-doux); max-width: 62ch; }
.sur-sable .lead { color: var(--sur-sable-doux); }
.muted { color: var(--sur-noir-doux); }
.sur-sable .muted { color: var(--sur-sable-doux); }
.small { font-size: .875rem; }

/* micro type: the whole label floor is Manrope, spaced caps */
.micro {
  font-family: var(--corps);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sur-noir-faible);
  margin: 0 0 14px;
}
.sur-sable .micro { color: var(--sur-sable-doux); }

/* the three diamonds sitting above the car in their crest, as a separator */
.losanges {
  display: flex; gap: 7px; align-items: center;
  margin: 0 0 20px;
}
.losanges i {
  width: 6px; height: 9px; display: block;
  background: var(--or);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  opacity: .9;
}
.losanges--centre { justify-content: center; }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--r);
  background: transparent;
  font-family: var(--corps);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
/* primary is monochrome at rest, gold only on hover */
.btn--primary { background: var(--sable); color: var(--noir); border-color: var(--sable); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--or); border-color: var(--or); color: var(--noir); }

.btn--line { border-color: var(--ligne-noir); color: var(--sur-noir); }
.btn--line:hover, .btn--line:focus-visible { border-color: var(--or); color: var(--or); }

.sur-sable .btn--primary { background: var(--noir); color: var(--sable); border-color: var(--noir); }
.sur-sable .btn--primary:hover, .sur-sable .btn--primary:focus-visible { background: var(--or); border-color: var(--or); color: var(--noir); }
.sur-sable .btn--line { border-color: var(--sable-3); color: var(--sur-sable); }
.sur-sable .btn--line:hover, .sur-sable .btn--line:focus-visible { border-color: var(--or-sombre); color: var(--or-sombre); }

.btn--sm { padding: 10px 18px; font-size: .7rem; }
.btn--wide { width: 100%; }

/* -------------------------------------------------------------------- nav */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .62), rgba(0, 0, 0, 0));
  transition: opacity .3s var(--ease);
}
.nav.scrolled { background: var(--noir); border-bottom-color: var(--ligne-noir); }
.nav.scrolled::before { opacity: 0; }

.nav__in {
  width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
}

.marque { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.marque img { width: 38px; height: auto; }
.marque__txt { display: block; line-height: 1; }
.marque__nom {
  display: block; white-space: nowrap;
  font-family: var(--titre); font-weight: 800;
  font-size: 1.02rem; letter-spacing: .06em; color: var(--sable);
}
.marque__sous {
  display: block; margin-top: 4px; white-space: nowrap;
  font-family: var(--corps); font-weight: 600;
  font-size: .53rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--sur-noir-faible);
}

.nav__links { display: flex; align-items: center; justify-content: center; gap: 30px; }
.nav__links a {
  position: relative;
  font-family: var(--corps); font-weight: 600;
  font-size: .74rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--sur-noir-doux); text-decoration: none;
  padding: 6px 0;
  transition: color .22s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--or); transition: width .28s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--sable); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__end { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--ligne-noir); border-radius: var(--r);
  color: var(--sable); cursor: pointer;
}
.nav__burger span {
  display: block; width: 17px; height: 9px;
  border-top: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
}
body.nav-open .nav__burger span { border-top-color: transparent; border-bottom-color: transparent; }
body.nav-open .nav__burger::before { content: "\00d7"; font-size: 1.5rem; line-height: 1; }

/* the mobile menu is a SIBLING of the header, never a child: a header with a
   background/blur would otherwise become its containing block and collapse it */
.menu {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100dvh; z-index: 95;
  background: var(--noir);
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  padding: calc(var(--nav-h) + 24px) var(--pad) 40px;
}
body.nav-open .menu { display: flex; }
body.nav-open { overflow: hidden; }
body.nav-open .nav { background: var(--noir); border-bottom-color: transparent; z-index: 110; }
body.nav-open .nav::before { opacity: 0; }
.menu a {
  font-family: var(--titre); font-weight: 700;
  font-size: 1.55rem; color: var(--sable); text-decoration: none;
  padding: 13px 0; border-bottom: 1px solid var(--ligne-noir);
}
.menu a.active { color: var(--or); }
.menu .btn { margin-top: 22px; }

/* ------------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 60px) 0 46px;
  overflow: hidden;
}
.hero__fond { position: absolute; inset: 0; z-index: 0; }
.hero__fond picture { position: absolute; inset: 0; display: block; }
.hero__fond img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 58%;
}
.hero__voile {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .18) 34%, rgba(0, 0, 0, .82) 100%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero__titre { max-width: 17ch; text-shadow: 0 2px 30px rgba(0, 0, 0, .45); }
.hero__sous {
  margin: 18px 0 0;
  font-size: 1.1rem; color: var(--sur-noir);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .5);
}

/* hero devis widget */
.recherche {
  margin-top: 34px;
  background: rgba(11, 11, 11, .84);
  border: 1px solid var(--ligne-noir);
  border-radius: var(--r);
  padding: 18px;
  display: grid; gap: 14px;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  align-items: end;
  max-width: 940px;
}
.recherche__champ { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.recherche__champ label {
  font-family: var(--corps); font-weight: 700;
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sur-noir-faible);
}
.recherche select, .recherche input {
  width: 100%; min-width: 0;
  padding: 12px 13px;
  background: var(--encre-2); color: var(--sable);
  border: 1px solid var(--ligne-noir); border-radius: var(--r);
  font-family: var(--corps); font-size: .93rem;
}
.recherche select:focus, .recherche input:focus { border-color: var(--or); outline: none; }

/* ---------------------------------------------------------------- sections */

.sec { padding: clamp(58px, 8vw, 96px) 0; }
.sec--serre { padding: clamp(42px, 5.5vw, 64px) 0; }
.sec--sable { background: var(--sable); color: var(--sur-sable); }
.sec--encre2 { background: var(--encre-2); }

.sec__tete { max-width: 60ch; margin-bottom: clamp(30px, 4vw, 46px); }
.sec__tete .h2 { margin-bottom: 12px; }

/* faits band under the hero */
.faits { background: var(--noir); border-bottom: 1px solid var(--ligne-noir); }
.faits__grille {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--ligne-noir);
}
.fait {
  padding: 24px 26px;
  border-right: 1px solid var(--ligne-noir);
}
.fait dt {
  font-family: var(--corps); font-weight: 700;
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sur-noir-faible); margin-bottom: 7px;
}
.fait dd {
  margin: 0;
  font-family: var(--titre); font-weight: 600;
  font-size: 1rem; color: var(--sable);
}
.fait dd a { text-decoration: none; }
.fait dd a:hover { color: var(--or); }

/* --------------------------------------------------------------- la flotte */

.filtres { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.filtre {
  padding: 9px 17px;
  background: transparent; color: var(--sur-sable-doux);
  border: 1px solid var(--sable-3); border-radius: 100px;
  font-family: var(--corps); font-weight: 700;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.filtre[aria-pressed="true"] { background: var(--noir); border-color: var(--noir); color: var(--sable); }
.filtre:hover { border-color: var(--or-sombre); color: var(--or-sombre); }
.filtre[aria-pressed="true"]:hover { color: var(--or); }

.flotte {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.veh {
  display: flex; flex-direction: column;
  background: var(--sable-2);
  border: 1px solid var(--sable-3);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.veh:hover { border-color: var(--or-sombre); transform: translateY(-3px); }
.veh.is-hidden { display: none; }
.veh.is-entering { animation: pop .42s var(--ease) both; }
@keyframes pop { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.veh__media {
  position: relative;
  padding: 14px 14px 0;
  background: linear-gradient(to bottom, #FFFDF7, var(--sable-2));
}
.veh__media img {
  width: 100%; height: 168px;
  object-fit: contain; object-position: center bottom;
}
.veh__cat {
  position: absolute; top: 12px; left: 14px;
  font-family: var(--corps); font-weight: 700;
  font-size: .61rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sur-sable-doux);
}
.veh__corps { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.veh__nom { margin-bottom: 12px; color: var(--sur-sable); }
.veh__specs {
  display: flex; flex-wrap: wrap; gap: 5px 14px;
  margin: 0 0 16px; padding: 12px 0 0;
  border-top: 1px solid var(--sable-3);
  list-style: none;
  font-size: .82rem; color: var(--sur-sable-doux);
}
.veh__pied {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.veh__prix { margin: 0; font-size: .84rem; color: var(--sur-sable-doux); }
.veh__prix b { display: block; font-family: var(--titre); font-weight: 700; font-size: .98rem; color: var(--sur-sable); }

/* ---------------------------------------------------------- en pratique */

.pratique {
  display: grid; gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ligne-noir);
  border: 1px solid var(--ligne-noir);
}
.pratique > div { background: var(--encre); padding: 30px 28px; }
.pratique .h3 { margin-bottom: 10px; }
.pratique p { color: var(--sur-noir-doux); font-size: .95rem; }
.pico { display: block; width: 30px; height: 30px; margin-bottom: 16px; color: var(--or); }
.pico svg { display: block; width: 30px; height: 30px; }

/* ------------------------------------------------------------ split blocks */

.duo {
  display: grid; gap: clamp(28px, 5vw, 60px);
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.duo__media { position: relative; align-self: center; }
.duo__media img {
  width: 100%; max-width: 560px; height: 400px;
  object-fit: cover;
  border-radius: var(--r);
}
.duo__media::after {
  content: ""; position: absolute; left: 14px; bottom: -14px; right: 14px; height: 1px;
  background: var(--or); opacity: .55;
}

/* --------------------------------------------------------------- page head */

.tete {
  position: relative;
  padding: calc(var(--nav-h) + 74px) 0 62px;
  overflow: hidden;
}
.tete__fond { position: absolute; inset: 0; z-index: 0; }
.tete__fond img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tete__voile {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .72), rgba(0, 0, 0, .52));
}
.tete .wrap { position: relative; z-index: 2; }
.tete .lead { margin-top: 14px; color: var(--sur-noir); }

/* --------------------------------------------------------------- CTA band */

.bande {
  position: relative; overflow: hidden;
  padding: clamp(56px, 7vw, 84px) 0;
  text-align: center;
}
.bande__fond { position: absolute; inset: 0; z-index: 0; }
.bande__fond img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bande__voile { position: absolute; inset: 0; z-index: 1; background: rgba(0, 0, 0, .74); }
.bande .wrap { position: relative; z-index: 2; }
.bande .h2 { margin-bottom: 14px; }
.bande__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

/* ---------------------------------------------------------------- contact */

.coord { display: grid; gap: 34px; grid-template-columns: .9fr 1.1fr; align-items: stretch; }
.coord__liste { list-style: none; margin: 0; padding: 0; }
.coord__liste li { padding: 18px 0; border-bottom: 1px solid var(--ligne-noir); }
.coord__liste li:first-child { padding-top: 0; }
.coord__k {
  display: block;
  font-family: var(--corps); font-weight: 700;
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sur-noir-faible); margin-bottom: 6px;
}
.coord__v { font-family: var(--titre); font-weight: 600; font-size: 1.02rem; color: var(--sable); text-decoration: none; }
a.coord__v:hover { color: var(--or); }
.horaires { list-style: none; margin: 0; padding: 0; font-size: .95rem; }
.horaires li { display: flex; justify-content: space-between; gap: 18px; padding: 5px 0; color: var(--sur-noir-doux); }
.horaires b { font-weight: 600; color: var(--sable); }

.carte { position: relative; min-height: 340px; border: 1px solid var(--ligne-noir); border-radius: var(--r); overflow: hidden; }
.carte iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ----------------------------------------------------------------- footer */

.pied { background: var(--noir); border-top: 1px solid var(--ligne-noir); padding: 56px 0 26px; }
.pied__grille { display: grid; gap: 34px; grid-template-columns: 1.4fr 1fr 1fr; }
.pied__logo { width: 148px; height: auto; margin-bottom: 18px; }
.pied h2 {
  font-family: var(--corps); font-weight: 700;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sur-noir-faible); margin: 0 0 14px;
}
.pied ul { list-style: none; margin: 0; padding: 0; }
.pied li { margin-bottom: 9px; }
.pied a { color: var(--sur-noir-doux); text-decoration: none; font-size: .93rem; }
.pied a:hover { color: var(--or); }
.pied__bas {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--ligne-noir);
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between;
  font-size: .78rem; color: var(--sur-noir-faible);
}
.pied__bas a { font-size: .78rem; text-transform: uppercase; text-decoration: none; letter-spacing: .1em; }

/* ------------------------------------------------------------------ devis */

.devis {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.devis.open { display: flex; }
.devis__fond { position: absolute; inset: 0; background: rgba(0, 0, 0, .74); }
.devis__panneau {
  position: relative;
  width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  background: var(--encre-2);
  border: 1px solid var(--ligne-noir);
  border-radius: var(--r);
  padding: 30px;
}
.devis__fermer {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px;
  background: transparent; border: 1px solid var(--ligne-noir); border-radius: var(--r);
  color: var(--sur-noir-doux); font-size: 1.05rem; cursor: pointer;
}
.devis__fermer:hover { color: var(--or); border-color: var(--or); }
.devis__barre { height: 2px; background: var(--ligne-noir); margin: 18px 0 24px; }
.devis__barre i { display: block; height: 100%; width: 33%; background: var(--or); transition: width .3s var(--ease); }
.devis__etape { display: none; }
.devis__etape.active { display: block; }
.devis__q { font-family: var(--titre); font-weight: 700; font-size: 1.02rem; margin: 0 0 16px; }
.devis__opts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.devis__opt {
  padding: 9px 15px;
  background: transparent; color: var(--sur-noir-doux);
  border: 1px solid var(--ligne-noir); border-radius: 100px;
  font-family: var(--corps); font-size: .84rem; cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.devis__opt:hover { border-color: var(--or); color: var(--sable); }
.devis__opt[aria-pressed="true"] { background: var(--sable); border-color: var(--sable); color: var(--noir); }
.devis__rang { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.devis__champ { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.devis__champ label {
  font-family: var(--corps); font-weight: 700;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sur-noir-faible);
}
.devis__champ input {
  width: 100%; min-width: 0; padding: 11px 12px;
  background: var(--encre); color: var(--sable);
  border: 1px solid var(--ligne-noir); border-radius: var(--r);
  font-family: var(--corps); font-size: .92rem;
}
.devis__champ input:focus { border-color: var(--or); outline: none; }
.devis__err { min-height: 20px; margin: 0 0 10px; font-size: .82rem; color: var(--or-clair); }
.devis__nav { display: flex; gap: 10px; }
.devis__nav .btn { flex: 1; }
.devis__recap { list-style: none; margin: 0 0 18px; padding: 0; }
.devis__recap li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--ligne-noir);
  font-size: .92rem;
}
.devis__recap li span:first-child { color: var(--sur-noir-faible); }
.devis__reveler { display: grid; gap: 10px; margin-bottom: 18px; }

/* ---------------------------------------------------------------- reveals */

[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-d="1"] { transition-delay: .07s; }
[data-d="2"] { transition-delay: .14s; }
[data-d="3"] { transition-delay: .21s; }
[data-d="4"] { transition-delay: .28s; }
[data-d="5"] { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .veh.is-entering { animation: none; }
}

/* ------------------------------------------------------------- responsive */

@media (max-width: 1040px) {
  .flotte { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .recherche { grid-template-columns: 1fr 1fr; }
  .recherche .btn { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__in { grid-template-columns: 1fr auto; }
  .duo { grid-template-columns: 1fr; }
  .duo__media img { max-width: 100%; height: 320px; }
  .coord { grid-template-columns: 1fr; }
  .pied__grille { grid-template-columns: 1fr 1fr; }
  .pratique { grid-template-columns: 1fr; }
  .faits__grille { grid-template-columns: 1fr; border-left: 0; }
  .fait { border-right: 0; border-bottom: 1px solid var(--ligne-noir); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  /* the header CTA would squeeze the wordmark onto three lines; the menu carries it */
  .nav__end > .btn { display: none; }
  .marque img { width: 34px; }
  .marque__nom { font-size: .95rem; }
  .hero { min-height: 82vh; padding-top: calc(var(--nav-h) + 40px); }
  .hero__titre { max-width: 100%; }
  .recherche { grid-template-columns: 1fr; }
  .flotte { grid-template-columns: minmax(0, 1fr); }
  .veh__media img { height: 150px; }
  .pied__grille { grid-template-columns: 1fr; gap: 26px; }
  .devis__panneau { padding: 24px 20px; }
  .devis__rang { grid-template-columns: 1fr; }
  .bande__actions .btn { width: 100%; }
}
