@charset "utf-8";



@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/barlow-400.044fcd36.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/barlow-600.21744c3a.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-700.c9c6dc7c.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Barlow Fallback";
  src: local("Arial"), local("Helvetica"), local("Liberation Sans");
  size-adjust: 96%;
  ascent-override: 96%;
  descent-override: 24%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Barlow Condensed Fallback";
  src: local("Arial Narrow"), local("Arial"), local("Liberation Sans Narrow");
  size-adjust: 80%;
  ascent-override: 115%;
  descent-override: 29%;
  line-gap-override: 0%;
}


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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea { font: inherit; color: inherit; }

ul[class],
ol[class] { list-style: none; padding: 0; }

:where(a) { color: inherit; }


:root {
  
  --ink-900: #121310;
  --ink-800: #1c1e19;
  --ink-700: #2b2e27;
  --stone-600: #5f6058;
  --stone-300: #c9c6bc;
  --stone-200: #e4e1d9;
  --limestone-100: #f2efe8;
  --limestone-50: #faf8f4;
  --white: #ffffff;
  --yellow-500: #f3d500;
  --yellow-600: #d8be00;
  --yellow-400: #ffe64d;

  
  --bg: var(--limestone-50);
  --bg-alt: var(--limestone-100);
  --surface: var(--white);
  --fg: var(--ink-900);
  --fg-muted: var(--stone-600);
  --border: var(--stone-200);
  --border-strong: var(--stone-300);
  --accent: var(--yellow-500);
  --accent-fg: var(--ink-900);
  
  --focus-ring: var(--ink-900);
  --focus-halo: var(--yellow-500);

  
  --ff-body: "Barlow", "Barlow Fallback", system-ui, sans-serif;
  --ff-display: "Barlow Condensed", "Barlow Condensed Fallback", "Barlow",
    system-ui, sans-serif;

  --fs-display: clamp(2.75rem, 1.6rem + 5.2vw, 5rem);
  --fs-h1: clamp(2rem, 1.35rem + 2.9vw, 3.25rem);
  --fs-h2: clamp(1.5rem, 1.18rem + 1.45vw, 2.125rem);
  --fs-h3: 1.3125rem;
  --fs-lead: clamp(1.125rem, 1.03rem + 0.42vw, 1.3125rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.75rem;

  
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  
  --container: 75rem;      
  --measure: 68ch;
  --gutter: clamp(1rem, 5vw, 2.5rem);
  --header-h: 3.5rem;

  
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;
  --ease: cubic-bezier(0.2, 0, 0.2, 1);
  --dur: 180ms;
}

@media (min-width: 64em) {
  :root { --header-h: 4.75rem; }
}


.is-dark {
  --bg: var(--ink-900);
  --bg-alt: var(--ink-800);
  --surface: var(--ink-800);
  --fg: var(--white);
  --fg-muted: #b9b7ac;
  --border: var(--ink-700);
  --border-strong: #3d4038;
  --focus-ring: var(--yellow-500);
  --focus-halo: var(--ink-900);
  color: var(--fg);
  background-color: var(--bg);
}



body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--fg);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main { flex: 1 0 auto; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.012em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 {
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}
h4 {
  font-size: 1rem;
  letter-spacing: 0.06em;
}

p { text-wrap: pretty; }


.hero p:not([class]),
.section-head p:not([class]),
.prose p,
.prose li,
.timeline__body p,
.steps p,
.faq__body p,
.faq__body li,
.card p:not([class]),
.u-justify {
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
}

strong, b { font-weight: 600; }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--focus-halo);
  border-radius: var(--r-sm);
}

::selection {
  background: var(--yellow-500);
  color: var(--ink-900);
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin-block: var(--space-6);
}


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

.container--narrow { max-width: 52rem; }


.container--lecture {
  max-width: calc(80ch + 2 * var(--gutter));
}
.container--lecture .hero__inner,
.container--lecture .prose,
.hero .container--lecture p { max-width: none; }


.section {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
.section--tight { padding-block: clamp(1rem, 2vw, 1.5rem); }

.section--onglets { padding-top: var(--space-3); }

.section--alt {
  --bg: var(--limestone-100);
  background-color: var(--bg-alt);
}

.section-head {
  max-width: var(--measure);
  margin-bottom: var(--space-5);
}
.section-head > * + * { margin-top: var(--space-3); }
.section-head p {
  color: var(--fg-muted);
  font-size: var(--fs-lead);
  line-height: 1.55;
}


.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--ff-display);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 1.5rem;
  height: 3px;
  background-color: var(--accent);
}
.is-dark .eyebrow { color: var(--yellow-500); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--fg-muted);
}


.grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fill, minmax(min(17rem, 100%), 1fr));
}

.grid > li { display: flex; }
.grid > li > .card { flex: 1; }

.grid > li[hidden] { display: none; }


.grid--abrege { container-type: inline-size; }
@container (width < 35.5rem) {
  .grid--abrege > :nth-child(3) { display: none; }
}

.stack > * + * { margin-top: var(--space-4); }

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}




.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--ink-700);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
  text-decoration: none;
  padding-block: 0.375rem;
}
.brand img {
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
}
.brand__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand__tag {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 2px;
}
@media (min-width: 40em) {
  .brand img { width: 3.375rem; height: 3.375rem; }
  
  .brand__name { font-size: 1.5625rem; }
}


.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.5rem 0.75rem;
  margin-right: -0.75rem;
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle__bars {
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: background var(--dur) var(--ease);
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform var(--dur) var(--ease);
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }


.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }


.site-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 40;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: var(--ink-900);
  padding: var(--space-5) var(--gutter) var(--space-8);
}

.site-nav:target,
.site-nav[data-open="true"] { display: block; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav li + li { border-top: 1px solid var(--ink-700); }

.site-nav a {
  display: block;
  padding: 0.9375rem 0;
  font-family: var(--ff-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: color var(--dur) var(--ease);
}
.site-nav a:hover { color: var(--yellow-500); }
.site-nav a[aria-current="page"] { color: var(--yellow-500); }


.site-nav__close {
  display: block;
  margin-bottom: var(--space-4);
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
}


@media (min-width: 64em) {
  
  .nav-toggle,
  .site-nav a.site-nav__close { display: none; }

  .site-nav,
  .site-nav:target {
    display: block;
    position: static;
    inset: auto;
    overflow: visible;
    background: none;
    padding: 0;
  }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.2vw, 2rem);
  }
  .site-nav li + li { border-top: 0; }

  
  .site-nav a {
    position: relative;
    padding: 0.25rem 0;
    font-size: 1.0625rem;
    letter-spacing: 0.08em;
  }
  
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.375rem;
    height: 3px;
    background-color: var(--yellow-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
  }
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after,
  .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
}


.skip-link {
  position: absolute;
  left: var(--space-4);
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--yellow-500);
  color: var(--ink-900);
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus-visible { transform: translateY(0); }


.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  
  background-image:
    radial-gradient(90% 70% at 50% -12%, rgba(243, 213, 0, 0.17), transparent 62%),
    var(--hero-image, none);
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/topo.a27c7479.svg");
  background-repeat: no-repeat;
  background-position: right -70px top 50%;
  
  background-size: auto 134%;
  
  -webkit-mask-image: linear-gradient(to right, transparent 26%, #000 62%);
  mask-image: linear-gradient(to right, transparent 26%, #000 62%);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 63.99em) {
  .hero::before {
    background-position: right -150px top 50%;
    background-size: auto 102%;
    -webkit-mask-image: linear-gradient(to right, transparent 4%, #000 46%);
    mask-image: linear-gradient(to right, transparent 4%, #000 46%);
    opacity: 0.7;
  }
}

.hero__inner {
  position: relative;
  padding-block: clamp(1.75rem, 5vw, 3.5rem);
  max-width: 46rem;
}
.hero__inner > * + * { margin-top: var(--space-4); }
.hero__title {
  font-size: var(--fs-display);
  letter-spacing: 0.008em;
}
.hero p {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 40rem;
}
.hero .cluster { margin-top: var(--space-6); }


.hero--page .hero__inner {
  padding-block: clamp(1.875rem, 4vw, 2.75rem) clamp(1.375rem, 2.75vw, 1.875rem);
}

.hero--page .hero__inner > p:not([class]) { max-width: none; }


.hero--fil .hero__inner { padding-top: clamp(0.875rem, 1.75vw, 1.25rem); }
.hero--fil .hero__inner > nav:first-child + * { margin-top: var(--space-6); }


.hero__logo {
  display: block;
  width: clamp(6rem, 14vw, 8.5rem);
  height: auto;
  margin-bottom: var(--space-5);
}

.hero .hero__nom {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: 0.01em;
  
  color: var(--fg);
  max-width: 22ch;
  margin-top: var(--space-3);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.6875rem 1.625rem;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background-color: var(--yellow-500);
  color: var(--ink-900);
}
.btn--primary:hover { background-color: var(--yellow-600); }


.btn--secondary {
  background-color: transparent;
  border-color: currentColor;
  color: var(--fg);
}
.btn--secondary:hover {
  background-color: var(--fg);
  color: var(--bg);
}

.btn--sm {
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}


.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
}
.link-arrow svg {
  width: 1.125rem;
  height: 1.125rem;
  flex: none;
  transition: transform var(--dur) var(--ease);
}
.link-arrow:hover svg { transform: translateX(4px); }

.card .link-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
}


.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 3px;
  border-radius: var(--r-md) var(--r-md) 0 0;
  background-color: var(--border-strong);
  transition: background-color var(--dur) var(--ease);
}
.card:hover,
.card:focus-within {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}
.card:hover::before,
.card:focus-within::before { background-color: var(--yellow-500); }

