/* ==========================================================================
   DTH — Développement Patrimonial au Togo
   styles.css — Reconstruction fidèle au design Manus AI
   ========================================================================== */

:root {
  --green: #1e6b3a;
  --green-dark: #0e4b2a;
  --green-light: #2d8a4d;
  --green-pale: #e8f3eb;
  --green-pale-2: #f0f7f2;
  --gold: #C9A84C;
  --gold-dark: #8B6914;
  --gold-light: #e0c275;
  --red: #c8102e;
  --red-soft: #fdebee;
  --white: #ffffff;
  --cream: #fafbf8;
  --cream-2: #f5f6f3;
  --text: #1a2024;
  --text-soft: #4a5560;
  --text-mute: #7a8590;
  --line: rgba(0, 0, 0, 0.08);
  --line-soft: rgba(0, 0, 0, 0.04);

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

  --tr: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-xs: 0 1px 3px rgba(0, 30, 15, 0.05);
  --shadow-sm: 0 2px 10px rgba(0, 30, 15, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 30, 15, 0.08);
  --shadow-lg: 0 18px 50px rgba(0, 30, 15, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: color var(--tr); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.green { color: var(--green); }
.gold { color: var(--gold); }
.red { color: var(--red); }
.center { text-align: center; }
.italic { font-style: italic; }

/* ==========================================================================
   HEADER & NAV
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: var(--shadow-xs);
}

.header::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #fde0e3, #fde9d5, #fdf3d5, #e1f0e1, #d8edf3, #e0d8f5, #f5d8e8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  gap: 24px;
}

.brand-logo { height: 50px; width: auto; }

.nav ul { display: flex; align-items: center; gap: 6px; list-style: none; }

.nav-item { position: relative; }

.nav-item > a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: 1.5px solid transparent;
  border-radius: 999px;
  transition: all var(--tr);
}

.nav-item > a:hover,
.nav-item > a:focus {
  border-color: var(--c);
  color: var(--c);
}

.caret { font-size: 10px; margin-left: 2px; opacity: 0.7; }

.nav-sub {
  position: absolute;
  top: calc(100% + 4px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  border: 1px solid var(--line-soft);
  list-style: none;
}

.nav-has-sub:hover .nav-sub,
.nav-has-sub:focus-within .nav-sub {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-sub li { display: block; }

.nav-sub a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: background var(--tr), color var(--tr);
}

.nav-sub a:hover { background: var(--green-pale); color: var(--green); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span { width: 20px; height: 2px; background: var(--green); border-radius: 2px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: linear-gradient(160deg, var(--green-pale-2) 0%, var(--white) 100%);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-logo-box {
  display: inline-block;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  margin-bottom: 28px;
}

.hero-logo { height: 92px; width: auto; display: block; }

.hero-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-title-accent { color: var(--green); }

.hero-sub {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 4px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--tr);
  text-decoration: none;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30, 107, 58, 0.25);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30, 107, 58, 0.35);
}

.btn-outline {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ==========================================================================
   SECTIONS — base
   ========================================================================== */
.section { padding: 90px 0; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }

.section-title {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title.center { text-align: center; }

.section-sub {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 50px;
  font-weight: 400;
}

.section-sub.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

.section-lead {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.sub-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.sub-title.center { text-align: center; }

/* ==========================================================================
   CARDS
   ========================================================================== */
.card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  transition: all var(--tr);
}

.card-bordered {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.card-bordered:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-sm { padding: 18px 22px; margin-bottom: 14px; }

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

/* ==========================================================================
   QUI SOMMES-NOUS
   ========================================================================== */
.qui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.qui-vision { grid-column: 1; }
.qui-image { grid-column: 2; grid-row: 2; }
.qui-image img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-sm); }

.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14px;
  color: var(--text-soft);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 8px;
  color: var(--green);
  font-weight: 700;
}

/* ==========================================================================
   LE DÉFI DE DTH
   ========================================================================== */
.defi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.defi-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.defi-sub {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 18px;
  font-weight: 500;
}

.defi-card {
  background: var(--white);
  padding: 18px 22px;
  border-radius: 8px;
  margin-bottom: 14px;
  border-left: 3px solid;
  box-shadow: var(--shadow-xs);
  transition: all var(--tr);
}

.defi-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.defi-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.defi-card p {
  font-size: 13px;
  color: var(--text-soft);
}

.defi-red { border-left-color: var(--red); }
.defi-red h4 { color: var(--red); }

.defi-green { border-left-color: var(--green); }
.defi-green h4 { color: var(--green); }

.defi-impact {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.02);
  border-radius: 6px;
}

.defi-impact strong { color: var(--red); }
.defi-col:nth-child(2) .defi-impact strong { color: var(--green); }

.pourquoi-pledge {
  margin-top: 40px;
  padding: 36px 32px;
  background: var(--green-pale);
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(30, 107, 58, 0.15);
}

.pourquoi-pledge h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pourquoi-pledge p {
  font-size: 14px;
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 auto 16px;
}

.pledge-quote {
  font-style: italic;
  font-size: 15px !important;
  color: var(--green) !important;
  font-weight: 500;
}

