/* =========================================================================
   Donatien Roche — feuille de style principale
   Charte : #f1f0f0 blanc cassé · #021322 bleu nuit · #bc8f56 bronze (accents)
   Typo   : Familjen Grotesk (titres) · IBM Plex Sans (texte)
   ========================================================================= */

@import url("../fonts/fonts.css?v=42");

/* -------------------------------------------------------------------------
   1. Tokens
   ------------------------------------------------------------------------- */
:root {
  /* Couleurs de marque */
  --c-bg: #f1f0f0;            /* blanc cassé — fond clair par défaut */
  --c-ink: #021322;          /* bleu nuit — fonds sombres, texte principal */
  --c-bronze: #bc8f56;       /* bronze — accents uniquement */
  --c-bronze-hover: #d6ab73; /* bronze survol (sur fond sombre) */

  /* Dérivés — surfaces claires */
  --c-surface: #ffffff;      /* cartes sur fond clair */
  --c-surface-warm: #f7f5f2; /* panneau discret */
  --c-placeholder: #e4e2e0;  /* réservation d'image */
  --c-placeholder-2: #e9e6e2;

  /* Texte sur fond clair */
  --c-text: #2c3a47;         /* texte courant */
  --c-text-strong: var(--c-ink);
  --c-muted: #5b6875;        /* légendes, labels de formulaire */
  --c-overline: #7a6a55;     /* sur-titres (gris chaud) */
  --c-link-light: #7a5c33;   /* bronze assombri — liens texte sur fond clair (AA) */

  /* Texte sur fond sombre */
  --c-on-ink: #f1f0f0;
  --c-on-ink-80: rgba(241, 240, 240, 0.8);
  --c-on-ink-70: rgba(241, 240, 240, 0.72);
  --c-on-ink-60: rgba(241, 240, 240, 0.62);
  --c-on-ink-45: rgba(241, 240, 240, 0.45);

  /* Filets */
  --hair-bronze: rgba(188, 143, 86, 0.4);
  --hair-bronze-strong: rgba(188, 143, 86, 0.5);
  --hair-ink: rgba(2, 19, 34, 0.1);
  --hair-ink-strong: rgba(2, 19, 34, 0.18);
  --hair-on-ink: rgba(241, 240, 240, 0.12);

  /* Typographie */
  --font-display: "Familjen Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-overline: 0.6875rem;   /* 11px */
  --fs-nav: 0.78125rem;       /* 12.5px */
  --fs-button: 0.8125rem;     /* 13px */
  --fs-small: 0.9375rem;      /* 15px */
  --fs-body: 1rem;            /* 16px */
  --fs-lead: clamp(1rem, 0.9rem + 0.5vw, 1.1875rem);      /* 16 → 19 */
  --fs-h3: 1.25rem;           /* 20px */
  --fs-h2: clamp(1.75rem, 1.35rem + 2vw, 2.5rem);          /* 28 → 40 */
  --fs-h1: clamp(2.125rem, 1.4rem + 3.6vw, 3.5rem);        /* 34 → 56 */
  --fs-hero: clamp(2.25rem, 1.15rem + 5.5vw, 4.5rem);      /* 36 → 72 */

  /* Rythme */
  --container: 1280px;
  --container-narrow: 1120px;
  --header-h: 76px;
  --section-pad-y: clamp(4rem, 8vw, 6.75rem);   /* 64 → 108 */
  --gutter: clamp(1.25rem, 5vw, 3.5rem);        /* 20 → 56 */

  /* Formes */
  --radius-pill: 999px;
  --radius-card: 20px;
  --radius-media: 16px;

  /* Transitions */
  --ease: 0.25s ease;
}

/* -------------------------------------------------------------------------
   2. Reset
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--c-text-strong);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg,
model-viewer { display: block; max-width: 100%; }

img,
video { height: auto; }

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

button { cursor: pointer; }

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}

:target { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* Accessibilité : focus visible homogène */
:focus-visible {
  outline: 2px solid var(--c-bronze);
  outline-offset: 3px;
  border-radius: 3px;
}

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

/* -------------------------------------------------------------------------
   3. Utilitaires de mise en page
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-pad-y); }
.section--ink { background: var(--c-ink); color: var(--c-on-ink); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.25rem); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0;
  transform: translateY(-120%);
  z-index: 200;
  background: var(--c-bronze);
  color: var(--c-ink);
  font-size: var(--fs-nav);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 12px 12px;
  transition: transform var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------------------
   4. Typographie de contenu
   ------------------------------------------------------------------------- */
.overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-overline);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-overline);
}
.section--ink .overline,
.overline--bronze { color: var(--c-bronze); }

.overline--sm {
  font-size: 0.65625rem;  /* 10.5px */
  letter-spacing: 0.18em;
}

.rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-bronze);
  border: 0;
}
.rule--wide { width: 56px; }

.title-hero {
  font-size: var(--fs-hero);
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--c-on-ink);
  max-width: 17ch;
  text-wrap: balance;
}
.title-1 { font-size: var(--fs-h1); line-height: 1.1; }
.title-2 { font-size: var(--fs-h2); }
.title-3 { font-size: var(--fs-h3); letter-spacing: -0.02em; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--c-text);
}
.section--ink .lead { color: var(--c-on-ink-70); }

.prose p { margin-block: 0 1.15rem; line-height: 1.75; color: var(--c-text); }
.prose p:last-child { margin-bottom: 0; }
.section--ink .prose p { color: var(--c-on-ink-80); }
.prose strong, .prose b { font-weight: 600; color: var(--c-text-strong); }
.section--ink .prose strong, .section--ink .prose b { color: var(--c-on-ink); }

/* Lien texte sur fond clair : jamais bronze pur (contraste), bronze assombri + soulignement */
.link-inline {
  color: var(--c-link-light);
  text-decoration: underline;
  text-decoration-color: var(--c-bronze);
  text-underline-offset: 3px;
}
.link-inline:hover { text-decoration-thickness: 2px; }

/* Coordonnées obfusquées : état avant / après reconstruction par main.js.
   Utilisé sur /contact.html et /mentions-legales.html. */
.is-cloaked {
  color: var(--c-muted);
  font-style: italic;
}
a.is-revealed {
  color: var(--c-link-light);
  text-decoration: underline;
  text-decoration-color: var(--c-bronze);
  text-underline-offset: 3px;
  font-style: normal;
}
a.is-revealed:hover { text-decoration-thickness: 2px; }

/* Lien « flèche » discret */
.link-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-nav);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-strong);
  border-bottom: 1px solid var(--c-bronze);
  padding-bottom: 5px;
  transition: color var(--ease), gap var(--ease);
}
.link-arrow::before {
  content: "";
  position: absolute;
  inset: -14px -8px;
}
.link-arrow::after { content: "\2192"; }
.link-arrow:hover { color: var(--c-link-light); gap: 0.75rem; }
.section--ink .link-arrow { color: var(--c-on-ink); }
.section--ink .link-arrow:hover { color: var(--c-bronze); }

/* -------------------------------------------------------------------------
   5. Boutons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  padding: 1rem 1.875rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
    transform var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--c-bronze); color: var(--c-ink); }
.btn--primary:hover { background: var(--c-bronze-hover); }

/* Bouton fantôme — sur fond sombre */
.btn--ghost {
  color: var(--c-on-ink);
  border-color: rgba(241, 240, 240, 0.32);
}
.btn--ghost:hover { border-color: var(--c-bronze); color: var(--c-bronze); }

/* Bouton fantôme — sur fond clair */
.btn--ghost-ink {
  color: var(--c-ink);
  border-color: var(--hair-ink-strong);
}
.btn--ghost-ink:hover { border-color: var(--c-bronze); color: var(--c-link-light); }

.btn--sm { padding: 0.875rem 1.5rem; font-size: 0.78125rem; }

/* -------------------------------------------------------------------------
   6. Réservations média / visionneuse
   ------------------------------------------------------------------------- */
.media {
  position: relative;
  background: var(--c-placeholder);
  border-radius: var(--radius-media);
  overflow: hidden;
}
.media > img,
.media > model-viewer,
.media > iframe,
.media > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.media--portrait { aspect-ratio: 4 / 5; }
.media--landscape { aspect-ratio: 16 / 10; }
.media--card { aspect-ratio: 1 / 1; }

.media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
  font-size: var(--fs-overline);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.media-fallback::before {
  content: "";
  width: 34px;
  height: 34px;
  border: 1px solid var(--c-bronze);
  border-radius: 50%;
}

