/* ============================================================================
   Wolf Pack — feuille de style du site.
   S'appuie EXCLUSIVEMENT sur wolf-tokens.css (variables --wolf-*).
   Thème sombre par défaut (IBM/Carbon, ambre loup). WCAG 2.1 AA :
   contrastes ≥ 4.5:1, focus visible partout, navigation clavier complète.
   ============================================================================ */

/* ---------------------------------------------------------------------------
   0. RESET & BASE
   --------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--wolf-color-bg);
  color: var(--wolf-color-text);
  font-family: var(--wolf-font-body);
  font-size: var(--wolf-text-base);
  line-height: var(--wolf-leading-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--wolf-font-display);
  font-weight: var(--wolf-weight-bold);
  line-height: var(--wolf-leading-tight);
  letter-spacing: var(--wolf-tracking-tight);
  margin: 0 0 var(--wolf-space-4);
  color: var(--wolf-color-text);
  text-wrap: balance;
}
h1 { font-size: var(--wolf-text-4xl); letter-spacing: var(--wolf-tracking-tighter); }
h2 { font-size: var(--wolf-text-3xl); }
h3 { font-size: var(--wolf-text-xl); }

p { margin: 0 0 var(--wolf-space-4); }

a {
  color: var(--wolf-color-accent-text);
  text-underline-offset: 0.18em;
  transition: color var(--wolf-duration-fast) var(--wolf-ease);
}
a:hover { color: var(--wolf-color-accent-hover); }

img, svg { max-width: 100%; }
::selection { background: var(--wolf-color-accent); color: var(--wolf-color-accent-contrast); }

/* Focus visible GLOBAL — anneau ambre, jamais supprimé (a11y). */
:focus-visible {
  outline: var(--wolf-border-thick) solid var(--wolf-color-focus);
  outline-offset: 2px;
}

/* Lien d'évitement. */
.wolf-skip-link {
  position: absolute;
  left: var(--wolf-space-4);
  top: -100%;
  z-index: var(--wolf-z-toast);
  padding: var(--wolf-space-2) var(--wolf-space-4);
  background: var(--wolf-color-accent);
  color: var(--wolf-color-accent-contrast);
  font-weight: var(--wolf-weight-semibold);
  text-decoration: none;
  border-radius: var(--wolf-radius-md);
  transition: top var(--wolf-duration-normal) var(--wolf-ease);
}
.wolf-skip-link:focus { top: var(--wolf-space-4); color: var(--wolf-color-accent-contrast); }

/* ---------------------------------------------------------------------------
   1. MISE EN PAGE
   --------------------------------------------------------------------------- */
.wolf-container {
  width: 100%;
  max-width: var(--wolf-container-max);
  margin-inline: auto;
  padding-inline: var(--wolf-container-pad);
}
.wolf-main { display: block; }
.wolf-cluster { display: flex; flex-wrap: wrap; gap: var(--wolf-space-3); align-items: center; }

.wolf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--wolf-space-2);
  margin: 0 0 var(--wolf-space-3);
  font-family: var(--wolf-font-mono);
  font-size: var(--wolf-text-xs);
  font-weight: var(--wolf-weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--wolf-tracking-wider);
  color: var(--wolf-color-accent-text);
}
.wolf-eyebrow::before {
  content: "";
  width: var(--wolf-space-6);
  height: var(--wolf-border-thick);
  background: var(--wolf-color-accent);
}

.wolf-lead {
  font-size: var(--wolf-text-lg);
  color: var(--wolf-color-text-muted);
  max-width: 62ch;
}

/* ---------------------------------------------------------------------------
   2. LOGOTYPE
   --------------------------------------------------------------------------- */
.wolf-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--wolf-space-3);
  text-decoration: none;
  color: var(--wolf-color-text);
}
.wolf-logo:hover { color: var(--wolf-color-text); }
.wolf-logo__mark { width: 34px; height: 34px; color: var(--wolf-color-accent); flex: none; }
.wolf-logo__mark svg { display: block; width: 100%; height: 100%; }
.wolf-logo__word {
  font-family: var(--wolf-font-display);
  font-weight: var(--wolf-weight-bold);
  font-size: var(--wolf-text-lg);
  letter-spacing: 0.1em;
  line-height: 1;
}
.wolf-logo__dot { color: var(--wolf-color-accent); }
.wolf-logo__sub {
  display: block;
  font-family: var(--wolf-font-mono);
  font-size: var(--wolf-text-2xs);
  letter-spacing: var(--wolf-tracking-wider);
  text-transform: uppercase;
  color: var(--wolf-color-text-subtle);
  margin-top: 3px;
}

