/* =====================================================
   ACACIA LAW AND LOBBYING FIRM — FEUILLE DE STYLE PRINCIPALE
   Charte graphique officielle — v1.3
   ===================================================== */

/* =====================================================
   1. VARIABLES (CHARTE GRAPHIQUE)
   ===================================================== */
:root {
  --vert-emeraude:      #0A5C5A;
  --vert-emeraude-dark: #084846;
  --vert-acacia:        #38A169;
  --or-prestige:        #C5A059;
  --or-prestige-dark:   #A88542;

  --ink:      #1A1A1A;
  --ink-soft: #3A3A3A;
  --muted:    #6B7280;
  --line:     #E5E7EB;
  --paper:    #FAFAF7;
  --white:    #FFFFFF;

  --font-titre: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-texte: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --radius:    6px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 8px rgba(10,92,90,.06);
  --shadow-md: 0 8px 24px rgba(10,92,90,.10);
  --shadow-lg: 0 20px 50px rgba(10,92,90,.15);
  --transition: .3s ease;
}

/* =====================================================
   2. RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-texte);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--vert-emeraude);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--or-prestige); }

ul { list-style: none; }

svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* =====================================================
   3. TYPOGRAPHIE
   ===================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-titre);
  color: var(--vert-emeraude);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }
h4 { font-size: 1.05rem; margin-bottom: .75rem; }

/* =====================================================
   4. LAYOUT
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.center { text-align: center; }

.section { padding: 5rem 0; }

.section-eyebrow {
  display: inline-block;
  color: var(--or-prestige);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
}

/* =====================================================
   5. TOPBAR
   ===================================================== */
.topbar {
  background: var(--vert-emeraude);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  padding: .55rem 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
}
.topbar-contact { margin-left: auto; }
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: var(--or-prestige); }
.topbar svg {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-right: 4px;
}

/* =====================================================
   6. HEADER & NAVIGATION
   ===================================================== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-titre);
}
.logo img {
  height: 55px;
  width: auto;
  display: block;
}
.logo-light img { height: 65px; }

.menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.menu a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .93rem;
  position: relative;
}
.menu a:hover { color: var(--vert-emeraude); }
.menu a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--or-prestige);
  transition: var(--transition);
}
.menu a:not(.btn):hover::after { width: 100%; }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vert-emeraude);
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   7. BOUTONS
   ===================================================== */
.btn {
  display: inline-block;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-texte);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-sm { padding: .55rem 1.15rem; font-size: .85rem; }

.btn svg {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 6px;
}

.btn-gold {
  background: var(--or-prestige);
  color: var(--white);
  border-color: var(--or-prestige);
}
.btn-gold:hover {
  background: var(--or-prestige-dark);
  border-color: var(--or-prestige-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197,160,89,.35);
}

.btn-emerald {
  background: var(--vert-emeraude);
  color: var(--white);
  border-color: var(--vert-emeraude);
}
.btn-emerald:hover {
  background: var(--vert-emeraude-dark);
  border-color: var(--vert-emeraude-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--vert-emeraude);
  border-color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1da851; color: var(--white); }

.btn-full { width: 100%; padding: 1rem; font-size: 1rem; }

.link-arrow {
  font-weight: 600;
  color: var(--vert-emeraude);
  font-size: .92rem;
}
.link-arrow:hover { color: var(--or-prestige); }

/* =====================================================
   8. HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 5rem 1.5rem;
  background:
    linear-gradient(135deg, rgba(10,92,90,.92) 0%, rgba(8,72,70,.85) 100%),
    url('../images/hero-accueil.jpg') center/cover no-repeat;
  background-blend-mode: multiply;
}
.hero-content { max-width: 900px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  padding: .4rem 1rem;
  background: rgba(197,160,89,.15);
  border: 1px solid var(--or-prestige);
  color: var(--or-prestige);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 40px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   9. PAGE HERO
   ===================================================== */
