/* ============================================================================
   R et M Intérim — DESIGN PREMIUM — THEME GOLD/DARK — v2.0
   Lead Dev rebuild — chemins relatifs, composants complets
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=Inter+Tight:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

/* ============================================================================
   CUSTOM PROPERTIES
   ============================================================================ */
:root {
  --gold:           #8B6914;
  --gold-hi:        #F4D03F;
  --gold-gradient:  linear-gradient(135deg, #F4D03F, #8B6914);
  --dark:           #0A0A0B;
  --dark-2:         #111114;
  --dark-3:         #1a1a24;
  --light:          #FAF7F0;
  --beige:          #EBE7DC;
  --text:           #0A0A0B;
  --text-muted:     #6E6E72;
  --text-light:     rgba(255,255,255,.82);
  --border:         #d6d2c4;
  --border-dark:    #2a2a32;
  --white:          #ffffff;

  --f-serif:   'Fraunces', Georgia, serif;
  --f-sans:    'Inter Tight', 'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', 'Courier New', monospace;

  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  32px;
  --sp-xl:  48px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;
  --sp-4xl: 120px;

  --transition: 0.25s ease;
  --shadow-card: 0 8px 32px rgba(0,0,0,.07);
  --shadow-hover: 0 20px 48px rgba(0,0,0,.13);

  --z-header: 100;
  --z-sticky: 500;
}

/* ============================================================================
   RESET
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--light);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 72px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================================
   TYPOGRAPHIE
   ============================================================================ */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.15; text-wrap: balance; }
h1 { font-size: clamp(40px, 7vw, 96px); letter-spacing: -.03em; }
h2 { font-size: clamp(36px, 4.5vw, 64px); letter-spacing: -.02em; }
h3 { font-size: clamp(22px, 3vw, 34px); }
h4 { font-size: 18px; }

.serif        { font-family: var(--f-serif); font-weight: 400; }
.serif-italic { font-family: var(--f-serif); font-style: italic; font-weight: 500; }
.mono         { font-family: var(--f-mono); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
.sur-titre    { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--gold); display: block; margin-bottom: var(--sp-lg); }

/* ============================================================================
   ACCESSIBILITÉ — SKIP LINK / FOCUS / WCAG
   ============================================================================ */
.skip-link {
  position: absolute; top: -100px; left: var(--sp-sm);
  background: var(--dark); color: var(--white);
  padding: 10px 18px; font-weight: 700; font-size: 14px;
  text-decoration: none; z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: var(--sp-sm); }

:focus-visible {
  outline: 3px solid var(--gold-hi);
  outline-offset: 3px;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================================
   STICKY CTA — BARRE FLOTTANTE
   ============================================================================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--dark); color: var(--white);
  padding: 14px var(--sp-2xl);
  display: flex; justify-content: center; align-items: center; gap: var(--sp-lg);
  z-index: var(--z-sticky);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
}
.sticky-cta p { font-family: var(--f-serif); font-size: 18px; }
@media (max-width: 767px) { .sticky-cta p { display: none; } }

/* ============================================================================
   HEADER — NAVIGATION
   ============================================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.main-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px var(--sp-2xl); gap: var(--sp-lg);
  max-width: 1400px; margin: 0 auto;
}

.logo {
  font-weight: 800; font-size: 22px; letter-spacing: -.02em;
  text-decoration: none; color: var(--dark);
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap; flex-shrink: 0;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 13px; font-weight: 600; color: #3C3C43;
  text-decoration: none; white-space: nowrap;
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: var(--sp-sm); flex-shrink: 0; }

.lang-selector select {
  appearance: none; background: transparent;
  border: 1px solid var(--border); padding: 8px 32px 8px var(--sp-sm);
  font-family: var(--f-sans); font-weight: 600; font-size: 13px;
  cursor: pointer; border-radius: 4px; color: var(--text);
}

/* ============================================================================
   BOUTONS
   ============================================================================ */