/* -------------------------------------------------------------------------
   7. Grilles réutilisables
   ------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 1.875rem); }
/* Aperçus de réalisations : 4 → 2×2 (jusqu'au mobile), jamais 3+1 */
/* 4 colonnes fluides ; en dessous, on garde des cartes de la même taille
   (≈ largeur du mode 4 colonnes) plutôt que de les laisser grossir */
.grid--cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1040px) {
  .grid--cards {
    grid-template-columns: repeat(2, minmax(0, 300px));
    justify-content: center;
  }
}
@media (max-width: 540px) {
  .grid--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
    justify-content: stretch;
  }
}
.grid--targets {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
}
.grid--split {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.125rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.section-head__title { margin-top: 0.875rem; }

/* Lien « voir tout » sous une grille */
.section-more {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  text-align: center;
}

/* -------------------------------------------------------------------------
   8. Carte projet (aperçus de réalisations)
   ------------------------------------------------------------------------- */
/* Section « Qui suis-je » : colonne portrait étroite + large colonne texte */
.about {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  max-width: 1040px;
}
.about__body { max-width: 68ch; }
@media (min-width: 721px) {
  /* Cale le haut du portrait sur le titre « Mon métier… » (sous l'overline) */
  .about__portrait { margin-top: 2rem; }
}
@media (max-width: 720px) {
  .about { grid-template-columns: minmax(0, 1fr); gap: 2rem; justify-items: start; }
}

/* Portrait : cutout PNG transparent, masque circulaire, taille native max 280 px */
.about__portrait {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.about__portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--hair-bronze);
  object-fit: contain;
  object-position: center bottom;
}
.about__caption { text-align: center; }
.about__caption-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text-strong);
}
.about__caption-role {
  display: block;
  margin-top: 0.2rem;
  font-size: var(--fs-overline);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-overline);
}

.project-card { display: flex; flex-direction: column; }
.project-card .media { margin-bottom: 1.125rem; }
.project-card__kicker {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.65625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-overline);
  margin-bottom: 0.5rem;
}
/* filet bronze permanent — signature visuelle des cartes */
.project-card__kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  flex: none;
  background: var(--c-bronze);
  transition: width var(--ease);
}
.project-card__title { font-size: var(--fs-h3); color: var(--c-text-strong); }
a.project-card { transition: transform var(--ease); }
a.project-card:hover { transform: translateY(-4px); }
a.project-card:hover .project-card__kicker::before { width: 34px; }
a.project-card:hover .project-card__title { color: var(--c-link-light); }
a.project-card:hover .media > img { transform: scale(1.03); }
.project-card .media > img { transition: transform 0.4s ease; }

/* -------------------------------------------------------------------------
   9. Bloc « cible » (à qui s'adressent les services)
   ------------------------------------------------------------------------- */
.target {
  border-top: 1px solid var(--hair-bronze-strong);
  padding-top: 1.625rem;
}
.target__icon { width: 34px; height: 34px; color: var(--c-bronze); }
.target__icon path { stroke: currentColor; stroke-width: 1.2; fill: none; }
.target__title {
  font-size: 1.3125rem;
  color: var(--c-on-ink);
  margin: 1.375rem 0 0.75rem;
}
.target__text { font-size: var(--fs-small); line-height: 1.7; color: var(--c-on-ink-60); }

/* -------------------------------------------------------------------------
   10. Marquee — bandeau défilant des expertises
   ------------------------------------------------------------------------- */
.marquee {
  background: var(--c-bg);
  border-block: 1px solid var(--hair-bronze-strong);
  overflow: hidden;
  padding-block: 1.125rem;
  /* fondu des bords : le texte n'est plus coupé net */
  -webkit-mask-image: linear-gradient(
    90deg, transparent 0, #000 8%, #000 92%, transparent 100%
  );
  mask-image: linear-gradient(
    90deg, transparent 0, #000 8%, #000 92%, transparent 100%
  );
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-duration, 45s) linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  padding-right: 1.875rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink);
  white-space: nowrap;
}
.marquee__group span[aria-hidden] {
  width: 5px;
  height: 5px;
  background: var(--c-bronze);
  border-radius: 50%;
  flex: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; width: 100%; }
  .marquee__group:nth-child(2) { display: none; }
  .marquee__group { flex-wrap: wrap; white-space: normal; }
}