.page-hero {
  background:
    linear-gradient(135deg, rgba(10,92,90,.95), rgba(8,72,70,.95)),
    url('../images/pattern.svg') center/cover;
  color: var(--white);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  margin: .75rem 0 1rem;
}
.page-hero-sub {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
}

/* =====================================================
   10. BARRE DE PRÉSENCE
   ===================================================== */
.presence-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.presence-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.5rem 1rem;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.presence-item:last-child { border-right: none; }
.presence-item .icon {
  width: 22px;
  height: 22px;
  color: var(--or-prestige);
  flex-shrink: 0;
}
.presence-item strong {
  display: block;
  color: var(--vert-emeraude);
  font-family: var(--font-titre);
  font-size: 1.05rem;
}
.presence-item span {
  font-size: .82rem;
  color: var(--muted);
}

/* =====================================================
   11. INTRO
   ===================================================== */
.intro { background: var(--white); }
.intro h2 { max-width: 850px; margin-bottom: 1.25rem; }
.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 800px;
  margin-bottom: 1.5rem;
}

/* =====================================================
   12. PILIERS (Accueil)
   ===================================================== */
.expertise-section { background: var(--paper); }
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.pillar-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  color: var(--ink-soft);
  border-top: 4px solid var(--or-prestige);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(56,161,105,.04), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-card h3 { color: var(--vert-emeraude); margin-bottom: .75rem; }
.pillar-card p { font-size: .95rem; color: var(--muted); margin-bottom: 1.25rem; }
.pillar-link {
  font-weight: 600;
  color: var(--or-prestige);
  font-size: .9rem;
}
.pillar-icon {
  width: 60px;
  height: 60px;
  background: rgba(10,92,90,.08);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--vert-emeraude);
}
.pillar-icon svg { width: 30px; height: 30px; }

/* =====================================================
   13. METRICS
   ===================================================== */
.metrics-section {
  background: var(--vert-emeraude);
  color: var(--white);
  padding: 4rem 0;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.metric-number {
  display: block;
  font-family: var(--font-titre);
  font-size: 3rem;
  font-weight: 800;
  color: var(--or-prestige);
  line-height: 1;
  margin-bottom: .5rem;
}
.metric-label {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
}

/* =====================================================
   14. NEWS
   ===================================================== */
.news-section { background: var(--white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.news-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--line);
  transition: var(--transition);
}
.news-card:hover {
  border-color: var(--or-prestige);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.news-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--or-prestige);
  margin-bottom: .75rem;
}
.news-card h3 {
  font-size: 1.1rem;
  color: var(--vert-emeraude);
  margin-bottom: .75rem;
  line-height: 1.35;
}
.news-card p {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* =====================================================
   15. BUREAUX
   ===================================================== */
.offices-section { background: var(--paper); }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.office-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.office-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.office-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--vert-emeraude);
  position: relative;
}
.office-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--or-prestige);
  color: var(--white);
  padding: .3rem .8rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 4px;
}
.office-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.office-body h3 {
  color: var(--vert-emeraude);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.office-address {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.office-contact { margin-bottom: 1.25rem; }
.office-contact li {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .5rem;
  font-size: .88rem;
  line-height: 1.4;
}
.office-contact svg {
  width: 15px;
  height: 15px;
  color: var(--or-prestige);
  flex-shrink: 0;
  stroke-width: 1.6;
}
.office-contact a { color: var(--ink-soft); }
.office-contact a:hover { color: var(--vert-acacia); }
.office-body .link-arrow { margin-top: auto; }

/* =====================================================
   16. FORMULAIRE CONTACT
   ===================================================== */
.contact-section { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info > p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-points { margin-bottom: 2rem; }
.contact-points li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.point-icon {
  width: 48px;
  height: 48px;
  background: rgba(10,92,90,.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--vert-emeraude);
}
.point-icon svg { width: 22px; height: 22px; }
.contact-points strong {
  display: block;
  color: var(--vert-emeraude);
  font-family: var(--font-titre);
  font-size: 1.05rem;
  margin-bottom: .25rem;
}
.contact-points p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
}

.contact-form-wrapper {
  background: var(--paper);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form .form-row .form-group { margin-bottom: 0; }

.contact-form label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--vert-emeraude);
  margin-bottom: .5rem;
}
.contact-form .req { color: var(--or-prestige); }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-texte);
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--vert-acacia);
  box-shadow: 0 0 0 3px rgba(56,161,105,.15);
}
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.checkbox-group { margin: 1rem 0 1.5rem; }
.checkbox-label {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-weight: 400;
  font-size: .88rem;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  margin-top: .25rem;
  accent-color: var(--vert-acacia);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.checkbox-label a {
  color: var(--vert-emeraude);
  text-decoration: underline;
}
.form-note {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 1rem;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border-left: 4px solid;
  font-size: .93rem;
}
.alert strong {
  display: block;
  font-family: var(--font-titre);
  font-size: 1.05rem;
  margin-bottom: .25rem;
}
.alert-success {
  background: rgba(56,161,105,.1);
  border-color: var(--vert-acacia);
  color: #22543D;
}
.alert-error {
  background: rgba(197,160,89,.12);
  border-color: var(--or-prestige);
  color: #7A5C1E;
}

/* =====================================================
   17. CTA BANNER
   ===================================================== */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(10,92,90,.95), rgba(8,72,70,.95)),
    url('../images/pattern.svg') center/cover;
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* =====================================================
   18. FOOTER
   ===================================================== */
