/* ==========================================================================
   DESIGN TOKENS - Expert Fissure IDF
   Palette restreinte (noir/papier/ocre), typo serif éditorial + sans tempéré.
   ========================================================================== */

:root {
  /* Couleurs structurantes */
  --ink: #111111;
  --ink-soft: #1a1a1a;
  --paper: #f5f1ea;
  --paper-deep: #ede7dc;
  --ocre: #b8552e;
  --ocre-deep: #9a4222;
  --ocre-soft: #d97a4f;

  /* Couleurs secondaires */
  --graphite: #3a3a3a;
  --graphite-soft: #6a6a66;
  --mist: #e6dfd2;
  --mist-line: #d5cdbd;

  /* États */
  --alert: #7a1f1f;
  --alert-soft: #b04444;
  --warn: #a86b1c;
  --safe: #2d5c3e;

  /* Typographies */
  --font-serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-sans: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "SFMono-Regular", Menlo, Consolas, monospace;

  /* Échelle typographique (desktop) */
  --fs-display: clamp(2.6rem, 5vw, 3.75rem);   /* 42-60 */
  --fs-h1: clamp(2.1rem, 4vw, 3rem);           /* 34-48 */
  --fs-h2: clamp(1.625rem, 2.5vw, 2rem);       /* 26-32 */
  --fs-h3: clamp(1.25rem, 1.7vw, 1.5rem);      /* 20-24 */
  --fs-lead: clamp(1.125rem, 1.4vw, 1.25rem);  /* 18-20 */
  --fs-body: 1.0625rem;                         /* 17 */
  --fs-small: 0.875rem;                         /* 14 */
  --fs-micro: 0.75rem;                          /* 12 */

  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.55;
  --lh-prose: 1.7;

  --tracking-tight: -0.015em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-cap: 0.12em;

  /* Spacing (échelle 8) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
  --s-11: 160px;

  /* Layout */
  --container-max: 1240px;
  --container-prose: 720px;
  --container-narrow: 880px;
  --gutter: 24px;

  /* Bordures, radius, ombres */
  --bd: 1px solid var(--mist-line);
  --bd-ink: 1px solid var(--ink);
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.04);
  --shadow-md: 0 4px 12px rgba(17, 17, 17, 0.06);
  --shadow-lg: 0 12px 32px rgba(17, 17, 17, 0.08);

  /* Transitions */
  --tr-fast: 120ms ease;
  --tr-base: 200ms ease;
  --tr-slow: 320ms ease;

  /* Z-index */
  --z-skip: 999;
  --z-sticky: 50;
  --z-mobile-bar: 60;
  --z-modal: 100;
}
/* Reset minimal moderne */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; }
body { line-height: var(--lh-normal); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; border-spacing: 0; }

/* Focus visible accessible */
:focus-visible {
  outline: 2px solid var(--ocre);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* Sélection */
::selection { background: var(--ocre); color: var(--paper); }

/* Réduction des animations selon préférence */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ==========================================================================
   BASE - Typo, body, éléments de base
   ========================================================================== */

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  font-weight: 400;
  font-synthesis: none;
  min-height: 100vh;
}

/* Titres en serif éditorial expressif */
h1, h2, h3, .h-serif {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: var(--tracking-tight);
}

h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  font-weight: 500;
}

.display {
  font-family: var(--font-serif);
  font-size: var(--fs-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.display em {
  font-style: italic;
  color: var(--ocre);
  font-weight: 400;
}

h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-snug);
  font-weight: 500;
  margin-top: var(--s-7);
  margin-bottom: var(--s-4);
}

h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  font-weight: 500;
  margin-top: var(--s-6);
  margin-bottom: var(--s-3);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: var(--tracking-cap);
  color: var(--ocre);
  font-weight: 500;
  margin-bottom: var(--s-3);
  display: inline-block;
}

.lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-normal);
  color: var(--graphite);
  font-weight: 400;
  max-width: 60ch;
}

