/* ==========================================================================
   JabaLink — Feuille de style principale
   Conseil · Stratégie · Growth
   ========================================================================== */

:root {
  --vert-fonce: #2D4A3E;
  --vert-tres-fonce: #1A2E25;
  --vert-moyen: #4A6B5A;
  --or: #D4B896;
  --or-clair: #E8DFC8;
  --creme: #F5F0E8;
  --creme-mid: #EDE5D4;
  --blanc: #FFFFFF;
  --texte: #2A2A28;
  --texte-clair: #6B7268;
  --bordure: #E4DDD0;
  --rouge-erreur: #B3432B;
  --vert-succes: #4A6B5A;

  --font-principale: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --rayon: 16px;
  --rayon-lg: 28px;
  --ombre: 0 10px 30px -12px rgba(45, 74, 62, 0.25);
  --ombre-sm: 0 4px 14px -6px rgba(45, 74, 62, 0.18);

  --largeur-max: 1180px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-principale);
  color: var(--texte);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--vert-fonce);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--or);
}

.lead {
  font-size: 1.15rem;
  color: var(--texte-clair);
  max-width: 60ch;
}

.container {
  max-width: var(--largeur-max);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 720px) {
  section { padding: 56px 0; }
}

.section--fonce {
  background: var(--vert-fonce);
  color: var(--creme);
  position: relative;
}
.section--fonce h1, .section--fonce h2, .section--fonce h3 { color: var(--blanc); }
.section--fonce .lead { color: rgba(245, 240, 232, 0.82); }

.section--moyen {
  background: var(--vert-moyen);
  color: var(--creme);
}
.section--moyen h1, .section--moyen h2, .section--moyen h3 { color: var(--blanc); }

.section--creme { background: var(--creme); }
.section--blanc { background: var(--blanc); }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--or {
  background: var(--or);
  color: var(--vert-fonce);
  box-shadow: var(--ombre-sm);
}
.btn--or:hover { background: #dfc6a4; box-shadow: var(--ombre); }

.btn--fonce {
  background: var(--vert-fonce);
  color: var(--creme);
}
.btn--fonce:hover { background: #24392f; }

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--vert-fonce);
}
.section--fonce .btn--outline, .section--moyen .btn--outline, .section--tresfonce .btn--outline, .hero .btn--outline {
  color: var(--or);
  border-color: rgba(212, 184, 150, 0.45);
}
.btn--outline:hover { background: rgba(45, 74, 62, 0.08); }
.section--fonce .btn--outline:hover, .section--moyen .btn--outline:hover, .section--tresfonce .btn--outline:hover, .hero .btn--outline:hover { background: rgba(212, 184, 150, 0.12); }

