/* sections.css — styles propres a chaque section */

section{ padding: 56px 0; position: relative; }

/* ----------- HERO-SVG ----------- */
.hero{
  padding-top: calc(var(--header-h-mobile) + 32px);
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-ui);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.hero-eyebrow::before{
  content: ""; width: 26px; height: 1px; background: var(--accent);
}
.hero-title{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 8.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.014em;
  color: var(--text);
  margin: 0 0 1.1rem;
}
.hero-title em{
  font-style: italic;
  color: var(--accent);
}
.hero-sub{
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 52ch;
  margin-bottom: 26px;
}
.hero-cta{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-cta .btn{ width: 100%; }
.hero-usps{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* svg illustration */
.hero-illu{
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  order: -1;
}
.hero-illu svg{ width: 100%; height: 100%; display: block; }
.hero-stamp{
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-family: var(--ff-display);
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-style: italic;
  color: var(--text);
}
.hero-stamp strong{ color: var(--accent); font-style: normal; font-weight: 700; font-family: var(--ff-ui); }

/* ----------- STATS STRIP ----------- */
.stats-strip{
  padding: 38px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.stat-item{
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.stat-item:last-child{ border-bottom: 0; }
.stat-number{
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 1;
  color: var(--accent);
  font-weight: 600;
  font-feature-settings: "lnum" on;
}
.stat-label{
  font-family: var(--ff-ui);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-2);
  font-weight: 600;
}

/* ----------- A PROPOS ----------- */
.about-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.about-text h2{ margin-bottom: .8em; }
.about-text p{ font-size: 1.04rem; color: var(--text-2); }
.about-signature{
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, var(--bg));
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.about-signature strong{ font-family: var(--ff-display); font-style: italic; font-size: 1.1rem; color: var(--text); display: block; margin-bottom: 2px; font-weight: 600; }
.about-signature span{ font-family: var(--ff-ui); font-size: .85rem; color: var(--text-mute); }
.about-illu{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: grid; place-items: center;
}
.about-illu svg{ width: 80%; height: 80%; }
.about-illu .stamp-circle{
  position: absolute;
  top: 18px; right: 18px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--ff-display);
  font-size: .85rem;
  line-height: 1.2;
  padding: 14px;
  box-shadow: 0 14px 30px -10px rgba(94,107,59,.5);
}
.about-illu .stamp-circle strong{
  font-size: 1.75rem;
  display: block;
  font-weight: 600;
  font-style: italic;
}

/* ----------- SERVICES (LAY-1 grid-3) ----------- */
.services-head{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  max-width: 680px;
}
.services-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* ----------- SAVOIR-FAIRE / METHODE ----------- */
.method-section{
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.method-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
}
.method-item{
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.method-item .num{
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}
.method-item h4{ font-family: var(--ff-display); font-size: 1.18rem; font-weight: 600; margin: 0 0 4px; }
.method-item p{ font-size: .94rem; color: var(--text-2); margin: 0; }

/* ----------- PREUVE SOCIALE (sans avis) ----------- */
.proof-section{ background: var(--text); color: var(--bg); }
.proof-section .eyebrow{ color: var(--accent-2); }
.proof-section .eyebrow::before{ background: var(--accent-2); }
.proof-section h2{ color: var(--bg); }
.proof-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}
.proof-item{
  padding: 28px 24px;
  border: 1px solid rgba(255,252,238,.14);
  border-radius: var(--r-lg);
  background: rgba(255,252,238,.03);
}
.proof-item .badge-naf{
  font-family: var(--ff-ui);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-2);
  margin-bottom: 12px;
  display: inline-block;
}
.proof-item .big{
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1;
  color: var(--bg);
  margin: 0 0 12px;
  font-weight: 500;
}
.proof-item p{
  font-size: .96rem;
  color: rgba(255,252,238,.78);
  margin: 0;
}
.proof-note{
  margin-top: 28px;
  font-size: .88rem;
  color: rgba(255,252,238,.65);
  font-style: italic;
  text-align: center;
  max-width: 60ch;
  margin-left: auto; margin-right: auto;
}

/* ----------- FAQ ----------- */
.faq-list{ margin-top: 30px; display: flex; flex-direction: column; gap: 0; }
.faq-item{
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child{ border-top: 1px solid var(--border); }
.faq-trigger{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: color .25s var(--ease);
}
.faq-trigger:hover{ color: var(--accent); }
.faq-chevron{
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .3s var(--ease), background .3s var(--ease);
  position: relative;
}
.faq-chevron::before{
  content: "";
  width: 11px; height: 2px;
  background: currentColor;
  position: absolute;
}
.faq-chevron::after{
  content: "";
  width: 2px; height: 11px;
  background: currentColor;
  position: absolute;
  transition: opacity .3s var(--ease);
}
.faq-trigger[aria-expanded="true"] .faq-chevron{
  background: var(--accent);
  color: var(--bg);
}
.faq-trigger[aria-expanded="true"] .faq-chevron::after{ opacity: 0; }
.faq-answer{
  padding: 0 4px 22px;
  font-size: .98rem;
  color: var(--text-2);
  max-width: 70ch;
}
.faq-answer p{ margin: 0; }

/* ----------- ZONE + carte ----------- */
.zone-cols{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 36px;
}
.zone-info h4{ font-family: var(--ff-display); font-size: 1.2rem; margin: 0 0 10px; font-style: italic; font-weight: 500; }
.zone-list{
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 26px;
}
.zone-list .pill{ background: var(--surface); }
.zone-list .pill svg{ color: var(--accent); }
.dispo-card{
  padding: 18px;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px;
}
.dispo-card .dot{
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse-dot 2.2s ease-out infinite;
}
@keyframes pulse-dot{
  0%{ box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent); }
  100%{ box-shadow: 0 0 0 14px transparent; }
}
.dispo-card h4{ margin: 0 0 4px; font-family: var(--ff-display); font-size: 1.05rem; font-style: italic; font-weight: 500; }
.dispo-card p{ margin: 0; font-size: .92rem; color: var(--text-2); }
.map-wrapper{
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 4/3;
}
.map-wrapper iframe{
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* ----------- CONTACT ----------- */
.contact-section{ background: var(--bg-alt); border-top: 1px solid var(--border); }
.contact-cols{
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 36px;
}
.contact-info{ display: flex; flex-direction: column; gap: 18px; }
.contact-row{
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.contact-row:last-of-type{ border-bottom: 0; }
.contact-row .ico{
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  color: var(--accent);
  display: grid; place-items: center;
}
.contact-row .ico svg{ width: 18px; height: 18px; }
.contact-row .lbl{
  font-family: var(--ff-ui);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-mute);
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-row .val{
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 500;
}
.contact-row a.val{ text-decoration: underline; text-underline-offset: 4px; text-decoration-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.contact-cta-mobile{ display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.contact-cta-mobile .btn{ width: 100%; }

.contact-form-wrap{
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.contact-form-wrap h3{ margin: 0 0 .6em; font-family: var(--ff-display); font-size: 1.4rem; font-style: italic; font-weight: 500; }
.contact-form-wrap p{ font-size: .92rem; color: var(--text-2); margin-bottom: 18px; }

/* eyebrow centre dans section */
.section-head{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px;
  max-width: 720px;
  margin-bottom: 8px;
}
.section-head h2{ margin: 0 0 .35em; }
.section-head p.lead{ margin: 0; }

/* desktop */
@media (min-width: 768px){
  section{ padding: 88px 0; }
  .hero{ padding-top: calc(var(--header-h) + 40px); padding-bottom: 80px; }
  .hero-inner{
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
  }
  .hero-illu{ order: 1; aspect-ratio: 3/4; }
  .hero-cta{ flex-direction: row; }
  .hero-cta .btn{ width: auto; }
  .stats-grid{ grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .stat-item{ border-bottom: 0; border-right: 1px solid var(--border); padding: 6px 16px; }
  .stat-item:last-child{ border-right: 0; }
  .about-grid{ grid-template-columns: 1.2fr .8fr; gap: 56px; }
  .services-grid{ grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .method-grid{ grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .proof-grid{ grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .zone-cols{ grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
  .contact-cols{ grid-template-columns: 1fr 1.1fr; gap: 48px; }
}
