/*
Theme Name: CCIAM Matam
Theme URI: https://cciam.sn
Author: CCIAM
Author URI: https://cciam.sn
Description: Thème officiel de la Chambre de Commerce, d'Industrie et d'Agriculture de Matam
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: cciam
Tags: custom-menu, featured-images, responsive-layout
*/

/* ─── VARIABLES ─── */
:root {
  --vert:        #1a5c3a;
  --vert-clair:  #2d8f5e;
  --vert-fonce:  #0d3d26;
  --or:          #c9a84c;
  --or-clair:    #e8c96a;
  --blanc:       #ffffff;
  --gris-clair:  #f5f5f0;
  --gris-texte:  #444440;
  --gris-moyen:  #888882;
  --footer-bg:   #0d2a1a;
  --font-titre:  'Playfair Display', Georgia, serif;
  --font-corps:  'Source Sans 3', 'Segoe UI', sans-serif;
  --radius:      4px;
  --ombre:       0 4px 16px rgba(0,0,0,0.09);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-corps);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gris-texte);
  background: var(--blanc);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vert); text-decoration: none; transition: color .2s; }
a:hover { color: var(--or); }
ul { list-style: none; }

/* ─── TYPOGRAPHIE ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titre);
  line-height: 1.25;
  color: var(--vert);
}
h1 { font-size: clamp(28px, 4vw, 48px); }
h2 { font-size: clamp(22px, 3vw, 36px); }
h3 { font-size: clamp(17px, 2vw, 22px); }
p { margin-bottom: 1rem; }

/* ─── CONTENEUR ─── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BOUTONS ─── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-family: var(--font-corps);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
}
.btn-primaire  { background: var(--or); color: #1a0e00; }
.btn-primaire:hover { background: var(--or-clair); color: #1a0e00; }
.btn-secondaire { background: transparent; color: var(--blanc); border-color: rgba(255,255,255,.5); }
.btn-secondaire:hover { border-color: var(--blanc); background: rgba(255,255,255,.1); color: var(--blanc); }
.btn-vert { background: var(--vert); color: var(--blanc); }
.btn-vert:hover { background: var(--vert-clair); color: var(--blanc); }

/* ─── SECTION TITRE ─── */
.section-titre { text-align: center; margin-bottom: 56px; }
.section-titre h2 { color: var(--vert); margin-bottom: 14px; }
.section-titre .filet {
  width: 56px; height: 3px;
  background: var(--or);
  margin: 0 auto 16px;
  border-radius: 2px;
}
.section-titre .sous-titre {
  font-size: 17px;
  color: var(--gris-moyen);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── TOPBAR ─── */
#topbar {
  background: var(--vert-fonce);
  color: #a0c0a8;
  font-size: 13px;
  padding: 7px 0;
}
#topbar .topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
#topbar a { color: #a0c0a8; }
#topbar a:hover { color: var(--or); }
.topbar-contact { display: flex; gap: 20px; }
.topbar-contact span { display: flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.topbar-social a:hover { background: var(--or); color: #1a0e00; }

/* ─── HEADER ─── */
#masthead {
  background: var(--blanc);
  border-bottom: 3px solid var(--or);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
/* Logo */
.site-branding { display: flex; align-items: center; gap: 14px; }
.logo-embleme {
  width: 60px; height: 60px;
  background: var(--vert);
  border-radius: 50%;
  border: 3px solid var(--or);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-embleme svg { width: 32px; height: 32px; fill: var(--or); }
.logo-texte .sigle {
  font-family: var(--font-titre);
  font-size: 26px;
  font-weight: 700;
  color: var(--vert);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-texte .nom-long {
  font-size: 10.5px;
  color: var(--gris-moyen);
  text-transform: uppercase;
  letter-spacing: .8px;
  max-width: 280px;
  line-height: 1.3;
}

/* ─── NAVIGATION ─── */
#site-navigation { display: flex; align-items: center; }
.nav-menu { display: flex; gap: 2px; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gris-texte);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: var(--radius);
  transition: all .2s;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
  background: var(--vert);
  color: var(--blanc);
}
/* Sous-menu */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--blanc);
  border: 1px solid #e0ddd6;
  border-top: 3px solid var(--or);
  min-width: 220px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--ombre);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s;
  z-index: 300;
}
.nav-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--gris-texte);
  border-bottom: 1px solid #f0ede6;
  transition: all .2s;
}
.nav-menu .sub-menu li a:hover {
  background: var(--gris-clair);
  color: var(--vert);
  padding-left: 24px;
}