/* ---------------------------------------------------------------------------
   3. EN-TÊTE / NAVIGATION / BURGER
   --------------------------------------------------------------------------- */
.wolf-header {
  position: sticky;
  top: 0;
  z-index: var(--wolf-z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wolf-space-4);
  padding: var(--wolf-space-3) var(--wolf-container-pad);
  background: var(--wolf-color-bg);
  border-bottom: var(--wolf-border-hairline) solid var(--wolf-color-border);
}
.wolf-header__end { display: flex; align-items: center; gap: var(--wolf-space-6); }
.wolf-nav { display: flex; align-items: center; gap: var(--wolf-space-5); }
.wolf-nav__link {
  font-size: var(--wolf-text-sm);
  font-weight: var(--wolf-weight-medium);
  color: var(--wolf-color-text-muted);
  text-decoration: none;
  padding: var(--wolf-space-2) 0;
  position: relative;
  white-space: nowrap;
}
.wolf-nav__link:hover,
.wolf-nav__link[aria-current="page"] { color: var(--wolf-color-text); }
.wolf-nav__link[aria-current="page"]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: var(--wolf-border-thick);
  background: var(--wolf-color-accent);
}
.wolf-nav__member {
  font-family: var(--wolf-font-mono);
  font-size: var(--wolf-text-xs);
  color: var(--wolf-color-accent-text);
  white-space: nowrap;
}

/* Bascule de langue */
.wolf-langswitch { display: flex; align-items: center; gap: var(--wolf-space-2); }
.wolf-langswitch__link {
  font-family: var(--wolf-font-mono);
  font-size: var(--wolf-text-xs);
  text-transform: uppercase;
  letter-spacing: var(--wolf-tracking-wide);
  color: var(--wolf-color-text-subtle);
  text-decoration: none;
  padding: var(--wolf-space-1) var(--wolf-space-2);
  border: var(--wolf-border-hairline) solid transparent;
  border-radius: var(--wolf-radius-md);
}
.wolf-langswitch__link:hover { color: var(--wolf-color-text); }
.wolf-langswitch__link[aria-current="true"] {
  color: var(--wolf-color-accent-text);
  border-color: var(--wolf-color-accent-line);
}

/* Menu burger (masqué au-dessus du point de rupture). */
.wolf-nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  background: transparent;
  border: var(--wolf-border-hairline) solid var(--wolf-color-border-strong);
  border-radius: var(--wolf-radius-md);
  cursor: pointer;
  position: relative;
}
.wolf-nav-toggle__bar,
.wolf-nav-toggle__bar::before,
.wolf-nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--wolf-color-text);
  transform: translate(-50%, -50%);
  transition: transform var(--wolf-duration-fast) var(--wolf-ease),
              opacity var(--wolf-duration-fast) var(--wolf-ease);
}
.wolf-nav-toggle__bar::before { transform: translate(-50%, -8px); }
.wolf-nav-toggle__bar::after  { transform: translate(-50%,  6px); }
.wolf-nav-toggle[aria-expanded="true"] .wolf-nav-toggle__bar { background: transparent; }
.wolf-nav-toggle[aria-expanded="true"] .wolf-nav-toggle__bar::before { transform: translate(-50%, -1px) rotate(45deg); background: var(--wolf-color-text); }
.wolf-nav-toggle[aria-expanded="true"] .wolf-nav-toggle__bar::after  { transform: translate(-50%, -1px) rotate(-45deg); background: var(--wolf-color-text); }

/* ---------------------------------------------------------------------------
   4. BOUTONS
   --------------------------------------------------------------------------- */
