/* ============================================================
   OXYCOUPE JADIDA — Sections
   ============================================================ */

/* ============================================================
   PRELOADER — "la coupe" : an oxy-fuel torch cuts the plate open
   ============================================================ */
.pre {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: transparent;
  pointer-events: all;
}
.pre[hidden] { display: none; }

/* The two steel halves that get cut apart */
.pre__plate {
  position: absolute;
  left: 0; right: 0;
  background: var(--ink);
  overflow: hidden;
  will-change: transform;
}
.pre__plate::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--grain-url);
  opacity: .28;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.pre__plate--t { top: 0; height: 50%; }
.pre__plate--b { bottom: 0; height: 50%; }

/* Faint blueprint grid inside the plate */
.pre__plate::before {
  content: "";
  position: absolute; inset: -1px;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 68px 68px;
  pointer-events: none;
}

/* Torch canvas sits on the seam */
.pre__canvas {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 220px;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
}

/* Content pinned to the plates so it splits with them */
.pre__inner {
  position: absolute;
  left: 0; right: 0;
  height: 100vh;
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.pre__plate--t .pre__inner { top: 0; }
.pre__plate--b .pre__inner { bottom: 0; }

.pre__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-5);
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.pre__row--b { align-items: flex-end; }

/* The wordmark is duplicated inside both plates and centred on the seam,
   so the cut travels straight through it and it splits with the steel. */
.pre__brand {
  position: absolute;
  left: 50%;
  width: min(68vw, 380px);
  z-index: 2;
  pointer-events: none;
}
.pre__plate--t .pre__brand { bottom: 0; transform: translate(-50%, 50%); }
.pre__plate--b .pre__brand { top: 0;    transform: translate(-50%, -50%); }
.pre__brand img { width: 100%; opacity: .96; }

.pre__count {
  font-family: var(--f-display);
  font-variation-settings: "wdth" 118;
  font-weight: 700;
  font-size: clamp(2.5rem, 1rem + 6vw, 6rem);
  line-height: .8;
  letter-spacing: -.04em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.pre__count sup {
  font-size: .28em;
  vertical-align: super;
  color: var(--blue-400);
  letter-spacing: 0;
}

.pre__bar {
  position: relative;
  width: min(38vw, 320px);
  height: 1px;
  background: rgba(255,255,255,.16);
  overflow: hidden;
}
.pre__bar i {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--blue-400), var(--molten-hot));
  transform: scaleX(0);
  transform-origin: left;
}

.pre__skip {
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  transition: color .2s;
  pointer-events: all;
}
.pre__skip:hover { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding-bottom: clamp(1.25rem, 2vw, 2.25rem);
}

.hero__bg {
  position: absolute;
  inset: -12% 0;          /* headroom so the scroll parallax never exposes an edge */
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}
.hero__bg img,
.hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 56%;
  /* graded in-browser so the footage reads as one cinematic piece */
  filter: brightness(.82) contrast(1.08) saturate(.82);
}
.hero__bg video { opacity: 0; transition: opacity 1.2s ease; }
.hero__bg video.is-ready { opacity: 1; }

.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    /* pool of shade under the headline, left-weighted */
    radial-gradient(105% 78% at 6% 62%, rgba(8,9,12,.86) 0%, rgba(8,9,12,.55) 34%, rgba(8,9,12,0) 72%),
    /* top for the header, bottom for the stat rail */
    linear-gradient(180deg, rgba(8,9,12,.68) 0%, rgba(8,9,12,.10) 20%, rgba(8,9,12,0) 40%, rgba(8,9,12,.62) 82%, rgba(8,9,12,.95) 100%);
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: -50%; z-index: 2;
  background-image: var(--grain-url);
  opacity: .42;
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: grainShift 6s steps(6) infinite;
}
/* Faint structural grid — a nod to the shop drawing */
.hero__mesh {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  opacity: .8;
}

.hero__in {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: calc(var(--header-h) + 3rem);
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1.5rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 2.25rem);
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  text-shadow: 0 1px 14px rgba(8,9,12,.85);
}
.hero__eyebrow b {
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .55em;
}
.hero__eyebrow b::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blue-400);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(91,139,255,.22);
}
.hero__eyebrow span { opacity: .62; }
.hero__eyebrow span:nth-of-type(odd) { opacity: .34; }