.btn-primary {
  background: var(--dark); color: var(--white);
  border: 2px solid var(--dark);
  padding: 12px var(--sp-lg); font-weight: 700; font-size: 14px;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap; cursor: pointer;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.btn-gold {
  background: var(--gold-gradient);
  color: var(--dark); border: none;
  padding: 16px var(--sp-xl); font-weight: 700; font-size: 15px;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer; white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,105,20,.35); }

.btn-outline {
  background: transparent; color: var(--dark);
  border: 2px solid var(--dark);
  padding: 14px var(--sp-lg); font-weight: 700; font-size: 14px;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-outline-light {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
  padding: 14px var(--sp-lg); font-weight: 700; font-size: 14px;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.btn-whatsapp {
  background: #25D366; color: var(--white);
  border: none; padding: 11px 22px; font-weight: 700; font-size: 15px;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn-whatsapp:hover { background: #1EBE56; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.32); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ============================================================================
   SECTIONS — BACKGROUNDS
   ============================================================================ */
.bg-dark  { background: var(--dark);  color: var(--white); }
.bg-dark2 { background: var(--dark-2); color: var(--white); }
.bg-light { background: var(--light); }
.bg-beige { background: var(--beige); }

section { padding: var(--sp-4xl) var(--sp-2xl); max-width: 1400px; margin-left: auto; margin-right: auto; }
section.full-bleed { max-width: none; }

/* Pour les sections qui doivent avoir le fond plein largeur */
.section-wrapper {
  width: 100%;
}
.section-wrapper.bg-dark,
.section-wrapper.bg-beige,
.section-wrapper.bg-light {
  width: 100%;
}
.section-wrapper > section {
  max-width: 1400px;
  margin: 0 auto;
}

/* ============================================================================
   HERO — PAGE ACCUEIL
   ============================================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(155deg, #110e05 0%, #2c2007 50%, #5a420e 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--sp-4xl) var(--sp-2xl);
  color: var(--white); overflow: hidden;
  max-width: none;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.015) 0 20px, rgba(255,255,255,.04) 20px 40px);
  mix-blend-mode: overlay; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 1200px; }
.hero h1 { margin-bottom: var(--sp-xl); max-width: 1000px; }
.hero-lead { font-size: clamp(17px, 2vw, 22px); color: rgba(255,255,255,.82); max-width: 620px; margin-bottom: var(--sp-xl); line-height: 1.72; }
.hero-ctas { display: flex; gap: var(--sp-sm); flex-wrap: wrap; }

/* ============================================================================
   HERO SECONDAIRE — PAGES INTÉRIEURES
   ============================================================================ */
.hero-secondary {
  background: linear-gradient(155deg, #110e05 0%, #2c2007 60%, #5a420e 100%);
  padding: var(--sp-3xl) var(--sp-2xl);
  color: var(--white); max-width: none;
}
.hero-secondary .mono { color: var(--gold-hi); margin-bottom: var(--sp-sm); }
.hero-secondary h1 {
  font-family: var(--f-serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400; color: var(--white);
  margin-bottom: var(--sp-sm); max-width: 900px;
}
.hero-secondary p {
  font-size: 19px; color: rgba(255,255,255,.78); max-width: 640px; line-height: 1.72;
}

/* ============================================================================
   BREADCRUMB
   ============================================================================ */
.breadcrumb {
  padding: 12px var(--sp-2xl);
  background: var(--light); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; flex-wrap: wrap; max-width: none;
}
.breadcrumb a { color: var(--gold); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--text-muted); }
.breadcrumb .sep { color: var(--border); }

/* ============================================================================
   SECTION AGENCE / ABOUT
   ============================================================================ */
.about-grid {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: var(--sp-2xl); align-items: start;
}
.about-text .lead {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.35; color: var(--dark);
  margin-bottom: var(--sp-xl); font-weight: 400;
}
.about-text p {
  font-size: 17.5px; color: #4A4A52;
  margin-bottom: var(--sp-md); line-height: 1.82;
}
.about-box {
  background: var(--dark); color: var(--white);
  padding: var(--sp-xl);
}
.about-box h3 {
  font-family: var(--f-serif); font-size: 22px;
  color: var(--gold-hi); margin-bottom: var(--sp-lg); font-weight: 400;
}

/* ============================================================================
   SEO LISTS
   ============================================================================ */
.seo-list { margin: var(--sp-sm) 0; }
.seo-list li {
  padding-left: 24px; position: relative;
  margin-bottom: 11px; font-size: 15.5px;
  color: rgba(255,255,255,.8); line-height: 1.65;
}
.seo-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--gold-hi); font-family: var(--f-mono); font-size: 11px; top: 4px;
}
.seo-list.on-light li { color: #4A4A52; }
.seo-list.on-light li::before { color: var(--gold); }

/* ============================================================================
   EXPERTISES (INDEX)
   ============================================================================ */
.expertise-block {
  border-top: 1px solid var(--border-dark);
  padding-top: var(--sp-2xl);
  margin-bottom: var(--sp-4xl);
}
.expertise-header {
  display: grid; grid-template-columns: 80px 1fr;
  gap: var(--sp-xl); margin-bottom: var(--sp-2xl); align-items: start;
}
.expertise-title {
  font-family: var(--f-serif);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05; margin-bottom: var(--sp-sm); font-weight: 400;
}
.expertise-desc { font-size: 18px; color: #A0A0A8; max-width: 780px; line-height: 1.8; }

.sub-expertise-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-lg);
}
.sub-expertise-card {
  background: rgba(255,255,255,.03); padding: var(--sp-xl);
  border: 1px solid rgba(255,255,255,.1);
  transition: border-color var(--transition), background var(--transition);
}
.sub-expertise-card:hover { border-color: rgba(244,208,63,.3); background: rgba(255,255,255,.05); }
.sub-expertise-card h4 {
  font-family: var(--f-serif); font-size: 24px;
  margin-bottom: var(--sp-sm); color: var(--gold-hi); font-weight: 400;
}
.sub-expertise-card p { color: #D8D8DF; font-size: 15.5px; margin-bottom: var(--sp-lg); line-height: 1.75; }

.meat-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: var(--sp-lg); }
.meat-tag {
  background: var(--dark-3); border: 1px solid var(--gold);
  color: var(--white); padding: 5px 14px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em; border-radius: 50px;
}

/* ============================================================================
   OFFRES D'EMPLOI (INDEX)
   ============================================================================ */
.jobs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--sp-lg);
}
.job-card {
  background: var(--white); border: 1px solid var(--border);
  padding: var(--sp-xl); transition: all var(--transition);
}
.job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.job-meta {
  display: flex; justify-content: space-between;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--border); padding-bottom: var(--sp-sm);
}
.job-card h3 {
  font-family: var(--f-serif); font-size: clamp(20px, 2.5vw, 28px);
  color: var(--dark); margin-bottom: var(--sp-sm); font-weight: 400; line-height: 1.2;
}
.job-salary {
  font-family: var(--f-mono); font-size: 12px; color: var(--gold);
  background: var(--light); padding: 6px var(--sp-sm);
  display: inline-block; margin-bottom: var(--sp-lg); letter-spacing: .05em;
}
.job-card > p { color: #4A4A52; margin-bottom: var(--sp-lg); font-size: 15px; line-height: 1.75; }

/* ============================================================================
   FAQ GRILLE STATIQUE (INDEX)
   ============================================================================ */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl) var(--sp-4xl);
}
.faq-item h3 { font-size: 19px; font-weight: 700; margin-bottom: var(--sp-sm); color: var(--dark); }
.faq-item h3 span { color: var(--gold); font-family: var(--f-serif); font-size: 26px; margin-right: 8px; }
.faq-item p { font-size: 15.5px; color: #4A4A52; line-height: 1.78; }

/* ============================================================================
   INTRO SECTION — PAGES INTÉRIEURES
   ============================================================================ */
.intro-grid {
  display: grid; grid-template-columns: 3fr 1.4fr;
  gap: var(--sp-2xl); align-items: start;
}
.intro-text h2 {
  font-family: var(--f-serif); font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: var(--sp-lg); font-weight: 400;
}
.intro-text p { font-size: 17.5px; color: #4A4A52; margin-bottom: var(--sp-md); line-height: 1.82; }
.intro-text strong { color: var(--dark); }

.sidebar-box {
  background: var(--dark); color: var(--white);
  padding: var(--sp-xl); position: sticky; top: 90px;
}
.sidebar-box h3 {
  font-family: var(--f-serif); font-size: 17px;
  color: var(--gold-hi); margin-bottom: var(--sp-lg); font-weight: 400;
  border-bottom: 1px solid var(--border-dark); padding-bottom: var(--sp-sm);
}
.sidebar-box li {
  padding: 10px 0 10px 22px; position: relative;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 14px; color: rgba(255,255,255,.82);
}
.sidebar-box li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-hi); font-weight: 700; }
.sidebar-box strong { color: var(--white); }