.wolf-btn {
  --_pad-y: var(--wolf-space-3);
  --_pad-x: var(--wolf-space-5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wolf-space-2);
  padding: var(--_pad-y) var(--_pad-x);
  font-family: var(--wolf-font-body);
  font-size: var(--wolf-text-sm);
  font-weight: var(--wolf-weight-semibold);
  letter-spacing: var(--wolf-tracking-wide);
  line-height: 1;
  border: var(--wolf-border-thick) solid transparent;
  border-radius: var(--wolf-radius-md);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--wolf-duration-fast) var(--wolf-ease),
              border-color var(--wolf-duration-fast) var(--wolf-ease),
              color var(--wolf-duration-fast) var(--wolf-ease),
              transform var(--wolf-duration-fast) var(--wolf-ease);
}
.wolf-btn:active { transform: translateY(1px); }
.wolf-btn--lg { --_pad-y: var(--wolf-space-4); --_pad-x: var(--wolf-space-8); font-size: var(--wolf-text-base); }

.wolf-btn--primary {
  background: var(--wolf-color-accent);
  color: var(--wolf-color-accent-contrast);
  border-color: var(--wolf-color-accent);
}
.wolf-btn--primary:hover { background: var(--wolf-color-accent-hover); border-color: var(--wolf-color-accent-hover); color: var(--wolf-color-accent-contrast); }
.wolf-btn--primary:active { background: var(--wolf-color-accent-press); border-color: var(--wolf-color-accent-press); }

.wolf-btn--secondary {
  background: transparent;
  color: var(--wolf-color-text);
  border-color: var(--wolf-color-border-strong);
}
.wolf-btn--secondary:hover { border-color: var(--wolf-color-accent); color: var(--wolf-color-accent-text); }

/* ---------------------------------------------------------------------------
   5. SECTIONS
   --------------------------------------------------------------------------- */
.wolf-hero {
  padding: var(--wolf-space-24) 0 var(--wolf-space-16);
  background: var(--wolf-gradient-hero);
  border-bottom: var(--wolf-border-hairline) solid var(--wolf-color-border);
}
.wolf-hero__title {
  font-size: var(--wolf-text-6xl);
  margin-bottom: var(--wolf-space-5);
  max-width: 18ch;
}
.wolf-hero__sub {
  font-size: var(--wolf-text-lg);
  color: var(--wolf-color-text-muted);
  max-width: 60ch;
  margin-bottom: var(--wolf-space-8);
}
.wolf-hero__cta { gap: var(--wolf-space-4); }

.wolf-section { padding: var(--wolf-space-16) 0; }
.wolf-section--alt { background: var(--wolf-color-bg-elevated); border-block: var(--wolf-border-hairline) solid var(--wolf-color-border); }

.wolf-callout {
  border: var(--wolf-border-hairline) solid var(--wolf-color-accent-line);
  background: var(--wolf-color-accent-soft);
  border-radius: var(--wolf-radius-lg);
  padding: var(--wolf-space-10) var(--wolf-space-8);
}

/* ---------------------------------------------------------------------------
   6. CARTES
   --------------------------------------------------------------------------- */