.hero__title {
  font-family: var(--f-display);
  /* sized to hold the full tagline on three lines without overflowing */
  font-size: clamp(1.85rem, .3rem + 4.45vw, 5.1rem);
  font-weight: 760;
  line-height: .92;
  letter-spacing: -.042em;
  font-variation-settings: "wdth" 100;
  text-transform: uppercase;
  margin-bottom: clamp(1.5rem, 3vw, 2.6rem);
  max-width: 24ch;
  text-shadow: 0 2px 42px rgba(8,9,12,.55);
}
.hero__title em { font-style: normal; }

.hero__lower {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
}
.hero__lede {
  font-size: var(--t-lg);
  line-height: 1.52;
  font-weight: 300;
  color: rgba(255,255,255,.86);
  max-width: 44ch;
  text-shadow: 0 1px 20px rgba(8,9,12,.8);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Bottom stat rail */
.hero__rail {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--maxw);
  margin: clamp(2.5rem, 5vw, 4.5rem) auto 0;
  padding-inline: var(--gutter);
}
.hero__rail-in {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.16);
}
@media (min-width: 760px) { .hero__rail-in { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.hero__stat {
  padding: 1.15rem 1.25rem 1.15rem 0;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero__stat:last-child { border-right: 0; }
@media (min-width: 760px) { .hero__stat { padding-left: 1.25rem; } .hero__stat:first-child { padding-left: 0; } }
.hero__stat dt {
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .5rem;
}
.hero__stat dd {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, .9rem + 1.5vw, 2.2rem);
  font-weight: 700;
  font-variation-settings: "wdth" 104;
  letter-spacing: -.03em;
  line-height: 1;
}
.hero__stat dd small {
  font-size: .46em;
  font-weight: 500;
  letter-spacing: .02em;
  opacity: .62;
  margin-left: .2em;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: calc(100% + 1.2rem);
  z-index: 5;
  display: none;
  align-items: center;
  gap: .7rem;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
@media (min-width: 900px) { .hero__scroll { display: flex; } }
.hero__scroll i {
  display: block;
  width: 1px; height: 42px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.7));
  overflow: hidden;
  position: relative;
}
.hero__scroll i::after {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 40%;
  background: var(--blue-400);
  animation: scrollCue 2.1s var(--e-inout) infinite;
}
@keyframes scrollCue {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(250%); }
  100% { transform: translateY(250%); }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { padding-block: clamp(6rem, 4rem + 10vw, 14rem); }
.manifesto__q {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, .9rem + 3.1vw, 4rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.03em;
  max-width: 22ch;
  text-wrap: balance;
}
/* Each word starts dim and is lit by the scroll position, so the
   sentence reads as it comes into view — and un-reads on the way back. */
.manifesto__q .w { display: inline-block; color: var(--fg); }
.manifesto__q b { font-weight: 800; color: var(--fg); }

/* The four métiers inside the sentence are live links to their section */
.mw {
  position: relative;
  color: inherit;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.mw::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .06em;
  height: 2px;
  background: var(--accent);
  opacity: .45;
  transform: scaleX(1);
  transform-origin: left;
  transition: opacity .3s, box-shadow .35s;
}
.mw:hover::after,
.mw.is-lit::after {
  opacity: 1;
  box-shadow: 0 0 12px 1px rgba(91,139,255,.55);
}
.mw:hover, .mw.is-lit { color: #fff; }

.manifesto__hint {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  display: flex;
  align-items: center;
  gap: .7em;
}
.manifesto__hint::before {
  content: "";
  width: 1.6em; height: 1px;
  background: currentColor; opacity: .5;
}
@media (hover: none) { .manifesto__hint { display: none; } }

/* Mission viz panel — answers the hovered word */
.mviz { margin-bottom: var(--sp-5); }
.mviz__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--steel-900);
  border: 1px solid var(--rule);
}
.mviz__img {
  position: absolute; inset: 0; margin: 0;
  clip-path: inset(0 0 0 0);
}
.mviz__img:not(.is-current) { visibility: hidden; }
.mviz__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(.9);
}
.mviz__frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,12,0) 45%, rgba(8,9,12,.8));
  pointer-events: none;
}
.mviz__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: .9rem 1rem;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 999px) { .mviz { display: none; } }