.footer {
  background: #061F1E;
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
  font-size: .92rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-col h4 {
  color: var(--or-prestige);
  font-family: var(--font-texte);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: .65rem;
  line-height: 1.5;
}
.footer-col a { color: rgba(255,255,255,.75); }
.footer-col a:hover { color: var(--or-prestige); }
.footer-col p { margin-top: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom p + p { margin-top: .3rem; }

/* =====================================================
   19. WHATSAPP FLOTTANT
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 25px rgba(37,211,102,.4);
  z-index: 998;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* =====================================================
   20. PAGE ÉQUIPE
   ===================================================== */
.team-section { background: var(--white); }

.team-grid-full {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.team-card-full {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
  min-width: 0;
}
.team-card-full:hover {
  border-color: var(--or-prestige);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.team-photo {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--vert-emeraude), var(--vert-emeraude-dark));
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 3px solid var(--or-prestige);
  box-shadow: var(--shadow-md);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.team-initials {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-titre);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--or-prestige);
  letter-spacing: .05em;
}
.team-photo.no-photo img { display: none; }

.team-identity h3 {
  color: var(--vert-emeraude);
  font-size: 1.15rem;
  line-height: 1.25;
  margin-bottom: .4rem;
}
.team-role {
  font-size: .82rem;
  font-weight: 600;
  color: var(--or-prestige);
  letter-spacing: .04em;
  margin-bottom: .6rem;
  line-height: 1.3;
}
.team-meta-mini {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: .78rem;
  color: var(--muted);
}
.team-meta-mini li { line-height: 1.3; }

.team-bio-full {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.team-block h4 {
  font-family: var(--font-texte);
  font-size: .72rem;
  font-weight: 700;
  color: var(--or-prestige);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.team-tags li {
  font-size: .72rem;
  padding: .3rem .65rem;
  background: rgba(10,92,90,.07);
  color: var(--vert-emeraude);
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.4;
}

.team-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: .35rem;
  font-size: .84rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.team-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  background: var(--vert-acacia);
  border-radius: 50%;
}

.team-card-foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* =====================================================
   21. PAGE EXPERTISES — Grille 2 colonnes
   ===================================================== */
.poles-section { background: var(--paper); }

.poles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  width: 100%;
}

.pole-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all .3s ease;
  min-width: 0;
}
.pole-card:hover {
  border-color: var(--or-prestige);
  box-shadow: 0 12px 30px rgba(10,92,90,.12);
  transform: translateY(-4px);
}