.card h3 { margin: 0; }
.card p {
  color: var(--fg-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
}
.card .link-arrow { margin-top: auto; padding-top: var(--space-2); }


.card__titre {
  
  padding-right: var(--space-6);
}
.card__titre a {
  color: inherit;
  text-decoration: none;
}
.card__titre a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.card__titre svg {
  position: absolute;
  right: var(--space-5);
  bottom: var(--space-5);
  width: 1.125rem;
  height: 1.125rem;
  transition: transform var(--dur) var(--ease);
}
.card:hover .card__titre svg,
.card:focus-within .card__titre svg { transform: translateX(4px); }


.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-4);
  font-size: var(--fs-small);
  color: var(--fg-muted);
}

.meta > span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.meta svg {
  width: 1rem;
  height: 1rem;
  flex: none;
}


.date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  padding: 0.375rem 0;
  flex: none;
  background-color: var(--ink-900);
  border-radius: var(--r-sm);
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.date-badge__day {
  font-size: 1.5rem;
  color: var(--white);
}
.date-badge__month {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--yellow-500);
  margin-top: 3px;
}
.date-badge__year {
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #b9b7ac;
  margin-top: 2px;
}
.card__head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.card__head > div { flex: 1; }


.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: calc(var(--space-5) * -1) calc(var(--space-5) * -1) var(--space-1);
  overflow: hidden;
  background-color: var(--ink-900);
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur) var(--ease);
}
.card:hover .card__media img,
.card:focus-within .card__media img { transform: scale(1.03); }


.card__media--motif {
  display: grid;
  place-items: center;
  background-image: url("/assets/img/topo.a27c7479.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 161% auto;
}
.card__media-icone {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--yellow-500);
  opacity: 0.55;
}


.card__media .date-badge {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-4);
  border: 1px solid rgb(255 255 255 / 0.14);
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.35);
}

.card::before { z-index: 1; }


.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.1875rem 0.5rem;
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  color: var(--fg-muted);
  white-space: nowrap;
}
.tag--accent {
  background-color: var(--yellow-500);
  border-color: var(--yellow-500);
  color: var(--ink-900);
}
.tag--solid {
  background-color: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--white);
}


.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline__item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: var(--space-6);
  border-left: 2px solid var(--border);
}
.timeline__item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -0.4375rem;
  top: 0.4375rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--yellow-500);
  box-shadow: 0 0 0 4px var(--bg);
}
.timeline__year {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}
.timeline__body { max-width: var(--measure); }
.timeline__body h3 { margin-bottom: var(--space-2); }
.timeline__body p { color: var(--fg-muted); }
.timeline__body p + p { margin-top: var(--space-3); }

@media (min-width: 48em) {
  
  .timeline { margin-left: 6rem; }
  .timeline__year {
    position: absolute;
    left: -6rem;
    top: 0;
    width: 5rem;
    text-align: right;
    margin: 0;
    color: var(--fg-muted);
  }
}


.steps {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: var(--space-3);
  background-color: var(--yellow-500);
  color: var(--ink-900);
  border-radius: var(--r-sm);
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.steps h3 { margin-bottom: var(--space-2); }
.steps p { color: var(--fg-muted); font-size: var(--fs-small); }


.faq {
  border-bottom: 1px solid var(--border);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  min-height: 44px;
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  transition: color var(--dur) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--fg-muted); }


.faq summary::after {
  content: "";
  flex: none;
  width: 0.875rem;
  height: 0.875rem;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat;
  transition: transform var(--dur) var(--ease);
}
.faq[open] summary::after {
  background:
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
  transform: rotate(180deg);
}
.faq[open] summary { color: var(--fg); }