.manifesto__grid {
  display: grid;
  gap: var(--sp-7);
  align-items: start;
}
@media (min-width: 1000px) {
  .manifesto__grid { grid-template-columns: minmax(0, 1.45fr) minmax(0, .8fr); gap: var(--gutter); }
}
.manifesto__aside { display: grid; gap: var(--sp-5); }
.manifesto__aside p { color: var(--fg-muted); font-size: var(--t-base); max-width: 40ch; }

/* Métier marquee */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(1rem, 2vw, 1.75rem);
  margin-top: clamp(3rem, 6vw, 6rem);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding-right: clamp(1.5rem, 3vw, 3.5rem);
}
.marquee__item {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, .7rem + 1.5vw, 2rem);
  font-weight: 620;
  font-variation-settings: "wdth" 96;
  letter-spacing: -.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--fg);
}
.marquee__dot {
  width: 7px; height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
  flex: none;
}

/* ============================================================
   CHIFFRES
   ============================================================ */
.figures__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
/* Three across, two deep: six skinny columns cannot hold "43 000 m²"
   at this type size without breaking the number across lines. */
@media (min-width: 720px) { .figures__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.fig {
  position: relative;
  padding: clamp(1.5rem, 2.4vw, 2.5rem) clamp(1rem, 1.6vw, 1.75rem) clamp(1.75rem, 3vw, 3rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  isolation: isolate;
}
.fig::before {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--e-out);
}
.fig:hover::before { transform: scaleX(1); }
.fig__k {
  display: block;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.fig__v {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 1.1rem + 3.1vw, 3.75rem);
  font-weight: 760;
  font-variation-settings: "wdth" 106;
  letter-spacing: -.045em;
  line-height: .88;
  display: flex;
  align-items: baseline;
  gap: .12em;
  flex-wrap: wrap;
}
.fig__v u {
  text-decoration: none;
  font-size: .34em;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--accent);
  font-variation-settings: "wdth" 100;
}
.fig__d {
  margin-top: .85rem;
  font-size: var(--t-sm);
  line-height: 1.45;
  color: var(--fg-muted);
  max-width: 26ch;
}

/* Partners strip */
.partners {
  margin-top: clamp(3.5rem, 6vw, 7rem);
  border-top: 1px solid var(--rule);
  padding-top: clamp(1.75rem, 3vw, 2.75rem);
}
.partners__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.partners__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.partners__group {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  padding-right: clamp(2.5rem, 5vw, 5.5rem);
}
.partners__logo {
  height: clamp(32px, 3.6vw, 52px);
  width: auto;
  object-fit: contain;
  /* the white plates were keyed out of the source files, so these sit
     directly on the paper; grayscale keeps the row visually even */
  filter: grayscale(1);
  opacity: .6;
  transition: filter .45s var(--e-out), opacity .45s var(--e-out);
}
.partners__logo:hover { filter: none; opacity: 1; }
.theme-dark .partners__logo { filter: grayscale(1) invert(1) brightness(1.5); opacity: .62; }
.theme-dark .partners__logo:hover { opacity: .95; }

/* ============================================================
   MÉTIERS — pinned stepper
   ============================================================ */
.metiers { overflow: clip; }
.metiers__stage {
  display: grid;
  gap: var(--sp-6);
}
@media (min-width: 1000px) {
  .metiers__stage {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(1.75rem, 3.4vw, 4rem);
    align-items: center;
    min-height: calc(100svh - var(--header-h) - 5rem);
  }
}