.pole-card-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.pole-icon-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  background: rgba(10,92,90,.08);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--vert-emeraude);
}
.pole-icon-wrap svg {
  width: 40px;
  height: 40px;
}

.pole-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--or-prestige);
  color: var(--white);
  font-family: var(--font-titre);
  font-size: 1rem;
  font-weight: 800;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  box-shadow: 0 3px 10px rgba(197,160,89,.35);
}

.pole-card-top h3 {
  font-size: 1.25rem;
  color: var(--vert-emeraude);
  line-height: 1.3;
  margin: 0;
}

.pole-resume {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.55;
}

.pole-block h4 {
  font-family: var(--font-texte);
  font-size: .7rem;
  font-weight: 700;
  color: var(--or-prestige);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.pole-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: .35rem;
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.pole-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  background: var(--vert-acacia);
  border-radius: 50%;
}

.pole-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.pole-tags li {
  font-size: .72rem;
  padding: .28rem .65rem;
  background: rgba(10,92,90,.06);
  color: var(--vert-emeraude);
  border-radius: 40px;
  font-weight: 600;
}

.pole-btn { margin-top: auto; }

/* =====================================================
   22. MÉTHODE — 4 étapes
   ===================================================== */
.method-section { background: var(--white); }

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.method-step {
  background: var(--paper);
  border-radius: 10px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-top: 3px solid var(--vert-acacia);
  transition: all .3s ease;
}
.method-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10,92,90,.1);
  border-top-color: var(--or-prestige);
}

.method-num {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--vert-emeraude);
  color: var(--or-prestige);
  font-family: var(--font-titre);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  border: 2px solid var(--or-prestige);
  line-height: 1;
}

.method-step h3 {
  font-size: 1rem;
  color: var(--vert-emeraude);
  margin-bottom: .4rem;
}

.method-step p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* =====================================================
   23. PAGE LE CABINET
   ===================================================== */
.about-section { background: var(--white); }

.about-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.about-text p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.15rem;
}
.about-text p:last-child { margin-bottom: 0; }

.about-side {
  position: sticky;
  top: 100px;
}
.about-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 4px solid var(--or-prestige);
}
.about-card h3 {
  color: var(--vert-emeraude);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.about-info li {
  padding: .75rem 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.about-info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.about-info strong {
  font-size: .72rem;
  font-weight: 700;
  color: var(--or-prestige);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-info span {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* =====================================================
   24. MISSION & VISION
   ===================================================== */
.mission-section { background: var(--paper); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vert-emeraude), var(--or-prestige));
}
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--or-prestige);
}

/* ICÔNES MISSION/VISION — agrandies */
.mission-icon {
  width: 80px;
  height: 80px;
  background: rgba(10,92,90,.08);
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--vert-emeraude);
  transition: var(--transition);
}
.mission-icon svg {
  width: 42px;
  height: 42px;
}
.mission-card:hover .mission-icon {
  background: var(--vert-emeraude);
  color: var(--or-prestige);
}

