/* ============================================================
   FREDXPREX LTD. — site descriptif
   Palette tirée du logo : aubergine #3E1742 + orange #EA562E
   ============================================================ */

:root {
  /* Marque */
  --plum-900: #240D27;
  --plum-800: #2E1131;
  --plum:     #3E1742;   /* violet du logo */
  --plum-600: #55245A;
  --plum-500: #6E3874;
  --plum-300: #A98CAD;
  --plum-100: #EFE8F0;

  --orange:     #EA562E; /* orange du logo — aplats, icônes, décor */
  --orange-600: #D2431D;
  --orange-400: #F2764F; /* texte orange sur fond sombre */
  --orange-100: #FDEDE8;
  /* L'orange de la marque ne donne que 3,58:1 sur blanc. Cette variante
     assombrie sert uniquement au TEXTE sur fond clair (5,21:1 — WCAG AA). */
  --orange-txt: #C43D18;
  /* Fond de bouton : le texte blanc sur l'orange de la marque ne donne que
     3,58:1. Ces teintes gardent la même famille et passent AA (4,99 / 6,40). */
  --orange-btn:   #C93F1A;
  --orange-btn-h: #AE3311;

  --ink:    #1E1220;
  --body:   #5B4E5E;
  --line:   #E7DFE9;
  --bg:     #FFFFFF;
  --bg-alt: #FAF7FB;

  --f-head: "Archivo", "Segoe UI", system-ui, sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --pad: clamp(1.1rem, 4vw, 2.5rem);
  --r: 16px;
  --r-sm: 10px;

  --sh-sm: 0 2px 10px rgba(62, 23, 66, .07);
  --sh:    0 14px 38px rgba(62, 23, 66, .12);
  --sh-lg: 0 28px 70px rgba(62, 23, 66, .20);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --out:  cubic-bezier(.16, 1, .3, 1);
  --hdr-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr-h) + 14px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--body);
  font-family: var(--f-body); font-size: 16px; line-height: 1.68;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body.lock { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
button { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--f-head); color: var(--ink); line-height: 1.14; letter-spacing: -.02em; font-weight: 800; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ic { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.skip {
  position: fixed; top: -80px; left: 12px; z-index: 999;
  background: var(--plum); color: #fff; padding: 11px 18px; font-weight: 600;
  border-radius: 0 0 var(--r-sm) var(--r-sm); transition: top .2s var(--ease);
}
.skip:focus { top: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

/* ============ LA ROUTE (motif signature du logo) ============ */
.road { position: relative; height: 26px; background: var(--plum); overflow: hidden; }
.road > i {
  position: absolute; left: 0; right: -200px; top: 50%; height: 4px; transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, #fff 0 26px, transparent 26px 52px);
  animation: drive 2.4s linear infinite;
}
.road--thin { height: 10px; }
.road--thin > i { height: 3px; background: repeating-linear-gradient(90deg, #fff 0 18px, transparent 18px 38px); }
.road--hero { height: 34px; }
.road--hero > i { height: 5px; }
@keyframes drive { to { transform: translateY(-50%) translateX(-52px); } }

/* ============ BOUTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: var(--r-sm); border: 2px solid transparent;
  background: var(--orange-btn); color: #fff; font-weight: 700; font-size: .95rem;
  cursor: pointer; white-space: nowrap; box-shadow: 0 10px 24px rgba(201, 63, 26, .32);
  transition: transform .18s var(--ease), box-shadow .22s var(--ease), background-color .2s var(--ease);
}
.btn:hover { background: var(--orange-btn-h); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(174, 51, 17, .4); }
.btn:active { transform: translateY(0); }
.btn .ic { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.btn:hover .ic { transform: translateX(4px); }
.btn--sm { padding: .6rem 1.1rem; font-size: .875rem; box-shadow: none; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ============ EN-TÊTE ============ */
.hdr {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px); transition: box-shadow .25s var(--ease);
}
.hdr.stuck { box-shadow: var(--sh-sm); }
.hdr__in { display: flex; align-items: center; gap: 1.25rem; min-height: var(--hdr-h); }
.hdr__logo { flex: none; }
.hdr__logo img { width: 172px; height: auto; }

.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: .15rem; }
.nav a {
  display: block; padding: .55rem .8rem; border-radius: var(--r-sm);
  font-weight: 600; font-size: .93rem; color: var(--plum-600); white-space: nowrap;
  position: relative; transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav a:hover { color: var(--plum); background: var(--plum-100); }
.nav a.on { color: var(--orange); }
.nav a.on::after { content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .16rem; height: 2.5px; border-radius: 2px; background: var(--orange); }

.hdr__act { display: flex; align-items: center; gap: .7rem; flex: none; }
.lang { display: inline-flex; align-items: center; gap: .3rem; color: var(--plum-500); }
.lang .ic { width: 16px; height: 16px; }
.lang button {
  background: none; border: 0; cursor: pointer; padding: .2rem .25rem;
  font-weight: 700; font-size: .84rem; color: var(--plum-500); border-radius: 4px;
  transition: color .18s var(--ease);
}
.lang button:hover { color: var(--plum); }
.lang button.on { color: var(--orange-txt); }

.burger {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: var(--plum-100); border: 0; border-radius: var(--r-sm); color: var(--plum); cursor: pointer;
}
.burger .c { display: none; }
.burger[aria-expanded="true"] .o { display: none; }
.burger[aria-expanded="true"] .c { display: block; }
.scrim { position: fixed; inset: 0; z-index: 90; background: rgba(36,13,39,.5); backdrop-filter: blur(2px); }

/* ============ HÉROS ============ */
.hero {
  position: relative; isolation: isolate; overflow: hidden; text-align: center;
  background: linear-gradient(165deg, var(--plum-900) 0%, var(--plum) 52%, var(--plum-600) 100%);
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2; opacity: .5;
  background-image: repeating-linear-gradient(115deg, transparent 0 46px, rgba(255,255,255,.045) 46px 48px);
}
.hero__glow {
  position: absolute; z-index: -1; width: min(760px, 105vw); aspect-ratio: 1;
  top: -32%; left: 50%; transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(234,86,46,.36), rgba(234,86,46,0) 66%);
}
.hero__in { position: relative; display: flex; flex-direction: column; align-items: center; }

.kicker {
  display: inline-flex; align-items: center; gap: .55rem; padding: .42rem 1rem;
  border-radius: 99px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  color: #F6E9F7; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(234,86,46,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(234,86,46,.7); } 70% { box-shadow: 0 0 0 12px rgba(234,86,46,0); } 100% { box-shadow: 0 0 0 0 rgba(234,86,46,0); } }

.hero__t { margin: 1.4rem 0 0; display: flex; flex-direction: column; gap: .7rem; }
.hero__brand {
  font-family: var(--f-head); font-weight: 900; color: #fff;
  font-size: clamp(2.4rem, 7vw, 4.6rem); letter-spacing: -.035em; line-height: 1;
}
.hero__brand em { font-style: normal; color: var(--orange); }
.hero__sub {
  font-family: var(--f-body); font-weight: 500; color: #E9D9EB;
  font-size: clamp(1.05rem, 2.3vw, 1.5rem); letter-spacing: 0; line-height: 1.4; max-width: 22ch;
  margin-inline: auto;
}
.hero__slogan {
  margin-top: 1.1rem; font-family: var(--f-head); font-style: italic; font-weight: 600;
  color: var(--orange-400); font-size: clamp(.95rem, 1.9vw, 1.2rem); letter-spacing: .01em;
}

.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-top: 1.7rem; }
.pills li {
  padding: .45rem 1.15rem; border-radius: 99px; font-weight: 700; font-size: .86rem;
  color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
}
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2.2rem; }

/* ============ SECTIONS ============ */
.sec { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.sec--tint { background: var(--bg-alt); }
.sec--dark { position: relative; background: var(--plum); color: #E4D6E6; overflow: hidden; }
.sec--dark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(760px 380px at 88% -8%, rgba(234,86,46,.2), transparent 62%);
  pointer-events: none;
}
.sec--dark > .wrap { position: relative; }

.head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-top: .5rem; }
.head--light h2 { color: #fff; }
.head__lede { margin-top: .8rem; font-size: 1.04rem; }
.head--light .head__lede { color: var(--plum-300); }

.eyebrow {
  font-family: var(--f-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange-txt);
}
.eyebrow--light { color: var(--orange-400); }
/* Sur fond aubergine, l'orange assombri du texte devient illisible (2,86:1).
   On repasse à la teinte claire, qui donne 5,32:1. */
.head--light .eyebrow, .sec--dark .eyebrow { color: var(--orange-400); }

.prose { max-width: 760px; display: flex; flex-direction: column; gap: 1rem; }
.prose p { font-size: 1.02rem; }
.prose .lead { font-size: clamp(1.1rem, 2vw, 1.28rem); color: var(--ink); font-weight: 500; line-height: 1.5; }
.prose--light p { color: var(--plum-300); }
.prose--light { margin-top: 2.5rem; }

/* ============ CHIFFRES ============ */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: clamp(2.2rem, 5vw, 3.2rem); }
.facts li {
  padding: 1.6rem 1.3rem; border-radius: var(--r); background: var(--bg-alt);
  border: 1px solid var(--line); border-left: 4px solid var(--orange);
  transition: transform .25s var(--out), box-shadow .25s var(--out);
}
.facts li:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.facts__n { display: block; font-family: var(--f-head); font-weight: 900; font-size: clamp(2rem, 4.4vw, 2.9rem); color: var(--plum); line-height: 1; }
.facts__u { color: var(--orange); }
.facts__l { display: block; margin-top: .5rem; font-size: .9rem; font-weight: 500; }

/* ============ ROUTE DES 7 MARCHÉS ============ */
.route {
  position: relative; display: grid; grid-template-columns: repeat(7, 1fr);
  gap: .5rem; margin-top: 1rem; padding-top: 2.6rem;
}
.route::before {
  content: ""; position: absolute; left: 4%; right: 4%; top: 14px; height: 3px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.55) 0 14px, transparent 14px 30px);
}
.route li { position: relative; text-align: center; }
.route__p {
  position: absolute; top: -2.6rem; left: 50%; transform: translateX(-50%);
  width: 15px; height: 15px; border-radius: 50%; background: var(--orange);
  border: 3px solid var(--plum); box-shadow: 0 0 0 3px rgba(234,86,46,.3);
  transition: transform .25s var(--out), box-shadow .25s var(--out);
}
.route li:hover .route__p { transform: translateX(-50%) scale(1.35); box-shadow: 0 0 0 7px rgba(234,86,46,.22); }
.route__c { display: block; font-family: var(--f-head); font-weight: 700; font-size: .93rem; color: #fff; }

/* ============ GRILLES / CARTES ============ */
.grid { display: grid; gap: 1.15rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; overflow: hidden; padding: 1.9rem 1.6rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  transition: transform .28s var(--out), box-shadow .28s var(--out), border-color .28s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card__i {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px;
  background: var(--plum); color: #fff; margin-bottom: 1.15rem;
  transition: background-color .28s var(--ease), transform .28s var(--out);
}
.card__i .ic { width: 25px; height: 25px; }
.card:hover .card__i { background: var(--orange); transform: rotate(-6deg) scale(1.06); }
.card h3 { font-size: 1.1rem; margin-bottom: .55rem; }
.card p { font-size: .93rem; }

/* ============ VALEURS ============ */
.vals { margin-top: 2.4rem; }
.val { text-align: center; padding: 1.9rem 1.2rem; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: transform .28s var(--out), box-shadow .28s var(--out); }
.val:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.val__i {
  display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 1.1rem;
  border-radius: 50%; background: var(--orange-100); color: var(--orange);
  transition: background-color .28s var(--ease), color .28s var(--ease);
}
.val:hover .val__i { background: var(--orange); color: #fff; }
.val__i .ic { width: 27px; height: 27px; }
.val h3 { font-size: 1.02rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; color: var(--plum); }
.val p { font-size: .89rem; }

/* ============ CROISSANCE + MISSION ============ */
.grow { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.grow__txt { display: flex; flex-direction: column; gap: 1rem; }
.grow__txt h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin: .4rem 0 .3rem; }
.grow__txt p { font-size: 1rem; }

.mission {
  position: relative; overflow: hidden; padding: clamp(1.7rem, 3.4vw, 2.4rem);
  border-radius: var(--r); color: #EFE2F0; box-shadow: var(--sh);
  background: linear-gradient(160deg, var(--plum) 0%, var(--plum-900) 100%);
  display: flex; flex-direction: column; gap: .85rem;
}
.mission::after { content: ""; position: absolute; right: -60px; top: -60px; width: 190px; height: 190px; border-radius: 50%; background: rgba(234,86,46,.14); }
.mission__i { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--orange); color: #fff; margin-bottom: .3rem; }
.mission__i .ic { width: 25px; height: 25px; }
.mission h3 { color: #fff; font-size: clamp(1.2rem, 2.3vw, 1.5rem); }
.mission p { font-size: .96rem; }
.mission__hi { font-family: var(--f-head); font-weight: 800; font-size: 1.15rem; color: var(--orange-400); }
.mission__vow { display: flex; flex-direction: column; gap: .25rem; margin-top: .3rem; padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.16); }
.mission__vow span { font-family: var(--f-head); font-weight: 700; color: #fff; font-size: 1rem; }

/* ============ APPEL À L'ACTION ============ */
.cta { position: relative; background: var(--plum-900); color: #E4D6E6; padding: clamp(3rem, 6vw, 4.5rem) 0 0; overflow: hidden; }
.cta__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem; padding-bottom: clamp(3rem, 6vw, 4.5rem); }
.cta__in > div { max-width: 620px; display: flex; flex-direction: column; gap: .7rem; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta p { font-size: 1rem; }

/* ============ CONTACT ============ */
.person {
  position: relative; overflow: hidden; padding: 1.9rem 1.4rem; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  display: flex; flex-direction: column;
  transition: transform .28s var(--out), box-shadow .28s var(--out);
}
/* Les liens sont poussés en bas : les cartes restent alignées même quand
   l'une d'elles n'a pas d'intitulé de poste. */
.person__l:first-of-type { margin-top: auto; padding-top: .6rem; }
.person::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--plum), var(--orange)); }
.person:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.person__av {
  display: grid; place-items: center; width: 68px; height: 68px; margin: .6rem auto 1rem;
  border-radius: 50%; background: linear-gradient(145deg, var(--plum), var(--plum-600));
  color: #fff; font-family: var(--f-head); font-weight: 800; font-size: 1.4rem; letter-spacing: .04em;
}
.person__n { font-size: 1.05rem; font-weight: 600; color: var(--plum); }
.person__n strong { font-weight: 900; color: var(--ink); }
.person__r {
  display: inline-block; margin: .5rem 0 1.1rem; padding: .25rem .8rem; border-radius: 99px;
  background: var(--orange-100); color: var(--orange-txt); font-size: .78rem; font-weight: 700;
}
.person__l {
  display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .6rem .7rem;
  margin-top: .45rem; border-radius: var(--r-sm); background: var(--bg-alt); border: 1px solid var(--line);
  font-size: .88rem; font-weight: 600; color: var(--plum); word-break: break-word;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.person__l .ic { width: 16px; height: 16px; color: var(--orange); }
.person__l:hover { background: var(--plum); border-color: var(--plum); color: #fff; }
.person__l:hover .ic { color: #fff; }

.reach {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
  margin-top: 1.15rem; padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--r);
}
.reach__k { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--plum-500); margin-bottom: .7rem; }
.reach__nums { display: flex; flex-direction: column; gap: .5rem; }
.reach__nums a, .reach__mail, .reach__map {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--plum);
  font-size: 1rem; transition: color .18s var(--ease);
}
.reach__nums a .ic, .reach__mail .ic, .reach__map .ic { width: 17px; height: 17px; color: var(--orange); }
.reach__nums a:hover, .reach__mail:hover, .reach__map:hover { color: var(--orange); }
.reach__addr { font-size: .95rem; line-height: 1.6; }
.reach__map { margin-top: .7rem; font-size: .88rem; }
.reach__mail { word-break: break-word; }

/* ============ PIED DE PAGE ============ */
.ft { background: var(--plum-900); color: var(--plum-300); }
.ft__in { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); padding-block: clamp(2.6rem, 5vw, 3.6rem); }
.ft__logo { width: 190px; height: auto; }
.ft__tag { margin-top: 1rem; font-family: var(--f-head); font-style: italic; font-weight: 600; color: var(--orange-400); font-size: .95rem; }
.ft__note { margin-top: .5rem; font-size: .88rem; max-width: 34ch; }
.ft h2 { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: #fff; margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid rgba(234,86,46,.55); }
.ft ul { display: flex; flex-direction: column; gap: .55rem; }
.ft a { font-size: .9rem; transition: color .18s var(--ease), padding-left .18s var(--ease); }
.ft a:hover { color: #fff; padding-left: 4px; }
.ft__addr { margin-top: 1rem; font-size: .88rem; line-height: 1.6; }
.ft__bot {
  display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; justify-content: space-between;
  padding-block: 1.3rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem;
}

/* ============ HAUT DE PAGE ============ */
.top {
  position: fixed; right: 18px; bottom: 18px; z-index: 80; width: 46px; height: 46px;
  display: grid; place-items: center; border: 0; border-radius: 50%; cursor: pointer;
  background: var(--plum); color: #fff; box-shadow: var(--sh);
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.top:hover { background: var(--orange); transform: translateY(-3px); }

/* ============ APPARITION AU DÉFILEMENT ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--out), transform .7s var(--out); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1040px) {
  .nav {
    position: fixed; inset: var(--hdr-h) 0 auto 0; z-index: 95; margin: 0;
    background: #fff; box-shadow: var(--sh-lg); padding: 1rem var(--pad) 1.6rem;
    max-height: calc(100vh - var(--hdr-h)); overflow-y: auto;
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: transform .25s var(--out), opacity .25s var(--ease), visibility .25s;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a { padding: .95rem .5rem; font-size: 1rem; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav a.on::after { display: none; }
  .nav a.on { background: var(--plum-100); padding-left: .9rem; }
  .burger { display: flex; }
  .grow { grid-template-columns: 1fr; }
  .route { grid-template-columns: repeat(4, 1fr); row-gap: 2.8rem; }
  .route::before { display: none; }
  .route__p { top: -1.9rem; }
}

@media (max-width: 880px) {
  .grid--3, .grid--4, .reach, .ft__in { grid-template-columns: repeat(2, 1fr); }
  .ft__in { grid-template-columns: 1fr 1fr; }
  .ft__brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --hdr-h: 66px; }
  .hdr__logo img { width: 138px; }
  .hdr__act .btn--sm { display: none; }
  .grid--3, .grid--4, .facts, .reach { grid-template-columns: 1fr; }
  .route { grid-template-columns: repeat(2, 1fr); }
  .ft__in { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .cta__in .btn { width: 100%; }
  .facts li { border-left-width: 4px; }
}

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

@media print {
  .hdr, .scrim, .top, .road, .hero__glow { display: none !important; }
  body { color: #000; }
  .sec { padding: 1rem 0; }
  .card, .person, .val { box-shadow: none; border: 1px solid #ccc; }
}