/* Left: the list */
.metiers__list { position: relative; }
.mrow {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(.75rem, 1.5vw, 1.6rem);
  align-items: start;
  padding-block: clamp(.8rem, 1.5vh, 1.35rem);
  border-top: 1px solid var(--rule);
  cursor: pointer;
  transition: opacity .5s var(--e-out);
}
.mrow:last-child { border-bottom: 1px solid var(--rule); }
.mrow__n {
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg-faint);
  padding-top: .55em;
  transition: color .4s;
}
.mrow__t {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, .62rem + 1.42vw, 1.95rem);
  font-weight: 640;
  font-variation-settings: "wdth" 98;
  letter-spacing: -.03em;
  line-height: 1.03;
  text-transform: uppercase;
  color: var(--fg);
  opacity: .42;
  transition: opacity .5s var(--e-out), transform .6s var(--e-out);
}
.mrow__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .6s var(--e-out), opacity .4s;
  opacity: 0;
}
.mrow__body > div { overflow: hidden; }
.mrow__body p {
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 52ch;
  padding-top: .7rem;
}
.mrow__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding-top: .9rem;
}
.mrow__tags li {
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: .42em .7em;
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.mrow.is-active .mrow__t { opacity: 1; transform: translateX(.35rem); }
.mrow.is-active .mrow__n { color: var(--accent); }
.mrow.is-active .mrow__body { grid-template-rows: 1fr; opacity: 1; }
.mrow__bar {
  position: absolute;
  left: 0; top: -1px;
  height: 1px; width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}
.mrow.is-active .mrow__bar { transform: scaleX(1); transition: transform .8s var(--e-out); }

/* Right: the image stage */
.metiers__viz {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--steel-900);
  overflow: hidden;
}
@media (min-width: 1000px) {
  /* derive the width from the height so the panel always fits the pinned stage */
  .metiers__viz {
    height: min(70vh, 660px);
    width: auto;
    max-width: 100%;
    justify-self: center;
  }
}
@media (max-width: 999px) { .metiers__viz { aspect-ratio: 4 / 3; order: -1; } }
.metiers__viz figure {
  position: absolute; inset: 0;
  margin: 0;
  clip-path: inset(0 0 0 0);
}
.metiers__viz img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}
.metiers__viz figure:not(.is-current) { visibility: hidden; }
.metiers__viz::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,12,.42), rgba(8,9,12,0) 40%, rgba(8,9,12,.55));
  pointer-events: none;
}
.metiers__vizmeta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: clamp(1rem, 2vw, 1.75rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  pointer-events: none;
}
.metiers__vizmeta strong { color: #fff; font-weight: 500; }
/* corner ticks — a drawing-frame detail */
.metiers__viz .tick {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid rgba(255,255,255,.5);
  z-index: 3;
  pointer-events: none;
}
.metiers__viz .tick--tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.metiers__viz .tick--tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.metiers__viz .tick--bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.metiers__viz .tick--br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

/* ============================================================
   OUTIL INDUSTRIEL — blueprint
   ============================================================ */
.outil {
  position: relative;
  background: var(--paper-2);
  overflow: clip;
}
.outil::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(48,103,219,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48,103,219,.055) 1px, transparent 1px),
    linear-gradient(rgba(48,103,219,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48,103,219,.10) 1px, transparent 1px);
  background-size: 22px 22px, 22px 22px, 110px 110px, 110px 110px;
  pointer-events: none;
  mask-image: radial-gradient(120% 90% at 60% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 60% 40%, #000 20%, transparent 78%);
}
.outil__grid {
  position: relative;
  display: grid;
  gap: var(--sp-7);
}
@media (min-width: 1050px) {
  .outil__grid { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(2rem, 4vw, 5rem); align-items: center; }
}
.outil__canvas-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
}
.outil__canvas { width: 100%; height: 100%; display: block; }
.outil__legend {
  position: absolute;
  left: 0; bottom: 0;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel-500);
}
.outil__legend b { color: var(--blue); font-weight: 500; }