.wolf-cards {
  list-style: none;
  margin: var(--wolf-space-8) 0 0;
  padding: 0;
  display: grid;
  gap: var(--wolf-grid-gutter);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.wolf-duo {
  margin-top: var(--wolf-space-8);
  display: grid;
  gap: var(--wolf-grid-gutter);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.wolf-card {
  background: var(--wolf-color-surface);
  border: var(--wolf-border-hairline) solid var(--wolf-color-border);
  border-radius: var(--wolf-radius-lg);
  padding: var(--wolf-space-6);
}
.wolf-card__num {
  display: inline-block;
  font-family: var(--wolf-font-mono);
  font-size: var(--wolf-text-sm);
  color: var(--wolf-color-accent-text);
  margin-bottom: var(--wolf-space-2);
}
.wolf-card__title { font-family: var(--wolf-font-display); font-size: var(--wolf-text-lg); margin: 0 0 var(--wolf-space-2); }
.wolf-card__text { color: var(--wolf-color-text-muted); font-size: var(--wolf-text-sm); margin: 0; }
.wolf-card__text + p { margin-top: var(--wolf-space-4); margin-bottom: 0; }

/* ---------------------------------------------------------------------------
   7. ARTICLE / PROSE (charte RH, statut freelance)
   --------------------------------------------------------------------------- */
.wolf-article { padding: var(--wolf-space-16) 0; }
.wolf-prose { max-width: 74ch; }
.wolf-prose h1 { font-size: var(--wolf-text-4xl); }

/* Charte RH — liste d'engagements numérotés. */
.wolf-charte { list-style: none; margin: var(--wolf-space-10) 0 0; padding: 0; }
.wolf-charte__item {
  display: flex;
  gap: var(--wolf-space-5);
  padding: var(--wolf-space-6) 0;
  border-top: var(--wolf-border-hairline) solid var(--wolf-color-border);
}
.wolf-charte__num {
  flex: none;
  font-family: var(--wolf-font-mono);
  font-size: var(--wolf-text-xl);
  font-weight: var(--wolf-weight-medium);
  color: var(--wolf-color-accent-text);
  line-height: 1.2;
}
.wolf-charte__title { font-size: var(--wolf-text-lg); margin: 0 0 var(--wolf-space-2); }
.wolf-charte__body p { color: var(--wolf-color-text-muted); margin: 0; }
.wolf-charte__closing {
  margin-top: var(--wolf-space-8);
  padding: var(--wolf-space-6);
  border-left: var(--wolf-border-heavy) solid var(--wolf-color-accent);
  background: var(--wolf-color-accent-soft);
  font-size: var(--wolf-text-md);
  color: var(--wolf-color-text);
}

/* Encart d'avertissement / note (disclaimer statut). */
.wolf-note {
  margin-top: var(--wolf-space-8);
  padding: var(--wolf-space-5) var(--wolf-space-6);
  border: var(--wolf-border-hairline) solid var(--wolf-color-border-strong);
  border-left: var(--wolf-border-heavy) solid var(--wolf-color-warning);
  border-radius: var(--wolf-radius-md);
  background: var(--wolf-color-warning-soft);
}
.wolf-note p { margin: 0; color: var(--wolf-color-text-muted); font-size: var(--wolf-text-sm); }
.wolf-article__cta { margin-top: var(--wolf-space-8); }

/* Encart « texte fondateur » — éthique. Bloc autonome, à part, démarqué :
   filet d'accent ambre, surface élevée, largeur de lecture confortable. */
.wolf-ethique {
  max-width: 74ch;
  margin-inline: auto;
  padding: var(--wolf-space-10) var(--wolf-space-8);
  background: var(--wolf-color-surface);
  border: var(--wolf-border-hairline) solid var(--wolf-color-accent-line);
  border-left: var(--wolf-border-heavy) solid var(--wolf-color-accent);
  border-radius: var(--wolf-radius-lg);
  box-shadow: var(--wolf-shadow-md);
}
.wolf-ethique__title {
  font-family: var(--wolf-font-display);
  font-size: var(--wolf-text-2xl);
  line-height: var(--wolf-leading-snug);
  margin: 0 0 var(--wolf-space-6);
  color: var(--wolf-color-text);
}
.wolf-ethique__body p {
  margin: 0 0 var(--wolf-space-4);
  color: var(--wolf-color-text-muted);
  line-height: var(--wolf-leading-relaxed);
}
.wolf-ethique__body p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------------------
   8. PIED DE PAGE
   --------------------------------------------------------------------------- */
.wolf-footer {
  margin-top: var(--wolf-space-16);
  padding: var(--wolf-space-12) 0 var(--wolf-space-8);
  background: var(--wolf-color-surface-inset);
  border-top: var(--wolf-border-hairline) solid var(--wolf-color-border);
}
.wolf-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wolf-space-8);
  justify-content: space-between;
  align-items: flex-start;
}
.wolf-footer__brand { max-width: 42ch; }
.wolf-footer__note { color: var(--wolf-color-text-muted); font-size: var(--wolf-text-sm); margin-top: var(--wolf-space-3); }
.wolf-footer__nav { display: flex; flex-direction: column; gap: var(--wolf-space-2); }
.wolf-footer__link { color: var(--wolf-color-text-muted); text-decoration: none; font-size: var(--wolf-text-sm); }
.wolf-footer__link:hover { color: var(--wolf-color-text); }
.wolf-footer__legal {
  margin-top: var(--wolf-space-10);
  padding-top: var(--wolf-space-6);
  border-top: var(--wolf-border-hairline) solid var(--wolf-color-border);
}
.wolf-footer__privacy { color: var(--wolf-color-text-subtle); font-size: var(--wolf-text-xs); max-width: 80ch; }
.wolf-footer__rights { display: flex; flex-wrap: wrap; align-items: center; gap: var(--wolf-space-3); color: var(--wolf-color-text-subtle); font-size: var(--wolf-text-xs); margin: 0; }
.wolf-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--wolf-space-1) var(--wolf-space-3);
  font-family: var(--wolf-font-mono);
  font-size: var(--wolf-text-2xs);
  letter-spacing: var(--wolf-tracking-wide);
  color: var(--wolf-color-text-muted);
  border: var(--wolf-border-hairline) solid var(--wolf-color-border-strong);
  border-radius: var(--wolf-radius-pill);
}