.mission-card h3 {
  font-size: 1.35rem;
  color: var(--vert-emeraude);
  margin-bottom: 1rem;
}
.mission-card p {
  font-size: .96rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* =====================================================
   25. VALEURS (grille 3 colonnes)
   ===================================================== */
.values-section { background: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  background: var(--white);
  border-color: var(--or-prestige);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* ICÔNES VALEURS — agrandies */
.value-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(10,92,90,.08);
  display: grid;
  place-items: center;
  color: var(--vert-emeraude);
  transition: var(--transition);
  border: 2px solid transparent;
}
.value-card:hover .value-icon {
  background: var(--vert-emeraude);
  color: var(--or-prestige);
  border-color: var(--or-prestige);
  transform: scale(1.05);
}
.value-icon svg {
  width: 36px;
  height: 36px;
}

.value-card h3 {
  font-size: 1.05rem;
  color: var(--vert-emeraude);
  margin-bottom: .75rem;
}
.value-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =====================================================
   26. DÉONTOLOGIE
   ===================================================== */
.ethics-section { background: var(--paper); }

.ethics-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ethics-text h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.ethics-text > p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.ethics-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

/* ICÔNES DÉONTOLOGIE (checks) — agrandies */
.ethics-list svg {
  width: 24px;
  height: 24px;
  color: var(--white);
  flex-shrink: 0;
  margin-top: .15rem;
  background: var(--vert-acacia);
  border-radius: 50%;
  padding: 5px;
  box-sizing: content-box;
}

.ethics-list strong {
  display: block;
  color: var(--vert-emeraude);
  font-family: var(--font-titre);
  font-size: 1.05rem;
  margin-bottom: .3rem;
}
.ethics-list p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.ethics-side { position: relative; }
.ethics-quote {
  background: var(--vert-emeraude);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ethics-quote::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(197,160,89,.12);
}
.quote-mark {
  font-family: var(--font-titre);
  font-size: 5rem;
  color: var(--or-prestige);
  line-height: .8;
  margin-bottom: .5rem;
  font-weight: 800;
}
.ethics-quote p {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,.95);
  margin-bottom: 1.5rem;
}
.quote-source {
  display: block;
  font-size: .82rem;
  color: var(--or-prestige);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-texte);
}
/* =====================================================
   27. PAGE INSIGHTS — Filtres & Grille d'articles
   ===================================================== */

/* Filtres */
.insights-filters {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
  position: sticky;
  top: 88px;
  z-index: 50;
}
.filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
}
.filter-btn {
  display: inline-block;
  padding: .5rem 1.1rem;
  background: var(--paper);
  color: var(--ink-soft);
  border: 1.5px solid var(--line);
  border-radius: 40px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--vert-acacia);
  color: var(--vert-emeraude);
  background: var(--white);
}
.filter-btn.active {
  background: var(--vert-emeraude);
  border-color: var(--vert-emeraude);
  color: var(--white);
}

/* Grille articles */
.insights-section { background: var(--paper); }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.insight-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.insight-card:hover {
  border-color: var(--or-prestige);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* Image */
.insight-image-link { display: block; }
.insight-image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--vert-emeraude);
  background-image:
    linear-gradient(135deg, var(--vert-emeraude), var(--vert-emeraude-dark));
}
.insight-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--or-prestige);
  color: var(--white);
  padding: .35rem .85rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 4px;
}

/* Corps */
.insight-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .75rem;
}

.insight-meta {
  display: flex;
  gap: 1rem;
  font-size: .75rem;
  color: var(--muted);
  align-items: center;
}
.insight-meta svg {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-right: 3px;
  color: var(--or-prestige);
}

.insight-card h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin: 0;
}
.insight-card h3 a {
  color: var(--vert-emeraude);
  transition: var(--transition);
}
.insight-card h3 a:hover { color: var(--or-prestige); }

.insight-excerpt {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.insight-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: .85rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.insight-author {
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.3;
}
.insight-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--or-prestige);
  white-space: nowrap;
}
.insight-link svg {
  width: 14px;
  height: 14px;
  transition: transform .3s ease;
}
.insight-link:hover svg { transform: translateX(4px); }

/* Message vide */
.insights-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line);
}
.insights-empty p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* =====================================================
   28. NEWSLETTER
   ===================================================== */
.newsletter-section { background: var(--white); }

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--vert-emeraude);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  align-items: center;
  overflow: hidden;
  position: relative;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(197,160,89,.12);
}