.faq__body {
  padding-bottom: var(--space-5);
  max-width: var(--measure);
  color: var(--fg-muted);
}
.faq__body > * + * { margin-top: var(--space-3); }


.cta {
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(80% 120% at 50% 0%, rgba(243, 213, 0, 0.15), transparent 60%);
  text-align: center;
}
.cta__inner {
  position: relative;
  max-width: 40rem;
  margin-inline: auto;
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
}
.cta__inner > * + * { margin-top: var(--space-4); }
.cta .eyebrow { justify-content: center; }
.cta .cluster { justify-content: center; margin-top: var(--space-6); }


.subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}
.subnav ul {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scrollbar-width: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.subnav ul::-webkit-scrollbar { display: none; }
.subnav a {
  display: block;
  padding: var(--space-4) 0;
  white-space: nowrap;
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.subnav a:hover { color: var(--fg); }
.subnav a[aria-current="true"] {
  color: var(--fg);
  border-bottom-color: var(--yellow-500);
}


[id] { scroll-margin-top: calc(var(--header-h) + 4rem); }


.tabs { border-bottom: 1px solid var(--border); }
.tabs ul {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scrollbar-width: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tabs ul::-webkit-scrollbar { display: none; }
.tabs a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: var(--space-3) 0;
  white-space: nowrap;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.tabs a:hover { color: var(--fg); }
.tabs a[aria-current="page"] {
  color: var(--fg);
  border-bottom-color: var(--yellow-500);
}

.tabs__compte {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--fg-muted);
}


.filtres {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.filtres__resume {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-4);
  min-height: 44px;
  padding: var(--space-3) var(--space-4);
  cursor: pointer;
  list-style: none;
}
.filtres__resume::-webkit-details-marker { display: none; }
.filtres__resume:hover { color: var(--fg-muted); }
.filtres__resume-titre {
  margin-right: auto;
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.filtres__resume::after {
  content: "";
  flex: none;
  width: 0.875rem;
  height: 0.875rem;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat;
}
.filtres[open] .filtres__resume::after {
  background:
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
}
.filtres[open] .filtres__resume { border-bottom: 1px solid var(--border); }
.filtres > form { padding: var(--space-4); }

.filtres__ligne {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.filtres__champ {
  display: flex;
  flex: 1 1 11rem;
  flex-direction: column;
  gap: var(--space-1);
  margin: 0;
}
.filtres label,
.filtres legend {
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.filtres select {
  min-height: 44px;
  padding: var(--space-2) var(--space-3);
  background-color: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  color: var(--fg);
  font-size: var(--fs-small);
}


.filtres__plages {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.plage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-3);
}

.plage__titre {
  flex: 0 0 100%;
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.plage__figee {
  font-size: var(--fs-small);
  color: var(--fg-muted);
}
.plage__borne { flex: 0 0 auto; }

.plage__piste {
  position: relative;
  flex: 1 1 6rem;
  height: 44px;   
}
@media (min-width: 48em) {
  .plage__titre { flex: 0 0 7rem; }
}
.plage__piste::before,
.plage__piste::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 4px;
  border-radius: 2px;
  transform: translateY(-50%);
  pointer-events: none;
}
.plage__piste::before {
  left: 11px;
  right: 11px;
  background-color: var(--border-strong);
}

.plage__piste::after {
  left: calc(11px + var(--a, 0) * (100% - 22px));
  right: calc(11px + (1 - var(--b, 1)) * (100% - 22px));
  background-color: var(--accent);
}
.plage__curseur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  
  pointer-events: none;
  z-index: 1;
}

.plage__curseur--dessus { z-index: 2; }
.plage__curseur::-webkit-slider-runnable-track {
  background: none;
  height: 100%;
}
.plage__curseur::-moz-range-track {
  background: none;
  height: 100%;
}

.plage__curseur::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  margin-top: 11px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--fg);
  border-radius: 50%;
  background-color: var(--surface);
  cursor: pointer;
}
.plage__curseur::-moz-range-thumb {
  pointer-events: auto;
  box-sizing: border-box;
  width: 22px;
  height: 22px;
  border: 2px solid var(--fg);
  border-radius: 50%;
  background-color: var(--surface);
  cursor: pointer;
}

.filtres__tags {
  margin: var(--space-4) 0 0;
  padding: var(--space-4) 0 0;
  border: 0;
  border-top: 1px solid var(--border);
}
.filtres__tags legend { padding: 0; }


.tagtree,
.tagtree__enfants {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}
.tagtree {
  flex-direction: column;
  align-items: stretch;
  margin-top: var(--space-2);
}
.tagtree > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}
.tagtree__enfants::before {
  content: "›";
  font-size: 1.125rem;
  line-height: 1;
  color: var(--fg-muted);
}



