/* ==========================================================================
   VINC — piste « Signal »
   Identité assumée en un seul registre : toutes les couleurs sont peintes
   explicitement, aucune ne dépend du thème du navigateur.
   ========================================================================== */

:root {
  --paper: #FFFFFF;
  --ink: #0B1330;
  --ink-soft: #4C5878;
  --ink-faint: #8A93AC;
  --wash: #F2F4FA;
  --line: #DFE3EF;
  --blue: #1B3AE0;
  --blue-deep: #142BA8;
  --citron: #C8F040;

  --f-display: "Familjen Grotesk", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

.inner { max-width: 1180px; margin: 0 auto; padding-inline: 24px; }
@media (max-width: 520px) { .inner { padding-inline: 18px; } }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #FFFFFF;
  padding: 0.7rem 1rem;
  border-radius: 4px;
  font-family: var(--f-display);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

.label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.mark {
  /* Bande calée sur la hauteur des capitales plutôt que sur toute la boîte
     inline : sans ça, le fond déborde sur la ligne du dessus. */
  background-image: linear-gradient(
    to top,
    transparent 0.06em,
    var(--citron) 0.06em,
    var(--citron) 0.95em,
    transparent 0.95em
  );
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------------------------------------------------------------- Boutons */

.btn {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  padding: 0.6rem 1.15rem;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid var(--blue);
  background: var(--blue);
  color: #FFFFFF;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn-ghost { background: transparent; color: var(--blue); }
.btn-ghost:hover { background: var(--blue); color: #FFFFFF; }
.btn-lg { font-size: 1.05rem; padding: 0.85rem 1.6rem; }

/* -------------------------------------------------------------- Navigation */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1rem;
}
.logo {
  display: block;
  flex: 0 0 auto;
  color: var(--blue);
  text-decoration: none;
  line-height: 0;
}
.logo-mark {
  display: block;
  height: 30px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 560px) { .logo-mark { height: 25px; } }

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
  font-weight: 500;
}
.nav-links a { text-decoration: none; color: var(--ink-soft); }
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--blue); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
}
.burger span[aria-hidden] {
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.burger[aria-expanded="true"] span[aria-hidden]:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span[aria-hidden]:nth-child(3) { opacity: 0; }
.burger[aria-expanded="true"] span[aria-hidden]:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { border-top: 1px solid var(--line); background: var(--paper); }
.nav-mobile .inner { padding-block: 1.25rem 1.75rem; display: grid; gap: 1.25rem; justify-items: start; }
.nav-links-mobile { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.nav-links-mobile a {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-links-mobile a:hover { color: var(--blue); }

@media (max-width: 900px) {
  .nav-main, .nav-cta { display: none; }
  .burger { display: flex; }
}
@media (min-width: 901px) {
  .nav-mobile { display: none !important; }
}

/* ------------------------------------------------------------------- Hero */

.hero .inner { padding-block: 5.5rem 4rem; }
@media (max-width: 700px) { .hero .inner { padding-block: 3.5rem 2.5rem; } }

.hero-grid { display: grid; gap: 3rem; }
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.55fr 1fr; gap: 4.5rem; align-items: end; }
}

h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7.2vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 1.2rem 0 1.5rem;
  text-wrap: balance;
}

.hero-sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 52ch; margin: 0 0 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.facts { border-top: 3px solid var(--ink); display: grid; }
.facts > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.facts .v {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--blue);
  min-width: 3.4rem;
}
.facts .k { font-family: var(--f-mono); font-size: 0.85rem; line-height: 1.45; color: var(--ink-soft); }

/* --------------------------------------------------------------- Clients */

.clients { border-block: 1px solid var(--line); background: var(--wash); }
.clients .inner { padding-block: 2.25rem; }
.clients .label { display: block; margin-bottom: 1.1rem; }
/* Le bandeau défile en boucle : la piste contient deux copies identiques de
   la ligne de logos, et l'animation la décale d'exactement une copie. */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5rem, #000 calc(100% - 5rem), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5rem, #000 calc(100% - 5rem), transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: vinc-marquee var(--marquee-duration, 40s) linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes vinc-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.wordmarks {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  /* Même valeur que gap : le raccord entre les deux copies garde l'écart. */
  padding-inline-end: 4.5rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  letter-spacing: -0.025em;
}
.wordmark { display: flex; align-items: center; text-decoration: none; flex: none; }
.wordmark.has-logo img {
  display: block;
  height: auto;
  width: auto;
  max-width: none;
}
/* Logo en largeur : 36 px suffisent. Logo carré ou vertical : 56 px pour que
   la masse visible reste comparable d'un logo à l'autre. */