/* Menu burger */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 20px;
  color: var(--vert);
}

/* ─── BANDEAU ANNONCE ─── */
.bandeau-annonce {
  background: var(--or);
  color: #1a0e00;
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
}
.bandeau-annonce a { color: var(--vert-fonce); font-weight: 700; }

/* ─── HERO ─── */
.hero-section {
  background: linear-gradient(135deg, var(--vert) 0%, var(--vert-fonce) 60%, #1a2a1a 100%);
  color: var(--blanc);
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,.08) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
}
.hero-contenu { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--or);
  color: #2a1a00;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 7px 22px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-section h1 {
  color: var(--blanc);
  font-size: clamp(30px, 5vw, 52px);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-sous-titre {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--or-clair);
  font-style: italic;
  margin-bottom: 40px;
}
.hero-boutons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── CHIFFRES CLÉS ─── */
.section-chiffres {
  background: var(--vert);
  color: var(--blanc);
  padding: 72px 0;
  text-align: center;
}
.chiffres-citation {
  font-family: var(--font-titre);
  font-style: italic;
  font-size: clamp(15px, 2vw, 19px);
  color: var(--or-clair);
  max-width: 750px;
  margin: 0 auto 48px;
}
.chiffres-grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
}
.chiffre-item .nombre {
  font-family: var(--font-titre);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  color: var(--or);
  line-height: 1;
}
.chiffre-item .nombre sup { font-size: 26px; vertical-align: super; color: var(--or-clair); }
.chiffre-item .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #9ab8a8;
  margin-top: 10px;
}