.newsletter-text { position: relative; z-index: 2; }
.newsletter-text .section-eyebrow { color: var(--or-prestige); }
.newsletter-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.newsletter-text > p {
  color: rgba(255,255,255,.85);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.newsletter-benefits li {
  display: flex;
  gap: .65rem;
  align-items: center;
  font-size: .88rem;
  color: rgba(255,255,255,.9);
}
.newsletter-benefits svg {
  width: 16px;
  height: 16px;
  color: var(--or-prestige);
  background: rgba(197,160,89,.18);
  border-radius: 50%;
  padding: 3px;
  box-sizing: content-box;
  flex-shrink: 0;
}

.newsletter-form {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.newsletter-field {
  margin-bottom: 1rem;
}
.newsletter-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--vert-emeraude);
  margin-bottom: .4rem;
}
.newsletter-field input,
.newsletter-field select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-texte);
  font-size: .9rem;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: var(--transition);
}
.newsletter-field input:focus,
.newsletter-field select:focus {
  border-color: var(--vert-acacia);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(56,161,105,.15);
}

.newsletter-consent {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  cursor: pointer;
}
.newsletter-consent input[type="checkbox"] {
  margin-top: .2rem;
  accent-color: var(--vert-acacia);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.newsletter-consent a {
  color: var(--vert-emeraude);
  text-decoration: underline;
}
/* =====================================================
   29. PAGE MENTIONS LÉGALES
   ===================================================== */
.legal-section { background: var(--paper); }

.legal-date {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--or-prestige);
  font-style: italic;
  letter-spacing: .02em;
}

/* Layout 2 colonnes */
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sommaire sticky */
.legal-side {
  position: sticky;
  top: 100px;
}
.legal-toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 4px solid var(--or-prestige);
}
.legal-toc h3 {
  font-size: .82rem;
  font-family: var(--font-texte);
  font-weight: 700;
  color: var(--or-prestige);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}
.legal-toc li {
  margin-bottom: .25rem;
}
.legal-toc a {
  display: block;
  padding: .5rem .75rem;
  font-size: .85rem;
  color: var(--ink-soft);
  border-radius: var(--radius);
  transition: var(--transition);
  line-height: 1.4;
}
.legal-toc a:hover {
  background: var(--paper);
  color: var(--vert-emeraude);
  padding-left: 1rem;
}

/* Contenu */
.legal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.legal-block {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 120px;
}
.legal-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.legal-block h2 {
  font-size: 1.4rem;
  color: var(--vert-emeraude);
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  display: inline-block;
  border-bottom: 2px solid var(--or-prestige);
}

.legal-block h3 {
  font-size: 1rem;
  font-family: var(--font-texte);
  font-weight: 700;
  color: var(--vert-emeraude);
  margin: 1.5rem 0 .75rem;
  letter-spacing: .01em;
}

.legal-block p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-block p:last-child { margin-bottom: 0; }

.legal-block strong {
  color: var(--ink);
  font-weight: 700;
}

.legal-block a {
  color: var(--vert-emeraude);
  text-decoration: underline;
  text-decoration-color: rgba(10,92,90,.3);
  text-underline-offset: 3px;
}
.legal-block a:hover {
  color: var(--or-prestige);
  text-decoration-color: var(--or-prestige);
}

/* Listes */
.legal-info {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
  border-left: 3px solid var(--vert-acacia);
}
.legal-info li {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: .5rem;
  padding-left: 0;
}
.legal-info li:last-child { margin-bottom: 0; }
.legal-info strong {
  color: var(--vert-emeraude);
  font-weight: 700;
  margin-right: .25rem;
}

.legal-list {
  margin: 1rem 0 1.25rem 0;
}
.legal-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .6rem;
  font-size: .93rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: .25rem;
  top: .6em;
  width: 6px;
  height: 6px;
  background: var(--vert-acacia);
  border-radius: 50%;
}

.legal-note {
  background: rgba(197,160,89,.08);
  border-left: 3px solid var(--or-prestige);
  padding: .85rem 1.15rem;
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}
/* =====================================================
   30. PAGE INSCRIPTION NEWSLETTER
   ===================================================== */