.wordmark.is-wide img { max-height: 36px; }
.wordmark.is-compact img { max-height: 56px; }
@media (max-width: 560px) {
  .wordmarks { gap: 3rem; padding-inline-end: 3rem; }
  .marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2rem, #000 calc(100% - 2rem), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 2rem, #000 calc(100% - 2rem), transparent);
  }
}

/* Sans animation, la seconde copie n'a plus de raison d'être : on la retire
   et la ligne redevient une simple bande à faire glisser au doigt. */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
  .marquee-track > .wordmarks[aria-hidden="true"] { display: none; }
  .marquee { overflow-x: auto; }
}

/* ----------------------------------------------------------------- Thèse */

.thesis .inner { padding-block: 5rem; }
.thesis h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin: 0.9rem 0 0;
  max-width: 20ch;
  text-wrap: balance;
}

.chain { display: grid; margin-top: 3rem; border-top: 1px solid var(--line); }
@media (min-width: 900px) { .chain { grid-template-columns: repeat(3, 1fr); } }
.chain > div { padding: 1.75rem 0; border-bottom: 1px solid var(--line); }
@media (min-width: 900px) {
  .chain > div { padding: 1.75rem 2rem 2.25rem 0; border-bottom: none; }
  .chain > div + div { padding-left: 2rem; border-left: 1px solid var(--line); }
}
.chain .step {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.7rem;
}
.chain h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.45rem;
}
.chain p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; max-width: 34ch; }

/* ---------------------------------------------------------------- Offres */

.offers .inner { padding-block: 0 5rem; }
.offer-grid { display: grid; gap: 1.5rem; }
@media (min-width: 950px) { .offer-grid { grid-template-columns: 1.05fr 1fr; } }

.offer {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2.25rem;
  display: grid;
  align-content: start;
  gap: 0.75rem;
}
.offer h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
}
.offer p { margin: 0; color: var(--ink-soft); }
.offer ul {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  font-family: var(--f-mono);
  font-size: 0.9rem;
  line-height: 1.5;
}
.offer li { padding-left: 1.1rem; position: relative; color: var(--ink-soft); }
.offer li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 6px; height: 6px;
  background: var(--blue);
}
.offer .label { display: block; }
.offer-link {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  justify-self: start;
  margin-top: 0.75rem;
}

