/* =====================================================================
   NEZSENS — PAGE D'ACCUEIL
   Fichier : nezsens-home.css
   Scoping : tous les sélecteurs préfixés .nsh-*
   À coller dans : Kadence > Personnaliser > CSS additionnel
   (ou Apparence > Thème > CSS additionnel)

   ⚠️  Ce fichier ne redéfinit JAMAIS h1/h2/h3 globaux.
       Les titres dans les sections scoped utilisent des classes
       .nsh-hero-title, .nsh-sec-title, etc. avec -webkit-text-fill-color
       pour neutraliser le gradient-or du thème global.
   ===================================================================== */

/* ─────────────────────────────────────────────────────────────────────
   TOKENS LOCAUX
   Ces variables sont redéfinies localement pour rester indépendantes
   du thème global et permettre une évolution sans effets de bord.
   ───────────────────────────────────────────────────────────────────── */
.nsh-hero,
.nsh-section,
.nsh-nl-section,
.nsh-also-section {
  --nsh-forest:      #37443a;
  --nsh-sage:        #8fa67a;
  --nsh-sage-dk:     #667167;
  --nsh-ivoire:      #f6f3ef;
  --nsh-cream:       #ede8df;
  --nsh-orange:      #FB6123;
  --nsh-lavande:     #C6A5CE;
  --nsh-gold:        #D4AF37;
  --nsh-ink:         #1B2A4A;
  --nsh-border:      rgba(55, 68, 58, .10);
  --nsh-white:       #ffffff;
}

/* ─────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────────────── */
@keyframes nsh-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes nsh-bounce-y {
  0%, 100% { transform: translateX(-50%) translateY(0);    }
  50%       { transform: translateX(-50%) translateY(7px);  }
}

@keyframes nsh-sprout {
  0%   { transform: scale(0.6) rotate(-8deg); opacity: 0; }
  60%  { transform: scale(1.1) rotate(3deg);  opacity: 1; }
  100% { transform: scale(1)   rotate(0deg);  opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .nsh-hero-inner,
  .nsh-nl-sprout  { animation: none !important; }
  .nsh-scroll-hint { animation: none !important; }
}

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

/* Trait décoratif organique en arrière-plan */
.nsh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(143,166,122,.08) 0 80px, transparent 80px),
    radial-gradient(circle at 85% 15%, rgba(198,165,206,.07) 0 60px, transparent 60px);
  pointer-events: none;
}

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

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

/* Neutralise le gradient-or global sur h1 dans le hero */
.nsh-hero-title {
  margin: 0 0 .6rem !important;
  font-family: Georgia, "Playfair Display", serif !important;
  font-size: clamp(3.2rem, 9vw, 6rem) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  color: var(--nsh-forest) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--nsh-forest) !important;
  background-clip: unset !important;
  text-shadow: none !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  letter-spacing: -.02em;
}

.nsh-hero-sub {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem) !important;
  font-style: italic;
  color: var(--nsh-sage-dk) !important;
  -webkit-text-fill-color: var(--nsh-sage-dk) !important;
  font-weight: 300 !important;
  margin-top: .5rem;
  letter-spacing: 0;
  text-shadow: none !important;
}

.nsh-hero-lead {
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--nsh-sage-dk);
  line-height: 1.85;
  font-family: system-ui, sans-serif;
}

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

/* Bouton principal vert sage */
.nsh-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: .9rem 1.6rem;
  background: var(--nsh-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;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 4px 18px rgba(143,166,122,.3);
}
.nsh-btn-primary:hover {
  background: var(--nsh-sage-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(143,166,122,.38);
}

/* Bouton fantôme */
.nsh-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: .9rem 1.6rem;
  background: rgba(255,255,255,.55);
  color: var(--nsh-forest) !important;
  -webkit-text-fill-color: var(--nsh-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;
}
.nsh-btn-ghost:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-2px);
}

