/* =====================================================================
   NEZSENS — PAGE PARCOURS / À PROPOS
   Fichier : nezsens-parcours.css
   Scoping : tous les sélecteurs préfixés .nsap-*
   À coller dans : Kadence > Personnaliser > CSS additionnel

   ⚠️  Neutralisation du gradient-or global sur tous les titres
       via -webkit-text-fill-color et background: none !important.
   ===================================================================== */

/* ─────────────────────────────────────────────────────────────────────
   TOKENS LOCAUX
   ───────────────────────────────────────────────────────────────────── */
.nsap-hero,
.nsap-section,
.nsap-contact-section,
.nsap-also-section {
  --nsap-forest:  #37443a;
  --nsap-sage:    #8fa67a;
  --nsap-sage-dk: #667167;
  --nsap-ivoire:  #f6f3ef;
  --nsap-cream:   #ede8df;
  --nsap-orange:  #FB6123;
  --nsap-lavande: #C6A5CE;
  --nsap-gold:    #D4AF37;
  --nsap-ink:     #1B2A4A;
  --nsap-border:  rgba(55, 68, 58, .10);
}

/* ─────────────────────────────────────────────────────────────────────
   ANIMATION
   ───────────────────────────────────────────────────────────────────── */
@keyframes nsap-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .nsap-hero-inner { animation: none !important; }
}

/* ─────────────────────────────────────────────────────────────────────
   § 1 — HERO
   ───────────────────────────────────────────────────────────────────── */
.nsap-hero {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 1.5rem clamp(4rem, 8vw, 7rem);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%,   rgba(143,166,122,.14) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(198,165,206,.10) 0%, transparent 55%),
    radial-gradient(circle  at top,      #f8f6f1 0%, #ede9df 65%, #e6dfd4 100%);
}

.nsap-hero::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, rgba(143,166,122,.35), transparent);
  pointer-events: none;
}

.nsap-hero-inner {
  position: relative; z-index: 1;
  width: min(740px, 100%);
  animation: nsap-fade-up 1s ease both;
}

.nsap-kicker {
  display: block;
  text-transform: uppercase; letter-spacing: .22em;
  font-size: .72rem; color: var(--nsap-sage-dk);
  margin-bottom: 1.5rem; font-family: system-ui, sans-serif;
}

.nsap-hero-title {
  margin: 0 0 .75rem !important;
  font-family: Georgia, "Playfair Display", serif !important;
  font-size: clamp(2rem, 5.5vw, 3.8rem) !important;
  font-weight: 400 !important; line-height: 1.15 !important;
  color: var(--nsap-forest) !important;
  background: none !important; -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--nsap-forest) !important;
  background-clip: unset !important; text-shadow: none !important;
  border-bottom: none !important; padding-bottom: 0 !important;
}

.nsap-hero-title em {
  font-style: italic;
  color: var(--nsap-sage-dk) !important;
  -webkit-text-fill-color: var(--nsap-sage-dk) !important;
  font-size: .9em;
}

.nsap-hero-lead {
  max-width: 520px; margin: 1.25rem auto 0;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--nsap-sage-dk); line-height: 1.9;
  font-family: system-ui, sans-serif;
}

.nsap-hero-actions {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: .85rem; margin-top: 2.25rem;
}

/* ─────────────────────────────────────────────────────────────────────
   BOUTONS PARTAGÉS
   ───────────────────────────────────────────────────────────────────── */
.nsap-btn-primary {
  display: inline-flex; align-items: center;
  padding: .9rem 1.6rem; background: var(--nsap-sage);
  color: #fff !important; -webkit-text-fill-color: #fff !important;
  text-decoration: none; border-radius: 999px;
  font-size: .95rem; font-weight: 700; font-family: system-ui, sans-serif;
  box-shadow: 0 4px 18px rgba(143,166,122,.28);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.nsap-btn-primary:hover {
  background: var(--nsap-sage-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(143,166,122,.36);
}

.nsap-btn-ghost {
  display: inline-flex; align-items: center;
  padding: .9rem 1.6rem; background: rgba(255,255,255,.55);
  color: var(--nsap-forest) !important; -webkit-text-fill-color: var(--nsap-forest) !important;
  text-decoration: none; border-radius: 999px;
  border: 1px solid rgba(55,68,58,.18);
  font-size: .95rem; font-weight: 600; font-family: system-ui, sans-serif;
  transition: background .25s, transform .25s;
}
.nsap-btn-ghost:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); }

