/* ================== BASE / FONTS ================== */
@font-face{
  font-family: 'Poppins';
  src: url('./polices/Poppins/Poppins-Regular.woff2') format('woff2'),
       url('./polices/Poppins/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html, body, button, input, textarea, select {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
body { width: 100%; overflow-x: hidden;background-color: #CFC3B5; }

/* Variables globales */
:root{
  --text:#1a1a1a;
  --muted:#5f615f;
  --line:#ece8e2;
  --hover-shadow: 0 10px 22px rgba(0,0,0,.14);
  --brand:#84b27b;
}

/* utilitaire accessibilité */
.sr-only{
  position:absolute !important;
  width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ================== HEADER / NAV ================== */
.site-header{
  position: sticky; top: 0; z-index: 100; background:#fff;
}
.navbar{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #CFC3B5;
}
.logo_asdc img{ display:block; height:96px; width:auto; object-fit:contain; }
.nav-toggle{
  margin-left:auto; background:#fff; border:1.5px solid var(--line);
  border-radius:10px; padding:8px; cursor:pointer; display:none; color:var(--text);
}
.nav-toggle:focus-visible{ outline:3px solid rgba(132,178,123,.35); outline-offset:2px; }

.menu{
  list-style:none; margin:0 0 0 auto; padding:0;
  display:flex; gap:18px; align-items:center; flex-wrap:wrap;
}
.menu-item{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  color:var(--text); font:600 12px 'Poppins',sans-serif; transition:color .2s ease;
}
.btn_img{
  width:58px; height:58px; border-radius:999px; border:2px solid #e2dfdf; object-fit:cover; display:block;
  transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease, filter .18s ease;
}
.menu-item:hover .btn_img, .menu-item:focus-visible .btn_img{
  transform: translateY(-3px); box-shadow: var(--hover-shadow); border-color:#d9d4d0; filter: saturate(1.08);
}
.menu-item:hover, .menu-item:focus-visible{ color: #bc445d; }

/* Tablet */
@media (max-width: 900px){
  .logo_asdc img{ height:78px; }
  .btn_img{ width:62px; height:62px; }
  .menu{ gap:14px; }
}
/* Mobile */
@media (max-width: 740px){
  .nav-toggle{ display:inline-flex; }
  .menu{
    position:absolute; z-index:200; left:0; right:0; top:100%;
    background:#fff; border-top:1px solid var(--line); box-shadow:0 12px 28px rgba(0,0,0,.08);
    padding:12px 14px 16px;
    display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px 8px;
    opacity:0; transform: translateY(-8px); pointer-events:none; transition: opacity .18s ease, transform .18s ease;
  }
  .menu.open{ opacity:1; transform: translateY(0); pointer-events:auto; }
  .logo_asdc img{ height:68px; }
  .menu-item{ font-size:13px; }
  .btn_img{ width:58px; height:58px; }
}
/* Mini */
@media (max-width: 390px){
  .menu{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .btn_img{ width:56px; height:56px; }
}

/* ================== QSN ================== */
#accueil{
    scroll-margin-top: 100px;
}
.qui-sommes-nous{
  --bg: #f8f8f6; --text: #1a1a1a; --muted: #5f615f; --brand: #84b27b;
  color: var(--text);
  padding: 30px 20px;
  display: flex; align-items: center;
  scroll-margin-top: 120px;
}
.qsn-wrap{
  max-width: 1100px; margin: 0 auto; background: #f8f8f0;
  border-radius: 16px; padding: 60px 20px; box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.qsn-eyebrow{ display:inline-block; font-weight:700; font-size:16px; letter-spacing:.08em; text-transform:uppercase; color: var(--brand); margin-bottom:8px; }
.qsn-title{ font-size: clamp(25px, 3vw, 37px); line-height:1.15; font-weight:800; margin:0 0 18px; }
.qsn-lead{ font-size:16px; line-height:1.7; color:var(--muted); margin:0 0 14px; }
.qsn-highlight{ font-weight:700; color:var(--text); }

/* ================== RÉALISATIONS ================== */
.realisations{ text-align:center; background:#CFC3B5;  scroll-margin-top: 300px; }
.title_section_realisation{ font-size:clamp(25px, 2vw, 37px); line-height:1.15; font-weight:800; margin:25px; color:#F8F8F0; }
.carousel{ position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; width:100%; }
.img_realisations{
  display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; padding:10px; scroll-behavior:smooth;
}
.img_realisations::-webkit-scrollbar{ display:none; }
.img_realisations img{
  height:auto; max-height:350px; width:auto; object-fit:cover;
  border-radius:12px; scroll-snap-align:start; cursor:pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.img_realisations img:hover{ transform: scale(1.05); box-shadow: 0 8px 20px rgba(0,0,0,.2); }

/* Flèches */
.nav{
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(0,0,0,.4); color:#fff; border:none; font-size:2.5rem; padding:10px 15px;
  cursor:pointer; border-radius:50%; transition: background .3s ease; z-index:10;
}
.nav:hover{ background:rgba(0,0,0,.6); }
.prev{ left:10px; } .next{ right:10px; }

/* Lightbox */
.lightbox{
  display:none; position:fixed; z-index:1000; inset:0; padding-top:5vh;
  background:rgba(0,0,0,.9);
}
.lightbox-content{ display:block; margin:auto; max-width:90%; max-height:85vh; border-radius:10px; }
.lightbox .close{
  position:absolute; top:20px; right:40px; color:#fff; font-size:40px; font-weight:bold; cursor:pointer; background:none; border:none;
}
.lightbox .close:hover{ color:#ccc; }

/* ================== OFFRES ================== */
.offres{ background:#CFC3B5; color:#1a1a1a; padding:60px 20px; padding-top: 50px; scroll-margin-top: 320px; }
.title_section_offres{ font-size:clamp(26px, 2vw, 38px); line-height:1.2; font-weight:800; margin:0 0 20px; display:flex; justify-content:center; color:#F8F8F0; }
.offres-wrap{ display:grid; grid-template-columns:1fr; gap:30px; max-width:1100px; margin:0 auto; }
@media (min-width: 960px){ .offres-wrap{ grid-template-columns: repeat(3, 1fr); } }

.card{
  background:#fff; border-radius:20px; border:1px solid #eee7e0; box-shadow:0 10px 25px rgba(0,0,0,.05);
  padding:30px 25px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
}
.badge{ display:inline-block; background:#d9855a; color:#fff; font-weight:800; text-transform:uppercase; padding:10px 18px; border-radius:10px; margin-bottom:20px; }

/* bulles */
.bubble{
  --bubble-bg: #e3dcd4; --bubble-text:#3a3734;
  position:relative; display:inline-block; background:var(--bubble-bg); color:var(--bubble-text);
  border-radius:22px; padding:16px 18px; margin:14px 0; max-width:92%; text-align:center;
  box-shadow: 0 1px 0 rgba(0,0,0,.05) inset, 0 6px 14px rgba(0,0,0,.06);
}
.bubble::after{
  content:""; position:absolute; left:50%; bottom:-9px; transform:translateX(-50%) rotate(45deg);
  width:18px; height:18px; background:var(--bubble-bg); border-bottom-left-radius:6px; box-shadow:0 1px 0 rgba(0,0,0,.05) inset;
}
.bubble p{ margin:0; font-size:15px; line-height:1.55; font-weight:500; }
.bubble strong{ font-weight:700; color:#1f1e1c; }

/* cible + pill */
.target{
  width:80px; height:80px; border-radius:50%; margin:25px auto 10px;
  background:
    radial-gradient(circle at center, #84b27b 0 8px, transparent 9px),
    radial-gradient(circle at center, transparent 0 18px, #84b27b 19px 19px, transparent 20px),
    radial-gradient(circle at center, transparent 0 30px, #84b27b 31px 31px, transparent 32px);
}
.pill{ display:inline-block; background:#d9855a; color:#fff; font-weight:700; border-radius:12px; padding:10px 18px; margin-bottom:25px; }

/* sous-titres + chips */
.script{ font-weight:800; font-size:20px; margin:10px 0 20px; position:relative; color: #836454; }
.script::after{ content:""; display:block; width:100px; height:3px; background:rgba(217,123,101,.5); border-radius:2px; margin:8px auto 0; }
.chips{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; width:100%; }
.chips li{ background:#e3dcd4; border:1px solid #eee7e0; border-radius:999px; padding:10px 16px; color:#4f4f4f; font-size:13px; }

/* ================== CTA / CONTACT ================== */
.cta-hero{
  --bg:#CFC3B5; --card:#ffffff; --text:#1a1a1a; --muted:#5f615f; --brand:#84b27b; --line:#ece8e2;
  background:var(--bg); padding:64px 20px 48px; display:flex; justify-content:center; scroll-margin-top:150px;
}
.cta-card{ width:100%; max-width:980px; background:#f8f8f0; border:1px solid var(--line); border-radius:18px; box-shadow:0 14px 34px rgba(0,0,0,.08); padding:36px 28px; }
.cta-head{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px; }
.cta-title{ font-weight:700; font-size: clamp(26px, 3.5vw, 38px); line-height:1.25; color:var(--text); }
.cta-title .bold{ font-weight:800; }
.cta-underline{ width:160px; height:4px; border-radius:3px; background:linear-gradient(90deg, rgba(217,123,101,.15), rgba(217,123,101,.6), rgba(217,123,101,.15)); margin-top:4px; }
.btn{ display:inline-flex; align-items:center; gap:10px; padding:12px 18px; border-radius:12px; font-weight:700; white-space:nowrap; transition:transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn-primary{ background:#fff; color:#0f0f0f; border:2px solid var(--line); box-shadow:0 6px 0 rgba(0,0,0,.06); }
.btn-primary:hover{ border-color:#ddd3ca; transform: translateY(-1px); }
.btn-primary:active{ transform: translateY(2px); box-shadow:0 0 0 rgba(0,0,0,0); }
.btn-ghost{ background:transparent; color:#0f0f0f; border:2px solid var(--line); }
.btn-ghost:hover{ background:#f6f2ee; }
.cta-sep{ border:none; height:1px; background:linear-gradient(90deg, transparent, var(--line), transparent); margin:24px 0; }
.cta-actions{ display:grid; grid-template-columns: 1fr; gap:18px; align-items:center; text-align:center; }
@media (min-width: 820px){ .cta-actions{ grid-template-columns: 1.2fr .8fr; } }
.cta-small{ margin:0 0 10px; font-size:15px; color:var(--muted); }
.cta-socials .icons{ display:flex; justify-content:center; gap:12px; }
.icon{ width:42px; height:42px; border-radius:12px; display:inline-flex; align-items:center; justify-content:center; background:#fff; border:1px solid var(--line); color:#1a1a1a; transition: transform .12s ease, box-shadow .12s ease, border-color .2s ease; }
.icon:hover{ transform: translateY(-2px); border-color:#ddd3ca; box-shadow:0 6px 16px rgba(0,0,0,.08); }
.icon svg{ width:22px; height:22px; }
.btn-stack{
  display: flex;
}

/* ================== CHECKLIST ================== */
.cta-checklist{
  --bg:#CFC3B5; --text:#1a1a1a; --muted:#5f615f; --brand:#84b27b; --brand-dark:#6c9e63; --line:#e8e8e4;
  background:var(--bg); color:var(--text); padding:64px 20px; scroll-margin-top: 80px;
}
.cta-wrap{ max-width:1280px; margin:0 auto; background:#f8f8f0; border-radius:16px; padding:40px 28px; box-shadow:0 12px 28px rgba(0,0,0,.08); }
.cta-eyebrow{ display:inline-block; font-weight:700; font-size:16px; letter-spacing:.08em; text-transform:uppercase; color:#CFC3B5; margin-bottom:8px; }
.cta-title{ font-size:clamp(26px, 3vw, 38px); line-height:1.2; font-weight:800; margin:0 0 18px; color:#836454; }
.cta-content p{ font-size:15px; line-height:1.75; color:var(--muted); margin:0 0 14px; }
.cta-content .lead{ font-weight:600; color:var(--text); margin-top:6px; }
.cta-form{
  margin-top:16px; display:grid; grid-template-columns: 1fr auto; gap:12px; align-items:center;
  border-top:1px solid var(--line); padding-top:16px;
}
.cta-form input[type="email"]{
  height:46px; border-radius:10px; border:2px solid var(--line); padding:0 14px; font-size:13px; outline:none;
  transition:border-color .2s ease, box-shadow .2s ease; background:#fff; width:80%; max-width:390px;
}
.cta-form input[type="email"]:focus{ border-color:var(--brand); box-shadow:0 0 0 4px rgba(132,178,123,.15); }
.cta-form .btn{ padding:12px 20px; border-radius:10px; font-weight:700; border:none; cursor:pointer; transition: transform .15s ease, box-shadow .15s ease, background .2s ease; }
.cta-form .btn-primary{ background:#d9855a; color:#fff; box-shadow: 0 6px 0 #ffffff;}
.cta-form .btn-primary:hover{ background:#d89788; }
.cta-form .btn-primary:active{ transform:translateY(6px); box-shadow:0 0 0 var(--brand-dark); }
.cta-form .consent{ grid-column:1 / -1; display:flex; gap:10px; align-items:flex-start; font-size:12px; color:var(--muted); user-select:none; }
.cta-form .footnote{ grid-column:1 / -1; font-size:12px; color:var(--muted); margin:6px 0 0; }

/* ================== QUI SUIS-JE ================== */
.qui-suis-je{
  --bg:#e3dcd4; --text:#1a1a1a; --muted:#5f615f; --brand:#84b27b;
  background:#CFC3B5; color:var(--text); padding:64px 20px; padding-bottom: 0px; scroll-margin-top: 100px;
}
.qsj-wrap{
  position:relative; max-width:1100px; margin:0 auto; background:#f8f8f0; border-radius:16px; padding:40px 50px; box-shadow:0 12px 28px rgba(0,0,0,.08); margin-bottom: 20px;
}
.qsj-eyebrow{ display:inline-block; font-weight:700; font-size:16px; letter-spacing:.08em; text-transform:uppercase; color:#835464; margin-bottom:8px;}
.qsj-title{ font-size:clamp(28px, 4vw, 40px); line-height:1.2; font-weight:800; margin-bottom:30px; color: #836454; }
.qsj-section{ margin-bottom:40px; }
.qsj-subtitle{ font-size:24px; font-weight:700; color:#CFC3B5; margin-bottom:12px; text-transform:uppercase; }
.qsj-section p{ font-size:15px; line-height:1.7; color:var(--muted); margin:0 0 14px; }
.qsj-section strong{ color:var(--text); font-weight:600; }
.qsj-section ul{ margin:0 0 14px 24px; color:var(--muted); }
.qsj-section blockquote{ border-left:4px solid var(--brand); padding-left:12px; margin:10px 0 20px; font-style:italic; color:var(--text); }
/* header de la section qui-suis-je */
.qsj-header{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:8px;           /* petit espace avant le bloc suivant */
}
.qsj-header .qsj-text{ flex:1; } /* le texte prend la place, l'image colle à droite */
/* Permet d’inverser l’ordre texte / image */
.qsj-header.img-left {
  flex-direction: row-reverse; /* photo à gauche */
}

.qsj-avatar{
  width:200px; height:200px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid #fff;        /* liseré propre */
  box-shadow:0 6px 16px rgba(0,0,0,.12);
}
@media (max-width: 600px){
  .qsj-avatar{ width:76px; height:76px; }
}

/* --- CONTACT PAGE --- */
.contact-page { 
  padding: 64px 20px; 
  background: var(--bg, #f8f8f6); 
}

.contact-wrap { 
  max-width: 1100px; 
  margin: 0 auto; 
}

.contact-grid {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
  justify-content: center;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Cartes */
.contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  padding: 24px;
}
.contact-card.centered {
  display: flex;
  flex-direction: column;
  align-items: center;  /* ✅ centre horizontalement */
  text-align: center;   /* ✅ centre le texte */
}

/* Titres */
.contact-h2 { 
  font-size: 20px; 
  font-weight: 700; 
  margin: 0 0 16px; 
}

.contact-h3 { 
  font-size: 16px; 
  font-weight: 700; 
  margin: 16px 0 10px; 
}

/* Formulaire */
.contact-form { 
  display: grid; 
  gap: 12px; 
  justify-items: start; 
  max-width: 100%; 
}

.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  max-width: 100%;          /* ✅ évite le débordement */
  box-sizing: border-box;   /* ✅ garde les paddings inclus */
  border-radius: 10px;
  border: 2px solid var(--line, #e8e8e4);
  padding: 10px 14px;
  font-size: 16px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: var(--brand, #84b27b);
  box-shadow: 0 0 0 4px rgba(132,178,123,.15);
  outline: none;
  background: #fff;
}

.contact-form .btn {
  align-self: start;
  width: 100%;
}

.form-msg { margin-top: 8px; font-size: 14px; }
.form-msg.ok { color: #2e7d32; }
.form-msg.ko { color: #c62828; }
.contact-form textarea {
  resize: none;
  min-height: 120px;
}


/* Icônes réseaux sociaux */
.icons {
  display: flex;
  gap: 10px;
  justify-content: center;     /* ✅ centrage horizontal */
  align-items: center;         /* ✅ centrage vertical */
  margin-top: 10px;
}

.icon img {
  border-radius: 10px;
  border: 2px solid #f0f0f0;
  padding: 6px;
  transition: transform .2s ease;
}

.icon img:hover {
  transform: scale(1.1);
}

/* Option photo angle haut-droit
.qsj-photo{ position:absolute; top:-28px; right:-28px; width:110px; height:110px; border-radius:50%; object-fit:cover; border:4px solid #fff; box-shadow:0 8px 22px rgba(0,0,0,.15); }
@media (max-width: 600px){ .qsj-photo{ top:-20px; right:-20px; width:88px; height:88px; } } */

/* ======= HOTFIX MOBILE OVERFLOW ======= */


/* 5) Gros titres: éviter les mots qui débordent */
.cta-title, .qsj-title, .contact-h2, .contact-h3 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* 6) Désactiver tout scroll horizontal résiduel */
html, body { overflow-x: hidden; }

/* ================== FOOTER ================== */
.footer{
  background:#222; color:#f0f0f0; text-align:center; padding:20px 10px; font-size:14px;
}
.footer-links{ margin-top:10px; }
.footer-links a{ color:#d97b65; margin:0 10px; transition:color .3s ease; }
.footer-links a:hover{ color:#fff; }

/* ================== ANCRES: OFFSET SCROLL ================== */
#about, #realisations, #offres, #contact, #checklist, #quisuisje , #accueil, #reseaux { scroll-margin-top: 120px; }

/* ===== Réseaux : compact, 1 ligne, sans chevauchement ===== */
.social-grid.single-line{
  --gap: 18px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--gap);
  flex-wrap: nowrap;          /* 1 seule ligne */
  overflow-x: auto;           /* scroll si l'écran est trop étroit */
  padding: 6px 0 14px;
}
.social-hero h1{
    color: #F8F8F0;
}
.social-grid.single-line > .card{
  box-sizing: border-box;     /* évite tout débordement lié aux paddings/bordures */
  width: 190px;               /* largeur fixe = pas de chevauchement */
  min-width: 190px;
  margin: 0 !important;       /* neutralise d’éventuels margins globaux de .card */
  padding: 14px 12px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;        /* tout centré */
  text-align: center;
  /* pas d'hover qui translate vers la carte voisine */
  transform: none !important;
  transition: box-shadow .2s ease;
}
.social-grid.single-line > .card:hover{
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

/* Icone compacte */
.social-grid.single-line .icon{
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; background:#f6f6f6; margin-bottom: 8px;
}
.social-grid.single-line .icon svg{ width: 20px; height: 20px; }

/* Titres & textes resserrés */
.social-grid.single-line h2{ font-size: 0.9rem; margin: 4px 0 4px; }
.social-grid.single-line p{ font-size: 0.65rem; margin: 0 0 10px; opacity:.85; }
.social-grid.single-line .email{ overflow-wrap:anywhere; }

/* Boutons compacts alignés */
.social-grid.single-line .btn-row{
  display:flex; flex-direction:column; gap:8px; width:100%; align-items:center;
  margin-top: 0;           /* pousse les boutons en bas => alignement visuel uniforme */
}
.social-grid.single-line .btn{
  width: 85%;
  max-width: 180px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: .82rem;
  justify-content:center;
}

/* Optionnel : carte Linktree un poil plus aérée en bas */
.social-grid.single-line .card:last-child .btn{ max-width: 200px; }


/* ===== Responsive Réseaux : affichage en colonne sur mobile ===== */
@media (max-width: 768px) {
  .social-grid.single-line {
    flex-wrap: wrap;                /* on autorise le retour à la ligne */
    flex-direction: column;         /* affichage vertical */
    align-items: center;            /* centre la colonne */
    justify-content: center;
    gap: 18px;                      /* espace entre les cartes */
    overflow-x: visible;            /* supprime le scroll horizontal */
    padding-bottom: 30px;
  }

  .social-grid.single-line > .card {
    width: 90%;                     /* largeur relative, centrée */
    min-width: auto;
    max-width: 400px;               /* limite de largeur */
  }

  .social-grid.single-line .btn {
    width: 85%;                    /* boutons pleines cartes sur mobile */
    max-width: none;
  }
}
/* ===== Couleur personnalisée des boutons sur la page Réseaux ===== */
.social-grid.single-line .btn.primary {
  background: #e3dcd4;
  border-color: #e3dcd4;
  color: #525151;
}
.social-grid.single-line .btn.primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.social-grid.single-line .btn:not(.primary) {
  border-color: #d97b65;
  color: #84b27b;
}
.social-grid.single-line .btn:not(.primary):hover {
  background: #84b27b;
  color: #fff;
}
/* ===== Forcer le site en mode clair ===== */
@media (prefers-color-scheme: dark) {
  html, body {
    background: #fff !important;
    color: #111 !important;
  }
  .card, .social-grid .card {
    background: #fff !important;
    border-color: #eee !important;
    color: #111 !important;
  }
  .icon, .social-grid .icon {
    background: #f6f6f6 !important;
  }
  .btn, .social-grid .btn {
    background: #fff !important;
    color: #111 !important;
    border-color: #e5e5e5 !important;
  }
  .btn.primary, .social-grid .btn.primary {
    background: #84b27b !important;
    border-color: #84b27b !important;
    color: #fff !important;
  }
}

main.container{
  max-width: 1500px;
}

/* =========================
   PAGES LEGALES
========================= */

.legal {
  background: #f9f9f7;
  padding: clamp(60px, 8vw, 120px) 20px;
}

.legal-hero {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.legal-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #84b27b;
  margin-bottom: 12px;
}

.legal-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #1c1c1c;
  margin: 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #84b27b;
  margin: 48px 0 16px;
}

.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #1c1c1c;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: #84b27b;
  text-decoration: none;
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}
/* ================= QSN ================= */
.qui-sommes-nous{
  padding: clamp(48px, 6vw, 45px) 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.qsn-wrap{
  max-width: 1250px;
  margin: 0 auto;
}

.qsn-head{
  text-align: left;
  margin-bottom: 22px;
  margin-left: 50px;
  font-size: 15px;
  color: #4f4f4f;
}

.qsn-eyebrow{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 16px;
  color: #835464;
}

.qsn-title{
  margin: 10px 0 8px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  color: #836454;
}

.qsn-subtitle{
  margin: 0;
  max-width: 70ch;
  opacity: .85;
  font-size: 16px;
  line-height: 1.6;
}
strong{
  color: #000;
  font-weight: 700;
}


.qsn-card{
  border-radius: 20px;
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
  color: #4f4f4f;
  font-size: 15px;
}

.qsn-grid{
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

@media (max-width: 900px){
  .qsn-grid{ grid-template-columns: 1fr; }
}

.qsn-text .qsn-para{
  margin: 12px 0;
  line-height: 1.75;
  opacity: .92;
}

.qsn-lead{
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
  color: black;
}

.qsn-highlight{
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.qsn-callout{
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 16px 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.6);
}

.qsn-callout__icon{
  font-size: 18px;
}

.qsn-callout__text{
  margin: 0;
  line-height: 1.4;
}

.qsn-quote{
  margin: 16px 0;
  padding: 14px 16px;
  border-left: 4px solid rgba(0,0,0,.18);
  background: rgba(0,0,0,.03);
  border-radius: 12px;
}
.qsn-quote p{
  margin: 0;
  line-height: 1.6;
}

.qsn-dont{
  display: grid;
  gap: 8px;
  margin: 14px 0 10px;
}
.qsn-dont__item{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(0,0,0,.18);
  background: rgba(255,255,255,.55);
  font-weight: 600;
}

/* Side */
.qsn-side{
  position: sticky;
  top: 18px;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: #CFC3B5;
}
@media (max-width: 900px){
  .qsn-side{ position: relative; top: auto; }
}

.qsn-side__title{
  margin: 0 0 12px;
  font-size: 18px;
}

.qsn-points{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.qsn-point{
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.65);
  line-height: 1.55;
}

.qsn-point__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
  font-weight: 800;
}

.qsn-final{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
}
.qsn-final p{
  margin: 0;
  line-height: 1.6;
  font-weight: 650;
}
/* Strong en noir (comme tu voulais) */
#quisuisje strong { color:#000; font-weight:700; }

/* Aération + sections */
.qsj-section { margin-top: 26px; }
.qsj-section--soft{
  padding: 18px 18px;
  border-radius: 14px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
}

.qsj-lead{
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Cartes / callouts */
.qsj-card{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.08);
}
.qsj-card__title{ margin: 0 0 10px; font-weight: 700; }
.qsj-card__foot{ margin: 10px 0 0; opacity:.92; }

.qsj-callout{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.65);
  margin: 14px 0;
}
.qsj-callout__text{ margin:0; line-height:1.6; }
.qsj-callout--accent{
  background: rgba(0,0,0,.04);
}

/* Listes alignées (beau rendu) */
.qsj-bullets{
  list-style:none;
  padding:0;
  margin: 10px 0 0;
  display:grid;
  gap: 8px;
}
.qsj-bullets li{
  display:grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  line-height: 1.6;
}
.qsj-bulletIcon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  opacity:.8;
}
.qsj-bullets--check .qsj-bulletIcon{
  font-weight: 900;
}

/* Quote propre */
.qsj-quote{
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 4px solid rgba(109, 155, 102, .9); /* vert doux */
  background: rgba(109, 155, 102, .06);
  border-radius: 12px;
}

/* Chips (petits blocs) */
.qsj-grid{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.qsj-grid--2{ grid-template-columns: 1fr 1fr; }
@media (max-width: 780px){
  .qsj-grid, .qsj-grid--2{ grid-template-columns: 1fr; }
}
.qsj-chip{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.7);
  line-height:1.5;
}

/* Petites lignes “facts” */
.qsj-facts{
  display:grid;
  gap: 10px;
  margin-top: 10px;
}
.qsj-fact{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.65);
}

/* Texte secondaire */
.qsj-muted{ opacity:.75; margin-top: 10px; }
.qsn-cross {
  color: #d94a4a; /* rouge élégant */
  font-weight: 700;
  margin-right: 8px;
}
.footer strong{
  color: white;
}