p { line-height: var(--lh-prose); margin-bottom: var(--s-4); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--ink); }

/* Liens du corps de texte (hors boutons) */
.prose a:not(.btn), p a:not(.btn) {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ocre);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color var(--tr-fast);
}
.prose a:hover:not(.btn), p a:hover:not(.btn) { color: var(--ocre); }

/* Skip link accessibilité */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-4);
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-3) var(--s-4);
  z-index: var(--z-skip);
  transition: top var(--tr-base);
}
.skip-link:focus { top: var(--s-4); }

/* Container générique */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--prose { max-width: var(--container-prose); }
.container--narrow { max-width: var(--container-narrow); }

/* Sections */
.section {
  padding: var(--s-9) 0;
}
.section--lg { padding: var(--s-10) 0; }
.section--sm { padding: var(--s-7) 0; }

/* Filets / séparateurs */
.rule {
  border: 0;
  border-top: var(--bd);
  margin: var(--s-7) 0;
}
.rule--ink { border-top: var(--bd-ink); }

/* Liste éditoriale numérotée (pour processus, etc.) */
.editorial-list {
  counter-reset: ed;
}
.editorial-list > li {
  counter-increment: ed;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  border-top: var(--bd);
}
.editorial-list > li:last-child { border-bottom: var(--bd); }
.editorial-list > li::before {
  content: counter(ed, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ocre);
  letter-spacing: var(--tracking-tight);
}

/* Padding pour éviter que la sticky bar mobile masque le contenu */
@media (max-width: 768px) {
  body { padding-bottom: 72px; }
}
/* ==========================================================================
   LAYOUT - Grilles, héros, structures asymétriques
   ========================================================================== */

/* Hero asymétrique : colonne large à gauche, marge respiratoire à droite */
.hero {
  padding: var(--s-9) 0 var(--s-10);
  border-bottom: var(--bd);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-7);
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    align-items: end;
    gap: var(--s-8);
  }
}

.hero__title {
  max-width: 18ch;
}

.hero__meta {
  font-size: var(--fs-small);
  color: var(--graphite);
  letter-spacing: var(--tracking-wide);
}

.hero__meta dt { text-transform: uppercase; font-size: var(--fs-micro); letter-spacing: var(--tracking-cap); color: var(--ocre); margin-bottom: var(--s-1); }
.hero__meta dd { margin-bottom: var(--s-4); font-family: var(--font-serif); font-size: 1.125rem; color: var(--ink); }

/* Grille 2 colonnes (texte + média ou texte + texte) */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-7);
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: start; }
  .split--7-5 { grid-template-columns: 7fr 5fr; }
  .split--5-7 { grid-template-columns: 5fr 7fr; }
}

.split__media { background: var(--mist); padding: var(--s-6); }

/* Bloc en colonne décalée (asymétrie) */
.offset-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-5);
}
@media (min-width: 1024px) {
  .offset-block {
    grid-template-columns: minmax(140px, 200px) minmax(0, 720px) 1fr;
    column-gap: var(--s-7);
  }
}
.offset-block__label {
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: var(--tracking-cap);
  color: var(--ocre);
  font-weight: 500;
  padding-top: var(--s-2);
}

/* Grille de chiffres clés (5 chiffres) */
.figures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--mist-line);
  border: var(--bd);
}
@media (min-width: 768px) {
  .figures { grid-template-columns: repeat(5, 1fr); }
}
.figure {
  background: var(--paper);
  padding: var(--s-5) var(--s-4);
}
.figure__value {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: var(--s-2);
}
.figure__value em { font-style: italic; color: var(--ocre); }
.figure__label {
  font-size: var(--fs-small);
  color: var(--graphite);
  line-height: 1.4;
}

/* Section avec fond ink (pour blocs CTA milieu de page) */
.surface-ink {
  background: var(--ink);
  color: var(--paper);
}
.surface-ink h2, .surface-ink h3, .surface-ink p { color: var(--paper); }
.surface-ink .lead { color: var(--paper); opacity: 0.85; }
.surface-ink .eyebrow { color: var(--ocre-soft); }