.nsap-btn-ghost-light {
  display: inline-flex; align-items: center;
  padding: .9rem 1.6rem; background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85) !important; -webkit-text-fill-color: rgba(255,255,255,.85) !important;
  text-decoration: none; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  font-size: .95rem; font-weight: 600; font-family: system-ui, sans-serif;
  transition: background .25s, transform .25s;
}
.nsap-btn-ghost-light:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

/* ─────────────────────────────────────────────────────────────────────
   LAYOUT COMMUN SECTIONS
   ───────────────────────────────────────────────────────────────────── */
.nsap-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
  background: var(--nsap-ivoire);
}
.nsap-section-alt { background: rgba(255,255,255,.55); }

.nsap-section-inner { max-width: 1100px; margin: 0 auto; }

.nsap-sec-head {
  display: flex; align-items: flex-start;
  gap: 1rem; margin-bottom: 2.5rem;
}
.nsap-sec-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; margin-top: .1rem; }

.nsap-eyebrow {
  display: block; text-transform: uppercase;
  letter-spacing: .2em; font-size: .7rem;
  color: var(--nsap-sage-dk); margin-bottom: .35rem;
  font-family: system-ui, sans-serif;
}

.nsap-sec-title {
  margin: 0 0 .6rem !important;
  font-family: Georgia, "Playfair Display", serif !important;
  font-size: clamp(1.7rem, 4vw, 2.4rem) !important;
  font-weight: 400 !important; line-height: 1.2 !important;
  color: var(--nsap-forest) !important;
  background: none !important; -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--nsap-forest) !important;
  background-clip: unset !important; text-shadow: none !important;
  border-bottom: none !important; padding-bottom: 0 !important;
}

.nsap-sec-desc {
  margin: 0; color: var(--nsap-sage-dk); line-height: 1.85;
  max-width: 640px; font-size: .97rem; font-family: system-ui, sans-serif;
}

/* ─────────────────────────────────────────────────────────────────────
   § 2 — VIDÉOS + ACCORDÉON TEXTE
   ───────────────────────────────────────────────────────────────────── */

/* Grille deux vidéos côte à côte */
.nsap-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.nsap-video-block { display: flex; flex-direction: column; gap: .6rem; }

.nsap-video-label {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--nsap-sage-dk); font-family: system-ui, sans-serif; margin: 0;
}

/* Placeholder — état "en construction" */
.nsap-video-placeholder {
  position: relative; padding-bottom: 56.25%; height: 0;
  background: rgba(55,68,58,.06);
  border: 2px dashed rgba(143,166,122,.35);
  border-radius: 14px; overflow: hidden;
  transition: border-color .25s, background .25s;
}
.nsap-video-placeholder:hover {
  border-color: rgba(143,166,122,.6);
  background: rgba(55,68,58,.09);
}

.nsap-video-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; text-align: center; padding: 1.5rem;
}

.nsap-video-ico {
  font-size: 2rem; color: rgba(143,166,122,.5);
  line-height: 1;
}

.nsap-video-caption {
  margin: 0; font-family: Georgia, serif;
  font-size: .95rem; font-style: italic;
  color: var(--nsap-sage-dk);
}

.nsap-video-sub {
  margin: 0; font-size: .8rem;
  color: rgba(102,113,103,.6);
  font-family: system-ui, sans-serif;
}

/* Embed YouTube actif (remplace le placeholder) */
.nsap-video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 14px; background: #000;
}
.nsap-video-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* Accordéon "lire le texte" */
.nsap-read-toggle { margin-top: .5rem; }

