/* Métal Presto — site vitrine */
@font-face {
  font-family: "Archivo";
  src: url("/fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #d71920;
  --red-d: #b3141a;
  --ink: #15171c;
  --ink-2: #1f2229;
  --ink-3: #2b2f38;
  --steel: #8b919b;
  --line: #e4e5e7;
  --paper: #f4f4f2;
  --text: #3a3e46;
  --white: #fff;
  --radius: 6px;
  --shadow: 0 18px 50px -20px rgba(21, 23, 28, .35);
  --hdr: 68px;
  --gut: 20px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}
@media (min-width: 1024px) { :root { --hdr: 84px; --gut: 32px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { color: var(--ink); line-height: 1.12; margin: 0 0 .6em; font-weight: 800; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
address { font-style: normal; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding-left: max(var(--gut), env(safe-area-inset-left)); padding-right: max(var(--gut), env(safe-area-inset-right)); }
.narrow { max-width: 800px; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--red); color: #fff; padding: 10px 16px; border-radius: var(--radius); font-weight: 700; }
.skip:focus { top: 12px; }
.ico { width: 1.15em; height: 1.15em; flex: none; }
.rounded { border-radius: var(--radius); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: .75em 1.4em;
  font-weight: 700; font-size: .95rem; letter-spacing: .02em; text-decoration: none; text-transform: uppercase;
  border: 2px solid transparent; border-radius: var(--radius); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease);
}
.btn .ico { transition: transform .25s var(--ease); }
.btn:hover .ico:last-child { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--lg { min-height: 56px; padding: .9em 1.7em; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-d); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--ink); color: #fff; }
.btn--ghost-w { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost-w:hover { background: #fff; color: var(--ink); border-color: #fff; }

.eyebrow { display: inline-flex; align-items: center; gap: .7em; margin: 0 0 .9em; font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); }
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--red); }
.eyebrow--light { color: #fff; }
.h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
.h2--sm { font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin-top: 1.4em; }
.h2--light { color: #fff; }
.more { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; text-transform: uppercase; font-size: .85rem; letter-spacing: .08em; color: var(--red); text-decoration: none; }
.more:hover .ico { transform: translateX(4px); }
.more .ico { transition: transform .25s var(--ease); }

/* ---------- En-tête ---------- */
.hdr { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s; }
.hdr.is-scrolled { box-shadow: 0 6px 24px -12px rgba(0,0,0,.25); border-color: var(--line); }
.hdr__in { display: flex; align-items: center; gap: 16px; height: var(--hdr); }
.hdr__logo { display: block; margin-right: auto; }
.logo { display: block; height: 40px; width: auto; color: var(--ink); }
@media (min-width: 1024px) { .logo { height: 46px; } }
.hdr__logo:hover .logo rect:first-child { fill: var(--red-d); }
.hdr__tel { display: none; align-items: center; gap: .45em; font-weight: 700; text-decoration: none; color: var(--ink); white-space: nowrap; }
.hdr__tel .ico { color: var(--red); }
.lang { display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 8px; border: 2px solid var(--line); border-radius: var(--radius); font-weight: 800; font-size: .82rem; letter-spacing: .06em; color: var(--ink); text-decoration: none; transition: border-color .2s, background .2s, color .2s; }
.lang:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.hdr__cta { display: none; min-height: 42px; padding: .55em 1.1em; font-size: .85rem; }
@media (min-width: 640px) { .hdr__cta { display: inline-flex; } }
@media (min-width: 1280px) { .hdr__tel { display: inline-flex; } }

.nav ul { list-style: none; margin: 0; padding: 0; }
.nav a { text-decoration: none; }
@media (min-width: 1024px) {
  .nav { order: 0; margin-right: 8px; }
  .nav ul { display: flex; gap: 4px; }
  .nav ul a { position: relative; display: block; padding: 10px 12px; font-weight: 600; font-size: .95rem; color: var(--ink); }
  .nav ul a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
  .nav ul a:hover::after, .nav ul a.is-active::after { transform: scaleX(1); }
  .nav__m { display: none; }
  .burger { display: none; }
}
.burger { width: 46px; height: 46px; display: inline-grid; place-content: center; gap: 5px; background: var(--ink); border: 0; border-radius: var(--radius); cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .burger { display: none; } }
@media (max-width: 1023.98px) {
  /* backdrop-filter crée un bloc conteneur pour les éléments fixed : on le retire sur mobile */
  .hdr { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .nav {
    position: fixed; inset: var(--hdr) 0 0 0; z-index: 49;
    display: flex; flex-direction: column; gap: 28px;
    padding: 24px var(--gut) calc(32px + env(safe-area-inset-bottom));
    background: var(--ink); color: #fff; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s, transform .3s var(--ease), visibility 0s .3s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .25s, transform .3s var(--ease); }
  .nav ul a { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; font-size: 1.45rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav ul a.is-active { color: var(--red); }
  .nav__m { display: grid; gap: 16px; margin-top: auto; }
  .nav__lang { justify-self: start; padding: 8px 14px; border: 2px solid rgba(255,255,255,.25); border-radius: var(--radius); font-weight: 700; color: #fff; }
  .nav__tel { display: inline-flex; align-items: center; gap: .6em; font-size: 1.3rem; font-weight: 700; color: #fff; }
  .nav__tel .ico { color: var(--red); }
  .nav__addr { color: var(--steel); margin: 0; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero accueil ---------- */
.hero { position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: center; min-height: min(calc(100svh - var(--hdr)), 860px); padding: 72px 0 120px; color: #fff; background: var(--ink); overflow: hidden; }
.hero__slides, .hero__slide { position: absolute; inset: 0; }
.hero__slides { z-index: -1; }
.hero__slide { opacity: 0; transition: opacity 1.4s ease; }
.hero__slide.is-on { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero__slide.is-on img { animation: kb 9s ease-out forwards; }
@keyframes kb { from { transform: scale(1.12); } to { transform: scale(1.02); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(15,16,20,.92) 0%, rgba(15,16,20,.72) 45%, rgba(15,16,20,.25) 100%), linear-gradient(0deg, rgba(15,16,20,.7), transparent 40%); }
.hero__in { max-width: 1240px; }
.hero__t { color: #fff; font-size: clamp(2.5rem, 7.2vw, 5.4rem); line-height: .98; letter-spacing: -.03em; text-transform: uppercase; max-width: 16ch; margin-bottom: .35em; }
.hero__loc { display: block; color: var(--red); }
.hero__p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 58ch; color: rgba(255,255,255,.86); margin-bottom: 2em; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__dots { position: absolute; left: 0; right: 0; bottom: 36px; display: flex; gap: 8px; }
.hero__dots span { width: 34px; height: 4px; background: rgba(255,255,255,.35); border-radius: 2px; transition: background .3s, width .3s; }
.hero__dots span.is-on { background: var(--red); width: 54px; }
@media (max-width: 639.98px) {
  .hero { padding: 48px 0 96px; }
  .hero__btns .btn { width: 100%; }
  .hero::after { background: linear-gradient(0deg, rgba(15,16,20,.95) 10%, rgba(15,16,20,.6) 100%); }
}
@media (prefers-reduced-motion: reduce) { .hero__slide.is-on img { animation: none; } }

/* ---------- 3 cartes services ---------- */
.svc { position: relative; z-index: 2; margin-top: -64px; }
.svc__grid { display: grid; gap: 16px; }
@media (min-width: 900px) { .svc__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } .svc { margin-top: -88px; } }
.svc__card { position: relative; display: flex; flex-direction: column; padding: 32px 28px 28px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border-top: 4px solid var(--ink); }
.svc__card p { flex: 1; }
.svc__card--red { background: var(--red); color: rgba(255,255,255,.92); border-top-color: var(--ink); }
.svc__card--red .svc__t, .svc__card--red .more { color: #fff; }
.svc__ico { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 20px; border-radius: 50%; background: var(--paper); color: var(--red); }
.svc__ico .ico { width: 28px; height: 28px; }
.svc__card--red .svc__ico { background: rgba(255,255,255,.15); color: #fff; }
.svc__t { font-size: 1.4rem; text-transform: uppercase; letter-spacing: .01em; }

/* ---------- Chiffres ---------- */
.stats { padding: 64px 0 24px; }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
@media (min-width: 900px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { border-left: 3px solid var(--red); padding-left: 16px; }
.stat strong { display: block; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.stat small { font-size: .45em; margin-left: .15em; color: var(--red); letter-spacing: 0; }
.stat span { display: block; margin-top: 8px; font-size: .92rem; color: var(--steel); line-height: 1.35; }

/* ---------- Sections ---------- */
.sec { padding: clamp(64px, 9vw, 112px) 0; }
.sec--tight { padding-top: 0; }
.sec--top { padding-top: 48px; }
.sec--grey { background: var(--paper); }
.sec--dark { background: var(--ink); color: rgba(255,255,255,.78); }
.sec--dark h3 { color: #fff; }
.sec__head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.sec__head--row { max-width: none; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px 32px; }
.sec__head .h2 { margin-bottom: 0; }
.sec__lead { font-size: 1.12rem; margin: 18px 0 0; }

/* ---------- À propos ---------- */
.about { margin-top: 56px; padding: clamp(64px, 9vw, 112px) 0; background: var(--ink); color: rgba(255,255,255,.78); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 2px, transparent 2px 14px); }
.about strong { color: #fff; }
.about__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .about__grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.about__txt .btn { margin-top: 12px; }
.about__img { position: relative; }
.about__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.about__badge { position: absolute; left: -12px; bottom: -24px; margin: 0; padding: 20px 24px; background: var(--red); color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; line-height: 1.2; border-radius: var(--radius); box-shadow: var(--shadow); }
.about__badge strong { display: block; font-size: 2.6rem; letter-spacing: -.03em; }
@media (min-width: 1024px) { .about__badge { left: -32px; } }

/* ---------- Engagements ---------- */
.feat__grid, .team__grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .feat__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .feat__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }
.feat, .team { padding: 32px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feat h3, .team h3 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: .02em; }
.feat p, .team p { margin: 0; }
.feat__ico { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 20px; border-radius: var(--radius); background: var(--red); color: #fff; }
.feat__ico .ico { width: 26px; height: 26px; }
.team { background: var(--ink-2); border-color: var(--ink-3); }

/* ---------- Réalisations ---------- */
.pgrid { display: grid; gap: 20px; }
@media (min-width: 640px) { .pgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pgrid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.pcard { height: 100%; }
.pcard__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(0,0,0,.35); transition: box-shadow .3s, transform .3s var(--ease); }
.pcard__link:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pcard__img { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--ink-2); }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pcard__link:hover .pcard__img img { transform: scale(1.06); }
.pcard__img::after { content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 0; background: var(--red); transition: width .4s var(--ease); }
.pcard__link:hover .pcard__img::after { width: 100%; }
.pcard__body { padding: 20px 22px 22px; }
.pcard__cat { margin: 0 0 6px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red); }
.pcard__t { font-size: 1.2rem; margin: 0 0 6px; }
.pcard__lieu { display: flex; align-items: center; gap: .35em; margin: 0; font-size: .92rem; color: var(--steel); }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.chip { min-height: 44px; padding: .5em 1.2em; border: 2px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); font-weight: 700; cursor: pointer; transition: all .2s; }
.chip:hover { border-color: var(--ink); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
[data-cat].is-hidden { display: none; }

/* ---------- Partenaires ---------- */
.partners { padding: 48px 0; border-bottom: 1px solid var(--line); }
.partners__t { text-align: center; font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); margin-bottom: 20px; }
.partners__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 36px; }
.partners__list li { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 800; color: #b8bcc3; letter-spacing: -.01em; text-transform: uppercase; transition: color .2s; }
.partners__list li:hover { color: var(--ink); }

/* ---------- Bandeau CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--red); color: #fff; background-image: repeating-linear-gradient(135deg, rgba(0,0,0,.06) 0 2px, transparent 2px 16px); }
.cta::after { content: ""; position: absolute; right: -40px; top: 50%; width: 340px; height: 340px; transform: translateY(-50%); background: url("/images/monogramme-blanc.svg") center / contain no-repeat; opacity: .08; pointer-events: none; }
.cta__in { position: relative; z-index: 1; }
.cta__in { display: grid; gap: 28px; padding-top: 56px; padding-bottom: 56px; align-items: center; }
@media (min-width: 1024px) { .cta__in { grid-template-columns: 1.4fr auto; gap: 48px; } }
.cta__t { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: .35em; }
.cta__p { margin: 0; color: rgba(255,255,255,.9); font-size: 1.08rem; }
.cta__btns { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 639.98px) { .cta__btns .btn { width: 100%; } }

/* ---------- En-tête des pages intérieures ---------- */
.phero { position: relative; isolation: isolate; display: flex; align-items: flex-end; min-height: clamp(320px, 52vh, 520px); padding: 56px 0 48px; color: #fff; background: var(--ink); overflow: hidden; }
.phero__bg { position: absolute; inset: 0; z-index: -2; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; }
.phero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(15,16,20,.94) 0%, rgba(15,16,20,.55) 60%, rgba(15,16,20,.35) 100%); }
.phero__t { color: #fff; font-size: clamp(2.2rem, 6vw, 4.2rem); text-transform: uppercase; letter-spacing: -.025em; line-height: 1; margin-bottom: .3em; max-width: 18ch; }
.phero__p { max-width: 62ch; font-size: clamp(1rem, 1.5vw, 1.18rem); color: rgba(255,255,255,.85); margin: 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px 0; margin: 0 0 20px; padding: 0; font-size: .85rem; }
.crumbs li { color: rgba(255,255,255,.7); }
.crumbs li + li::before { content: "/"; margin: 0 .6em; opacity: .5; }
.crumbs a { color: #fff; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs--dark li, .crumbs--dark a { color: var(--steel); }

/* ---------- Contenu ---------- */
.split { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .split { grid-template-columns: 1.5fr 1fr; gap: 72px; } .split--wide { grid-template-columns: 1.7fr 1fr; } }
.prose { font-size: 1.06rem; }
.prose p { max-width: 68ch; }
.prose strong { color: var(--ink); }
.box { padding: 32px 28px; background: var(--paper); border-radius: var(--radius); border-top: 4px solid var(--red); }
@media (min-width: 1024px) { .box { position: sticky; top: calc(var(--hdr) + 24px); } }
.box__t { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .04em; }
.checks { list-style: none; margin: 0 0 24px; padding: 0; }
.checks li { display: flex; gap: .7em; padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--ink); line-height: 1.4; }
.checks .ico { color: var(--red); margin-top: 1px; }
.facts { margin: 0 0 24px; }
.facts div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.facts dt { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); }
.facts dd { margin: 2px 0 0; font-weight: 700; color: var(--ink); }
.facts a { color: var(--red); }
.gallery { display: grid; gap: 16px; }
.gallery__item { margin: 0; }
.gallery__item img { width: 100%; border-radius: var(--radius); }
.pnav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-bottom: 64px; }
.pnav__a { display: flex; align-items: center; gap: 12px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; font-weight: 700; color: var(--ink); line-height: 1.3; transition: border-color .2s, background .2s; }
.pnav__a:hover { border-color: var(--ink); background: var(--paper); }
.pnav__a small { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.pnav__a--next { justify-content: flex-end; text-align: right; }
.pnav .ico { color: var(--red); width: 22px; height: 22px; }
@media (max-width: 639.98px) { .pnav { grid-template-columns: 1fr; } .pnav__a { font-size: .95rem; } }
.sectors { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 900px) { .sectors { grid-template-columns: repeat(4, 1fr); } }
.sectors li { display: flex; align-items: center; gap: .7em; padding: 22px 20px; background: var(--paper); border-radius: var(--radius); font-weight: 800; text-transform: uppercase; color: var(--ink); letter-spacing: .02em; }
.sectors .ico { color: var(--red); width: 26px; height: 26px; }

/* ---------- Contact ---------- */
.contact { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .contact { grid-template-columns: 1.6fr 1fr; gap: 56px; } }
.contact__info { padding: 36px 28px; background: var(--ink); color: rgba(255,255,255,.8); border-radius: var(--radius); }
@media (min-width: 1024px) { .contact__info { position: sticky; top: calc(var(--hdr) + 24px); } }
.cinfo { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 22px; }
.cinfo li { display: flex; gap: 14px; line-height: 1.45; }
.cinfo small { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); margin-bottom: 2px; }
.cinfo a { color: #fff; font-weight: 700; font-size: 1.15rem; text-decoration: none; }
.cinfo a:hover { color: var(--red); }
.cinfo__ico { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--red); color: #fff; }

.seg { border: 0; margin: 0 0 24px; padding: 0; }
.seg legend { font-weight: 700; color: var(--ink); margin-bottom: 10px; padding: 0; }
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg label { position: relative; }
.seg input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.seg span { display: inline-flex; align-items: center; min-height: 46px; padding: .5em 1.2em; border: 2px solid var(--line); border-radius: 999px; font-weight: 700; color: var(--ink); transition: all .2s; }
.seg input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.seg input:focus-visible + span { outline: 3px solid var(--red); outline-offset: 2px; }
.fgrid { display: grid; gap: 18px; margin-bottom: 24px; }
@media (min-width: 640px) { .fgrid { grid-template-columns: 1fr 1fr; } .field--full { grid-column: 1 / -1; } }
.field label { display: block; font-weight: 700; font-size: .92rem; color: var(--ink); margin-bottom: 6px; }
.field abbr { color: var(--red); text-decoration: none; }
.field input, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 14px;
  font: inherit; font-size: 16px; color: var(--ink);
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(21,23,28,.08); }
.field [aria-invalid="true"] { border-color: var(--red); }
.ferr { margin: 6px 0 0; color: var(--red); font-size: .88rem; font-weight: 600; }
.consent { display: flex !important; gap: 12px; align-items: flex-start; font-weight: 400 !important; line-height: 1.45; cursor: pointer; }
.consent input { width: 22px; height: 22px; min-height: 0; margin-top: 1px; flex: none; accent-color: var(--red); -webkit-appearance: auto; appearance: auto; }
.consent a { color: var(--red); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius); margin-bottom: 24px; }
.alert .ico { width: 24px; height: 24px; }
.alert--ok { background: #e8f5ec; color: #14532d; }
.alert--err { background: #fdecec; color: #8a1116; }

/* ---------- Pied de page ---------- */
.ftr { background: #0f1014; color: rgba(255,255,255,.66); padding-top: 64px; font-size: .96rem; }
.ftr__grid { display: grid; gap: 40px; padding-bottom: 48px; }
@media (min-width: 900px) { .ftr__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 64px; } }
.ftr__logo { display: inline-block; margin-bottom: 20px; }
.ftr__logo .logo { color: #fff; height: 48px; }
.ftr__brand p { max-width: 42ch; }
.ftr__h { color: #fff; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.ftr__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ftr a { text-decoration: none; }
.ftr a:hover { color: #fff; }
.ftr__contact { display: grid; gap: 14px; align-content: start; }
.ftr__contact a { display: flex; gap: 12px; line-height: 1.45; }
.ftr__contact .ico { color: var(--red); margin-top: 2px; }
.ftr__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-top: 22px; padding-bottom: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; }
.ftr__bottom p { margin: 0; }
.ftr__links { display: flex; flex-wrap: wrap; gap: 8px 24px; }

/* ---------- Barre d'action mobile ---------- */
.mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -8px 24px -12px rgba(0,0,0,.4); transform: translateY(110%); transition: transform .35s var(--ease); }
.mbar.is-on { transform: none; }
.mbar a { display: flex; align-items: center; justify-content: center; gap: .5em; min-height: 58px; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .92rem; text-decoration: none; }
.mbar__red { background: var(--red); }
@media (min-width: 768px) { .mbar { display: none; } }
@media (max-width: 767.98px) { body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); } }

/* ---------- Apparition au défilement ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

@media print { .hdr, .mbar, .cta, .hero__slides { display: none !important; } }