.chip {
  display: inline-flex;
  position: relative;
}
.chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.chip__box {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  padding-inline: var(--space-3);
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background-color: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}

.tagtree > li > .chip .chip__box { color: var(--fg); }
.chip:hover .chip__box {
  color: var(--fg);
  border-color: var(--fg-muted);
}

.chip input:checked + .chip__box {
  color: var(--white);
  background-color: var(--ink-900);
  border-color: var(--ink-900);
}
.chip input:focus-visible + .chip__box {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--focus-halo);
}
.chip__n {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--fg-muted);
}
.chip input:checked + .chip__box .chip__n { color: var(--stone-300); }


.tri {
  display: flex;
  gap: var(--space-2);
}
.tri select { flex: 1; }
.tri__sens {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  min-height: 44px;
  background-color: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  color: var(--fg);
  cursor: pointer;
}
.tri__sens:hover { border-color: var(--fg-muted); }
.tri__sens svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform var(--dur) var(--ease);
}

.tri__sens[aria-pressed="true"] svg { transform: rotate(90deg); }
.tri__sens[aria-pressed="false"] svg { transform: rotate(-90deg); }

.filtres__pied {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.filtres__compte {
  font-size: var(--fs-small);
  color: var(--fg-muted);
}


.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
}
th, td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background-color: var(--bg-alt);
  white-space: nowrap;
}
tbody tr:last-child td { border-bottom: 0; }


.table--compact th,
.table--compact td { padding: var(--space-2) var(--space-4); }


.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding-inline: 0.75rem;
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.pagination a:hover { border-color: var(--fg); }
.pagination [aria-current="page"] {
  background-color: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--white);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--fs-small);
  color: var(--fg-muted);
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--border-strong);
}


.prose {
  max-width: var(--measure);
}
.prose > * + * { margin-top: var(--space-4); }
.prose h2 { margin-top: var(--space-6); }
.prose h3 { margin-top: var(--space-5); }
.prose h2 + *, .prose h3 + * { margin-top: var(--space-3); }

.prose > :first-child { margin-top: 0; }

.prose a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--yellow-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: text-decoration-thickness var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.prose a:hover {
  text-decoration-thickness: 4px;
  background-color: rgba(243, 213, 0, 0.18);
}

.prose ul,
.prose ol { padding-left: 1.375rem; }
.prose li + li { margin-top: var(--space-2); }
.prose ul { list-style: none; padding-left: 1.25rem; }
.prose ul > li { position: relative; }
.prose ul > li::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 0.6875em;
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: var(--yellow-500);
}

.prose blockquote {
  border-left: 3px solid var(--yellow-500);
  padding-left: var(--space-4);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--fg-muted);
}
.prose figure figcaption {
  margin-top: var(--space-2);
  font-size: var(--fs-small);
  color: var(--fg-muted);
}

.prose img { border-radius: var(--r-md); }
.prose video {
  border-radius: var(--r-md);
  background-color: var(--ink-900);
}


.prose figure {
  width: fit-content;
  max-width: 100%;
}
.prose .zoom {
  width: fit-content;
  max-width: 100%;
}
.prose figure,
.prose .zoom,
.prose img,
.prose video { margin-inline: auto; }


.prose a.btn { color: var(--ink-900); text-decoration: none; }
.prose a.btn:hover { background-color: var(--yellow-600); }


.prose code {
  font-family: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9375em;
  background-color: var(--bg-alt);
  padding: 0.1em 0.35em;
  border-radius: var(--r-sm);
}
.prose pre {
  overflow-x: auto;
  padding: var(--space-4) var(--space-5);
  background-color: var(--ink-900);
  border-radius: var(--r-md);
}

.prose pre code {
  padding: 0;
  background: none;
  color: var(--limestone-50);
  font-size: var(--fs-small);
}