/* Bouton outline (voir tous les articles) */
.nsh-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: .75rem 1.4rem;
  background: transparent;
  color: var(--nsh-forest) !important;
  -webkit-text-fill-color: var(--nsh-forest) !important;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid rgba(55,68,58,.3);
  font-size: .92rem;
  font-weight: 600;
  font-family: system-ui, sans-serif;
  transition: background .2s, border-color .2s, transform .2s;
}
.nsh-btn-outline:hover {
  background: rgba(255,255,255,.8);
  border-color: var(--nsh-sage);
  transform: translateY(-1px);
}

/* Indicateur scroll */
.nsh-scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(55,68,58,.45);
  animation: nsh-bounce-y 2.2s ease-in-out infinite;
  text-decoration: none;
  line-height: 1;
  transition: color .2s;
}
.nsh-scroll-hint:hover { color: var(--nsh-sage-dk); }

/* ─────────────────────────────────────────────────────────────────────
   LAYOUT COMMUN DES SECTIONS
   ───────────────────────────────────────────────────────────────────── */
.nsh-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
  background: var(--nsh-ivoire);
}

.nsh-section-alt {
  background: rgba(255,255,255,.55);
}

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

.nsh-sec-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.nsh-sec-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: .1rem;
}

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

/* Neutralise le gradient-or global sur h2 dans les sections */
.nsh-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;
  color: var(--nsh-forest) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--nsh-forest) !important;
  background-clip: unset !important;
  text-shadow: none !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  line-height: 1.2 !important;
}

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

/* ─────────────────────────────────────────────────────────────────────
   § 2 — QUATRE PORTES
   ───────────────────────────────────────────────────────────────────── */
.nsh-portes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.nsh-porte {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: 1.8rem 1.6rem;
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--nsh-border);
  box-shadow: 0 2px 4px rgba(0,0,0,.03), 0 8px 28px rgba(0,0,0,.05);
  text-decoration: none;
  color: var(--nsh-forest);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