/* ============================================================================
   PROFESSIONS CARDS
   ============================================================================ */
.professions-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-lg); margin-top: var(--sp-xl);
}
.profession-card {
  background: var(--white); padding: var(--sp-xl);
  border: 1px solid var(--border); transition: all var(--transition);
  display: flex; flex-direction: column; gap: var(--sp-sm);
}
.profession-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.profession-card h3 {
  font-family: var(--f-serif); font-size: 24px;
  color: var(--dark); font-weight: 400; line-height: 1.2;
}
.profession-card .desc { color: #4A4A52; font-size: 15px; line-height: 1.78; flex-grow: 1; }
.profession-tag {
  display: inline-block; font-family: var(--f-mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold); background: var(--light); padding: 5px 12px;
  border: 1px solid var(--border); align-self: flex-start;
}
.qual-list h4 {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold); margin-bottom: 10px;
}
.qual-list li {
  padding-left: 18px; position: relative;
  color: #4A4A52; margin-bottom: 7px; font-size: 14px;
}
.qual-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 11px; }

/* ============================================================================
   SECTION RÉGLEMENTAIRE
   ============================================================================ */
.reg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-lg); margin-top: var(--sp-xl);
}
.reg-item { padding: var(--sp-lg); border: 1px solid rgba(255,255,255,.1); }
.reg-item h3 { font-family: var(--f-serif); font-size: 18px; color: var(--gold-hi); margin-bottom: var(--sp-sm); font-weight: 400; }
.reg-item p { color: rgba(255,255,255,.72); font-size: 14.5px; line-height: 1.72; }