.specs {
  display: grid;
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(8,9,12,.14);
}
.spec {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding-block: 1.05rem;
  border-bottom: 1px solid rgba(8,9,12,.09);
}
.spec__i {
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  color: var(--blue);
  letter-spacing: .1em;
}
.spec__l { font-size: var(--t-sm); color: var(--steel-700); }
.spec__v {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  font-weight: 680;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.spec__v small { font-size: .6em; font-weight: 500; color: var(--steel-500); margin-left: .25em; }

/* ============================================================
   PROJETS — editorial grid
   Asymmetric spans, staggered baselines, gentle parallax.
   No pinning, no hijacked scroll.
   ============================================================ */
.projets { overflow: clip; }

.pj-grid { display: grid; gap: clamp(2.5rem, 6vw, 4rem); }

@media (min-width: 900px) {
  /* True masonry: no row alignment, so no dead space between pictures.
     Each item then takes its own width and indent, which is what makes
     the block read as a collage instead of a card grid. */
  .pj-grid {
    display: block;
    columns: 2;
    column-gap: clamp(2.5rem, 5vw, 6rem);
  }
  .pj {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    width: var(--w, 100%);
    margin-left: var(--push, 0);
    margin-bottom: clamp(3.5rem, 7vw, 7rem);
  }
}

.pj { display: flex; flex-direction: column; }

.pj__media {
  position: relative;
  margin: 0;
  aspect-ratio: var(--ar, 4/3);
  overflow: hidden;
  background: var(--steel-850);
}
.pj__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* one grade across every photograph so the section reads calm */
  filter: saturate(.86) contrast(1.07) brightness(.95);
  transform: scale(1.03);
  transition: filter .7s var(--e-out), transform 1.2s var(--e-out);
}
.pj:hover .pj__media img {
  filter: none;
  transform: scale(1.06);
}

/* the picture opens along a molten line — the site's own motif */
.pj__cut {
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  transform: translateY(-50%) scaleX(0);
  background: linear-gradient(90deg, rgba(255,90,31,0), var(--molten-hot), #fff, var(--molten), rgba(255,90,31,0));
  box-shadow: 0 0 18px 2px rgba(255,90,31,.6);
  opacity: 0;
  pointer-events: none;
}

.pj__body { padding-top: 1.1rem; }

.pj__badge {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
}

.pj__t {
  font-family: var(--f-display);
  font-size: clamp(1rem, .8rem + .55vw, 1.35rem);
  font-weight: 620;
  letter-spacing: -.018em;
  line-height: 1.22;
  text-transform: uppercase;
  color: var(--fg);
  max-width: 34ch;
}

.pj__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem 1.6rem;
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg);
}
.pj__meta i { font-style: normal; color: var(--fg-faint); margin-right: .55em; }

@media (max-width: 899px) {
  .pj { width: 100% !important; margin-left: 0 !important; }
  .pj__media { aspect-ratio: 4 / 3 !important; }
}

.projets__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}

/* ============================================================
   MOT DU PRÉSIDENT
   ============================================================ */
.pdg { background: var(--paper); }
.pdg__grid { display: grid; gap: var(--sp-7); }
@media (min-width: 1000px) {
  .pdg__grid {
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: clamp(2.5rem, 5vw, 6rem);
    align-items: start;
  }
}
.pdg__portrait {
  position: relative;
  background: linear-gradient(170deg, var(--steel-150), var(--steel-100));
  overflow: hidden;
}
.pdg__portrait::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(48,103,219,.09) 1px, transparent 1px),
    linear-gradient(rgba(48,103,219,.09) 1px, transparent 1px);
  background-size: 26px 26px;
}
.pdg__portrait img {
  position: relative;
  width: 100%;
  display: block;
  mix-blend-mode: multiply;
}
@media (min-width: 1000px) {
  .pdg__grid > div:first-child { position: sticky; top: calc(var(--header-h) + 3rem); }
}
.pdg__sig {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.pdg__sig strong {
  display: block;
  font-family: var(--f-display);
  font-size: var(--t-lg);
  font-weight: 680;
  letter-spacing: -.02em;
}
.pdg__sig span {
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.pdg__body { max-width: 62ch; }
.pdg__lead {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, .9rem + 1.7vw, 2.3rem);
  font-weight: 560;
  line-height: 1.18;
  letter-spacing: -.028em;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
  text-wrap: balance;
}
.pdg__body p + p { margin-top: 1.1em; }
.pdg__body p { color: var(--steel-700); line-height: 1.7; }
.pdg__body strong { color: var(--ink); font-weight: 600; }
.pdg__pull {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0;
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 2px solid var(--blue);
  font-size: var(--t-lg);
  font-weight: 400;
  color: var(--ink) !important;
  font-style: italic;
}

/* ============================================================
   QSE — two calm columns, no wall of text
   ============================================================ */
.qse__grid { display: grid; gap: var(--sp-7); }
@media (min-width: 1000px) {
  .qse__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(3rem, 6vw, 7rem);
  }
}
.qse__col > * + * { margin-top: 1.5rem; }