/* Liseré coloré en haut selon la porte */
.nsh-porte::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  transition: height .3s ease;
}
.nsh-porte.boussole::before { background: #D4AF37; }
.nsh-porte.clarte::before   { background: #C6A5CE; }
.nsh-porte.lien::before     { background: #7CC496; }
.nsh-porte.ecoute::before   { background: #FB6123; }

.nsh-porte:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,.09), 0 2px 4px rgba(0,0,0,.03);
  border-color: rgba(55,68,58,.18);
}
.nsh-porte:hover::before { height: 4px; }

.nsh-porte-emoji {
  font-size: 2rem;
  line-height: 1;
}

/* Neutralise gradient-or sur h3 dans les portes */
.nsh-porte-name {
  margin: 0 !important;
  font-family: Georgia, serif !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: var(--nsh-forest) !important;
  background: none !important;
  -webkit-text-fill-color: var(--nsh-forest) !important;
  text-shadow: none !important;
  line-height: 1.25 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

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

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

/* ─────────────────────────────────────────────────────────────────────
   § 3 — PAR OÙ COMMENCER
   ───────────────────────────────────────────────────────────────────── */
.nsh-chemins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.nsh-chemin {
  background: rgba(255,255,255,.65);
  border: 1px solid var(--nsh-border);
  border-radius: 16px;
  padding: 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.nsh-chemin:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
}

.nsh-chemin-num {
  font-size: 2.8rem;
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1;
  opacity: .12;
  color: var(--nsh-forest);
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  pointer-events: none;
  user-select: none;
}

/* Bande colorée gauche selon data-accent */
.nsh-chemin[data-accent="sage"]    { border-left: 4px solid var(--nsh-sage); }
.nsh-chemin[data-accent="orange"]  { border-left: 4px solid var(--nsh-orange); }
.nsh-chemin[data-accent="lavande"] { border-left: 4px solid var(--nsh-lavande); }
.nsh-chemin[data-accent="gold"]    { border-left: 4px solid var(--nsh-gold); }

/* Grille 4 chemins : 2 colonnes à partir de 560px */
@media (min-width: 560px) {
  .nsh-chemins-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .nsh-chemins-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Neutralise gradient-or sur h3 */
.nsh-chemin-title {
  margin: 0 !important;
  font-family: Georgia, serif !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: var(--nsh-forest) !important;
  background: none !important;
  -webkit-text-fill-color: var(--nsh-forest) !important;
  text-shadow: none !important;
  line-height: 1.4 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  max-width: calc(100% - 3rem);
}

.nsh-chemin-desc {
  margin: 0;
  font-size: .9rem;
  color: var(--nsh-sage-dk);
  line-height: 1.75;
  flex: 1;
  font-family: system-ui, sans-serif;
}

.nsh-chemin-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--nsh-sage-dk) !important;
  -webkit-text-fill-color: var(--nsh-sage-dk) !important;
  text-decoration: none;
  margin-top: auto;
  padding-top: .25rem;
  font-family: system-ui, sans-serif;
  transition: color .2s, -webkit-text-fill-color .2s;
}
.nsh-chemin-link:hover {
  color: var(--nsh-forest) !important;
  -webkit-text-fill-color: var(--nsh-forest) !important;
}

/* ─────────────────────────────────────────────────────────────────────
   § 4 — NEWSLETTER INLINE
   ───────────────────────────────────────────────────────────────────── */
.nsh-nl-section {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  background: var(--nsh-forest);
  text-align: center;
}

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

.nsh-nl-sprout {
  font-size: 2.4rem;
  animation: nsh-sprout .8s ease both;
  animation-delay: .2s;
  line-height: 1;
}

/* Neutralise gradient-or sur h2 dans la NL */
.nsh-nl-title {
  margin: 0 !important;
  font-family: Georgia, serif !important;
  font-size: clamp(1.6rem, 4vw, 2.4rem) !important;
  font-weight: 400 !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;
  line-height: 1.2 !important;
}

.nsh-nl-desc {
  margin: 0;
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  font-family: system-ui, sans-serif;
}

.nsh-nl-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--nsh-sage);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: .96rem;
  font-family: system-ui, sans-serif;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  margin-top: .5rem;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.nsh-nl-btn:hover {
  background: #7c9268;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0,0,0,.24);
}

.nsh-nl-note {
  margin: 0;
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  font-family: system-ui, sans-serif;
  letter-spacing: .04em;
}

/* Grille articles — 2 colonnes desktop, 1 mobile */
.nsh-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .nsh-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Voir aussi — variante centrée */
.nsh-also-inner--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nsh-also-inner--centered .nsh-also-links {
  justify-content: center;
}

.nsh-article-card {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1.8rem 1.7rem;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--nsh-border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--nsh-forest);
  box-shadow: 0 2px 4px rgba(0,0,0,.02), 0 8px 24px rgba(0,0,0,.04);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  backdrop-filter: blur(6px);
}
.nsh-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,.09);
  border-color: rgba(55,68,58,.2);
}

.nsh-article-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  border-radius: 999px;
  padding: .2rem .65rem;
  width: fit-content;
  font-family: system-ui, sans-serif;
}