/* ============================================================================
   ACCORDÉONS FAQ (PAGE FAQ) — WCAG ARIA
   ============================================================================ */
.faq-page-section { padding: var(--sp-2xl) var(--sp-2xl); }
.faq-page-section + .faq-page-section { border-top: 1px solid var(--border); }
.faq-page-section > h2 {
  font-family: var(--f-serif); font-size: clamp(26px, 3vw, 38px);
  font-weight: 400; margin-bottom: var(--sp-xl); color: var(--dark);
}
.faq-accordion { display: flex; flex-direction: column; gap: 4px; }

.acc-item { border: 1px solid var(--border); background: var(--white); }
.acc-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px var(--sp-lg); cursor: pointer;
  user-select: none; list-style: none; gap: var(--sp-sm);
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 0; line-height: 1.4; }
.acc-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; line-height: 1;
  transition: transform var(--transition), background var(--transition);
  border-radius: 50%;
}
.acc-item[open] .acc-icon { transform: rotate(45deg); background: var(--dark); color: var(--white); }
.acc-item[open] > summary { background: var(--light); border-bottom: 1px solid var(--border); }
.acc-body { padding: var(--sp-lg) var(--sp-lg) var(--sp-xl); color: #4A4A52; font-size: 15.5px; line-height: 1.8; }
.acc-body p { margin-bottom: var(--sp-sm); }
.acc-body ul, .acc-body ol { padding-left: var(--sp-lg); margin-bottom: var(--sp-sm); }
.acc-body li { margin-bottom: 6px; }
.acc-body strong { color: var(--dark); }

/* ============================================================================
   OFFRES (PAGE CANDIDATS)
   ============================================================================ */
.filters-bar {
  display: flex; align-items: center; gap: var(--sp-sm); flex-wrap: wrap;
  padding: var(--sp-lg) var(--sp-2xl);
  background: var(--light); border-bottom: 1px solid var(--border);
  max-width: none;
}
.filters-bar > span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); }
.filter-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); padding: 7px 18px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--dark); color: var(--white); border-color: var(--dark); }