/* Section avec fond paper-deep (différenciation visuelle douce) */
.surface-deep {
  background: var(--paper-deep);
}
/* ==========================================================================
   COMPONENTS - header, footer, boutons, formulaire, FAQ, sticky bar
   ========================================================================== */

/* --- BUTTONS ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  padding: 14px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--tr-base);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--ocre); color: var(--paper); }
.btn--primary:hover { background: var(--ocre-deep); }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--ink-soft); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }

.btn--ghost { background: transparent; color: var(--ink); padding-left: 0; padding-right: 0; }
.btn--ghost::after { content: "→"; transition: transform var(--tr-base); margin-left: var(--s-2); }
.btn--ghost:hover::after { transform: translateX(4px); }

.btn--lg { padding: 18px 28px; font-size: 1rem; }

/* --- HEADER -------------------------------------------------------------- */

.site-header {
  position: relative;
  background: var(--paper);
  border-bottom: var(--bd);
  z-index: var(--z-sticky);
}

@media (min-width: 769px) {
  .site-header { position: sticky; top: 0; transition: box-shadow var(--tr-base), background var(--tr-base); }
  .site-header.is-pinned { box-shadow: 0 1px 0 var(--mist-line), 0 8px 24px rgba(17, 17, 17, 0.04); }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding: var(--s-4) var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (max-width: 899px) {
  .site-header__inner { justify-content: flex-start; gap: var(--s-2); }
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand__logo {
  display: block;
  height: 35px;
  width: auto;
  flex-shrink: 0;
}
@media (min-width: 768px) { .brand__logo { height: 50px; } }

.site-nav { display: none; }
@media (min-width: 900px) {
  .site-nav { display: flex; align-items: center; gap: var(--s-6); }
}
.site-nav a {
  font-size: var(--fs-small);
  color: var(--graphite);
  position: relative;
  padding: var(--s-2) 0;
  transition: color var(--tr-fast);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--ink); font-weight: 500; }
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-bottom: 2px solid var(--ocre);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  min-width: 0;
}
.header-actions .btn--primary {
  padding: 16px 12px;
  font-size: var(--fs-micro);
  white-space: nowrap;
}
@media (min-width: 480px) { .header-actions .btn--primary { padding: 10px 16px; font-size: var(--fs-small); } }
@media (min-width: 768px) { .header-actions .btn--primary { padding: 14px 22px; } }
/* Sous 769px, la sticky bar mobile assure déjà le CTA "devis" persistant : éviter la redondance. */
@media (max-width: 768px) { .header-actions .btn--primary { display: none; } }
.header-actions .btn--email {
  display: none;
  background: transparent;
  color: var(--ink);
  font-size: var(--fs-small);
  padding: 10px 14px;
  border: 1px solid var(--mist-line);
}
.header-actions .btn--email:hover { border-color: var(--ink); }
@media (min-width: 600px) { .header-actions .btn--email { display: inline-flex; } }

/* Burger mobile (en attente de menu fly-out) */
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--mist-line);
  background: var(--paper);
}
@media (min-width: 900px) { .burger { display: none; } }
.burger svg { width: 20px; height: 20px; }

/* Menu mobile dropdown (révélé via burger) */
.mobile-menu {
  display: none;
  border-top: var(--bd);
  background: var(--paper);
  padding: var(--s-4) var(--gutter);
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: var(--s-2); }
.mobile-menu a {
  display: block;
  padding: var(--s-3) 0;
  font-size: 1.0625rem;
  border-bottom: var(--bd);
  color: var(--ink);
}
.mobile-menu a:last-child { border-bottom: 0; }