.btn--large { padding: 18px 36px; font-size: 1.05rem; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 46, 37, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 184, 150, 0.15);
}
.site-header__inner {
  max-width: var(--largeur-max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.logo__word { display: inline-flex; }
.logo__jaba { color: var(--or-clair); }
.logo__link { color: var(--or); }
.logo__mark {
  width: 32px;
  height: 32px;
  color: var(--or);
  flex-shrink: 0;
  display: inline-flex;
}
.logo__mark svg { width: 100%; height: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--or-clair);
  display: block;
  border-radius: 2px;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav__list a {
  display: block;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(232, 223, 200, 0.75);
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav__list a:hover { background: rgba(212, 184, 150, 0.12); color: var(--or-clair); }
.main-nav__list a.is-active {
  background: rgba(212, 184, 150, 0.12);
  color: var(--or-clair);
}

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-actions .btn { padding: 11px 22px; font-size: 0.92rem; }
.header-actions .btn--outline { color: var(--or-clair); border-color: rgba(212, 184, 150, 0.35); }
.header-actions .btn--outline:hover { background: rgba(212, 184, 150, 0.1); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--vert-tres-fonce);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow-y: auto;
    padding: 12px 24px 40px;
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .main-nav__list a { padding: 16px 18px; font-size: 1.05rem; }
  .header-actions .btn--outline { display: none; }
}

/* ==========================================================================
   Vagues organiques (séparateurs de section)
   ========================================================================== */
.wave { display: block; width: 100%; line-height: 0; }
.wave svg { width: 100%; height: auto; display: block; }
.wave--top { margin-bottom: -1px; }
.wave--bottom { margin-top: -1px; transform: scaleY(-1); }

/* blob décoratif en fond */
.blob-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob-bg svg { position: absolute; opacity: 0.5; }
.section-content { position: relative; z-index: 1; }

/* ==========================================================================
   Hero plein écran (Accueil)
   ========================================================================== */
.section--tresfonce {
  background: var(--vert-tres-fonce);
  color: var(--creme);
  position: relative;
}
.section--tresfonce h1, .section--tresfonce h2, .section--tresfonce h3 { color: var(--blanc); }
.section--tresfonce .lead { color: rgba(245, 240, 232, 0.82); }
.section--moyen .lead { color: rgba(245, 240, 232, 0.85); }

.hero {
  background: var(--vert-tres-fonce);
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero__watermark {
  position: absolute;
  right: -3vw;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(180px, 28vw, 480px);
  font-weight: 800;
  color: rgba(74, 107, 90, 0.28);
  line-height: 1;
  letter-spacing: -18px;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.hero__wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 110px;
  background: var(--creme);
  clip-path: ellipse(58% 100% at 50% 100%);
  z-index: 1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 90px 0 110px;
  position: relative;
  z-index: 2;
}
.hero h1 { margin: 18px 0 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-card {
  background: rgba(45, 74, 62, 0.6);
  border: 1px solid rgba(212, 184, 150, 0.15);
  border-radius: var(--rayon);
  padding: 28px 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.stat-card:hover { transform: translateY(-3px); border-color: rgba(212, 184, 150, 0.3); }
.stat-card__val {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--or);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(212, 184, 150, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Portrait circulaire (photo À propos) ---- */
.photo-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid var(--or);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--ombre);
}
.photo-circle img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; padding: 60px 0 80px; text-align: center; }
  .hero__watermark { font-size: clamp(120px, 40vw, 220px); opacity: 0.6; }
  .hero__cta { justify-content: center; }
}

/* ==========================================================================
   Cartes génériques
   ========================================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 640px) and (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--blanc);
  color: var(--texte);
  border-radius: var(--rayon);
  padding: 34px 30px;
  box-shadow: var(--ombre-sm);
  border: 1px solid var(--bordure);
}
.card .checklist li { color: var(--vert-fonce); font-weight: 500; }
.card--fonce .checklist li, .card--moyen .checklist li { color: rgba(245, 240, 232, 0.85); font-weight: 400; }
.card--fonce {
  background: var(--vert-fonce);
  color: var(--creme);
  border: none;
}
.card--fonce h3 { color: var(--blanc); }
.card--moyen {
  background: var(--vert-moyen);
  color: var(--creme);
  border: none;
}
.card--moyen h3 { color: var(--blanc); }

.card__num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--or);
  margin-bottom: 14px;
  display: block;
}

.offer-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.offer-card__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--vert-fonce);
  color: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
}
.card--fonce .offer-card__num, .card--moyen .offer-card__num {
  background: rgba(245, 240, 232, 0.15);
}
.offer-card__body h3 { margin-bottom: 8px; }
.offer-card__body p { color: var(--texte-clair); font-size: 0.98rem; }
.card--fonce .offer-card__body p, .card--moyen .offer-card__body p { color: rgba(245, 240, 232, 0.85); }

.badge-principal {
  display: inline-block;
  background: var(--or);
  color: var(--vert-fonce);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ---- Checklist ---- */
.checklist li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 184, 150, 0.25);
  font-size: 0.98rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓";
  color: var(--or);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Étapes numérotées ---- */
.steps { display: flex; flex-direction: column; gap: 4px; }
.step {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--bordure);
}
.step:last-child { border-bottom: none; }
.step__num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--vert-fonce);
  color: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.step__body h4 { color: var(--vert-fonce); margin-bottom: 4px; }
.step__body p { color: var(--texte-clair); }
.section--fonce .step, .section--moyen .step, .section--tresfonce .step { border-bottom-color: rgba(212, 184, 150, 0.2); }
.section--fonce .step__num, .section--moyen .step__num, .section--tresfonce .step__num { background: rgba(245, 240, 232, 0.15); }
.section--fonce .step__body h4, .section--moyen .step__body h4, .section--tresfonce .step__body h4 { color: var(--blanc); }
.section--fonce .step__body p, .section--moyen .step__body p, .section--tresfonce .step__body p { color: rgba(245, 240, 232, 0.75); }