.offers-section { padding: var(--sp-2xl) var(--sp-2xl); }
.offers-section h2 { font-family: var(--f-serif); font-size: 28px; font-weight: 400; margin-bottom: var(--sp-lg); }
.offers-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--sp-lg); margin-bottom: var(--sp-2xl);
}
.offer-card {
  background: var(--white); border: 1px solid var(--border);
  padding: var(--sp-xl); display: flex; flex-direction: column; gap: 12px;
  transition: all var(--transition);
}
.offer-card:hover { border-color: var(--gold); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.offer-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--sp-sm); }
.offer-card h3 { font-family: var(--f-serif); font-size: 21px; font-weight: 400; color: var(--dark); line-height: 1.25; }
.badge { display: inline-block; padding: 3px 9px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; flex-shrink: 0; }
.badge-urgent { background: #DC2626; color: var(--white); }
.badge-new    { background: var(--gold); color: var(--dark); }
.offer-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-muted); }
.offer-salary { font-family: var(--f-mono); font-size: 11.5px; color: var(--gold); background: var(--light); padding: 5px 10px; border: 1px solid var(--border); display: inline-block; }
.offer-card > p { font-size: 14.5px; color: #4A4A52; line-height: 1.7; flex-grow: 1; }
.offer-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.offer-tag { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: var(--beige); color: var(--text-muted); padding: 3px 9px; border: 1px solid var(--border); }

/* ============================================================================
   PAGE CONTACT — ULTRA-MINIMALISTE
   ============================================================================ */
.contact-hero {
  background: var(--dark); color: var(--white);
  padding: var(--sp-4xl) var(--sp-2xl);
  text-align: center; max-width: none;
}
.contact-hero h1 { font-family: var(--f-serif); font-size: clamp(40px, 6vw, 72px); font-weight: 400; margin-bottom: var(--sp-md); }
.contact-hero p { font-size: 19px; color: rgba(255,255,255,.72); max-width: 540px; margin: 0 auto; line-height: 1.7; }

.contact-core {
  padding: var(--sp-4xl) var(--sp-2xl);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: var(--sp-lg); max-width: none;
}
.contact-core .label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--text-muted); }
.contact-email-link {
  font-family: var(--f-serif); font-style: italic; font-size: clamp(22px, 3vw, 32px);
  color: var(--gold); text-decoration: none; line-height: 1.2;
}
.contact-email-link:hover { color: var(--dark); text-decoration: underline; }

.contact-promise {
  background: var(--beige); padding: var(--sp-xl) var(--sp-2xl);
  text-align: center; max-width: none;
}
.contact-promise p { color: var(--text-muted); font-size: 14px; max-width: 520px; margin: 0 auto; line-height: 1.75; }

/* ============================================================================
   CTA BAND
   ============================================================================ */