/* --- STICKY BAR MOBILE (uniquement < 769px) ------------------------------ */

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-mobile-bar);
  background: var(--ink);
  color: var(--paper);
  padding: 10px var(--s-4);
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}
.mobile-sticky-bar__msg {
  font-size: var(--fs-small);
  line-height: 1.3;
}
.mobile-sticky-bar__msg strong { color: var(--ocre-soft); }
.mobile-sticky-bar__cta {
  background: var(--ocre);
  color: var(--paper);
  padding: 12px 18px;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  white-space: nowrap;
}
.mobile-sticky-bar__cta:hover { background: var(--ocre-deep); }

@media (max-width: 768px) {
  .mobile-sticky-bar { display: flex; }
}

/* --- FOOTER -------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-9) 0 var(--s-7);
  margin-top: var(--s-10);
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(245, 241, 234, 0.12);
}
@media (min-width: 900px) {
  .site-footer__top { grid-template-columns: 5fr 7fr; gap: var(--s-9); }
}

.footer-brand {
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-4);
}
.footer-brand__logo {
  display: block;
  height: 48px;
  width: auto;
  flex-shrink: 0;
}
@media (min-width: 768px) { .footer-brand__logo { height: 50px; } }
.footer-brand p { color: rgba(245, 241, 234, 0.7); font-size: var(--fs-small); max-width: 38ch; }
.footer-brand a { color: var(--paper); }

.footer-map {
  display: flex; flex-direction: column; gap: var(--s-4);
}
.footer-map h3 {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: var(--tracking-cap);
  color: var(--ocre-soft);
  margin: 0;
  font-weight: 500;
}
.footer-map__svg {
  max-width: 560px;
  width: 100%;
  aspect-ratio: 480 / 440;
}
.footer-map__svg .dept {
  fill: rgba(245, 241, 234, 0.06);
  stroke: rgba(245, 241, 234, 0.4);
  stroke-width: 1;
  transition: fill var(--tr-fast);
  cursor: pointer;
}
.footer-map__svg a:hover .dept,
.footer-map__svg a:focus-visible .dept { fill: var(--ocre); }
.footer-map__svg .dept-label {
  fill: var(--paper);
  font-size: 11px;
  font-family: var(--font-sans);
  font-weight: 500;
  pointer-events: none;
  text-anchor: middle;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
@media (min-width: 600px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-cols h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: var(--tracking-cap);
  color: var(--ocre-soft);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.footer-cols ul { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-cols a {
  color: rgba(245, 241, 234, 0.78);
  font-size: var(--fs-small);
  transition: color var(--tr-fast);
}
.footer-cols a:hover { color: var(--paper); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-5);
  font-size: var(--fs-micro);
  color: rgba(245, 241, 234, 0.5);
}
.site-footer__bottom a:hover { color: var(--paper); }

/* --- FORMULAIRE DE CONTACT ----------------------------------------------- */

.contact-block {
  background: var(--paper-deep);
  padding: var(--s-9) 0;
  border-top: var(--bd-ink);
}

.contact-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-7);
}
@media (min-width: 900px) {
  .contact-block__grid { grid-template-columns: 5fr 7fr; gap: var(--s-8); }
}

.contact-intro h2 { margin-top: 0; }
.contact-intro__list {
  display: flex; flex-direction: column; gap: var(--s-3);
  margin-top: var(--s-5);
}
.contact-intro__list li {
  display: grid; grid-template-columns: 24px 1fr; gap: var(--s-3);
  font-size: var(--fs-small);
  color: var(--graphite);
}
.contact-intro__list svg { width: 20px; height: 20px; color: var(--ocre); }

.contact-form {
  background: var(--paper);
  padding: var(--s-6);
  border: var(--bd);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
@media (min-width: 600px) { .contact-form { padding: var(--s-7); } }

.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field--row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-4);
}
@media (min-width: 600px) { .field--row { grid-template-columns: 1fr 1fr; } }

.field label {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink);
}
.field label .req { color: var(--ocre); margin-left: 2px; }