/* Tags colorés par thématique éditoriale (indépendants des portes) */
.tag-psycho { background: rgba(138,156,203,.15); color: #2a3d6e; }
.tag-at     { background: rgba(124,196,150,.15); color: #1e5c3a; }
.tag-neuro  { background: rgba(212,175,55,.13);  color: #7a5c00; }
.tag-pro    { background: rgba(198,165,206,.18); color: #5c2d7a; }
.tag-art    { background: rgba(251,97,35,.10);   color: #a33200; }

/* Neutralise gradient-or sur h3 dans les articles */
.nsh-article-title {
  margin: 0 !important;
  font-family: Georgia, serif !important;
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  color: var(--nsh-forest) !important;
  background: none !important;
  -webkit-text-fill-color: var(--nsh-forest) !important;
  text-shadow: none !important;
  line-height: 1.35 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

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

.nsh-article-read {
  display: inline-block;
  margin-top: auto;
  padding-top: .4rem;
  font-size: .84rem;
  font-weight: 700;
  color: var(--nsh-sage-dk);
  font-family: system-ui, sans-serif;
  transition: letter-spacing .2s, color .2s;
}
.nsh-article-card:hover .nsh-article-read {
  letter-spacing: .03em;
  color: var(--nsh-forest);
}

.nsh-articles-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─────────────────────────────────────────────────────────────────────
   § 6 — AVIS GOOGLE
   ───────────────────────────────────────────────────────────────────── */
.nsh-greviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Carte avis */
.nsh-greview {
  margin: 0;
  padding: 1.6rem 1.7rem 1.5rem;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--nsh-border);
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,.02), 0 8px 22px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: transform .25s, box-shadow .25s;
  backdrop-filter: blur(6px);
}
.nsh-greview:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

/* Avis mis en avant : légère bordure dorée */
.nsh-greview--featured {
  border-top: 3px solid var(--nsh-gold);
  grid-column: 1 / -1; /* pleine largeur sur toutes les grilles */
}

@media (min-width: 860px) {
  .nsh-greview--featured {
    grid-column: auto; /* revient en colonne normale au-delà */
  }
}

/* Header : avatar + meta + logo Google */
.nsh-greview-header {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Avatar initiale colorée */
.nsh-greview-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--av-bg, #4285F4);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  font-family: system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

.nsh-greview-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.nsh-greview-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--nsh-forest);
  font-family: system-ui, sans-serif;
  line-height: 1;
}

/* Étoiles jaunes */
.nsh-greview-stars {
  font-size: .9rem;
  color: #FBBC05;
  line-height: 1;
  letter-spacing: .04em;
}

/* Lien logo Google — aligné à droite */
.nsh-greview-logo {
  flex-shrink: 0;
  opacity: .55;
  transition: opacity .2s;
  display: flex;
  align-items: center;
}
.nsh-greview-logo:hover { opacity: 1; }

/* Texte de l'avis */
.nsh-greview-text {
  margin: 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: .93rem;
  line-height: 1.75;
  color: var(--nsh-forest);
  flex: 1;
}

.nsh-greview-text em {
  font-style: normal;
  font-weight: 600;
}

/* Footer avis — lien "voir tous" */
.nsh-greview-footer {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.nsh-greview-all {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--nsh-sage-dk) !important;
  -webkit-text-fill-color: var(--nsh-sage-dk) !important;
  text-decoration: none;
  border: 1px solid rgba(102,113,103,.22);
  border-radius: 999px;
  padding: .45rem 1rem;
  background: rgba(255,255,255,.6);
  font-family: system-ui, sans-serif;
  transition: background .2s, color .2s, -webkit-text-fill-color .2s;
}
.nsh-greview-all:hover {
  background: rgba(255,255,255,.95);
  color: var(--nsh-forest) !important;
  -webkit-text-fill-color: var(--nsh-forest) !important;
}

/* KPI discrets */
.nsh-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(--nsh-border);
  padding-top: 2rem;
}

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

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

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

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

.nsh-also-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1.25rem;
}

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

.nsh-also-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.nsh-also-links a {
  font-size: .83rem;
  color: var(--nsh-sage-dk) !important;
  -webkit-text-fill-color: var(--nsh-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, -webkit-text-fill-color .2s;
}
.nsh-also-links a:hover {
  background: rgba(255,255,255,.9);
  color: var(--nsh-forest) !important;
  -webkit-text-fill-color: var(--nsh-forest) !important;
}

/* ─────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nsh-hero { padding-bottom: clamp(3.5rem, 7vw, 5rem); }

  .nsh-portes-grid,
  .nsh-chemins-grid,
  .nsh-temoignages-grid { grid-template-columns: 1fr; }

  .nsh-articles-grid { grid-template-columns: 1fr; }

  .nsh-porte:hover,
  .nsh-chemin:hover,
  .nsh-article-card:hover { transform: none; }

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

  .nsh-also-inner { flex-direction: column; align-items: flex-start; }

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

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