.offer-dark { background: var(--ink); border-color: var(--ink); color: #FFFFFF; }
.offer-dark p, .offer-dark li { color: #B7C0DC; }
.offer-dark li::before { background: var(--citron); }
.offer-dark .label, .offer-dark .offer-link { color: var(--citron); }

/* -------------------------------------------------------- Études de cas */

.case { border-top: 1px solid var(--line); background: var(--wash); }
.case .inner { padding-block: 5rem; }

.case-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.slider-nav { display: flex; gap: 0.5rem; }
.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.slider-btn:hover { border-color: var(--blue); color: var(--blue); }
.slider-btn[disabled] { opacity: 0.35; cursor: default; }
.slider-btn[disabled]:hover { border-color: var(--line); color: var(--ink); }

/* Défilement natif avec accrochage : le carrousel reste utilisable
   sans JavaScript, au doigt comme à la molette. */
.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 2.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider.is-single .slider-track { overflow: visible; }
.slide { scroll-snap-align: start; min-width: 0; }

.slider-dots { display: flex; gap: 0.5rem; margin-top: 2rem; }
.slider-dots button {
  width: 34px; height: 4px;
  padding: 0;
  border: none;
  border-radius: 99px;
  background: var(--line);
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.slider-dots button:hover { background: var(--ink-faint); }
.slider-dots button[aria-current="true"] { background: var(--blue); }

.case-grid { display: grid; gap: 2.5rem; }
@media (min-width: 950px) { .case-grid { grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; } }

/* Le logo du client, en tête de la colonne du grand chiffre. */
.case-client { margin: 0 0 1.5rem; }
.case-client img {
  display: block;
  height: auto;
  width: auto;
  max-width: min(200px, 100%);
}
.case-client.is-wide img { max-height: 40px; }
.case-client.is-compact img { max-height: 64px; }
.case-client.label { margin-bottom: 1.25rem; }

.case-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 0.78;
  letter-spacing: -0.06em;
  color: var(--blue);
  margin: 0.5rem 0 0.25rem;
}
.case-num small {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.case h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 1rem;
  text-wrap: balance;
}
.case p { color: var(--ink-soft); margin: 0 0 1.25rem; max-width: 56ch; }

.case-list { list-style: none; margin: 0 0 1.75rem; padding: 0; display: grid; }
.case-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
}
.case-list li b { font-family: var(--f-display); font-weight: 600; }
.case-list li em {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 0.7rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  text-align: right;
}

/* --------------------------------------------------------------- Mesures */

.metrics .inner { padding-block: 5rem; }
.metric-grid { display: grid; border-top: 3px solid var(--ink); }
@media (min-width: 760px) { .metric-grid { grid-template-columns: repeat(4, 1fr); } }
.metric { padding: 1.5rem 1.25rem 1.5rem 0; border-bottom: 1px solid var(--line); }
@media (min-width: 760px) {
  .metric + .metric { padding-left: 1.5rem; border-left: 1px solid var(--line); }
}
.metric .v {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.5vw, 2.9rem);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: block;
  margin-bottom: 0.5rem;
}
.metric .k { font-family: var(--f-mono); font-size: 0.71rem; line-height: 1.5; color: var(--ink-soft); }
.metric .src { display: block; color: var(--ink-faint); margin-top: 0.35rem; }

/* ----------------------------------------------------------- L'entreprise */

.company { background: var(--wash); border-top: 1px solid var(--line); }
.company .inner { padding-block: 5rem; }
.company h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4.2vw, 2.7rem);
  letter-spacing: -0.038em;
  line-height: 1.05;
  margin: 0.9rem 0 0;
  max-width: 24ch;
  text-wrap: balance;
}

.founders {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.5rem;
  margin-top: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.founder { display: flex; align-items: center; gap: 0.85rem; }
.founder .portrait {
  width: 75px; height: 75px;
  flex: 0 0 75px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
  color: var(--blue);
  overflow: hidden;
}
.founder .portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder b {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.25;
}
.founder span span {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--ink-soft);
  line-height: 1.4;
  display: block;
}