.qse__statement {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, .9rem + 1vw, 1.75rem);
  font-weight: 560;
  line-height: 1.28;
  letter-spacing: -.02em;
  color: var(--fg);
  max-width: 26ch;
}

/* Seven axes, compact and scannable */
.axes { display: grid; border-top: 1px solid var(--rule); }
.axe {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  align-items: baseline;
  padding-block: .95rem;
  border-bottom: 1px solid var(--rule);
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--fg-muted);
  transition: color .3s;
}
.axe:hover { color: var(--fg); }
.axe i {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .1em;
  color: var(--accent);
}

.certs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(.75rem, 1.5vw, 1.25rem);
  max-width: 420px;
}
.cert {
  position: relative;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--rule);
  padding: .9rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: border-color .4s, background-color .4s, transform .5s var(--e-out);
}
.cert:hover { border-color: var(--blue-400); background: rgba(91,139,255,.07); transform: translateY(-3px); }
.cert img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #fff;
  padding: .4rem;
}
.cert figcaption {
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.5;
}
.cert figcaption b { display: block; color: var(--fg); font-weight: 500; }

.engage__quote {
  margin-top: 1.75rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
  font-size: var(--t-base);
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  max-width: 44ch;
}

/* ============================================================
   HISTOIRE — horizontal timeline
   ============================================================ */
.histoire { overflow: clip; }
.histoire__track {
  position: relative;
  display: flex;
  align-items: stretch;
  padding-inline: var(--gutter);
  width: max-content;
  will-change: transform;
  border-top: 1px solid var(--rule);
}
.histoire__track::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--rule), var(--accent) 12%, var(--accent) 88%, var(--rule));
  opacity: .35;
}
.tnode {
  position: relative;
  width: clamp(238px, 62vw, 350px);
  flex: none;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.6vw, 2.5rem) clamp(1.1rem, 2vw, 1.9rem) clamp(2rem, 4vw, 3.5rem) 0;
  border-right: 1px solid var(--rule);
}
/* the marker sits on the axis */
.tnode::after {
  content: "";
  position: absolute;
  left: 0; top: 42px;
  width: 9px; height: 9px;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 50%;
  z-index: 1;
}
.tnode--now::after { background: var(--accent); box-shadow: 0 0 0 4px rgba(48,103,219,.18); }
.tnode:first-child { padding-left: 0; }
.histoire__track { padding-block-start: 2px; }
.tnode::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 1px; height: 43px;
  background: var(--rule);
}
.tnode__y {
  font-family: var(--f-display);
  padding-top: 2.6rem;
  font-size: clamp(2rem, 1.2rem + 2.6vw, 3.6rem);
  font-weight: 780;
  font-variation-settings: "wdth" 108;
  letter-spacing: -.045em;
  line-height: .9;
  margin-bottom: 1rem;
  color: var(--fg);
}
.tnode__t {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  font-weight: 640;
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: .7rem;
}
.tnode__d { font-size: var(--t-sm); line-height: 1.55; color: var(--fg-muted); }
.tnode--now .tnode__y { color: var(--accent); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { position: relative; overflow: clip; }
.contact__bg {
  position: absolute; inset: 0;
  z-index: 0;
  opacity: .17;
}
.contact__bg img { width: 100%; height: 100%; object-fit: cover; }
.contact__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(8,9,12,.4) 45%, var(--ink) 100%);
}
.contact__in { position: relative; z-index: 2; }
.contact__title {
  font-family: var(--f-display);
  font-size: var(--t-4xl);
  font-weight: 780;
  font-variation-settings: "wdth" 108;
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
  max-width: 15ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.contact__grid { display: grid; gap: var(--sp-7); margin-top: clamp(3rem, 6vw, 5.5rem); }
@media (min-width: 900px) { .contact__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gutter); } }
.cblock { border-top: 1px solid var(--rule); padding-top: 1.25rem; }
.cblock__k {
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 1rem;
  display: block;
}
.cblock a, .cblock p {
  display: block;
  font-size: var(--t-lg);
  font-weight: 350;
  line-height: 1.45;
  color: var(--fg);
}
.cblock a { transition: color .25s; width: fit-content; }
.cblock a:hover { color: var(--accent); }
.cblock a + a { margin-top: .25rem; }


