/* ── Tom Rouvier · site professionnel ───────────────────────────────────────
   Identité « manufacture française » : bleu de France, blanc cassé, rouge vif.
   Signes distinctifs : filets tricolores, guilloché de billet, cocarde,
   typographie serif éditoriale. Zéro dépendance externe (polices système). */

:root {
  --bleu: #1b2a5e;
  --bleu-nuit: #0e1631;
  --bleu-vif: #2b4b9b;
  --bleu-pale: #edf1fa;
  --rouge: #d0342c;
  --rouge-fonce: #9e2620;
  --rouge-pale: #fdeeec;
  --creme: #faf8f4;
  --papier: #ffffff;
  --encre: #15182b;
  --gris: #5a6076;
  --gris-clair: #8b91a4;
  --ligne: #e6e1d6;
  --miel: #a86f0a;
  --miel-vif: #e5a32a;
  --miel-pale: #fdf4e2;
  --vert: #2e9e5b;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
           Charter, Georgia, Cambria, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  --rayon: 14px;
  --large: 1140px;
  --ombre: 0 1px 2px rgba(21, 24, 43, 0.04), 0 12px 32px rgba(21, 24, 43, 0.06);
  --ombre-forte: 0 2px 4px rgba(21, 24, 43, 0.06), 0 24px 56px rgba(21, 24, 43, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--creme);
  color: var(--encre);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--bleu); color: #fff; }
img { max-width: 100%; }

h1, h2, h3 { font-family: var(--serif); letter-spacing: -0.015em; line-height: 1.15; }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); margin: 0.2rem 0 0.6rem; }
h3 { font-size: 1.2rem; margin: 0 0 0.4rem; }
a { color: var(--bleu-vif); }
p { margin: 0 0 1rem; }

.wrap { max-width: var(--large); margin: 0 auto; padding-inline: clamp(1.1rem, 5vw, 3rem); }
.section { padding-block: clamp(3rem, 6.5vw, 5.5rem); }
.section-sub { color: var(--gris); max-width: 46rem; font-size: 1.05rem; margin-bottom: 2.4rem; }
.centre { text-align: center; }
.centre .section-sub { margin-inline: auto; }
.centre .filet { justify-content: center; }

/* ── Le filet tricolore : la signature graphique du site ── */
.filet {
  display: flex;
  gap: 3px;
  margin: 0 0 0.9rem;
}
.filet i {
  display: block;
  width: 26px;
  height: 4px;
  border-radius: 2px;
  background: var(--bleu);
}
.filet i:nth-child(2) { background: var(--papier); box-shadow: inset 0 0 0 1px var(--ligne); }
.filet i:nth-child(3) { background: var(--rouge); }
.filet-clair i:nth-child(1) { background: #8fa6e8; }
.filet-clair i:nth-child(2) { background: rgba(255, 255, 255, 0.92); box-shadow: none; }
.filet-clair i:nth-child(3) { background: #f0685f; }

.kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bleu-vif);
  margin: 0 0 0.35rem;
}