.pillars { display: grid; gap: 2rem; margin-top: 2.5rem; }
@media (min-width: 820px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.pillar { display: grid; gap: 0.85rem; align-content: start; }
.pillar svg { width: 30px; height: 30px; color: var(--blue); }
.pillar p {
  margin: 0;
  font-family: var(--f-display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 26ch;
}
.pillar p .big {
  display: block;
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------- Contact */

.contact { background: var(--ink); color: #FFFFFF; }
.contact .inner { padding-block: 5rem; }
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }
.contact h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0.9rem 0 1rem;
  text-wrap: balance;
}
.contact h2 .mark { color: var(--ink); }
.contact p { color: #B7C0DC; max-width: 46ch; }
.contact .label { color: var(--citron); }

.contact-lines { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.contact-lines a {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
}
.contact-lines a:hover { border-color: var(--citron); color: var(--citron); }

.form { display: grid; gap: 0.9rem; }
.field { display: grid; gap: 0.35rem; }
.field label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A8B2CE;
}
.field input, .field textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 0.7rem 0.85rem;
  width: 100%;
}
.field textarea { min-height: 6.5rem; resize: vertical; }
.field input:focus-visible, .field textarea:focus-visible { outline-color: var(--citron); }
.form .btn { background: var(--citron); border-color: var(--citron); color: var(--ink); justify-self: start; }
.form .btn:hover { background: #D8FF5C; border-color: #D8FF5C; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-msg {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  line-height: 1.5;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  margin: 0 0 1.25rem;
}
.form-msg--ok { background: var(--citron); color: var(--ink); }
.form-msg--error { background: rgba(255, 255, 255, 0.1); color: #FFD9D2; border: 1px solid #C2564A; }

/* ------------------------------------------------------------ Pages simples */

/* Classe préfixée : « page » est déjà posée sur <body> par body_class() pour
   toute page statique — y compris la page d'accueil. */
.vinc-page > .inner { padding-block: 4rem 5rem; max-width: 760px; }
.vinc-page h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 0;
}
.prose { font-size: 1.05rem; }
.prose h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  margin: 2.5rem 0 0.75rem;
}
.prose h3 { font-family: var(--f-display); font-weight: 600; font-size: 1.25rem; margin: 2rem 0 0.5rem; }
.prose a { color: var(--blue); }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.vinc-page--404 .label { display: block; margin-bottom: 0.75rem; }

/* ------------------------------------------------------------- Pied de page */

.foot {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink);
  color: #8A93AC;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  line-height: 1.7;
}
.foot .inner { padding-block: 3.25rem 1.75rem; }
.foot a { text-decoration: none; color: inherit; }
.foot a:hover { color: #FFFFFF; }
.foot .logo { color: #FFFFFF; }

.foot-top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.75rem;
}
@media (min-width: 860px) {
  /* La marque garde une colonne large, les colonnes de liens se partagent
     le reste à parts égales quel qu'en soit le nombre. */
  .foot-top { grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr); gap: 3.5rem; }
}

.foot-brand { display: grid; gap: 1.1rem; justify-items: start; }
.foot-pitch {
  margin: 0;
  max-width: 34ch;
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #C3CADD;
}
.foot-contact, .foot-cols ul { list-style: none; margin: 0; padding: 0; }
.foot-contact { display: grid; gap: 0.25rem; }
.foot-contact a { color: #FFFFFF; }
.foot-contact a:hover { color: var(--citron); }
.foot-address { margin: 0; white-space: normal; }

.foot-cols {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-content: start;
}
.foot-col-title {
  margin: 0 0 0.85rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.foot-cols ul { display: grid; gap: 0.45rem; }

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}
/* Pied de page non rempli : la ligne du bas se suffit à elle-même, sans
   filet ni espace en trop. */
.foot--bare .inner { padding-block: 1.75rem; }
.foot--bare .foot-bottom { padding-top: 0; border-top: none; }
.foot-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }

@media (max-width: 560px) {
  .foot .inner { padding-block: 2.5rem 1.5rem; }
  .foot-top { gap: 2rem; padding-bottom: 2rem; }
}

/* ---------------------------------------------------------------- Cookies */

.cookie {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 150;
  background: var(--ink);
  color: #FFFFFF;
  border-top: 3px solid var(--citron);
}
.cookie .inner {
  padding-block: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.cookie p { margin: 0; font-size: 0.9rem; color: #D4DAEC; max-width: 62ch; }
.cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie .btn-ghost { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.4); }
.cookie .btn-ghost:hover { background: #FFFFFF; color: var(--ink); border-color: #FFFFFF; }

/* ------------------------------------------------------------- Préférences */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slider-track { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .nav, .cookie, .slider-nav, .slider-dots { display: none; }
  body { font-size: 12pt; }
  .contact, .foot { background: #FFFFFF; color: #000000; }
  .contact p, .foot { color: #333333; }
}

  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ------------------------------------------------ Services complémentaires */
.services { background: #FFFFFF; }
.services .inner { padding-block-start: 2rem; padding-block-end: 3rem; }
.services h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0.9rem 0 0;
  text-wrap: balance;
}
.services-grid { display: grid; gap: 2rem; margin-top: 2rem; }
@media (min-width: 820px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.service-item { display: grid; gap: 0.5rem; align-content: start; }
.service-item svg { width: 30px; height: 30px; color: var(--blue); }
.service-item h3 {
  margin: 0;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.service-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-secondary);
}
.service-item ul li {
  padding-left: 0;
}
.service-item ul li::before {
  display: none;
}