/* ============================================================
   ADDED BLOCKS
   ============================================================ */

/* --- Vision / engagement cards (dark intro section) --------- */
.vcard {
  border-top: 1px solid var(--rule);
  padding-top: 1.25rem;
}
.vcard .tag { margin-bottom: .9rem; }
.vcard__t {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  font-weight: 560;
  line-height: 1.32;
  letter-spacing: -.018em;
  color: var(--fg);
  max-width: 34ch;
}

/* --- Nos valeurs -------------------------------------------- */
.valeurs { margin-top: clamp(3.5rem, 7vw, 7rem); }
.valeurs__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .75rem 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.valeurs__intro {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-weight: 600;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--fg);
}
.valeurs__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.valeur {
  position: relative;
  padding: 1.35rem clamp(1rem, 1.6vw, 1.6rem) 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.valeur::before {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .7s var(--e-out);
}
.valeur:hover::before { transform: scaleX(1); }
.valeur i {
  display: block;
  font-style: normal;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.valeur p { font-size: var(--t-sm); line-height: 1.6; color: var(--fg-muted); }

/* --- Présentation ------------------------------------------- */
.presentation__grid {
  display: grid;
  gap: var(--sp-7);
  align-items: start;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
}
@media (min-width: 1000px) {
  .presentation__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(2.5rem, 5vw, 5rem);
  }
}
.presentation__text p {
  color: var(--steel-700);
  line-height: 1.72;
  max-width: 56ch;
}
.presentation__text p + p { margin-top: 1.15em; }
.presentation__pull {
  margin-top: 1.75rem !important;
  padding-left: clamp(1rem, 2vw, 1.6rem);
  border-left: 2px solid var(--blue);
  font-size: var(--t-lg);
  color: var(--ink) !important;
  font-weight: 350;
}
.presentation__media {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.presentation__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.presentation__media figcaption {
  margin-top: .85rem;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.figures__wrap { margin-bottom: clamp(1rem, 2vw, 2rem); }

/* --- Métiers: long bullet lists instead of chips ------------- */
.mrow__tags {
  display: grid;
  grid-template-columns: 1fr;
  gap: .1rem;
  padding-top: .9rem;
}
@media (min-width: 620px) {
  .mrow__tags { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.5rem; }
}
.mrow__tags li {
  position: relative;
  font-family: var(--f-body);
  font-size: var(--t-sm);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  color: var(--fg-muted);
  padding: .3rem 0 .3rem 1.05rem;
  border: 0;
  border-radius: 0;
}
.mrow__tags li::before {
  content: "";
  position: absolute;
  left: 0; top: .95em;
  width: 5px; height: 1px;
  background: var(--accent);
}

/* --- Specs list tolerating an empty value -------------------- */
.spec__v:empty { display: none; }
.spec:has(.spec__v:empty) { grid-template-columns: auto minmax(0, 1fr); }

/* --- Actualités ---------------------------------------------- */
.actus__grid {
  display: grid;
  gap: clamp(1rem, 2vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
}
.actu {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
  padding-top: 1.25rem;
  transition: border-color .4s;
}
.actu:hover { border-color: var(--accent); }
.actu__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--steel-850);
}
.actu__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--e-out);
}
.actu__media--mark { background: #fff; }
.actu__media--mark img { object-fit: contain; padding: 1.35rem; }
.actu:hover .actu__media img { transform: scale(1.05); }
.actu__body { padding-top: 1.15rem; display: flex; gap: 1.25rem; }
.actu__date {
  flex: none;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  line-height: 1.2;
  text-align: center;
  padding-top: .2rem;
}
.actu__date b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .25rem;
}
.actu__t {
  font-family: var(--f-display);
  font-size: var(--t-base);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -.015em;
  color: var(--fg);
}