/* ── Boutons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
              border-color 0.2s ease, color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primaire {
  background: var(--rouge);
  color: #fff;
  box-shadow: 0 6px 18px rgba(208, 52, 44, 0.28);
}
.btn-primaire:hover, .btn-primaire:focus-visible {
  background: var(--rouge-fonce);
  box-shadow: 0 10px 26px rgba(208, 52, 44, 0.36);
}
.btn-bleu { background: var(--bleu); color: #fff; box-shadow: 0 6px 18px rgba(27, 42, 94, 0.24); }
.btn-bleu:hover, .btn-bleu:focus-visible { background: var(--bleu-nuit); }
.btn-fantome {
  border-color: var(--ligne);
  color: var(--encre);
  background: var(--papier);
}
.btn-fantome:hover, .btn-fantome:focus-visible { border-color: var(--bleu); color: var(--bleu); }
.btn-blanc { background: #fff; color: var(--bleu); }
.btn-blanc:hover, .btn-blanc:focus-visible { background: var(--bleu-pale); }
.btn-contour-blanc { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.btn-contour-blanc:hover, .btn-contour-blanc:focus-visible { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.btn-lg { padding: 0.9rem 1.9rem; font-size: 1.06rem; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 248, 244, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ligne);
}
.nav-inner {
  max-width: var(--large);
  margin: 0 auto;
  padding: 0.6rem clamp(1.1rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.marque {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--encre);
  flex-shrink: 0;
}
.marque-nom { font-family: var(--serif); font-weight: 700; font-size: 1.16rem; line-height: 1.1; }
.marque-role {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gris-clair);
  font-weight: 600;
}
.cocarde { width: 30px; height: 30px; flex-shrink: 0; }
.nav-liens { display: flex; align-items: center; gap: clamp(0.7rem, 2vw, 1.7rem); }
.nav-liens a {
  color: var(--gris);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-liens a:hover, .nav-liens a:focus-visible { color: var(--bleu); }
.nav-liens .btn { font-size: 0.9rem; padding: 0.48rem 1.15rem; color: #fff; }

/* ── Héros ── */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--ligne);
}
/* Guilloché : les cercles concentriques des billets de banque, en très discret */
.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 12% 8%, transparent 0 21px, rgba(27, 42, 94, 0.055) 21px 22px),
    repeating-radial-gradient(circle at 88% 78%, transparent 0 25px, rgba(208, 52, 44, 0.05) 25px 26px);
  mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 35%, transparent 78%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 82% 6%, rgba(43, 75, 155, 0.13), transparent 70%),
    radial-gradient(50% 50% at 4% 96%, rgba(208, 52, 44, 0.09), transparent 70%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.sceau {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--papier);
  border: 1px solid var(--ligne);
  border-radius: 999px;
  padding: 0.32rem 0.95rem 0.32rem 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bleu);
  box-shadow: var(--ombre);
  margin-bottom: 1.3rem;
}
.sceau-drapeau {
  display: inline-flex;
  width: 22px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(21, 24, 43, 0.12);
}
.sceau-drapeau span { flex: 1; }
.sceau-drapeau span:nth-child(1) { background: var(--bleu); }
.sceau-drapeau span:nth-child(2) { background: #fff; }
.sceau-drapeau span:nth-child(3) { background: var(--rouge); }

.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  margin: 0 0 1.1rem;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: italic;
  color: var(--rouge);
  position: relative;
  white-space: nowrap;
}
/* Le trait rouge sous « fabriquées » se dessine au chargement */
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.02em;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--bleu) 0 33%, #fff 33% 66%, var(--rouge) 66%);
  box-shadow: 0 0 0 1px rgba(27, 42, 94, 0.18);
  transform: scaleX(0);
  transform-origin: left;
  animation: trait 0.9s 0.35s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes trait { to { transform: scaleX(1); } }

.hero-pitch { font-size: clamp(1.03rem, 1.6vw, 1.18rem); color: var(--gris); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.7rem 0 2rem; }
.hero-preuves {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 34rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ligne);
}
.preuve strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--bleu);
}
.preuve span { font-size: 0.85rem; color: var(--gris); }

/* Panneau « l'atelier » : ce qui tourne en ce moment */
.atelier {
  background: var(--papier);
  border: 1px solid var(--ligne);
  border-radius: var(--rayon);
  box-shadow: var(--ombre-forte);
  overflow: hidden;
}
.atelier-tete {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.75rem 1.1rem;
  background: var(--bleu);
  color: #fff;
}
.atelier-tete h2 { font-size: 0.95rem; margin: 0; letter-spacing: 0; font-family: var(--sans); font-weight: 650; }
.atelier-tete .filet i { width: 16px; height: 3px; }
.atelier-liste { list-style: none; margin: 0; padding: 0.4rem 0; }
.atelier-liste li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--ligne);
}
.atelier-liste li:last-child { border-bottom: 0; }
.atelier-liste a {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--encre);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.atelier-liste a:hover, .atelier-liste a:focus-visible { color: var(--bleu-vif); border-bottom-color: currentColor; }
.atelier-liste em { margin-left: auto; font-style: normal; font-size: 0.78rem; color: var(--gris-clair); text-align: right; }
.puce-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--vert);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(46, 158, 91, 0.55);
  animation: battement 2.6s ease-out infinite;
}
.atelier-liste li:nth-child(2) .puce-live { animation-delay: 0.3s; }
.atelier-liste li:nth-child(3) .puce-live { animation-delay: 0.6s; }
.atelier-liste li:nth-child(4) .puce-live { animation-delay: 0.9s; }
.atelier-liste li:nth-child(5) .puce-live { animation-delay: 1.2s; }
.atelier-liste li:nth-child(6) .puce-live { animation-delay: 1.5s; }
@keyframes battement {
  0% { box-shadow: 0 0 0 0 rgba(46, 158, 91, 0.5); }
  55%, 100% { box-shadow: 0 0 0 7px rgba(46, 158, 91, 0); }
}
.atelier-pied {
  padding: 0.7rem 1.1rem;
  background: var(--bleu-pale);
  font-size: 0.8rem;
  color: var(--bleu);
  border-top: 1px solid var(--ligne);
}