.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--mist-line);
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--ink);
  transition: border-color var(--tr-fast), background var(--tr-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }

.field__hint { font-size: var(--fs-micro); color: var(--graphite-soft); }
.field__error {
  font-size: var(--fs-micro);
  color: var(--alert);
  display: none;
}
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--alert); }
.field.is-invalid .field__error { display: block; }

.form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--s-3);
  font-size: var(--fs-micro);
  color: var(--graphite);
  align-items: start;
}
.form-consent input { margin-top: 2px; }

.form-feedback {
  display: none;
  padding: var(--s-4);
  background: var(--mist);
  border-left: 3px solid var(--ocre);
  font-size: var(--fs-small);
}
.form-feedback.is-success { display: block; border-color: var(--safe); }
.form-feedback.is-error { display: block; border-color: var(--alert); color: var(--alert); }

/* --- BREADCRUMB ---------------------------------------------------------- */

.breadcrumb {
  font-size: var(--fs-small);
  color: var(--graphite);
  padding: var(--s-4) 0;
  border-bottom: var(--bd);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: var(--s-2); }
.breadcrumb li + li::before { content: "›"; color: var(--graphite-soft); }
.breadcrumb a { color: var(--graphite); transition: color var(--tr-fast); }
.breadcrumb a:hover { color: var(--ocre); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* --- FAQ ---------------------------------------------------------------- */

.faq { display: flex; flex-direction: column; }
.faq details {
  border-top: var(--bd);
  padding: var(--s-5) 0;
}
.faq details:last-child { border-bottom: var(--bd); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: var(--s-4);
  align-items: center;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 2px solid var(--ocre);
  border-bottom: 2px solid var(--ocre);
  transform: rotate(45deg);
  justify-self: end;
  transition: transform var(--tr-base);
  margin-top: -4px;
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq details > p, .faq details > div { margin-top: var(--s-4); color: var(--graphite); max-width: 70ch; }

/* --- BLOC INDÉPENDANCE (argument SEO différenciant) ---------------------- */

.independance {
  border: 1px solid var(--ink);
  padding: var(--s-7);
  background: var(--paper);
  position: relative;
}
.independance::before {
  content: "✕";
  position: absolute;
  top: var(--s-4); right: var(--s-5);
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--ocre);
  line-height: 1;
}
.independance .eyebrow { color: var(--ocre); }
.independance h2 { margin-top: 0; }
.independance ul {
  margin-top: var(--s-5);
  display: grid; gap: var(--s-3);
}
.independance li {
  display: grid; grid-template-columns: 24px 1fr; gap: var(--s-3);
  align-items: start;
}
.independance li svg { width: 20px; height: 20px; color: var(--ocre); margin-top: 4px; }

/* --- CARTE PRESTATIONS --------------------------------------------------- */

.dept-map {
  max-width: 560px;
  margin: 0 auto var(--s-7);
  display: block;
}
.dept-map__svg {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: auto;
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--mist-line);
  border: var(--bd);
}
@media (min-width: 600px) { .dept-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .dept-grid { grid-template-columns: repeat(8, 1fr); } }

.dept-card {
  background: var(--paper);
  padding: var(--s-5) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  text-decoration: none;
  color: var(--ink);
  transition: background var(--tr-fast);
  min-height: 140px;
  justify-content: space-between;
}
.dept-card:hover { background: var(--paper-deep); }
.dept-card__num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--ocre);
  line-height: 1;
}
.dept-card__name {
  font-size: var(--fs-small);
  font-weight: 500;
  line-height: 1.3;
}
.dept-card__arrow {
  font-size: var(--fs-small);
  color: var(--graphite);
}

/* --- CITATIONS / PULL QUOTE --------------------------------------------- */

.pullquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.3;
  font-style: italic;
  color: var(--ink);
  border-left: 2px solid var(--ocre);
  padding-left: var(--s-5);
  margin: var(--s-7) 0;
  max-width: 38ch;
}
