/* =========================
   RESET SIMPLE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #253d23;
  background: #f7f4f0;
}
/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 20px 5%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav a {
  text-decoration: none;
  color: white;
  margin-left: 30px;
  font-size: 14px;
  font-weight: 500;
}
/* =========================
   HEADER SCROLL EFFECT
========================= */
.site-header.scrolled {
  background: #f7f4f0;
  box-shadow: 0 4px 20px rgba(37, 61, 35, 0.08);
}
.site-header.scrolled .nav a {
  color: #253d23;
}
.site-header.scrolled .cta {
  background: transparent;
  color: #253d23;
  border: 1px solid #253d23;
}
.site-header.scrolled .cta:hover {
  background: #253d23;
  color: white;
}
/* =========================
   HERO
========================= */
.hero {
  position: relative;
  height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.05);
}
.hero-media img {
  transform: scale(1.05);
  transition: transform 0.1s linear;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}
/* =========================
   CTA
========================= */
.cta {
  display: inline-block;
  background: #253d23;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}
.cta:hover {
  background: #1a2c19;
}
.site-header .cta {
  background: white;
  color: #253d23;
  padding: 8px 18px;
  border-radius: 20px;
}
.site-header .cta:hover {
  background: #253d23;
  color: white;
}
.cta-beige {
  background: #b5a48b;
  color: #253d23;
  padding: 16px 36px;
  font-size: 15px;
  border-radius: 4px;
}
.cta-beige:hover {
  background: #a09078;
  color: white;
}
/* =========================
   SECTIONS
========================= */
.section {
  padding: 100px 0;
}
.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.section > .container > p {
  max-width: 600px;
}
/* =========================
   PORTFOLIO CARROUSEL
========================= */
.portfolio-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 50px;
}
.portfolio-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  will-change: transform;
  width: max-content;
}
.portfolio-item {
  flex-shrink: 0;
  min-width: 380px;
  width: 380px;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(37, 61, 35, 0.1);
}
.portfolio-item img,
.portfolio-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-item:hover img,
.portfolio-item:hover video {
  transform: scale(1.04);
}
/* =========================
   STATISTIQUES
========================= */
.stats-section {
  background: #253d23;
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #b5a48b;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.5;
}
.stats-cta {
  text-align: center;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.stats-cta-texte {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 100%;
}
/* =========================
   POURQUOI NOUSVOS
========================= */
.pourquoi-liste {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
}
.pourquoi-liste li {
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  color: #253d23;
  line-height: 1.5;
}
.pourquoi-liste li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #b5a48b;
  font-weight: bold;
}
/* =========================
   EXPERTISE GRID
========================= */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.expertise-card {
  background: white;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 8px 25px rgba(37, 61, 35, 0.08);
  border-left: 4px solid #b5a48b;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(37, 61, 35, 0.13);
}
.expertise-card h3 {
  font-size: 18px;
  color: #253d23;
  margin-bottom: 12px;
}
.expertise-card p {
  font-size: 15px;
  color: #253d23;
  line-height: 1.75;
  max-width: 100%;
}
/* =========================
   QUI SOMMES-NOUS
========================= */
.qui-section {
  background: white;
  padding: 0;
}
.qui-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.qui-texte-bloc {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.qui-texte-bloc h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.qui-texte {
  font-size: 16px;
  color: #253d23;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 100%;
}
.qui-texte-bloc .cta {
  margin-top: 16px;
  align-self: flex-start;
}
.qui-photo-lien {
  display: block;
  overflow: hidden;
}
.qui-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.qui-photo-lien:hover .qui-photo {
  transform: scale(1.04);
}
/* =========================
   CARDS SERVICES
========================= */
.cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}
.card {
  flex: 1;
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(37, 61, 35, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(37, 61, 35, 0.15);
}
.card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #253d23;
}
.card p {
  color: #253d23;
  line-height: 1.6;
}
/* =========================
   CTA SECTION
========================= */
.cta-section {
  text-align: center;
  background: #f7f4f0;
}
.cta-section h2 {
  max-width: 600px;
  margin: 0 auto 10px;
}
/* =========================
   REVEAL AU SCROLL
========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* =========================
   FOOTER
========================= */
.site-footer {
  background: #253d23;
  color: rgba(255, 255, 255, 0.6);
}
.footer-top {
  padding: 80px 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
}
.footer-logo-grand {
  font-size: 52px;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
}
.footer-logo-grand span {
  color: #b5a48b;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 220px;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.footer-social-lien {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.footer-social-lien:hover {
  background: #b5a48b;
  border-color: #b5a48b;
}
.footer-social-lien svg {
  width: 16px;
  height: 16px;
  fill: white;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav-titre {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b5a48b;
  margin-bottom: 4px;
}
.footer-nav-col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-nav-col a:hover {
  color: white;
}
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-contact-col a:hover {
  color: white;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
/* =========================
   AVIS GRID
========================= */
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.avis-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(37, 61, 35, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.avis-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(37, 61, 35, 0.13);
}
.avis-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.avis-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8e2da;
}
.avis-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #253d23;
  margin-bottom: 2px;
}
.avis-entreprise {
  font-size: 13px;
  color: #6b4f3a;
  margin-bottom: 4px;
  max-width: 100%;
}
.avis-etoiles {
  color: #b5a48b;
  font-size: 14px;
  letter-spacing: 2px;
}
.avis-texte {
  font-size: 15px;
  color: #253d23;
  line-height: 1.7;
  font-style: italic;
  max-width: 100%;
}
/* =========================
   FORFAITS
========================= */
.forfaits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.forfait {
  border-radius: 16px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.forfait-nous {
  background: #253d23;
  color: white;
}
.forfait-nous .forfait-titre { color: white; }
.forfait-nous .forfait-accroche { color: rgba(255,255,255,0.85); }
.forfait-nous .forfait-pour { color: rgba(255,255,255,0.75); }
.forfait-nous .forfait-pour strong { color: #b5a48b; }
.forfait-nous .forfait-inclus {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 24px;
  margin-top: 8px;
}
.forfait-nous .forfait-inclus-titre {
  font-weight: 700;
  color: #b5a48b;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.forfait-nous .forfait-inclus p:last-child {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.7;
}
.forfait-vos {
  background: #ede8e0;
  color: #253d23;
}
.forfait-vos .forfait-titre { color: #253d23; }
.forfait-vos .forfait-accroche { color: #3a3a3a; }
.forfait-vos .forfait-pour { color: #555; }
.forfait-vos .forfait-pour strong { color: #6b4f3a; }
.forfait-vos .forfait-inclus {
  background: rgba(37,61,35,0.07);
  border-radius: 10px;
  padding: 24px;
  margin-top: 8px;
}
.forfait-vos .forfait-inclus-titre {
  font-weight: 700;
  color: #6b4f3a;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.forfait-vos .forfait-inclus p:last-child {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}
.forfait-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  align-self: flex-start;
}
.forfait-nous .forfait-badge { background: #b5a48b; color: #253d23; }
.forfait-vos .forfait-badge { background: #253d23; color: white; }
.forfait-titre {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.forfait-accroche { font-size: 15px; line-height: 1.75; }
.forfait-inclus-titre { display: block; }
.forfait-cta {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  transition: background 0.3s ease, color 0.3s ease;
}
.forfait-cta-nous { background: #b5a48b; color: #253d23; }
.forfait-cta-nous:hover { background: #a09078; color: white; }
.forfait-cta-vos { background: #253d23; color: white; }
.forfait-cta-vos:hover { background: #1a2c19; }
/* =========================
   AMPLIFICATION
========================= */
.ampli-section { background: white; }
.ampli-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ampli-texte h2 { font-size: 32px; margin-bottom: 8px; }
.ampli-texte h3 {
  font-size: 16px;
  font-weight: 500;
  color: #6b4f3a;
  margin-bottom: 24px;
}
.ampli-texte p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 100%;
}
.ampli-pour strong { color: #253d23; }
.ampli-texte .cta { margin-top: 8px; }
.ampli-visuel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ampli-plateforme {
  background: #f7f4f0;
  border-radius: 12px;
  padding: 30px 35px;
  border-left: 4px solid #b5a48b;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ampli-plateforme-nom { font-size: 20px; font-weight: 700; color: #253d23; }
.ampli-plateforme-detail { font-size: 13px; color: #6b4f3a; }
/* =========================
   À PROPOS
========================= */
.apropos-intro-texte p {
  font-size: 17px;
  line-height: 1.85;
  color: #253d23;
  max-width: 700px;
  margin-bottom: 16px;
}
.apropos-approche-section { background: white; }
.apropos-deux-colonnes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.apropos-deux-colonnes h2 { font-size: 26px; margin-bottom: 20px; }
.apropos-deux-colonnes p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 100%;
}
.apropos-derriere-section { background: #253d23; }
.apropos-derriere-section h2 { color: white; }
.apropos-derriere-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.apropos-derriere-texte p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 100%;
}
.apropos-accroche {
  font-size: 18px !important;
  color: rgba(255,255,255,0.9) !important;
}
.apropos-accroche strong { color: #b5a48b; }
.apropos-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.apropos-collaborer { max-width: 700px; }
.apropos-collaborer p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}
/* =========================
   CONTACT
========================= */
.contact-section { min-height: 100vh; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(37,61,35,0.12);
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b5a48b;
}
.contact-info-valeur {
  font-size: 15px;
  color: #253d23;
  text-decoration: none;
  font-weight: 500;
}
a.contact-info-valeur:hover { color: #6b4f3a; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-groupe {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-groupe label {
  font-size: 13px;
  font-weight: 600;
  color: #253d23;
  letter-spacing: 0.3px;
}
.form-groupe input,
.form-groupe textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(37,61,35,0.2);
  border-radius: 6px;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #253d23;
  background: white;
  transition: border-color 0.3s ease;
  outline: none;
  resize: vertical;
}
.form-groupe input:focus,
.form-groupe textarea:focus { border-color: #253d23; }
.form-groupe input::placeholder,
.form-groupe textarea::placeholder { color: #aaa; }
.contact-submit {
  align-self: flex-start;
  padding: 14px 32px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.contact-submit:hover { transform: translateY(-2px); }
.contact-droite { position: sticky; top: 100px; }
.contact-calendly-titre {
  font-size: 15px;
  font-weight: 600;
  color: #253d23;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(37,61,35,0.12);
}
/* =========================
   PAGE SANS HERO
========================= */
.page-sans-hero .site-header {
  background: #f7f4f0;
  box-shadow: 0 4px 20px rgba(37,61,35,0.08);
}
.page-sans-hero .site-header .nav a { color: #253d23; }
.page-sans-hero .site-header .cta {
  background: transparent;
  color: #253d23;
  border: 1px solid #253d23;
}
.page-sans-hero .site-header .cta:hover {
  background: #253d23;
  color: white;
}
.contact-banniere {
  background: #253d23;
  padding: 120px 0 60px;
}
.contact-banniere h1 {
  font-size: 42px;
  color: white;
  margin-bottom: 14px;
}
.contact-banniere p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  line-height: 1.7;
}
.contact-section { padding-top: 70px !important; }
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .qui-inner { grid-template-columns: 1fr; }
  .qui-texte-bloc { padding: 60px 0 40px 0; }
  .qui-photo-lien { height: 300px; }
  .forfaits-grid { grid-template-columns: 1fr; }
  .ampli-inner { grid-template-columns: 1fr; gap: 40px; }
  .apropos-deux-colonnes { grid-template-columns: 1fr; gap: 40px; }
  .apropos-derriere-inner { grid-template-columns: 1fr; }
  .apropos-photo { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-droite { position: static; }
  .footer-top { flex-direction: column; gap: 40px; }
}
@media (max-width: 600px) {
  .avis-grid { grid-template-columns: 1fr; }
  .portfolio-item { min-width: 280px; width: 280px; height: 200px; }
  .stat-number { font-size: 40px; }
  .forfait { padding: 35px 25px; }
  .footer-logo-grand { font-size: 38px; }
}
/* =========================
   BURGER & MENU MOBILE
========================= */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.3s ease;
  transform-origin: center;
}
.site-header.scrolled .burger span {
  background: #253d23;
}
.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: white !important;
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: white !important;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #253d23;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay a {
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.nav-overlay a:hover {
  color: #b5a48b;
}
.nav-overlay .cta {
  background: #b5a48b;
  color: #253d23;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 18px;
  margin-top: 10px;
  border: none;
}
.nav-overlay .cta:hover {
  background: white;
  color: #253d23;
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}

/* =========================
   FONDATEURS
========================= */
.fondateurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.fondateur-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(37, 61, 35, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.fondateur-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(37, 61, 35, 0.13);
}
.fondateur-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.fondateur-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.fondateur-nom {
  font-size: 18px;
  font-weight: 700;
  color: #253d23;
  margin: 0;
}
.fondateur-role {
  font-size: 13px;
  color: #6b4f3a;
  line-height: 1.4;
  font-weight: 500;
}
.fondateur-separateur {
  width: 40px;
  height: 2px;
  background: #b5a48b;
  margin: 4px 0;
}
.fondateur-point-fort {
  font-size: 13px;
  font-weight: 700;
  color: #253d23;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fondateur-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}
.fondateur-humain {
  font-size: 13px;
  color: #b5a48b;
  font-style: italic;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .fondateurs-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}