.cta-band { text-align: center; }
.cta-band h2 { font-family: var(--f-serif); font-size: clamp(28px, 3.5vw, 48px); font-weight: 400; margin-bottom: var(--sp-sm); }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto var(--sp-lg); }
.cta-btns { display: flex; gap: var(--sp-sm); justify-content: center; flex-wrap: wrap; }

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
  background: #050505; color: rgba(255,255,255,.55);
  border-top: 1px solid var(--border-dark);
  padding: var(--sp-2xl) var(--sp-2xl) var(--sp-lg);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-2xl); margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,.08);
  max-width: 1280px;
}
.footer-brand .logo { color: var(--white); font-size: 20px; margin-bottom: var(--sp-sm); text-decoration: none; display: inline-block; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,.48); max-width: 270px; margin-top: var(--sp-sm); }
.footer-col h3 { font-family: var(--f-serif); font-size: 14px; font-weight: 400; color: var(--gold-hi); margin-bottom: var(--sp-sm); }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,.55); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-hi); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-sm); font-size: 12.5px;
  max-width: 1280px;
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-hi); }
.hreflang-links { display: flex; gap: var(--sp-sm); flex-wrap: wrap; }
.hreflang-links a { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.4); }
.hreflang-links a:hover { color: var(--gold-hi); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1100px) {
  .main-nav { padding: 16px var(--sp-lg); }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 12px; }
}

@media (max-width: 1024px) {
  .about-grid, .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .expertise-header { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .sidebar-box { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}


/* ── BURGER & MENU MOBILE ─────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none;
  border: 1.5px solid var(--border);
  padding: 8px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: border-color .2s;
}
.nav-burger:hover { border-color: var(--dark); }
.nav-burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile — panneau plein écran */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark-2);
  z-index: 9999;
  flex-direction: column;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }

/* Barre supérieure avec logo + fermeture */
.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-dark);
  flex-shrink: 0;
}
.nav-mobile-header .logo-mob {
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.02em;
}
.nav-mobile-close {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid var(--border-dark);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  transition: background .2s;
}
.nav-mobile-close:hover { background: rgba(255,255,255,.14); }

/* Liens */
.nav-mobile ul {
  list-style: none; margin: 0; padding: 8px 0;
  display: flex; flex-direction: column;
  flex: 1;
}
.nav-mobile ul li { border-bottom: 1px solid var(--border-dark); }
.nav-mobile ul a {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--f-sans);
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .15s, padding-left .15s;
}
.nav-mobile ul a:hover,
.nav-mobile ul a.active {
  color: var(--gold-hi);
  padding-left: 32px;
}

/* CTA Postuler */
.nav-mobile-cta {
  padding: 24px;
  border-top: 1px solid var(--border-dark);
  flex-shrink: 0;
}
.nav-mobile-cta a {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: var(--gold-hi);
  color: var(--dark) !important;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s;
}
.nav-mobile-cta a:hover { background: #e8c530; }
@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
}

@media (max-width: 640px) {
  body { padding-bottom: 80px; }
  section { padding: var(--sp-2xl) var(--sp-md); }
  .main-nav { padding: 14px var(--sp-md); }
  .breadcrumb, .filters-bar { padding-left: var(--sp-md); padding-right: var(--sp-md); }
  .hero { padding: var(--sp-2xl) var(--sp-md); min-height: 75vh; }
  .hero-secondary { padding: var(--sp-2xl) var(--sp-md); }
  .sticky-cta { padding: 12px var(--sp-md); }
  .jobs-grid, .professions-grid, .sub-expertise-grid, .offers-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .faq-page-section { padding: var(--sp-lg) var(--sp-md); }
  .contact-core, .contact-hero, .contact-promise { padding-left: var(--sp-md); padding-right: var(--sp-md); }
  .offers-section { padding: var(--sp-lg) var(--sp-md); }
}
/* ============================================================================
   CONTACT PAGE — ULTRA-MINIMAL
   ============================================================================ */

/* Hero contact */
.contact-hero {
  background: var(--dark-2);
  padding: var(--sp-5xl) 0 var(--sp-4xl);
}
.contact-hero-inner { max-width: 680px; }
.contact-hero h1 {
  font-family: var(--f-serif); font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08; font-weight: 400; margin-bottom: var(--sp-lg);
  color: var(--white);
}
.contact-hero h1 em { color: var(--gold-hi); font-style: italic; }
.contact-lead {
  font-size: 19px; line-height: 1.75; color: #B0B0BC;
  max-width: 560px;
}