/* ---------------------------------------------------------------------------
   9. RESPONSIVE — burger sous 820px
   --------------------------------------------------------------------------- */
@media (max-width: 820px) {
  .wolf-nav-toggle { display: block; }

  .wolf-header__end {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--wolf-space-4);
    padding: var(--wolf-space-5) var(--wolf-container-pad) var(--wolf-space-6);
    background: var(--wolf-color-bg-elevated);
    border-bottom: var(--wolf-border-hairline) solid var(--wolf-color-border);
    box-shadow: var(--wolf-shadow-lg);

    /* Fermé par défaut : replié et retiré du flux clavier via .is-open. */
    display: none;
  }
  .wolf-header__end.is-open { display: flex; }
  .wolf-nav { flex-direction: column; align-items: flex-start; gap: var(--wolf-space-3); width: 100%; }
  .wolf-nav__link { font-size: var(--wolf-text-base); }
}

@media (max-width: 620px) {
  .wolf-hero__title { font-size: var(--wolf-text-4xl); }
  h1 { font-size: var(--wolf-text-3xl); }
  h2 { font-size: var(--wolf-text-2xl); }
  .wolf-charte__item { flex-direction: column; gap: var(--wolf-space-2); }
}

/* Respect de la préférence « animations réduites ». */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------------------------------------------------------------------------
   10. ESPACE CONSULTANT — formulaires, facturation à la carte, chronomètre
   (mon-profil.php). Réutilise les tokens Wolf ; contrastes AA, focus visible.
   --------------------------------------------------------------------------- */

/* Messages d'état (flash). */
.wolf-alert {
  margin: var(--wolf-space-6) 0 0;
  padding: var(--wolf-space-4) var(--wolf-space-5);
  border: var(--wolf-border-hairline) solid var(--wolf-color-border-strong);
  border-left: var(--wolf-border-heavy) solid var(--wolf-color-border-strong);
  border-radius: var(--wolf-radius-md);
  font-size: var(--wolf-text-sm);
}
.wolf-alert--ok  { border-left-color: var(--wolf-color-success); background: var(--wolf-color-success-soft); }
.wolf-alert--err { border-left-color: var(--wolf-color-danger);  background: var(--wolf-color-danger-soft); }

/* Formulaires. */
.wolf-form { margin-top: var(--wolf-space-8); display: flex; flex-direction: column; gap: var(--wolf-space-6); }
.wolf-field { display: flex; flex-direction: column; gap: var(--wolf-space-2); max-width: 46ch; }
.wolf-label { font-weight: var(--wolf-weight-semibold); font-size: var(--wolf-text-sm); }
.wolf-input {
  padding: var(--wolf-space-3) var(--wolf-space-4);
  font: inherit;
  color: var(--wolf-color-text);
  background: var(--wolf-color-field-bg);
  border: var(--wolf-border-thick) solid var(--wolf-color-field-border);
  border-radius: var(--wolf-radius-md);
}
.wolf-input::placeholder { color: var(--wolf-color-placeholder); }
.wolf-input:focus-visible { border-color: var(--wolf-color-accent); }
.wolf-field__aide { margin: 0; font-size: var(--wolf-text-sm); color: var(--wolf-color-text-muted); }
.wolf-field__rgpd { margin: 0; font-size: var(--wolf-text-xs); color: var(--wolf-color-text-subtle); max-width: 74ch; }