/* ── Offres ── */
.offres {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.2rem;
}
.offre {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--papier);
  border: 1px solid var(--ligne);
  border-radius: var(--rayon);
  padding: 1.7rem 1.6rem 1.5rem;
  box-shadow: var(--ombre);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.offre::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bleu) 0 33.33%, #f4f2ee 33.33% 66.66%, var(--rouge) 66.66%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.offre:hover, .offre:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--ombre-forte);
  border-color: #d8d2c4;
}
.offre:hover::before, .offre:focus-within::before { transform: scaleX(1); }
.offre-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--bleu);
  opacity: 0.35;
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
}
.offre h3 { font-size: 1.34rem; margin: 0.1rem 0 0.15rem; padding-right: 3.2rem; }
.offre-promesse { color: var(--rouge); font-weight: 650; font-size: 0.92rem; margin: 0 0 0.7rem; padding-right: 3.2rem; }
.offre > p { color: var(--gris); font-size: 0.95rem; }
.livrables { list-style: none; margin: 0.4rem 0 1.2rem; padding: 0; display: grid; gap: 0.32rem; }
.livrables li { position: relative; padding-left: 1.5rem; font-size: 0.9rem; color: var(--encre); }
.livrables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rouge);
  font-weight: 700;
}
.offre-pied {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--ligne);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.delai {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bleu);
  background: var(--bleu-pale);
  border-radius: 999px;
  padding: 0.22rem 0.75rem;
}
.lien-devis {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--rouge);
  text-decoration: none;
}
.lien-devis:hover, .lien-devis:focus-visible { text-decoration: underline; }

/* ── Coup de projecteur : Lou Brusquié ── */
.sous-titre-liste {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gris-clair);
  margin: 3.2rem 0 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sous-titre-liste::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ligne);
}
.projecteur {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
  gap: clamp(1.8rem, 5vw, 3.6rem);
  align-items: center;
  background: linear-gradient(155deg, var(--miel-pale) 0%, var(--papier) 62%);
  border: 1px solid #efe0bd;
  border-radius: 20px;
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: 0 2px 4px rgba(168, 111, 10, 0.06), 0 26px 60px rgba(168, 111, 10, 0.13);
}
.projecteur .kicker { color: var(--miel); }
.projecteur .filet i:nth-child(1) { background: var(--miel); }
.projecteur .filet i:nth-child(3) { background: var(--miel-vif); }
.projecteur h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.projecteur .terroir {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--miel);
  margin: 0 0 1rem;
}
.projecteur p { color: var(--gris); }
.miel-faits { list-style: none; margin: 1.2rem 0 1.5rem; padding: 0; display: grid; gap: 0.45rem; }
.miel-faits li { position: relative; padding-left: 1.6rem; font-size: 0.94rem; }
.miel-faits li::before { content: "🍯"; position: absolute; left: 0; font-size: 0.9rem; }
.miel-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.btn-miel { background: var(--miel); color: #fff; box-shadow: 0 6px 18px rgba(168, 111, 10, 0.28); }
.btn-miel:hover, .btn-miel:focus-visible { background: #8f5d05; }
.btn-miel-fantome { border-color: #e8d5a6; color: var(--miel); background: var(--miel-pale); }
.btn-miel-fantome:hover, .btn-miel-fantome:focus-visible { border-color: var(--miel); }

/* Le rayon de miel : sept alvéoles en clip-path */
.rayon { display: grid; gap: 6px; justify-items: center; }
.rayon-ligne { display: flex; gap: 6px; }
.alveole {
  width: clamp(76px, 12vw, 104px);
  aspect-ratio: 1 / 1.09;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(155deg, #fbe3a8, #f0cd7e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: #7a5205;
  line-height: 1.25;
  padding: 0.4rem;
}
.alveole-vide { background: linear-gradient(155deg, #fdf0cf, #f7e2ab); }
.alveole-forte {
  background: linear-gradient(155deg, var(--miel-vif), #c8860f);
  color: #fff;
  font-size: 0.8rem;
}
.alveole b { font-size: 1.5rem; display: block; line-height: 1.2; }

/* ── Réalisations ── */
.travaux {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.2rem;
}
.travail {
  display: flex;
  flex-direction: column;
  background: var(--papier);
  border: 1px solid var(--ligne);
  border-radius: var(--rayon);
  padding: 1.5rem 1.45rem 1.3rem;
  box-shadow: var(--ombre);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.travail:hover, .travail:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--ombre-forte);
  border-color: #d8d2c4;
}
.travail-secteur {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rouge);
}
.travail h3 { margin: 0.35rem 0 0.1rem; font-size: 1.24rem; }
.travail-domaine {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--gris-clair);
  margin: 0 0 0.7rem;
}
.travail > p { color: var(--gris); font-size: 0.94rem; }
.faits { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; padding: 0; margin: 0.9rem 0 0; }
.faits li {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--bleu);
  background: var(--bleu-pale);
  border-radius: 6px;
  padding: 0.16rem 0.55rem;
}
.travail-liens {
  margin-top: auto;
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.travail-liens a { color: var(--bleu-vif); text-decoration: none; }
.travail-liens a:hover, .travail-liens a:focus-visible { text-decoration: underline; }
.etiquette-maison {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--miel);
  background: var(--miel-pale);
  border: 1px solid #f0dfb4;
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  margin-bottom: 0.6rem;
}

/* ── Méthode ── */
.section-methode { background: var(--papier); border-block: 1px solid var(--ligne); }
.etapes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.6rem 1.2rem;
  counter-reset: etape;
}
.etape { position: relative; padding-top: 2.6rem; }
.etape::before {
  counter-increment: etape;
  content: counter(etape, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bleu);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
}
.etape::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 46px;
  right: -1.2rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--ligne) 0 6px, transparent 6px 12px);
}
.etape:last-child::before { background: var(--rouge); }
.etape:last-child::after { display: none; }
.etape h3 { font-size: 1.08rem; }
.etape p { color: var(--gris); font-size: 0.92rem; margin: 0; }