/* Core contact block */
.contact-core {
  background: var(--white);
  padding: var(--sp-5xl) 0;
}
.contact-core-inner {
  max-width: 660px; margin: 0 auto;
  text-align: center;
}

.contact-wa-block {
  background: #F5F5F0;
  border: 1px solid var(--border);
  padding: var(--sp-3xl) var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}
.contact-wa-icon {
  color: #25D366;
  margin-bottom: var(--sp-xl);
  display: flex; justify-content: center;
}
.contact-wa-title {
  font-family: var(--f-serif); font-size: clamp(26px, 3vw, 38px);
  font-weight: 400; color: var(--dark);
  margin-bottom: var(--sp-sm); line-height: 1.2;
}
.contact-wa-sub {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: var(--sp-2xl);
  max-width: 460px; margin-left: auto; margin-right: auto;
}

/* Boutons WhatsApp doubles */
.contact-wa-btns {
  display: flex; flex-wrap: wrap; gap: var(--sp-md);
  justify-content: center; margin-bottom: var(--sp-xl);
}

/* Tailles de boutons */
.btn-whatsapp.btn-lg,
.btn-whatsapp.btn-xl {
  padding: 13px 28px;
  font-size: 16px;
  gap: 10px;
}
.btn-whatsapp.btn-xl {
  min-width: 200px;
}

/* Variante outline */
.btn-whatsapp.btn-whatsapp-outline {
  background: transparent;
  color: #25D366;
  border: 2px solid #25D366;
}
.btn-whatsapp.btn-whatsapp-outline:hover {
  background: #25D366;
  color: var(--white);
}

/* Temps de réponse */
.contact-response-time {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-muted);
  font-weight: 500;
}
.contact-response-time svg { color: var(--gold); flex-shrink: 0; }

/* Séparateur */
.contact-divider {
  display: flex; align-items: center; gap: var(--sp-lg);
  margin: var(--sp-2xl) 0; color: var(--text-muted); font-size: 13px;
  text-transform: uppercase; letter-spacing: .12em;
}
.contact-divider::before,
.contact-divider::after {
  content: ''; flex: 1;
  height: 1px; background: var(--border);
}