.newsletter-subscribe-section { background: var(--paper); }

.newsletter-subscribe-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Côté gauche */
.subscribe-side h2 {
  margin-bottom: 1.75rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}
.subscribe-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.subscribe-benefits li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(10,92,90,.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--vert-emeraude);
}
.benefit-icon svg {
  width: 22px;
  height: 22px;
}
.subscribe-benefits strong {
  display: block;
  color: var(--vert-emeraude);
  font-family: var(--font-titre);
  font-size: 1.05rem;
  margin-bottom: .25rem;
}
.subscribe-benefits p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* Côté droit : formulaire */
.subscribe-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  border-top: 4px solid var(--or-prestige);
  box-shadow: var(--shadow-md);
}

.subscribe-form .subscribe-field {
  margin-bottom: 1.25rem;
}
.subscribe-form label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--vert-emeraude);
  margin-bottom: .5rem;
}
.subscribe-form .req { color: var(--or-prestige); }

.subscribe-form input[type="text"],
.subscribe-form input[type="email"],
.subscribe-form select {
  width: 100%;
  padding: .9rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-texte);
  font-size: .95rem;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: var(--transition);
}
.subscribe-form input:focus,
.subscribe-form select:focus {
  border-color: var(--vert-acacia);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(56,161,105,.15);
}

.subscribe-consent {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1.5;
  margin: 1rem 0 1.5rem;
}
.subscribe-consent input[type="checkbox"] {
  margin-top: .25rem;
  accent-color: var(--vert-acacia);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.subscribe-consent a {
  color: var(--vert-emeraude);
  text-decoration: underline;
}

.subscribe-note {
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.5;
}
/* =====================================================
   31. PAGE 404
   ===================================================== */
.error-section { background: var(--paper); }

.error-code {
  font-family: var(--font-titre);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--or-prestige);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--vert-emeraude), var(--or-prestige));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-section h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: .5rem;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.error-links {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  margin-top: 3rem;
}
.error-links h3 {
  font-family: var(--font-texte);
  font-size: .8rem;
  font-weight: 700;
  color: var(--or-prestige);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.error-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.error-links a {
  color: var(--vert-emeraude);
  font-weight: 600;
  font-size: .92rem;
  padding: .5rem 1rem;
  background: var(--paper);
  border-radius: 40px;
  transition: var(--transition);
}
.error-links a:hover {
  background: var(--vert-emeraude);
  color: var(--white);
}

@media (max-width: 768px) {
  .error-actions { flex-direction: column; align-items: stretch; }
  .error-actions .btn { width: 100%; }
}
/* =====================================================
   32. PAGE ARTICLE INDIVIDUEL
   ===================================================== */

/* HERO */
.article-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 4rem 1.5rem 3rem;
  color: var(--white);
  overflow: hidden;
}
.article-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--vert-emeraude);
  transform: scale(1.02);
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8,72,70,.55) 0%,
    rgba(8,72,70,.88) 60%,
    rgba(6,31,30,.98) 100%);
}
.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* Breadcrumb */
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.article-breadcrumb a {
  color: rgba(255,255,255,.75);
  transition: var(--transition);
}
.article-breadcrumb a:hover { color: var(--or-prestige); }
.article-breadcrumb span { color: rgba(255,255,255,.4); }
.article-breadcrumb .current { color: var(--or-prestige); }

/* Tag */
.article-tag {
  display: inline-block;
  padding: .35rem .9rem;
  background: var(--or-prestige);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Titre */
.article-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 1.75rem;
  max-width: 850px;
}

/* Meta hero */
.article-meta-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.article-author-block {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.article-author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--or-prestige);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-titre);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .04em;
  border: 2px solid rgba(255,255,255,.25);
  flex-shrink: 0;
}
.article-author-avatar.big {
  width: 72px;
  height: 72px;
  font-size: 1.5rem;
  margin: 0 auto .75rem;
}
.article-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.article-author-info strong {
  font-size: .9rem;
  color: var(--white);
  font-family: var(--font-titre);
}
.article-author-info span {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
}