/* ==========================================================================
   EXPERTISE TECHNIQUE
   ========================================================================== */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.exp-heading {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
}

.exp-sub {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 22px;
  font-weight: 500;
}

.exp-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.exp-item:last-child { border-bottom: none; }

.exp-icon {
  font-size: 22px;
  color: var(--green);
  flex-shrink: 0;
}

.exp-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--green);
}

.exp-item p {
  font-size: 13px;
  color: var(--text-soft);
}

.exp-difference {
  margin-top: 18px;
  padding: 18px 22px;
  background: var(--green-pale);
  border-radius: 8px;
  border-left: 3px solid var(--green);
}

.exp-difference h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.exp-difference p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.exp-difference .italic {
  font-size: 14px;
  color: var(--green);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.service-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  transition: all var(--tr);
  box-shadow: var(--shadow-xs);
}

.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 107, 58, 0.3);
}

.service-ico {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: 8px;
  font-size: 20px;
  margin-bottom: 18px;
}

.service-tile h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-tile p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.65;
}

.service-meta {
  margin-top: 12px !important;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px !important;
  color: var(--green) !important;
  font-weight: 600;
}

.service-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.service-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

/* ==========================================================================
   APPROCHE MODULAIRE
   ========================================================================== */
.modulaire-concept {
  max-width: 800px;
  margin: 0 auto 40px;
  border-color: rgba(30, 107, 58, 0.2);
}

.modulaire-concept .card-title {
  font-size: 20px;
  color: var(--green);
}

.mod-steps {
  list-style: none;
  margin-top: 22px;
}

.mod-steps li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.mod-steps li:last-child { border-bottom: none; }

.mod-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.mod-steps h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mod-steps p {
  font-size: 13px;
  color: var(--text-soft);
}

.mod-chart-card {
  max-width: 800px;
  margin: 0 auto 40px;
  background: var(--white);
  padding: 28px;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.chart-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  height: 240px;
  align-items: end;
  padding: 0 10px;
  margin-bottom: 16px;
}

.chart-group {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 100%;
  position: relative;
}

.chart-group::before {
  content: '';
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}

.bar {
  flex: 1;
  position: relative;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  min-height: 30px;
}

.bar span {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}

.bar-green { background: var(--green); }
.bar-gold { background: var(--gold); }

.chart-label {
  position: absolute;
  bottom: -22px; left: 0; right: 0;
  text-align: center;
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 500;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-soft);
}

.legend-item { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }
.green-dot { background: var(--green); }
.gold-dot { background: var(--gold); }

.mod-bnf-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 24px;
}

.mod-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.mod-bnf {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--tr);
}

.mod-bnf:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.bnf-ico {
  display: inline-flex;
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}

.mod-bnf h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.mod-bnf p {
  font-size: 12px;
  color: var(--text-soft);
}

/* ==========================================================================
   PROCESSUS (zigzag)
   ========================================================================== */
.proc-zigzag {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.proc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.proc-row.proc-reverse { direction: rtl; }
.proc-row.proc-reverse > * { direction: ltr; }

.proc-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.proc-text {
  background: var(--white);
  padding: 26px;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  position: relative;
}

.proc-num {
  position: absolute;
  top: -16px;
  left: 22px;
  width: 38px;
  height: 38px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 3px solid var(--cream);
  font-size: 15px;
}

.proc-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 8px;
}

.proc-text p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ==========================================================================
   TYPE DE PROJETS (Architecturaux, Bars, Restaurants, Thématiques)
   ========================================================================== */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.proj-tile {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: all var(--tr);
}

.proj-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.proj-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.proj-body {
  padding: 18px 20px 22px;
}

.proj-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.proj-body p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.55;
}

.proj-meta {
  margin-top: 10px !important;
  font-size: 11px !important;
  color: var(--gold-dark) !important;
}

/* ==========================================================================
   STYLES D'AMÉNAGEMENT INTÉRIEUR
   ========================================================================== */
.styles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 30px 0 40px;
}

.style-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: all var(--tr);
}

.style-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.style-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.style-body { padding: 24px 26px; }

.style-body h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.style-body > p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.65;
}

.dot-list {
  list-style: none;
  margin-bottom: 16px;
}

.dot-list li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 12px;
  color: var(--text-soft);
}

.dot-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.palette {
  display: flex;
  gap: 6px;
}

.palette span {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: inline-block;
}

.interior-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.mini-tile {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: all var(--tr);
}

.mini-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.mini-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mini-body { padding: 14px 16px 18px; }

.mini-body h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mini-body p {
  font-size: 12px;
  color: var(--text-soft);
}

/* ==========================================================================
   BARS & RESTAURANTS
   ========================================================================== */
.bars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.bar-tile {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 130px 1fr;
  transition: all var(--tr);
}

.bar-tile:hover { transform: translateX(2px); box-shadow: var(--shadow-md); }

.bar-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bar-tile h4, .bar-tile p {
  padding: 0 16px;
}

.bar-tile h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 16px 16px 4px;
}

.bar-tile p {
  font-size: 12px;
  color: var(--text-soft);
  padding-bottom: 16px;
}