.nsap-read-btn {
  width: 100%; text-align: left; background: none; border: none;
  cursor: pointer; padding: .85rem 1rem;
  font-size: .9rem; font-weight: 600;
  color: var(--nsap-sage-dk); font-family: system-ui, sans-serif;
  display: flex; justify-content: space-between; align-items: center;
  border-radius: 10px;
  border: 1px dashed rgba(143,166,122,.3);
  transition: background .2s, border-color .2s;
}
.nsap-read-btn:hover {
  background: rgba(143,166,122,.07);
  border-color: rgba(143,166,122,.5);
}
.nsap-read-btn::after {
  content: "↓"; font-size: 1rem; font-weight: 400; flex-shrink: 0;
  transition: transform .3s;
}
.nsap-read-btn.open::after { transform: rotate(180deg); }

.nsap-read-content {
  max-height: 0; overflow: hidden;
  transition: max-height .5s ease, padding .3s;
}
.nsap-read-content.open {
  max-height: 4000px;
  padding-top: 1.5rem;
}


.nsap-prose-wrap { }

.nsap-prose {
  max-width: 700px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.5rem;
}

.nsap-prose p {
  margin: 0;
  font-size: clamp(.97rem, 1.4vw, 1.08rem);
  line-height: 1.95;
  color: var(--nsap-forest);
  font-family: Georgia, serif;
}

.nsap-prose p em {
  font-style: italic;
  color: var(--nsap-sage-dk);
}

/* Filet décoratif gauche sur la prose */
.nsap-prose {
  border-left: 2px solid rgba(143,166,122,.25);
  padding-left: 1.75rem;
}

@media (max-width: 640px) {
  .nsap-prose { border-left: none; padding-left: 0; }
}

/* ─────────────────────────────────────────────────────────────────────
   § 3 — TROIS DOMAINES
   ───────────────────────────────────────────────────────────────────── */
.nsap-domaines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.nsap-domaine {
  display: flex; flex-direction: column; gap: .7rem;
  padding: 1.8rem 1.7rem; border-radius: 18px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--nsap-border);
  box-shadow: 0 2px 4px rgba(0,0,0,.03), 0 8px 28px rgba(0,0,0,.05);
  text-decoration: none; color: var(--nsap-forest);
  position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.nsap-domaine:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,.09);
  border-color: rgba(55,68,58,.18);
}

.nsap-domaine::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  border-radius: 18px 18px 0 0;
  transition: height .25s;
}
.nsap-domaine:hover::before { height: 4px; }
.nsap-domaine[data-color="orange"]::before  { background: var(--nsap-orange); }
.nsap-domaine[data-color="sage"]::before    { background: var(--nsap-sage); }
.nsap-domaine[data-color="lavande"]::before { background: var(--nsap-lavande); }

.nsap-domaine-ico { font-size: 2rem; line-height: 1; }

.nsap-domaine-name {
  margin: 0 !important; font-family: Georgia, serif !important;
  font-size: 1.15rem !important; font-weight: 600 !important;
  color: var(--nsap-forest) !important; background: none !important;
  -webkit-text-fill-color: var(--nsap-forest) !important;
  text-shadow: none !important; border-bottom: none !important;
  padding-bottom: 0 !important; line-height: 1.25 !important;
}

.nsap-domaine-desc {
  margin: 0; font-size: .88rem; color: var(--nsap-sage-dk);
  line-height: 1.7; flex: 1; font-family: system-ui, sans-serif;
}

.nsap-domaine-link {
  display: inline-block; margin-top: auto;
  font-size: .85rem; font-weight: 700;
  color: var(--nsap-sage-dk); font-family: system-ui, sans-serif;
  transition: letter-spacing .2s, color .2s;
}
.nsap-domaine:hover .nsap-domaine-link {
  letter-spacing: .04em; color: var(--nsap-forest);
}

/* ─────────────────────────────────────────────────────────────────────
   § 4 — CRÉDIBILITÉ
   ───────────────────────────────────────────────────────────────────── */