/* ── Bandeau bleu « fait en France » ── */
.bandeau-fr {
  background:
    radial-gradient(70% 100% at 15% 0%, rgba(43, 75, 155, 0.55), transparent 60%),
    radial-gradient(60% 100% at 92% 100%, rgba(208, 52, 44, 0.32), transparent 62%),
    var(--bleu);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bandeau-fr::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 78% 12%, transparent 0 23px, rgba(255, 255, 255, 0.05) 23px 24px);
  pointer-events: none;
}
.bandeau-fr .wrap { position: relative; }
.bandeau-fr h2 { color: #fff; max-width: 22ch; }
.bandeau-fr .kicker { color: #a8bcf0; }
.bandeau-fr .section-sub { color: rgba(255, 255, 255, 0.82); }
.arguments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  margin-top: 2.4rem;
}
.argument { border-top: 3px solid; padding-top: 1rem; }
.argument:nth-child(1) { border-color: #8fa6e8; }
.argument:nth-child(2) { border-color: rgba(255, 255, 255, 0.9); }
.argument:nth-child(3) { border-color: #f0685f; }
.argument h3 { color: #fff; font-size: 1.12rem; }
.argument p { color: rgba(255, 255, 255, 0.78); font-size: 0.94rem; margin: 0; }

/* ── Recruteurs ── */
.section-recruteurs { background: var(--papier); border-block: 1px solid var(--ligne); }
.carte-recruteurs {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  border: 1px solid var(--ligne);
  border-left: 5px solid var(--bleu);
  border-radius: var(--rayon);
  background: var(--creme);
  padding: clamp(1.5rem, 4vw, 2.6rem);
}
.carte-recruteurs h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
.carte-recruteurs p { color: var(--gris); margin-bottom: 0; }
.carte-recruteurs .btn { white-space: nowrap; }

/* Page /recruteurs/ : les deux portes */
.portes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.porte {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--papier);
  border: 1px solid var(--ligne);
  border-radius: 18px;
  padding: 2rem 1.8rem 1.7rem;
  box-shadow: var(--ombre);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.porte:hover, .porte:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--ombre-forte);
  border-color: var(--bleu);
}
.porte-icone {
  font-size: 1.9rem;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--bleu-pale);
  margin-bottom: 1rem;
}
.porte-tech .porte-icone { background: #101a3d; color: #53e0c4; font-family: var(--mono); font-size: 1.5rem; }
.porte-simple .porte-icone { background: var(--rouge-pale); }
.porte h2 { font-size: 1.45rem; margin: 0 0 0.2rem; }
.porte-pour { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rouge); margin: 0 0 0.7rem; }
.porte > p { color: var(--gris); font-size: 0.96rem; }
.porte-points { list-style: none; padding: 0; margin: 0.5rem 0 1.4rem; display: grid; gap: 0.3rem; }
.porte-points li { position: relative; padding-left: 1.3rem; font-size: 0.9rem; color: var(--gris); }
.porte-points li::before { content: "→"; position: absolute; left: 0; color: var(--bleu); }
.porte-cta { margin-top: auto; font-weight: 700; color: var(--bleu); display: inline-flex; align-items: center; gap: 0.4rem; }
.porte:hover .porte-cta { color: var(--rouge); }

.repere {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  padding: 1.2rem 1.4rem;
  margin-top: 2.4rem;
  border: 1px dashed var(--ligne);
  border-radius: var(--rayon);
  background: var(--papier);
  font-size: 0.9rem;
  color: var(--gris);
}
.repere strong { color: var(--encre); }
.actions-bas { margin: 2rem 0 0; }
.porte-points code {
  font-family: var(--mono);
  font-size: 0.85em;
  background: var(--bleu-pale);
  border-radius: 4px;
  padding: 0.05em 0.35em;
  color: var(--bleu);
}

/* ── Contact ── */
.section-contact { background: var(--creme); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(1.6rem, 5vw, 3.4rem);
  align-items: start;
}
.coordonnees { display: flex; flex-direction: column; gap: 0.8rem; margin: 1.6rem 0 0; }
.coord {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.2rem;
  background: var(--papier);
  border: 1px solid var(--ligne);
  border-radius: var(--rayon);
  text-decoration: none;
  color: var(--encre);
  box-shadow: var(--ombre);
  transition: border-color 0.2s, transform 0.15s;
}
.coord:hover, .coord:focus-visible { border-color: var(--bleu); transform: translateX(3px); }
.coord-icone { font-size: 1.3rem; }
.coord-texte b { display: block; font-size: 1.02rem; line-height: 1.4; }
.coord-texte small { font-size: 0.82rem; color: var(--gris); }
.devis-note {
  background: var(--papier);
  border: 1px solid var(--ligne);
  border-top: 4px solid var(--rouge);
  border-radius: var(--rayon);
  padding: 1.5rem 1.5rem 1.3rem;
  box-shadow: var(--ombre);
}
.devis-note h3 { font-size: 1.1rem; }
.devis-note ol { margin: 0.6rem 0 0; padding-left: 1.2rem; color: var(--gris); font-size: 0.93rem; }
.devis-note li { margin-bottom: 0.35rem; }

/* ── Pied de page ── */
.pied { background: var(--bleu-nuit); color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; }
.pied-filet { display: flex; height: 4px; }
.pied-filet span { flex: 1; }
.pied-filet span:nth-child(1) { background: var(--bleu-vif); }
.pied-filet span:nth-child(2) { background: #fff; }
.pied-filet span:nth-child(3) { background: var(--rouge); }
.pied-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.8rem;
  padding-block: 2.8rem 1.6rem;
}
.pied h3 {
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fa6e8;
  margin: 0 0 0.7rem;
}
.pied ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.pied a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.pied a:hover, .pied a:focus-visible { color: #fff; text-decoration: underline; }
.pied-marque { font-family: var(--serif); font-size: 1.3rem; color: #fff; margin: 0 0 0.4rem; }
.pied-bas {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.1rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
}
.pied-bas p { margin: 0; }

/* ── Apparition au défilement ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.on { opacity: 1; transform: none; }

/* ── Adaptation mobile ── */
@media (max-width: 940px) {
  .hero-grid, .projecteur, .contact-grid, .carte-recruteurs { grid-template-columns: 1fr; }
  .carte-recruteurs { border-left-width: 4px; }
  .etape::after { display: none; }
  .rayon { margin-top: 0.6rem; }
}
@media (max-width: 760px) {
  .nav-liens a:not(.btn) { display: none; }
  .marque-role { display: none; }
  .nav-inner { padding-block: 0.5rem; }
  .hero-preuves { gap: 1.1rem 1.8rem; }
  .preuve strong { font-size: 1.45rem; }
  .pied-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

/* ── Accessibilité : mouvement réduit ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero h1 em::after { animation: none; transform: scaleX(1); }
  .puce-live { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