/* Groupes de cases (granularité, chrono). */
.wolf-fieldset { border: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--wolf-space-3); }
.wolf-legend { padding: 0; font-family: var(--wolf-font-display); font-size: var(--wolf-text-lg); font-weight: var(--wolf-weight-semibold); }
.wolf-fieldset__aide { margin: 0 0 var(--wolf-space-1); font-size: var(--wolf-text-sm); color: var(--wolf-color-text-muted); }
.wolf-check {
  display: flex;
  gap: var(--wolf-space-3);
  padding: var(--wolf-space-4);
  border: var(--wolf-border-hairline) solid var(--wolf-color-border);
  border-radius: var(--wolf-radius-md);
  background: var(--wolf-color-surface);
}
.wolf-check:focus-within { border-color: var(--wolf-color-accent); }
.wolf-check__box { flex: none; width: 1.15rem; height: 1.15rem; margin-top: 0.15rem; accent-color: var(--wolf-color-accent); cursor: pointer; }
.wolf-check__label { display: flex; flex-direction: column; gap: var(--wolf-space-1); cursor: pointer; }
.wolf-check__title { font-weight: var(--wolf-weight-semibold); }
.wolf-check__desc { font-size: var(--wolf-text-sm); color: var(--wolf-color-text-muted); }

/* Panneaux de l'espace consultant. */
.wolf-panel {
  margin-top: var(--wolf-space-10);
  padding: var(--wolf-space-8);
  border: var(--wolf-border-hairline) solid var(--wolf-color-border);
  border-radius: var(--wolf-radius-lg);
  background: var(--wolf-color-surface);
}
.wolf-panel__title { font-size: var(--wolf-text-xl); margin: 0 0 var(--wolf-space-3); }
.wolf-panel__intro { color: var(--wolf-color-text-muted); margin: 0 0 var(--wolf-space-4); }
.wolf-panel__note { color: var(--wolf-color-text-muted); font-size: var(--wolf-text-sm); margin: var(--wolf-space-4) 0 0; max-width: 74ch; }

/* Chronomètre. */
.wolf-chrono {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--wolf-space-5);
  padding: var(--wolf-space-6);
  border: var(--wolf-border-hairline) solid var(--wolf-color-border);
  border-radius: var(--wolf-radius-md);
  background: var(--wolf-color-surface-inset);
}
.wolf-chrono__state { margin: 0; font-size: var(--wolf-text-sm); color: var(--wolf-color-accent-text); flex-basis: 100%; }
.wolf-chrono__time {
  margin: 0;
  font-family: var(--wolf-font-mono);
  font-size: var(--wolf-text-4xl);
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--wolf-tracking-tight);
}
.wolf-chrono__subtitle { font-size: var(--wolf-text-lg); margin: var(--wolf-space-8) 0 var(--wolf-space-3); }

/* Tableau d'historique. */
.wolf-table { width: 100%; border-collapse: collapse; margin-top: var(--wolf-space-2); font-size: var(--wolf-text-sm); }
.wolf-table__caption { text-align: left; }
.wolf-table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.wolf-table th, .wolf-table td { padding: var(--wolf-space-3) var(--wolf-space-4); text-align: left; border-bottom: var(--wolf-border-hairline) solid var(--wolf-color-border); }
.wolf-table thead th { color: var(--wolf-color-text-muted); font-weight: var(--wolf-weight-semibold); }
.wolf-table tfoot th, .wolf-table tfoot td { font-weight: var(--wolf-weight-semibold); border-bottom: 0; }
.wolf-table__num { font-family: var(--wolf-font-mono); font-variant-numeric: tabular-nums; }

/* Bouton « Règlement » (inactif — à brancher). */
.wolf-reglement { display: flex; flex-wrap: wrap; align-items: center; gap: var(--wolf-space-4); }
.wolf-btn:disabled, .wolf-btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }
.wolf-btn:disabled:active { transform: none; }
.wolf-pending {
  display: inline-flex;
  align-items: center;
  padding: var(--wolf-space-1) var(--wolf-space-3);
  font-family: var(--wolf-font-mono);
  font-size: var(--wolf-text-2xs);
  letter-spacing: var(--wolf-tracking-wide);
  color: var(--wolf-color-warning);
  border: var(--wolf-border-hairline) solid var(--wolf-color-warning);
  border-radius: var(--wolf-radius-pill);
}

/* Charte — encart facturation à la carte. */
.wolf-charte-factu { margin-top: var(--wolf-space-16); padding-top: var(--wolf-space-10); border-top: var(--wolf-border-hairline) solid var(--wolf-color-border); }