.nsap-cred-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-bottom: 3rem;
}

.nsap-cred-bloc {
  background: rgba(255,255,255,.7); border: 1px solid var(--nsap-border);
  border-radius: 16px; padding: 1.8rem 1.9rem; backdrop-filter: blur(6px);
}

.nsap-cred-bloc-title {
  margin: 0 0 1.25rem !important; font-family: system-ui, sans-serif !important;
  font-size: .78rem !important; font-weight: 700 !important;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--nsap-forest) !important; background: none !important;
  -webkit-text-fill-color: var(--nsap-forest) !important;
  text-shadow: none !important;
  border-bottom: 1px solid var(--nsap-border) !important;
  padding-bottom: .65rem !important; line-height: 1.3 !important;
}

.nsap-cred-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 1rem;
}

.nsap-cred-list li {
  display: flex; flex-direction: column; gap: .15rem;
  padding-left: .85rem;
  border-left: 2px solid rgba(143,166,122,.3);
}

.nsap-cred-list li strong {
  font-family: Georgia, serif; font-size: .95rem;
  color: var(--nsap-forest); font-weight: 600;
}

.nsap-cred-list li span {
  font-size: .82rem; color: var(--nsap-sage-dk);
  line-height: 1.5; font-family: system-ui, sans-serif;
}

.nsap-cred-list li em { font-style: italic; }

/* KPI */
.nsap-kpis {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1rem 2.5rem;
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--nsap-border);
  padding-top: 2rem;
}

.nsap-kpi {
  text-align: center; display: flex;
  flex-direction: column; gap: .2rem;
}

.nsap-kpi strong {
  display: block; font-family: Georgia, serif;
  font-size: 2rem; font-weight: 400;
  color: var(--nsap-forest); line-height: 1;
}

.nsap-kpi span {
  font-size: .78rem; color: var(--nsap-sage-dk);
  font-family: system-ui, sans-serif; max-width: 160px; line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────────────
   § 5 — NEZSENS — NOM & SENS
   ───────────────────────────────────────────────────────────────────── */
.nsap-nezsens-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem; align-items: start;
}

@media (max-width: 720px) {
  .nsap-nezsens-wrap { grid-template-columns: 1fr; }
  .nsap-nezsens-logo-block { margin: 0 auto; }
}

.nsap-nezsens-prose {
  display: flex; flex-direction: column; gap: 1.2rem;
}

.nsap-nezsens-prose p {
  margin: 0; font-size: .97rem; color: var(--nsap-sage-dk);
  line-height: 1.85; font-family: system-ui, sans-serif;
}

.nsap-nezsens-prose strong {
  color: var(--nsap-forest); font-weight: 700;
}

/* Bloc logo typographique */
.nsap-nezsens-logo-block {
  display: flex; flex-direction: column;
  align-items: center; gap: .75rem;
  flex-shrink: 0; width: 160px;
}

.nsap-logo-placeholder {
  position: relative;
  width: 140px; height: 140px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--nsap-border);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  overflow: hidden;
}

/* Rendu typographique du nom avec fissure sur le Z */
.nsap-logo-nez,
.nsap-logo-fissure,
.nsap-logo-ens {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--nsap-forest);
  line-height: 1;
  display: inline;
}

.nsap-logo-fissure {
  position: relative;
  color: var(--nsap-sage-dk);
  /* Soulignement ondulé suggérant la fissure */
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: rgba(143,166,122,.5);
  text-underline-offset: 3px;
}

.nsap-logo-sprout {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem; line-height: 1;
  opacity: .8;
}