/* ---- Secteurs / tags band ---- */
.tag-band { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-pill {
  background: var(--vert-fonce);
  color: var(--creme);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
}
.section--fonce .tag-pill, .section--moyen .tag-pill {
  background: rgba(245, 240, 232, 0.12);
  border: 1px solid rgba(212, 184, 150, 0.4);
}

/* ---- Cartes de service (Accueil) ---- */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card {
  display: block;
  background: rgba(74, 107, 90, 0.35);
  border: 1px solid rgba(212, 184, 150, 0.14);
  border-radius: var(--rayon-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); border-color: rgba(212, 184, 150, 0.28); box-shadow: var(--ombre); }
.service-card.is-featured {
  background: rgba(212, 184, 150, 0.14);
  border-color: rgba(212, 184, 150, 0.3);
}
.service-card__num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--or);
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 14px;
}
.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.service-card__desc { font-size: 0.9rem; color: rgba(212, 184, 150, 0.75); line-height: 1.65; }
@media (max-width: 720px) { .service-grid { grid-template-columns: 1fr; } }

/* ---- Cartes de compétence (skill tags) ---- */
.skill-card {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  padding: 30px 28px;
  box-shadow: var(--ombre-sm);
  border-left: 4px solid var(--or);
}
.skill-card__title { font-size: 1rem; font-weight: 700; color: var(--vert-fonce); margin-bottom: 16px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag {
  background: var(--creme-mid);
  color: var(--vert-moyen);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(74, 107, 90, 0.14);
}

/* ---- Récap tarifs (grille 4) ---- */
.tarif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tarif-card {
  display: block;
  background: var(--creme-mid);
  border-radius: var(--rayon-lg);
  padding: 26px 22px;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tarif-card:hover { border-color: rgba(74, 107, 90, 0.2); transform: translateY(-3px); box-shadow: var(--ombre-sm); }
.tarif-card__num { font-size: 0.72rem; font-weight: 700; color: var(--vert-moyen); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.tarif-card__title { font-size: 0.95rem; font-weight: 700; color: var(--vert-fonce); margin-bottom: 12px; }
.tarif-card__val { font-size: 1.6rem; font-weight: 800; color: var(--vert-fonce); letter-spacing: -0.5px; line-height: 1; margin-bottom: 6px; }
.tarif-card__sub { font-size: 0.78rem; color: var(--texte-clair); font-weight: 500; }
.tarif-card__note { font-size: 0.78rem; color: var(--texte-clair); margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.07); line-height: 1.5; }
@media (max-width: 900px) { .tarif-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Cartes de contact ---- */
.contact-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-card {
  display: block;
  background: rgba(74, 107, 90, 0.35);
  border: 1px solid rgba(212, 184, 150, 0.14);
  border-radius: var(--rayon-lg);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(212, 184, 150, 0.3); background: rgba(74, 107, 90, 0.5); }
.contact-card__icon {
  width: 48px; height: 48px;
  background: rgba(212, 184, 150, 0.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
}
.contact-card__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(212, 184, 150, 0.6); margin-bottom: 8px; }
.contact-card__value { font-size: 1rem; font-weight: 600; color: var(--blanc); }
@media (max-width: 640px) { .contact-card-grid { grid-template-columns: 1fr; } }

/* ---- Bandeau disponibilité ---- */
.dispo-banner {
  background: rgba(212, 184, 150, 0.1);
  border: 1.5px solid rgba(212, 184, 150, 0.22);
  border-radius: var(--rayon-lg);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.dispo-dot {
  width: 10px; height: 10px;
  background: #5CB87A;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(92, 184, 122, 0.2);
  animation: dispo-pulse 2s ease-in-out infinite;
}
@keyframes dispo-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(92, 184, 122, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(92, 184, 122, 0.1); }
}
.dispo-text { font-size: 0.92rem; color: rgba(212, 184, 150, 0.85); line-height: 1.55; }
.dispo-text strong { color: var(--blanc); font-weight: 600; }

/* ---- Citation ---- */
.quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--or);
  max-width: 20ch;
  margin: 0 auto;
}

/* ---- Bloc rémunération ---- */
.pricing-figure { font-size: clamp(1.8rem, 3vw, 2.3rem); font-weight: 700; color: var(--vert-fonce); }
.pricing-unit { font-size: 0.85rem; color: var(--texte-clair); font-weight: 600; margin-bottom: 6px; }
.pricing-note { font-size: 0.88rem; color: var(--texte-clair); margin-top: 8px; }

/* ==========================================================================
   Formulaires
   ========================================================================== */
.form-card {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  padding: 42px;
  box-shadow: var(--ombre);
  border: 1px solid var(--bordure);
}
@media (max-width: 640px) { .form-card { padding: 26px; } }

.form-row { margin-bottom: 20px; }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row--split { grid-template-columns: 1fr; } }

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vert-fonce);
  margin-bottom: 7px;
}
label .optionnel { font-weight: 400; color: var(--texte-clair); }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--bordure);
  border-radius: 10px;
  background: var(--creme);
  color: var(--texte);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--vert-moyen);
  box-shadow: 0 0 0 3px rgba(74, 107, 90, 0.15);
}
textarea { resize: vertical; min-height: 130px; }