/* ─── ACTUALITÉS ─── */
.section-actualites { padding: 88px 0; background: var(--gris-clair); }
.actu-grille {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.actu-carte {
  background: var(--blanc);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e0ddd6;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.actu-carte:hover { transform: translateY(-5px); box-shadow: var(--ombre); }
.actu-carte img { width: 100%; height: 200px; object-fit: cover; }
.actu-carte .actu-date {
  background: var(--vert);
  color: var(--or-clair);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 7px 18px;
}
.actu-corps { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.actu-corps h3 { font-size: 17px; color: var(--vert); margin-bottom: 10px; line-height: 1.4; }
.actu-corps p { font-size: 14px; color: #666; flex: 1; }
.actu-corps .lire-plus {
  display: inline-block;
  margin-top: 16px;
  color: var(--or);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.actu-corps .lire-plus:hover { color: var(--vert); }
.actu-centre { text-align: center; margin-top: 40px; }

/* ─── SERVICES ─── */
.section-services { padding: 88px 0; background: var(--blanc); }
.services-grille {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.service-carte {
  border: 1px solid #e0ddd6;
  border-top: 4px solid var(--or);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.service-carte:hover { box-shadow: var(--ombre); transform: translateY(-3px); }
.service-icone {
  width: 56px; height: 56px;
  background: var(--vert);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.service-icone svg { width: 28px; height: 28px; fill: var(--or); }
.service-carte h3 { font-size: 16px; color: var(--vert); margin-bottom: 10px; }
.service-carte p { font-size: 13px; color: #777; }

/* ─── PROGRAMMES ─── */
.section-programmes { padding: 88px 0; background: #f0f4f1; }
.prog-grille {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.prog-carte {
  background: var(--blanc);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #dde8e2;
  transition: box-shadow .2s;
}
.prog-carte:hover { box-shadow: var(--ombre); }
.prog-carte .prog-header {
  background: var(--vert);
  padding: 24px;
  color: var(--blanc);
}
.prog-carte .prog-header h3 { color: var(--or-clair); font-size: 16px; margin-bottom: 6px; }
.prog-carte .prog-header p { font-size: 13px; color: #9ab8a8; margin: 0; }
.prog-carte .prog-body { padding: 20px 24px; }
.prog-carte .prog-body p { font-size: 14px; }

/* ─── POTENTIALITÉS ─── */
.section-potentialites { padding: 88px 0; background: var(--vert); }
.section-potentialites .section-titre h2 { color: var(--or); }
.section-potentialites .section-titre .sous-titre { color: #9ab8a8; }
.section-potentialites .section-titre .filet { background: var(--or-clair); }
.poten-grille {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 20px;
}
.poten-carte {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.poten-carte:hover { background: rgba(255,255,255,.15); transform: translateY(-4px); }
.poten-icone { font-size: 38px; margin-bottom: 14px; }
.poten-carte h3 { font-size: 15px; font-weight: 600; color: var(--or-clair); }
.poten-carte a { color: var(--or-clair); text-decoration: none; display: block; }

/* ─── TÉMOIGNAGES ─── */
.section-temoignages { padding: 88px 0; background: var(--blanc); }
.temoignages-grille {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.temoignage-carte {
  background: #f9f8f4;
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid #e8e4d8;
  position: relative;
}
.temoignage-carte::before {
  content: '"';
  font-family: var(--font-titre);
  font-size: 90px;
  color: var(--or);
  opacity: .25;
  position: absolute;
  top: 8px; left: 18px;
  line-height: 1;
}
.temoignage-texte {
  font-style: italic;
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
  padding-top: 24px;
}
.temoignage-auteur { display: flex; align-items: center; gap: 14px; }
.avatar-cercle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--vert);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  color: var(--or);
  flex-shrink: 0;
}
.temoignage-auteur .nom { font-weight: 700; font-size: 14px; color: var(--vert); }
.temoignage-auteur .role { font-size: 12px; color: var(--gris-moyen); }

/* ─── PARTENAIRES ─── */
.section-partenaires { padding: 72px 0; background: var(--gris-clair); }
.partenaires-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.partenaire-badge {
  background: var(--blanc);
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gris-texte);
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all .2s;
}
.partenaire-badge:hover { border-color: var(--or); color: var(--vert); }

/* ─── NEWSLETTER ─── */
.section-newsletter { background: var(--or); padding: 72px 0; text-align: center; }
.section-newsletter h2 { color: #1a0e00; font-size: clamp(22px, 3vw, 32px); margin-bottom: 10px; }
.section-newsletter p { color: #4a3000; margin-bottom: 32px; font-size: 16px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}
.newsletter-form input {
  padding: 13px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-corps);
  width: 240px;
  outline: none;
}
.newsletter-form button {
  background: var(--vert);
  color: var(--blanc);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--vert-clair); }

/* ─── FOOTER ─── */
#colophon {
  background: var(--footer-bg);
  color: #8aa898;
  padding-top: 68px;
}
.footer-grille {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-bloc h4 {
  font-family: var(--font-titre);
  font-size: 16px;
  color: var(--or);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-bloc p { font-size: 14px; line-height: 1.9; color: #8aa898; }
.footer-bloc ul li { margin-bottom: 9px; }
.footer-bloc ul li a { font-size: 14px; color: #8aa898; transition: color .2s; }
.footer-bloc ul li a:hover { color: var(--or); }
.footer-contact p { margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 12px;
  color: #4a6055;
}

/* ─── PAGES INTÉRIEURES ─── */
.page-hero {
  background: linear-gradient(135deg, var(--vert) 0%, var(--vert-fonce) 100%);
  color: var(--blanc);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { color: var(--blanc); font-size: clamp(26px, 4vw, 44px); }
.page-hero .breadcrumb {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.page-hero .breadcrumb a { color: var(--or-clair); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.5); margin: 0 8px; }

.page-content { padding: 72px 0; }
.page-content .entry-content p { margin-bottom: 1.2rem; }
.page-content .entry-content h2 { color: var(--vert); margin: 2rem 0 1rem; }
.page-content .entry-content h3 { color: var(--vert-clair); margin: 1.5rem 0 .8rem; }

/* ─── PAGE AGENDA ─── */
.agenda-liste { display: grid; gap: 20px; }
.agenda-item {
  background: var(--blanc);
  border-radius: var(--radius);
  border: 1px solid #e0ddd6;
  border-left: 5px solid var(--or);
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: box-shadow .2s;
}
.agenda-item:hover { box-shadow: var(--ombre); }
.agenda-date-bloc {
  background: var(--vert);
  color: var(--blanc);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: center;
  min-width: 70px;
  flex-shrink: 0;
}
.agenda-date-bloc .jour { font-size: 28px; font-weight: 700; font-family: var(--font-titre); color: var(--or); line-height: 1; }
.agenda-date-bloc .mois { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #9ab8a8; }
.agenda-info h3 { color: var(--vert); font-size: 18px; margin-bottom: 8px; }
.agenda-info p { font-size: 14px; color: #666; margin-bottom: 6px; }
.agenda-meta { font-size: 12px; color: var(--gris-moyen); display: flex; gap: 16px; flex-wrap: wrap; }
.agenda-meta span { display: flex; align-items: center; gap: 4px; }

/* ─── PAGE CONTACT ─── */
.contact-grille {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { color: var(--vert); margin-bottom: 24px; }
.contact-bloc {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}
.contact-icone {
  width: 44px; height: 44px;
  background: var(--vert);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icone svg { width: 22px; height: 22px; fill: var(--or); }
.contact-bloc h4 { font-size: 14px; color: var(--vert); margin-bottom: 4px; }
.contact-bloc p { font-size: 14px; color: #666; margin: 0; }

.contact-form-wrap { background: var(--gris-clair); padding: 36px; border-radius: var(--radius); }
.contact-form-wrap h3 { color: var(--vert); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--gris-texte); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-corps);
  color: var(--gris-texte);
  transition: border-color .2s;
  background: var(--blanc);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--vert); outline: none; }
.form-group textarea { height: 130px; resize: vertical; }

/* ─── PAGE REGION ─── */
.region-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.region-grille img { border-radius: var(--radius); }
.region-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.region-stat {
  background: var(--gris-clair);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--or);
}
.region-stat .valeur { font-size: 28px; font-weight: 700; color: var(--vert); font-family: var(--font-titre); }
.region-stat .libelle { font-size: 12px; color: var(--gris-moyen); text-transform: uppercase; letter-spacing: 1px; }

/* ─── ESPACE ENTREPRISE ─── */
.entreprise-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.entreprise-card {
  background: var(--blanc);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e0ddd6;
  box-shadow: var(--ombre);
}
.entreprise-card-header {
  background: var(--vert);
  padding: 32px;
  color: var(--blanc);
  text-align: center;
}
.entreprise-card-header .icone-grand { font-size: 48px; margin-bottom: 12px; }
.entreprise-card-header h3 { color: var(--or-clair); font-size: 22px; }
.entreprise-card-body { padding: 28px 32px; }
.etapes-liste { counter-reset: etapes; }
.etape {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed #e0ddd6;
}
.etape:last-child { border-bottom: none; }
.etape-num {
  width: 32px; height: 32px;
  background: var(--or);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  color: #1a0e00;
  flex-shrink: 0;
}
.etape-texte h4 { font-size: 14px; color: var(--vert); margin-bottom: 4px; }
.etape-texte p { font-size: 13px; color: #777; margin: 0; }

/* ─── SIDEBAR ─── */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.widget {
  background: var(--gris-clair);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
  border-left: 4px solid var(--or);
}
.widget-title {
  font-family: var(--font-titre);
  font-size: 17px;
  color: var(--vert);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.widget ul li {
  padding: 7px 0;
  border-bottom: 1px solid #e8e4d8;
  font-size: 14px;
}
.widget ul li a { color: var(--gris-texte); }
.widget ul li a:hover { color: var(--vert); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .contact-grille,
  .region-grille,
  .entreprise-options,
  .content-with-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  #site-navigation { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--blanc); border-top: 3px solid var(--or); padding: 16px; box-shadow: var(--ombre); }
  #site-navigation.menu-ouvert { display: block; }
  .nav-menu { flex-direction: column; }
  .nav-menu > li > a { font-size: 14px; padding: 12px 16px; }
  .nav-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 3px solid var(--or); margin-left: 20px; }
  .topbar-contact { display: none; }
  #topbar .topbar-inner { justify-content: center; }
  .actu-grille,
  .services-grille,
  .poten-grille { grid-template-columns: 1fr; }
  .chiffres-grille { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-boutons { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; align-items: center; }
  .newsletter-form input { width: 100%; max-width: 320px; }
}