.article-meta-details {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.article-meta-details span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
}
.article-meta-details svg {
  width: 14px;
  height: 14px;
  color: var(--or-prestige);
}

/* =====================================================
   CONTENU DE L'ARTICLE
   ===================================================== */
.article-section { background: var(--paper); }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}

/* Contenu principal */
.article-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.article-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--ink-soft);
}
.article-content p:first-of-type {
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 500;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--vert-emeraude);
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--or-prestige);
  display: inline-block;
}

.article-content h3 {
  font-size: 1.15rem;
  font-family: var(--font-texte);
  font-weight: 700;
  color: var(--vert-emeraude);
  margin: 1.75rem 0 .75rem;
  letter-spacing: .01em;
}

.article-content ul,
.article-content ol {
  margin: 1rem 0 1.5rem 0;
  padding-left: 0;
  list-style: none;
}
.article-content ol {
  counter-reset: item;
}
.article-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .6rem;
  font-size: .96rem;
  line-height: 1.7;
}
.article-content ul li::before {
  content: '';
  position: absolute;
  left: .25rem;
  top: .6em;
  width: 6px;
  height: 6px;
  background: var(--vert-acacia);
  border-radius: 50%;
}
.article-content ol li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .6rem;
  font-size: .96rem;
  line-height: 1.7;
  counter-increment: item;
}
.article-content ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: .15rem;
  width: 22px;
  height: 22px;
  background: var(--vert-emeraude);
  color: var(--or-prestige);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-titre);
}

.article-content blockquote {
  background: var(--paper);
  border-left: 4px solid var(--or-prestige);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-titre);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--vert-emeraude);
  line-height: 1.6;
}

.article-content strong { color: var(--ink); }
.article-content a {
  color: var(--vert-emeraude);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-content a:hover { color: var(--or-prestige); }

/* Mots-clés */
.article-keywords {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.article-keywords h4 {
  font-family: var(--font-texte);
  font-size: .75rem;
  font-weight: 700;
  color: var(--or-prestige);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.article-keywords ul {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.article-keywords li {
  font-size: .78rem;
  padding: .35rem .85rem;
  background: rgba(10,92,90,.06);
  color: var(--vert-emeraude);
  border-radius: 40px;
  font-weight: 600;
}

/* Partage social */
.article-share {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.article-share h4 {
  font-family: var(--font-texte);
  font-size: .75rem;
  font-weight: 700;
  color: var(--or-prestige);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.share-buttons {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: var(--transition);
}
.share-btn svg {
  width: 20px;
  height: 20px;
}
.share-btn:hover {
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.share-linkedin  { background: #0A66C2; }
.share-twitter   { background: #000000; }
.share-whatsapp  { background: #25D366; }
.share-email     { background: var(--vert-emeraude); }

/* =====================================================
   SIDEBAR
   ===================================================== */
.article-side {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.article-side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.article-side-card h3 {
  font-size: 1rem;
  color: var(--vert-emeraude);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.article-side-card p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.article-side-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}
.article-side-author strong {
  font-family: var(--font-titre);
  font-size: .95rem;
  color: var(--vert-emeraude);
  margin-bottom: .2rem;
}
.article-side-author span {
  font-size: .78rem;
  color: var(--muted);
}
.article-side-cta {
  background: var(--vert-emeraude);
  border-color: var(--vert-emeraude);
  color: var(--white);
}
.article-side-cta h3 {
  color: var(--or-prestige);
  border-bottom-color: rgba(255,255,255,.15);
}
.article-side-cta p { color: rgba(255,255,255,.85); }
.article-side-newsletter {
  background: var(--paper);
}

/* =====================================================
   ARTICLES SIMILAIRES
   ===================================================== */
.related-section { background: var(--white); }