.nsap-logo-caption {
  font-size: .72rem; color: var(--nsap-sage-dk);
  font-family: system-ui, sans-serif; text-align: center;
  font-style: italic; line-height: 1.4; margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────
   § 6 — VALEURS
   ───────────────────────────────────────────────────────────────────── */
.nsap-valeurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.nsap-valeur {
  padding: 1.7rem 1.6rem; border-radius: 16px;
  background: rgba(255,255,255,.72); border: 1px solid var(--nsap-border);
  display: flex; flex-direction: column; gap: .65rem;
  backdrop-filter: blur(6px);
  transition: transform .25s, box-shadow .25s;
}
.nsap-valeur:hover {
  transform: translateY(-4px); box-shadow: 0 8px 26px rgba(0,0,0,.07);
}

.nsap-valeur-ico { font-size: 1.8rem; line-height: 1; }

.nsap-valeur-name {
  margin: 0 !important; font-family: Georgia, serif !important;
  font-size: 1rem !important; font-weight: 600 !important;
  color: var(--nsap-forest) !important; background: none !important;
  -webkit-text-fill-color: var(--nsap-forest) !important;
  text-shadow: none !important; border-bottom: none !important;
  padding-bottom: 0 !important; line-height: 1.3 !important;
}

.nsap-valeur-desc {
  margin: 0; font-size: .88rem; color: var(--nsap-sage-dk);
  line-height: 1.75; font-family: system-ui, sans-serif;
}

/* ─────────────────────────────────────────────────────────────────────
   § 7 — CTA CONTACT
   ───────────────────────────────────────────────────────────────────── */
.nsap-contact-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
  background: var(--nsap-forest); text-align: center;
}

.nsap-contact-inner {
  max-width: 580px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
}

.nsap-contact-sprout { font-size: 2.2rem; line-height: 1; }

.nsap-contact-title {
  margin: 0 !important; font-family: Georgia, serif !important;
  font-size: clamp(1.6rem, 4vw, 2.4rem) !important;
  font-weight: 400 !important; line-height: 1.2 !important;
  color: #fff !important; background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
  background-clip: unset !important; text-shadow: none !important;
  border-bottom: none !important; padding-bottom: 0 !important;
}

.nsap-contact-desc {
  margin: 0; font-size: .95rem; color: rgba(255,255,255,.65);
  line-height: 1.8; font-family: system-ui, sans-serif; max-width: 460px;
}

.nsap-contact-actions {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: .85rem; margin-top: .75rem;
}

/* ─────────────────────────────────────────────────────────────────────
   § 8 — VOIR AUSSI
   ───────────────────────────────────────────────────────────────────── */
.nsap-also-section {
  padding: 1.75rem 1.5rem 2rem;
  background: rgba(255,255,255,.35);
  border-top: 1px solid var(--nsap-border);
}

.nsap-also-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: .75rem; text-align: center;
}

.nsap-also-label {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .2em;
  color: var(--nsap-sage-dk); font-family: system-ui, sans-serif; margin: 0;
}

.nsap-also-links { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }

.nsap-also-links a {
  font-size: .83rem; color: var(--nsap-sage-dk) !important;
  -webkit-text-fill-color: var(--nsap-sage-dk) !important;
  text-decoration: none; border: 1px solid rgba(102,113,103,.22);
  border-radius: 999px; padding: .32rem .8rem;
  background: rgba(255,255,255,.5); font-family: system-ui, sans-serif;
  transition: background .2s, color .2s;
}
.nsap-also-links a:hover {
  background: rgba(255,255,255,.9);
  color: var(--nsap-forest) !important;
  -webkit-text-fill-color: var(--nsap-forest) !important;
}

/* ─────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nsap-domaines-grid,
  .nsap-cred-cols,
  .nsap-valeurs-grid    { grid-template-columns: 1fr; }

  .nsap-domaine:hover,
  .nsap-valeur:hover    { transform: none; }

  .nsap-sec-head        { flex-direction: column; gap: .5rem; }

  .nsap-kpis            { gap: 1.25rem 2rem; }
}

@media (max-width: 480px) {
  .nsap-hero-actions,
  .nsap-contact-actions { flex-direction: column; align-items: center; }
  .nsap-btn-primary,
  .nsap-btn-ghost,
  .nsap-btn-ghost-light { width: 100%; max-width: 300px; justify-content: center; }
}