/* -------------------------------------------------------------------------
   11. Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--c-ink);
  min-height: min(76vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 70% 40%, #0a2437 0%, #021322 70%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    110% 85% at 68% 42%,
    rgba(188, 143, 86, 0.16) 0%,
    rgba(2, 19, 34, 0) 62%
  );
}
.hero__viewer {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
canvas.hero__viewer {
  display: block;
  opacity: 0;
  transition: opacity 800ms ease;
}
canvas.hero__viewer.is-ready { opacity: 1; }
@media (min-width: 901px) {
  .hero__viewer {
    width: 66%;
    right: -2%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
  }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(2, 19, 34, 0.32) 0%, rgba(2, 19, 34, 0) 26%),
    linear-gradient(
      100deg,
      rgba(2, 19, 34, 0.9) 0%,
      rgba(2, 19, 34, 0.62) 34%,
      rgba(2, 19, 34, 0.12) 62%,
      rgba(2, 19, 34, 0) 86%
    );
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: calc(var(--header-h) + clamp(3rem, 9vh, 6.5rem)) var(--gutter)
    clamp(3.5rem, 9vh, 6rem);
  pointer-events: none;
}
.hero__kicker { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.625rem; }
.hero__title { margin-bottom: 1.625rem; }
.hero__subtitle {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--c-on-ink-70);
  max-width: 44ch;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.875rem; pointer-events: auto; }
.hero__caption {
  position: absolute;
  right: clamp(1.25rem, 5vw, 3.5rem);
  bottom: clamp(1.25rem, 4vh, 2.25rem);
  max-width: none;
  text-align: right;
  text-wrap: nowrap;
  opacity: 0.62;
  font-size: 0.65625rem;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-on-ink-60);
  pointer-events: none;
}
.hero__caption sup { text-transform: none; letter-spacing: 0; }

/* -------------------------------------------------------------------------
   12. CTA de fin de page
   ------------------------------------------------------------------------- */
.cta-band {
  background: var(--c-ink);
  color: var(--c-on-ink);
  border-top: 1px solid var(--hair-bronze);
  text-align: center;
  padding-block: clamp(2.75rem, 4.5vw, 4rem);
}
.cta-band__title {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  margin: 0 auto 0.75rem;
  max-width: 26ch;
}
.cta-band__text {
  color: var(--c-on-ink-60);
  margin: 0 auto 1.5rem;
  max-width: 54ch;
  line-height: 1.65;
}

/* -------------------------------------------------------------------------
   13. Pied de page
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-ink);
  color: var(--c-on-ink-70);
  border-top: 1px solid var(--hair-on-ink);
  padding-block: 1.5rem 1.25rem;
  font-size: var(--fs-small);
}
.site-footer a:hover { color: var(--c-bronze); }
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 3rem;
  margin-bottom: 1rem;
}
.site-footer__brand {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
}
.site-footer__brand-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-on-ink);
}
.site-footer__brand-role {
  font-size: var(--fs-overline);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-bronze);
}
@media (max-width: 560px) {
  .site-footer__brand { flex-direction: column; gap: 0.35rem; }
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.75rem;
}
.site-footer__nav a {
  display: inline-block;
  padding-block: 0.25rem;
  letter-spacing: 0.03em;
}
.site-footer__nav a[aria-current="page"] { color: var(--c-bronze); }
@media (max-width: 560px) {
  .site-footer__top { flex-direction: column; gap: 1.25rem; }
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--hair-on-ink);
  font-size: 0.8125rem;
  color: var(--c-on-ink-60);
}
.site-footer__bottom a {
  color: var(--c-on-ink-60);
  text-decoration: underline;
  text-decoration-color: var(--hair-bronze);
  text-underline-offset: 3px;
  padding-block: 0.35rem;
  transition: color var(--ease);
}
.site-footer__bottom a:hover,
.site-footer__bottom a[aria-current="page"] { color: var(--c-bronze); }

/* -------------------------------------------------------------------------
   14. Révélations au scroll
   N'agit que si le JS a posé .reveal-ready sur <html> — sinon le contenu
   reste visible (aucune dépendance JS pour lire la page).
   ------------------------------------------------------------------------- */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--reveal-i, 0) * 70ms);
  will-change: opacity, transform;
}
.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