.sommaire {
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--fs-small);
}
.sommaire__titre {
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.sommaire ol {
  margin-top: var(--space-3);
  padding-left: 1.25rem;
}

.sommaire ol ol {
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
}
.sommaire li + li { margin-top: var(--space-2); }
.sommaire a { text-decoration: none; }
.sommaire a:hover {
  text-decoration: underline;
  text-decoration-color: var(--yellow-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}


.prose .footnote-reference a { text-decoration: none; }
.prose .footnote-definition {
  font-size: var(--fs-small);
  color: var(--fg-muted);
}
.prose .footnote-definition:first-of-type {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.prose .footnote-definition p { display: inline; }


.note {
  padding: var(--space-4) var(--space-5);
  background-color: var(--bg-alt);
  border-left: 3px solid var(--yellow-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--fs-small);
}
.note > * + * { margin-top: var(--space-2); }
.note strong {
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}


.note--important { border-left-width: 6px; }
.note--avertissement,
.note--danger {
  border-left-color: var(--ink-900);
  border-left-width: 6px;
}



.zoom {
  display: block;
  position: relative;
  cursor: zoom-in;
}

.prose a.zoom { text-decoration: none; }
.prose a.zoom:hover { background-color: transparent; }

.zoom__loupe {
  position: absolute;
  right: var(--space-3);
  bottom: var(--space-3);
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--r-sm);
  background-color: rgba(18, 19, 16, 0.62);
  color: var(--white);
  opacity: 0.82;
  transition: opacity var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.zoom__loupe svg { width: 1.25rem; height: 1.25rem; }
.zoom:hover .zoom__loupe,
.zoom:focus-visible .zoom__loupe {
  opacity: 1;
  background-color: var(--ink-900);
}


.visionneuse {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr auto;
}
.visionneuse::backdrop { background-color: rgba(18, 19, 16, 0.92); }

.visionneuse:not([open]) { display: none; }


.visionneuse__cadre {
  position: relative;
  display: flex;
  overflow: auto;
  overscroll-behavior: contain;
  
  touch-action: none;
  padding: var(--space-3);
  cursor: zoom-in;
}
.visionneuse__cadre[data-agrandie="oui"] { cursor: zoom-out; }

.visionneuse__cadre:focus-visible {
  outline-offset: -3px;
  box-shadow: none;
}

.visionneuse__cadre img {
  margin: auto;
  max-width: none;
  max-height: none;
  border-radius: var(--r-md);
}

.visionneuse__barre {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--gutter);
  
  padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
}
.visionneuse__legende {
  max-width: var(--measure);
  min-width: 0;
  font-size: var(--fs-small);
  color: var(--fg-muted);
}

.visionneuse__actions {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  gap: var(--space-2);
}

.visionneuse__etat {
  font-size: var(--fs-small);
  color: var(--fg-muted);
}

.visionneuse__etat:empty { display: none; }

.visionneuse__actions .btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.visionneuse__bascule { min-width: 12rem; }
@media (max-width: 34em) {
  .visionneuse__bascule { min-width: 0; }
  
  .visionneuse__legende { flex: 1 0 100%; }
  .visionneuse__actions { flex: 1 0 100%; }
  .visionneuse__actions .btn { flex: 1 1 auto; }
  .visionneuse__etat { flex: 1 0 100%; text-align: center; }
}


.site-footer {
  padding-top: var(--space-6);
}
.site-footer__grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  padding-bottom: var(--space-6);
}
.site-footer h2 {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  color: var(--yellow-500);
  margin-bottom: var(--space-4);
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li + li { margin-top: var(--space-2); }
.site-footer a {
  text-decoration: none;
  color: var(--fg-muted);
  transition: color var(--dur) var(--ease);
}
.site-footer a:hover { color: var(--white); }
.site-footer p { color: var(--fg-muted); font-size: var(--fs-small); }

.site-footer__brand img { width: 4rem; height: 4rem; margin-bottom: var(--space-3); }


.reseaux {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  list-style: none;
  padding: 0;
}

.site-footer .reseaux { margin-top: var(--space-6); }
.reseaux li + li { margin-top: 0; }
.reseaux a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
}
.reseaux svg {
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: var(--fs-small);
  color: var(--fg-muted);
}
.site-footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}
.site-footer__bottom li + li { margin-top: 0; }


.stats {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(min(9rem, 45%), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.stats > li { border-top: 3px solid var(--yellow-500); padding-top: var(--space-3); }
.stats dt {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}
.stats dd {
  margin: var(--space-2) 0 0;
  font-size: var(--fs-small);
  line-height: 1.45;
  color: var(--fg-muted);
}




.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.u-center { text-align: center; }

.u-muted { color: var(--fg-muted); }

.u-measure { max-width: var(--measure); }
.u-mt-3 { margin-top: var(--space-3); }
.u-mt-5 { margin-top: var(--space-5); }
.u-mt-6 { margin-top: var(--space-6); }
.u-mt-7 { margin-top: var(--space-7); }


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