.file-drop {
  border: 1.5px dashed var(--bordure);
  border-radius: 10px;
  padding: 20px 16px;
  background: var(--creme);
  text-align: center;
  position: relative;
}
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-drop__label { font-size: 0.92rem; color: var(--texte-clair); }
.file-drop__label strong { color: var(--vert-fonce); }
.file-drop.has-file { border-color: var(--vert-moyen); border-style: solid; }
.file-drop__filename { font-size: 0.85rem; color: var(--vert-fonce); font-weight: 600; margin-top: 4px; }

.consent-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--texte-clair);
}
.consent-row input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--vert-fonce);
  flex-shrink: 0;
}
.consent-row a { color: var(--vert-fonce); font-weight: 600; text-decoration: underline; }

.form-footnote {
  font-size: 0.82rem;
  color: var(--texte-clair);
  margin-top: 18px;
}

.form-msg {
  display: none;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.form-msg.is-visible { display: block; }
.form-msg--success { background: rgba(74, 107, 90, 0.12); color: var(--vert-fonce); border: 1px solid rgba(74, 107, 90, 0.3); }
.form-msg--error { background: rgba(179, 67, 43, 0.1); color: var(--rouge-erreur); border: 1px solid rgba(179, 67, 43, 0.3); }

.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ==========================================================================
   Offres d'emploi
   ========================================================================== */
.job-list { display: flex; flex-direction: column; gap: 18px; }
.job-card {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.job-card__meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.job-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--creme);
  color: var(--vert-fonce);
  border: 1px solid var(--bordure);
}
.job-card h3 { margin-bottom: 2px; }
.job-card__entreprise { color: var(--vert-moyen); font-weight: 600; font-size: 0.94rem; }
.job-empty {
  text-align: center;
  padding: 50px 20px;
  color: var(--texte-clair);
  background: var(--blanc);
  border-radius: var(--rayon);
  border: 1px dashed var(--bordure);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--vert-tres-fonce);
  color: rgba(245, 240, 232, 0.85);
  border-top: 1px solid rgba(212, 184, 150, 0.1);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 70px 0 40px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-logo__jaba { color: var(--creme); }
.footer-logo__link { color: var(--or); }
.footer-tagline {
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.92rem; max-width: 32ch; color: rgba(245, 240, 232, 0.7); }
.footer-col h4 {
  color: var(--creme);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.92rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--or); }
.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.15);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.6);
}
.footer-bottom a:hover { color: var(--or); }

/* ==========================================================================
   Pages légales
   ========================================================================== */
.legal-content { max-width: 780px; }
.legal-content h2 { margin-top: 42px; margin-bottom: 14px; font-size: 1.3rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--texte-clair); margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }
.legal-content li { list-style: disc; margin-bottom: 8px; }
.legal-content a { color: var(--vert-fonce); font-weight: 600; text-decoration: underline; }
.legal-content strong { color: var(--vert-fonce); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal-content th, .legal-content td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--bordure);
  font-size: 0.92rem;
  color: var(--texte-clair);
}
.legal-content th { background: var(--creme); color: var(--vert-fonce); }
.legal-updated { font-size: 0.85rem; color: var(--texte-clair); margin-bottom: 30px; }

/* ---- Page header générique ---- */
.page-header { padding: 64px 0 60px; }
.page-header .eyebrow { margin-bottom: 16px; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.65);
  margin-top: 18px;
}
.breadcrumb a:hover { color: var(--or); }

/* ---- Utilitaires ---- */
.mt-lg { margin-top: 48px; }
.mt-md { margin-top: 28px; }
.mb-lg { margin-bottom: 48px; }
.mb-md { margin-bottom: 28px; }
.text-center { text-align: center; }
.max-prose { max-width: 62ch; }
.flex-center { display: flex; align-items: center; justify-content: center; }