.bars-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.side-item {
  font-size: 13px;
  padding: 14px 18px;
  background: var(--green-pale);
  border-radius: 8px;
  border: 1px solid rgba(30, 107, 58, 0.15);
}

.four-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.four-card {
  background: var(--white);
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  text-align: center;
}

.four-card h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.four-card p {
  font-size: 12px;
  color: var(--text-soft);
}

/* ==========================================================================
   THÉMATIQUES ATYPIQUES
   ========================================================================== */
.them-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.them-bnf {
  background: var(--white);
  border-radius: 10px;
  padding: 26px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.them-bnf h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.them-bnf p {
  font-size: 13px;
  color: var(--text-soft);
}

.them-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.them-stat {
  background: var(--white);
  padding: 24px 20px;
  border-radius: 10px;
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.them-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.them-stat span {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 500;
}

/* ==========================================================================
   ÉQUIPE & TRANSPARENCE
   ========================================================================== */
.eq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.eq-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.eq-item:last-child { border-bottom: none; }

.eq-dot {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.green-bg { background: var(--green); }

.eq-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.eq-item p {
  font-size: 13px;
  color: var(--text-soft);
}

/* ==========================================================================
   NOS RÉALISATIONS
   ========================================================================== */
.real-projects {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.real-project {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: all var(--tr);
}

.real-project:hover {
  box-shadow: var(--shadow-md);
}

.real-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.real-head h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.real-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.real-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.real-livre { background: var(--green-pale); color: var(--green); }
.real-cours { background: #fdf3d5; color: #a07d10; }
.real-planif { background: #e8eef7; color: #4a4e9e; }

.real-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 900px;
}

.real-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.real-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.real-gallery img:hover {
  transform: scale(1.02);
}

.real-meta {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 500;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}

.real-note {
  margin-top: 30px;
  font-size: 13px;
  color: var(--text-mute);
  text-align: center;
  font-style: italic;
}

/* ==========================================================================
   TÉMOIGNAGES
   ========================================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.testi-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 26px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  text-align: center;
  position: relative;
  transition: all var(--tr);
}

.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.testi-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--green-pale);
}

/* Photos placeholder en CSS (silhouettes stylisées) car on n'a pas les vrais portraits */
.testi-ph-1 { background: linear-gradient(135deg, #b8854a, #8b6238); }
.testi-ph-2 { background: linear-gradient(135deg, #6b4a8a, #8b5fa8); }
.testi-ph-3 { background: linear-gradient(135deg, #5a7a8e, #8aa5b8); }

.testi-quote {
  display: inline-block;
  font-size: 60px;
  color: var(--green-pale);
  line-height: 0.5;
  margin-bottom: 8px;
  font-family: serif;
}

.testi-card blockquote {
  font-size: 13px;
  color: var(--text-soft);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 18px;
}

.testi-name {
  font-size: 14px;
  color: var(--text);
}

.testi-role {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 2px;
}

.big-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.big-stat {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 10px;
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.big-stat strong {
  display: block;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 4px;
}

.big-stat span {
  font-size: 13px;
  color: var(--text-soft);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}

.contact-item:last-child { border-bottom: none; }

.ci-ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--green);
}

.contact-item p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-item p + p { margin-top: 8px; }

.contact-item a {
  color: var(--text-soft);
  border-bottom: 1px solid var(--line);
  transition: all var(--tr);
}

.contact-item a:hover { color: var(--green); border-bottom-color: var(--green); }

.loc-card {
  background: var(--white);
  border-radius: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  text-align: center;
}

.loc-pin {
  display: inline-flex;
  width: 36px; height: 36px;
  background: var(--green-pale);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 16px;
}

.loc-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.loc-card > p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.loc-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo { height: 44px; width: auto; filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(15deg); opacity: 0.95; }

.footer-tagline {
  font-size: 14px;
  color: var(--gold-light);
  font-weight: 500;
}

.footer-meta { text-align: right; font-size: 12px; }

.footer-meta p { margin: 3px 0; }

.holam-mention {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: 6px !important;
}

.holam-mention a {
  display: inline-flex;
  opacity: 0.7;
  transition: opacity var(--tr);
  line-height: 0;
}

.holam-mention a:hover { opacity: 1; }

.holam-mini { width: 16px; height: 16px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .nav { display: none; }
  .nav.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 18px 28px;
    box-shadow: var(--shadow-md);
  }
  .nav.open ul {
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }
  .nav-toggle { display: flex; }
  .nav-sub {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    margin-top: 6px;
    margin-left: 16px;
    border: none;
    padding: 0;
  }
  .header { position: relative; }

  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-title { font-size: 36px; }
  .qui-grid { grid-template-columns: 1fr; }
  .qui-vision, .qui-image { grid-column: auto; grid-row: auto; }
  .defi-grid, .expertise-grid, .styles-grid, .bars-grid, .eq-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .proc-row { grid-template-columns: 1fr; gap: 16px; }
  .proc-row.proc-reverse { direction: ltr; }
  .them-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .header-inner { padding: 10px 20px; }
  .hero { padding: 50px 0 60px; }
  .hero-title { font-size: 32px; }
  .bars-side, .big-stats { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}