/* Email block */
.contact-email-block { text-align: center; }
.contact-email-label {
  font-size: 14px; color: var(--text-muted); margin-bottom: var(--sp-sm);
}
.contact-email-link {
  font-family: var(--f-mono); font-size: 18px;
  color: var(--dark); text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.contact-email-link:hover { color: var(--gold); }

/* Promise section */
.contact-promise { padding: var(--sp-5xl) 0; }
.contact-promise h2 {
  font-family: var(--f-serif); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400; margin-bottom: var(--sp-xl); color: var(--white);
}
.contact-promise p {
  font-size: 17px; line-height: 1.9; color: #C0C0C8;
  max-width: 680px; margin-bottom: var(--sp-lg);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .contact-wa-btns { flex-direction: column; }
  .btn-whatsapp.btn-xl { width: 100%; min-width: unset; justify-content: center; }
  .faq-page-section .container { padding-left: var(--sp-lg); padding-right: var(--sp-lg); }
}

/* ============================================================================
   ANIMATIONS — entrance (scroll-triggered via IntersectionObserver in main.js)
   Conforme WCAG 2.5.3 / RGAA 13.8 : désactivé si prefers-reduced-motion
   ============================================================================ */

@keyframes rmFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rmFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero — déclenché au chargement de la page */
.hero-secondary h1,
.hero-primary h1 {
  animation: rmFadeUp .62s cubic-bezier(.25,.46,.45,.94) both;
}
.hero-secondary .hero-sub,
.hero-primary > p {
  animation: rmFadeUp .62s .13s cubic-bezier(.25,.46,.45,.94) both;
}
.hero-secondary .btn-gold,
.hero-primary .hero-cta,
.hero-primary .sticky-cta {
  animation: rmFadeUp .62s .26s cubic-bezier(.25,.46,.45,.94) both;
}
.contact-hero h1 { animation: rmFadeUp .62s cubic-bezier(.25,.46,.45,.94) both; }
.contact-hero .contact-lead { animation: rmFadeUp .62s .13s cubic-bezier(.25,.46,.45,.94) both; }

/* Scroll-triggered — état initial (invisible) */
[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .52s cubic-bezier(.25,.46,.45,.94),
              transform .52s cubic-bezier(.25,.46,.45,.94);
  will-change: opacity, transform;
}
[data-anim].is-visible {
  opacity: 1;
  transform: none;
}

/* Respect prefers-reduced-motion (WCAG 2.5.3) */
@media (prefers-reduced-motion: reduce) {
  [data-anim],
  .hero-secondary h1, .hero-secondary .hero-sub, .hero-secondary .btn-gold,
  .hero-primary h1, .hero-primary > p, .hero-primary .hero-cta,
  .contact-hero h1, .contact-hero .contact-lead {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================
   CARTE COMMERCIAL - VERSION COMPACTE 300px
   ========================================================== */

.commercial-profile-card {
  --brown: #755033;
  --brown-dark: #5b3d28;
  --gold: #c99928;
  --white: #ffffff;

  width: 380px;
  max-width: 100%;
  margin: 22px auto 0;
  padding: 16px 10px 14px;
  background: transparent;
  font-family: "Inter", "Montserrat", Arial, sans-serif;
  text-align: center;
  box-sizing: border-box;
}

.commercial-profile-card * {
  box-sizing: border-box;
}

.commercial-visual {
  position: relative;
  width: min(100%, 300px);
  max-width: 300px;
  height: 300px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.commercial-scribble {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: var(--brown);
  stroke-width: 4.2;
  stroke-linecap: round;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
}

.commercial-photo-ring {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 68%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -53%);
  border-radius: 50%;
  background: var(--white);
  padding: 0;
  z-index: 2;
  overflow: visible;
}

.commercial-photo {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 92%;
  height: 92%;
  display: block;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
}

.commercial-name-badge {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 84%;
  min-height: 62px;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 9px 18px rgba(40, 30, 20, 0.28);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 18px 9px;
}

.commercial-name {
  color: #985c32;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1;
  white-space: nowrap;
}

.commercial-role {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
}

.commercial-contact {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: transparent;
}

.commercial-phone,
.commercial-email {
  text-decoration: none;
  line-height: 1.1;
}

.commercial-phone {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.commercial-email,
.commercial-email:visited,
.commercial-email:hover,
.commercial-email:active {
  color: #ffffff !important;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

/* Sécurité si le span existe encore avant le remplacement JS */
#commercial-email-js,
#commercial-email-js a {
  color: #ffffff !important;
}

/* Mobile : garde le bloc propre sans dépasser */
@media (max-width: 420px) {
  .commercial-profile-card {
    width: 320px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .commercial-visual {
    width: 280px;
    max-width: 280px;
    height: 280px;
  }

  .commercial-name-badge {
    min-height: 56px;
    padding: 8px 14px;
  }

  .commercial-name {
    font-size: 1.18rem;
  }

  .commercial-role {
    font-size: 0.72rem;
  }

  .commercial-phone {
    font-size: 1.72rem;
  }

  .commercial-email {
    font-size: 1rem;
  }
}

@media (max-width: 340px) {
  .commercial-profile-card {
    width: 280px;
  }

  .commercial-visual {
    width: 250px;
    max-width: 250px;
    height: 250px;
  }

  .commercial-name {
    font-size: 1.02rem;
  }

  .commercial-role {
    font-size: 0.62rem;
  }

  .commercial-phone {
    font-size: 1.5rem;
  }

  .commercial-email {
    font-size: 0.86rem;
  }
}