/* --- Timeline nodes: year + verbatim text ------------------- */
.tnode { width: clamp(268px, 76vw, 412px); }
.tnode__y { margin-bottom: 1.25rem; }
.tnode__d { font-size: var(--t-sm); line-height: 1.62; }

/* Milestone years carry a picture; the rest stay purely typographic */
.tnode__media {
  margin: 0 0 1.25rem;
  order: 2;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--steel-150);
}
.tnode__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.1s var(--e-out);
}
.tnode:hover .tnode__media img { transform: scale(1.07); }
.tnode__y { order: 1; }
.tnode__d { order: 3; }

/* ------------------------------------------------------------------
   Métiers below 1000px: the shared panel is replaced by one picture
   per métier, and every row is open. Nothing is hidden behind
   anything, and there is no scroll choreography to fight.
   ------------------------------------------------------------------ */
@media (max-width: 999px) {
  .metiers__stage.is-stacked .metiers__viz { display: none; }
  .metiers__stage.is-stacked .mrow { cursor: default; }
  .metiers__stage.is-stacked .mrow__t { opacity: 1; transform: none; }
  .metiers__stage.is-stacked .mrow__n { color: var(--accent); }
  .metiers__stage.is-stacked .mrow__body { grid-template-rows: 1fr; opacity: 1; }
  .metiers__stage.is-stacked .mrow__bar { transform: scaleX(1); background: var(--rule); }
  .mrow__media {
    margin: .9rem 0 .25rem;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--steel-850);
  }
  .mrow__media img { width: 100%; height: 100%; object-fit: cover; }
  .mrow__tags { grid-template-columns: 1fr; }
}

/* Partner logos read a little larger on narrow screens */
@media (max-width: 900px) {
  .partners__logo { height: clamp(26px, 5.2vw, 40px); opacity: .6; }
}

/* One project opens the section at full width, so the collage that
   follows reads as detail rather than as a uniform grid. */
.pj--feature { margin-bottom: clamp(3.5rem, 7vw, 7rem); }
.pj--feature .pj__media { aspect-ratio: 21 / 9; }
.pj--feature .pj__t {
  font-size: clamp(1.25rem, .9rem + 1.15vw, 2.15rem);
  max-width: 30ch;
}
@media (min-width: 900px) {
  .pj--feature .pj__body {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: var(--gutter);
    align-items: start;
    padding-top: 1.5rem;
  }
  .pj--feature .pj__badge { grid-column: 1 / -1; margin-bottom: 0; }
  .pj--feature .pj__meta { margin-top: 0; border-top: 0; padding-top: .45rem; flex-direction: column; gap: .55rem; }
}
@media (max-width: 899px) {
  .pj--feature .pj__media { aspect-ratio: 16 / 10; }
}

/* ============================================================
   LIENS VERS LES PAGES INTÉRIEURES
   Ajoutés quand l'accueil a cessé d'être un cul-de-sac.
   ============================================================ */

/* Le visuel projet devient cliquable sans changer la structure :
   un lien tendu par-dessus la carte, avec son nom accessible. */
.pj { position: relative; }
.pj__hit {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 2px;
}
.pj__hit:focus-visible { outline: 2px solid var(--blue-400); outline-offset: 4px; }
.pj:hover .pj__t { color: var(--blue-400); }
.pj__t { transition: color .35s var(--e-out); }

.pj-more { margin-top: clamp(2.5rem, 5vw, 4rem); }
.sec-more { margin-top: clamp(1.8rem, 3.4vw, 3rem); }

/* Lien de fin de fiche métier, dans la ligne dépliée */
.mrow__go {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.1rem;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.mrow__go svg { width: 13px; height: 13px; transition: transform .4s var(--e-out); }
.mrow__go:hover svg { transform: translateX(.35em); }
.mrow__go::after {
  content: "";
  position: absolute;
  left: 0; right: 1.6rem; bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--e-out);
}
.mrow__go:hover::after { transform: scaleX(1); transform-origin: left; }
