/* =========================================================================
   NADOMAR TRAVEL — HOME
   Direction : « luxury editorial travel magazine » (charte de marque).
   Cette feuille est chargée APRÈS styles.css et ne concerne que la home.
   Elle n'écrase rien globalement : tout est préfixé .nh-
   ========================================================================= */

:root {
    --nh-bordeaux:      #55262C;
    --nh-bordeaux-dark: #3D1B20;
    --nh-bordeaux-deep: #2A0F13;
    --nh-cream:         #E6DCC5;
    --nh-cream-light:   #F2EDE0;
    --nh-cream-dark:    #D4C9AE;
    --nh-or:            #C9A96E;   /* accent de la charte, jusqu'ici inutilisé */
    --nh-or-pale:       #E0CDA4;
    --nh-sable:         #766C5E;   /* micro-libellés — 4,9:1 sur le crème */
    --nh-texte:         #55493E;   /* texte courant — 8,2:1 sur le crème */
    --nh-charbon:       #1A1A1A;
    --nh-paper:         #FBF8F1;

    --nh-display: 'Playfair Display', Georgia, serif;
    --nh-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

    --nh-ease:    cubic-bezier(.22, 1, .36, 1);
    --nh-gutter:  clamp(20px, 5vw, 72px);
    --nh-max:     1320px;
}

/* ---------- socle ---------- */
.nh { background: var(--nh-paper); color: var(--nh-charbon); overflow-x: hidden; }
.nh-wrap { max-width: var(--nh-max); margin: 0 auto; padding: 0 var(--nh-gutter); }

.nh section { position: relative; }

/* Grain léger : donne la texture « papier » du magazine */
.nh-grain::after {
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

/* ---------- typographie éditoriale ---------- */
.nh-num {
    font-family: var(--nh-body);
    font-size: .68rem; font-weight: 700;
    letter-spacing: .34em; text-transform: uppercase;
    color: var(--nh-or);
    display: inline-flex; align-items: center; gap: 14px;
}
.nh-num::after {
    content: ""; width: clamp(28px, 6vw, 72px); height: 1px;
    background: currentColor; opacity: .55;
}

.nh-h2 {
    font-family: var(--nh-display);
    font-weight: 500;
    font-size: clamp(2.1rem, 5.2vw, 4.15rem);
    line-height: 1.03;
    letter-spacing: -.022em;
    margin: 22px 0 0;
    color: var(--nh-bordeaux);
}
.nh-h2 em { font-style: italic; font-weight: 400; color: var(--nh-bordeaux-dark); }
.nh-h2--light { color: var(--nh-cream-light); }
.nh-h2--light em { color: var(--nh-or-pale); }

.nh-lede {
    font-family: var(--nh-body); font-weight: 300;
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    line-height: 1.72; color: var(--nh-texte);
    max-width: 54ch; margin: 26px 0 0;
}
.nh-lede--light { color: rgba(230, 220, 197, .8); }

/* ---------- boutons ---------- */
.nh-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    font-family: var(--nh-body); font-size: .76rem; font-weight: 700;
    letter-spacing: .17em; text-transform: uppercase;
    padding: 19px 34px; border: 1px solid transparent;
    text-decoration: none; cursor: pointer;
    transition: background .45s var(--nh-ease), color .45s var(--nh-ease),
                border-color .45s var(--nh-ease), transform .45s var(--nh-ease);
}
.nh-btn svg { width: 17px; height: 17px; flex: none; }
.nh-btn--solid  { background: var(--nh-bordeaux); color: var(--nh-cream-light); }
.nh-btn--solid:hover  { background: var(--nh-bordeaux-dark); transform: translateY(-2px); }
.nh-btn--ghost  { background: transparent; color: var(--nh-bordeaux); border-color: rgba(85,38,44,.32); }
.nh-btn--ghost:hover   { border-color: var(--nh-bordeaux); background: rgba(85,38,44,.05); }
.nh-btn--gold   { background: var(--nh-or); color: var(--nh-bordeaux-deep); }
.nh-btn--gold:hover    { background: var(--nh-or-pale); transform: translateY(-2px); }
.nh-btn--onDark { background: transparent; color: var(--nh-cream); border-color: rgba(230,220,197,.34); }
.nh-btn--onDark:hover  { border-color: var(--nh-or); color: var(--nh-or-pale); }

/* ---------- révélation au défilement ---------- */
.nh-rise { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--nh-ease), transform .9s var(--nh-ease); }
.nh-rise.is-in { opacity: 1; transform: none; }
.nh-rise[data-d="1"] { transition-delay: .09s; }
.nh-rise[data-d="2"] { transition-delay: .18s; }
.nh-rise[data-d="3"] { transition-delay: .27s; }
.nh-rise[data-d="4"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
    .nh-rise { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   01 — HERO
   ========================================================================= */
.nh-hero {
    min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(96px, 12vh, 140px) 0 clamp(36px, 6vh, 76px);
    text-align: center;
    color: var(--nh-cream-light);
    isolation: isolate;
}
.nh-hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.nh-hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; animation: nhFade 24s infinite;
    will-change: opacity, transform;
}
.nh-hero-slide:nth-child(1) { background-image: url('images/rabat maroc.webp');            animation-delay: 0s;  }
.nh-hero-slide:nth-child(2) { background-image: url('images/sahara maroc tourisme.webp');  animation-delay: 8s;  }
.nh-hero-slide:nth-child(3) { background-image: url('images/terrasse riad maroc.webp');    animation-delay: 16s; }
@keyframes nhFade {
    0%   { opacity: 0; transform: scale(1.04); }
    8%   { opacity: 1; }
    33%  { opacity: 1; }
    41%  { opacity: 0; transform: scale(1.10); }
    100% { opacity: 0; }
}
.nh-hero-veil {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(42,15,19,.58) 0%, rgba(42,15,19,.30) 45%, rgba(42,15,19,.78) 100%),
        radial-gradient(ellipse 90% 70% at 50% 55%, rgba(42,15,19,.34) 0%, rgba(42,15,19,0) 70%);
}

.nh-hero-inner { position: relative; z-index: 2; max-width: var(--nh-max); margin: 0 auto; padding: 0 var(--nh-gutter); width: 100%; }
.nh-hero-eyebrow {
    font-family: var(--nh-body); font-size: .68rem; font-weight: 700;
    letter-spacing: .38em; text-transform: uppercase;
    color: var(--nh-or-pale); margin: 0 0 22px;
    display: flex; align-items: center; justify-content: center; gap: 14px;
}
.nh-hero-eyebrow::before,
.nh-hero-eyebrow::after { content: ""; width: 46px; height: 1px; background: var(--nh-or); }

.nh-hero-title {
    font-family: var(--nh-display); font-weight: 500;
    font-size: clamp(2.9rem, 8.2vw, 6.4rem);
    line-height: .98; letter-spacing: -.028em;
    margin: 0 auto; max-width: 16ch;
}
.nh-hero-title em { display: block; font-style: italic; font-weight: 400; color: var(--nh-cream); }

.nh-hero-desc {
    font-family: var(--nh-body); font-weight: 300;
    font-size: clamp(1rem, 1.4vw, 1.16rem); line-height: 1.68;
    color: rgba(242,237,224,.93); max-width: 52ch; margin: 30px auto 0;
}
.nh-hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 38px; }
.nh-hero-actions .nh-btn--solid { background: var(--nh-cream-light); color: var(--nh-bordeaux); }
.nh-hero-actions .nh-btn--solid:hover { background: #fff; }

/* bandeau de confiance : rythmé par des filets or */
.nh-hero-trust {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: clamp(16px, 3vw, 40px);
    margin-top: clamp(38px, 6vh, 66px);
    padding-top: 26px;
    max-width: 760px; margin-left: auto; margin-right: auto;
    border-top: 1px solid rgba(230,220,197,.2);
    font-family: var(--nh-body); font-size: .78rem; font-weight: 400;
    letter-spacing: .04em; color: rgba(230,220,197,.88);
}
.nh-hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.nh-hero-trust svg { width: 15px; height: 15px; color: var(--nh-or); flex: none; }

/* =========================================================================
   02 — CIRCUITS  (registre clair, éditorial)
   ========================================================================= */
.nh-circuits { padding: clamp(78px, 11vh, 148px) 0 clamp(64px, 9vh, 120px); background: var(--nh-paper); }
.nh-sec-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 5vw, 72px); align-items: end; }
.nh-sec-head .nh-lede { margin-top: 0; }

.nh-cgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); margin-top: clamp(44px, 6vh, 72px); }

.nh-card { position: relative; display: block; text-decoration: none; color: inherit; overflow: hidden; background: #fff; }
.nh-card-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.nh-card-media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 1.15s var(--nh-ease); will-change: transform;
}
.nh-card:hover .nh-card-media img { transform: scale(1.055); }
.nh-card-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(42,15,19,.06) 0%, rgba(42,15,19,.10) 44%, rgba(42,15,19,.86) 100%);
}
.nh-card-tag {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    font-family: var(--nh-body); font-size: .62rem; font-weight: 700;
    letter-spacing: .19em; text-transform: uppercase;
    padding: 8px 13px; background: rgba(251,248,241,.93); color: var(--nh-bordeaux);
}
.nh-card-tag--gold { background: var(--nh-or); color: var(--nh-bordeaux-deep); }
.nh-card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px; color: var(--nh-cream-light); }
.nh-card-country {
    font-family: var(--nh-body); font-size: .62rem; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase; color: var(--nh-or-pale);
    display: block; margin-bottom: 8px;
}
.nh-card-name { font-family: var(--nh-display); font-weight: 500; font-size: clamp(1.4rem, 2.1vw, 1.85rem); line-height: 1.1; margin: 0; }
.nh-card-meta {
    display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
    margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(230,220,197,.26);
    font-family: var(--nh-body); font-size: .78rem;
}
.nh-card-dates { color: rgba(230,220,197,.88); }
.nh-card-price { font-weight: 700; color: var(--nh-cream-light); white-space: nowrap; }
.nh-card-price small { font-weight: 400; font-size: .74em; color: rgba(230,220,197,.86); }

.nh-circuits-foot { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; margin-top: clamp(38px, 5vh, 60px); }

/* =========================================================================
   03 — OMRA & HAJJ  (registre sombre, contemplatif)
   ========================================================================= */
.nh-omra {
    background:
        linear-gradient(180deg, rgba(42,15,19,.90) 0%, rgba(61,27,32,.94) 100%),
        url('images/omra-hero.webp') center 30% / cover no-repeat;
    color: var(--nh-cream-light);
    padding: clamp(78px, 11vh, 150px) 0;
}
.nh-omra-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(32px, 6vw, 88px); align-items: center; }

.nh-omra-visual { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.nh-omra-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nh-omra-visual::after {
    content: ""; position: absolute; inset: 0;
    border: 1px solid rgba(201,169,110,.34); margin: 14px; pointer-events: none;
}

/* liste des départs, façon horaire de gare — sobre et lisible */
.nh-dep { margin: clamp(28px, 4vh, 44px) 0 0; padding: 0; list-style: none; }
.nh-dep li {
    display: grid; grid-template-columns: auto 1fr auto;
    align-items: baseline; gap: 18px;
    padding: 17px 0;
    border-top: 1px solid rgba(230,220,197,.16);
    font-family: var(--nh-body);
}
.nh-dep li:last-child { border-bottom: 1px solid rgba(230,220,197,.16); }
.nh-dep-date {
    font-family: var(--nh-display); font-size: 1.22rem; font-weight: 500;
    color: var(--nh-cream-light); white-space: nowrap;
}
.nh-dep-desc { font-size: .84rem; color: rgba(230,220,197,.84); line-height: 1.5; }
.nh-dep-desc b { color: var(--nh-or-pale); font-weight: 700; }
.nh-dep-price { font-size: .88rem; font-weight: 700; color: var(--nh-or); white-space: nowrap; }
.nh-dep li.is-star .nh-dep-date::after {
    content: "Vedette"; display: inline-block; margin-left: 10px;
    font-family: var(--nh-body); font-size: .56rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--nh-bordeaux-deep); background: var(--nh-or);
    padding: 4px 8px; vertical-align: middle;
}
.nh-omra-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* =========================================================================
   04 — LE MAROC SUR MESURE
   Parti pris : ne pas décorer, mais MONTRER la matière première du voyage.
   Cinq plaques verticales, décalées en quinconce comme une planche contact.
   Le visiteur se projette et comprend ce que « sur mesure » veut dire.
   ========================================================================= */
.nh-mesure { padding: clamp(84px, 12vh, 160px) 0; background: var(--nh-cream-light); }

.nh-mesure-head {
    display: grid; grid-template-columns: 1.05fr .95fr;
    gap: clamp(28px, 6vw, 90px); align-items: end;
}
.nh-mesure-head .nh-lede { margin-top: 0; }
.nh-mesure-intro { display: flex; flex-direction: column; gap: 18px; }
.nh-mesure-sign {
    font-family: var(--nh-display); font-style: italic;
    font-size: clamp(1rem, 1.3vw, 1.14rem); line-height: 1.6;
    color: var(--nh-bordeaux); margin: 0;
    padding-left: 20px; border-left: 2px solid var(--nh-or);
}

/* --- la planche --- */
.nh-mats {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: clamp(14px, 1.8vw, 26px);
    margin-top: clamp(50px, 7vh, 84px);
    align-items: start;
}
.nh-mat { position: relative; }
/* quinconce : le rythme éditorial vient du décalage vertical */
.nh-mat:nth-child(even) { margin-top: clamp(28px, 4vw, 62px); }

.nh-mat-media {
    position: relative; aspect-ratio: 3 / 4; overflow: hidden;
    background: var(--nh-cream-dark);
}
.nh-mat-media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 1.3s var(--nh-ease), filter 1s var(--nh-ease);
    filter: saturate(.94);
}
.nh-mat:hover .nh-mat-media img { transform: scale(1.07); filter: saturate(1.05); }
.nh-mat-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(42,15,19,0) 55%, rgba(42,15,19,.28) 100%);
}

.nh-mat-num {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    font-family: var(--nh-body); font-size: .6rem; font-weight: 700;
    letter-spacing: .2em; color: var(--nh-cream-light);
    padding: 6px 10px; background: rgba(42,15,19,.52);
    backdrop-filter: blur(3px);
}
.nh-mat-title {
    font-family: var(--nh-display); font-weight: 500;
    font-size: clamp(1.02rem, 1.35vw, 1.24rem); line-height: 1.2;
    color: var(--nh-bordeaux); margin: 18px 0 0;
    padding-bottom: 10px; position: relative;
}
.nh-mat-title::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 26px; height: 1px; background: var(--nh-or);
    transition: width .6s var(--nh-ease);
}
.nh-mat:hover .nh-mat-title::after { width: 100%; }
.nh-mat-desc {
    font-family: var(--nh-body); font-weight: 300; font-size: .85rem;
    line-height: 1.6; color: var(--nh-texte); margin: 10px 0 0;
}

/* --- pied de section --- */
.nh-mesure-foot {
    display: grid; grid-template-columns: 1fr auto;
    gap: clamp(24px, 4vw, 60px); align-items: center;
    margin-top: clamp(52px, 7vh, 88px);
    padding-top: clamp(30px, 4vh, 48px);
    border-top: 1px solid var(--nh-cream-dark);
}
.nh-mesure-claim {
    font-family: var(--nh-display); font-weight: 500;
    font-size: clamp(1.35rem, 2.5vw, 2.05rem); line-height: 1.22;
    color: var(--nh-bordeaux); margin: 0;
}
.nh-mesure-claim em { font-style: italic; font-weight: 400; color: var(--nh-or); }
.nh-mesure-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================================
   05 — TÉMOIGNAGES  (mise en page revue)
   ========================================================================= */
.nh-avis { padding: clamp(78px, 11vh, 150px) 0; background: var(--nh-paper); }
.nh-avis-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.nh-avis-head .nh-lede { text-align: center; margin-left: auto; margin-right: auto; }

.nh-avis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.6vw, 34px); margin-top: clamp(44px, 6vh, 70px); }
.nh-avis-card {
    position: relative; background: #fff; padding: clamp(28px, 3.4vw, 44px);
    border: 1px solid var(--nh-cream-dark);
    display: flex; flex-direction: column;
    transition: transform .6s var(--nh-ease), box-shadow .6s var(--nh-ease), border-color .6s var(--nh-ease);
}
.nh-avis-card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(42,15,19,.10); border-color: var(--nh-or); }
.nh-avis-card::before {
    content: "“"; position: absolute; top: -14px; left: clamp(24px, 3.2vw, 40px);
    font-family: var(--nh-display); font-size: 5.6rem; line-height: 1;
    color: var(--nh-or); opacity: .34;
}
.nh-avis-quote {
    font-family: var(--nh-display); font-style: italic; font-weight: 400;
    font-size: clamp(1.02rem, 1.35vw, 1.2rem); line-height: 1.66;
    color: #2E251C; margin: 22px 0 0; flex: 1;
}
.nh-avis-foot {
    display: flex; align-items: center; gap: 14px;
    margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--nh-cream-dark);
}
.nh-avis-init {
    width: 42px; height: 42px; flex: none; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--nh-bordeaux); color: var(--nh-cream);
    font-family: var(--nh-display); font-size: 1rem;
}
.nh-avis-name { font-family: var(--nh-body); font-weight: 700; font-size: .9rem; color: var(--nh-charbon); display: block; }
.nh-avis-origin { font-family: var(--nh-body); font-size: .76rem; color: var(--nh-sable); }

/* =========================================================================
   06 — CTA FINAL
   ========================================================================= */
.nh-cta { background: var(--nh-bordeaux); color: var(--nh-cream-light); padding: clamp(72px, 10vh, 132px) 0; text-align: center; }
.nh-cta-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.nh-cta .nh-h2 { color: var(--nh-cream-light); }
.nh-cta .nh-h2 em { color: var(--nh-or-pale); }
.nh-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.nh-cta-note {
    margin-top: 24px; font-family: var(--nh-body); font-size: .8rem;
    color: rgba(230,220,197,.82); display: inline-flex; align-items: center; gap: 8px;
}
.nh-cta-note svg { width: 14px; height: 14px; color: var(--nh-or); }

/* =========================================================================
   ADAPTATIF
   ========================================================================= */
@media (max-width: 1080px) {
    .nh-cgrid { grid-template-columns: repeat(2, 1fr); }
    .nh-sec-head { grid-template-columns: 1fr; align-items: start; }
    .nh-omra-grid { grid-template-columns: 1fr; }
    .nh-mesure-head { grid-template-columns: 1fr; align-items: start; }
    .nh-mats { grid-template-columns: repeat(3, 1fr); }
    .nh-mat:nth-child(even) { margin-top: 0; }
    .nh-mat:nth-child(3n+2) { margin-top: clamp(24px, 4vw, 48px); }
    .nh-mesure-foot { grid-template-columns: 1fr; }
    .nh-omra-visual { aspect-ratio: 16 / 10; max-height: 380px; }
}
@media (max-width: 700px) {
    .nh-cgrid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .nh-avis-grid { grid-template-columns: 1fr; }
    .nh-hero-title { max-width: none; }
    .nh-hero-actions .nh-btn,
    .nh-cta-actions .nh-btn,
    .nh-circuits-foot .nh-btn { width: 100%; }
    .nh-dep li { grid-template-columns: 1fr auto; }
    .nh-dep-desc { grid-column: 1 / -1; }
    .nh-mats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .nh-mat:nth-child(3n+2) { margin-top: 0; }
    .nh-mat:nth-child(even) { margin-top: 30px; }
    .nh-mesure-actions .nh-btn { width: 100%; }
}

/* =========================================================================
   AJUSTEMENTS MOBILE DU HERO
   Sur petit écran, le titre passait sur trois lignes et repoussait les
   boutons derrière la bulle WhatsApp, qui masquait le CTA principal.
   ========================================================================= */
@media (max-width: 560px) {
    .nh-hero { min-height: 92svh; padding-bottom: 28px; }
    .nh-hero-title { font-size: clamp(2.4rem, 11vw, 3.1rem); line-height: 1.02; }
    .nh-hero-eyebrow { font-size: .6rem; letter-spacing: .26em; margin-bottom: 16px; }
    .nh-hero-eyebrow::before { width: 26px; }
    .nh-hero-desc { font-size: .96rem; line-height: 1.6; margin-top: 20px; }
    .nh-hero-actions { margin-top: 24px; gap: 10px; }
    .nh-hero-actions .nh-btn { padding: 16px 22px; font-size: .7rem; letter-spacing: .13em; }
    /* le bandeau de confiance passe en colonne, compact */
    .nh-hero-trust {
        margin-top: 22px; padding-top: 16px; gap: 8px 18px;
        font-size: .72rem;
    }
}

/* La bulle WhatsApp ne doit jamais recouvrir un bouton du hero. */
@media (max-width: 560px) {
    .wa-popup { bottom: 84px; }
    .wa-popup-body .wa-bubble { font-size: .9rem; line-height: 1.5; }
    .wa-popup-header { padding-top: 14px; padding-bottom: 14px; }
}

/* =========================================================================
   BANDEAU OFFRE DE GROUPE (Égypte)
   Un seul rectangle : photo en fond, voile bordeaux dense côté texte pour
   garantir la lecture, informations resserrées en deux colonnes.
   ========================================================================= */
.nh-ved {
    position: relative; overflow: hidden;
    margin-top: clamp(40px, 5.5vh, 68px);
    isolation: isolate;
    border-top: 3px solid var(--nh-or);
}
.nh-ved-bg {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
    transition: transform 1.6s var(--nh-ease);
}
.nh-ved:hover .nh-ved-bg { transform: scale(1.035); }
.nh-ved-veil {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(42,15,19,.955) 0%, rgba(42,15,19,.93) 42%,
            rgba(55,22,27,.80) 66%, rgba(55,22,27,.58) 100%),
        linear-gradient(180deg, rgba(42,15,19,.30) 0%, rgba(42,15,19,.42) 100%);
}

.nh-ved-in {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr auto;
    gap: clamp(24px, 4vw, 56px); align-items: center;
    padding: clamp(28px, 3.4vw, 46px) clamp(24px, 3.4vw, 52px);
    color: var(--nh-cream-light);
}

/* ---- colonne gauche ---- */
.nh-ved-tag {
    display: inline-block;
    font-family: var(--nh-body); font-size: .58rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    background: var(--nh-or); color: var(--nh-bordeaux-deep);
    padding: 6px 11px; margin-bottom: 16px;
}
.nh-ved-title {
    font-family: var(--nh-display); font-weight: 500;
    font-size: clamp(1.5rem, 2.5vw, 2.15rem); line-height: 1.1;
    margin: 0; color: var(--nh-cream-light);
}
.nh-ved-title em { font-style: italic; font-weight: 400; color: var(--nh-or-pale); }

.nh-ved-route {
    font-family: var(--nh-body); font-size: .78rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--nh-or); margin: 14px 0 0;
}

.nh-ved-pts {
    list-style: none; display: flex; flex-wrap: wrap;
    gap: 7px 0; margin: 16px 0 0; padding: 0;
}
.nh-ved-pts li {
    font-family: var(--nh-body); font-size: .82rem; font-weight: 300;
    color: rgba(242,237,224,.95); padding: 0 14px;
    border-left: 1px solid rgba(201,169,110,.42);
}
.nh-ved-pts li:first-child { padding-left: 0; border-left: 0; }

.nh-ved-cible {
    font-family: var(--nh-body); font-size: .76rem; font-style: italic;
    color: rgba(230,220,197,.82); margin: 16px 0 0;
}

/* ---- colonne droite : prix + action ---- */
.nh-ved-right {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    padding-left: clamp(24px, 3vw, 44px);
    border-left: 1px solid rgba(201,169,110,.34);
}
.nh-ved-prix { margin: 0; font-family: var(--nh-body); }
.nh-ved-prix span {
    display: block; font-size: .62rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase; color: var(--nh-or);
}
.nh-ved-prix b {
    display: block; margin: 4px 0 6px;
    font-family: var(--nh-display); font-weight: 600;
    font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1;
    color: var(--nh-cream-light);
}
.nh-ved-prix b i { font-style: normal; font-size: .5em; letter-spacing: .04em; }
.nh-ved-prix small {
    display: block; font-size: .72rem; line-height: 1.5;
    color: rgba(230,220,197,.84);
}
.nh-ved-right .nh-btn { white-space: nowrap; }

@media (max-width: 900px) {
    .nh-ved-in { grid-template-columns: 1fr; gap: 26px; }
    .nh-ved-right {
        padding-left: 0; padding-top: 22px;
        border-left: 0; border-top: 1px solid rgba(201,169,110,.34);
        flex-direction: row; align-items: flex-end;
        justify-content: space-between; width: 100%; flex-wrap: wrap;
    }
    .nh-ved-veil {
        background:
            linear-gradient(180deg, rgba(42,15,19,.90) 0%, rgba(42,15,19,.94) 100%);
    }
}
@media (max-width: 560px) {
    /* Le filet de séparation se retrouvait en début de ligne au retour
       à la ligne : on passe à une puce dorée après chaque élément. */
    .nh-ved-pts { gap: 6px 0; }
    .nh-ved-pts li {
        padding: 0; border-left: 0; font-size: .8rem;
        display: inline-flex; align-items: center;
    }
    .nh-ved-pts li::after {
        content: "·"; color: var(--nh-or); margin: 0 9px; opacity: .8;
    }
    .nh-ved-pts li:last-child::after { content: none; }
    .nh-ved-right { flex-direction: column; align-items: stretch; }
    .nh-ved-right .nh-btn { width: 100%; }
}

/* =========================================================================
   05 — TÉMOIGNAGES  (mise en page revue)
   ========================================================================= */
.nh-avis { padding: clamp(78px, 11vh, 150px) 0; background: var(--nh-paper); }
.nh-avis-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.nh-avis-head .nh-lede { text-align: center; margin-left: auto; margin-right: auto; }

.nh-avis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.6vw, 34px); margin-top: clamp(44px, 6vh, 70px); }
.nh-avis-card {
    position: relative; background: #fff; padding: clamp(28px, 3.4vw, 44px);
    border: 1px solid var(--nh-cream-dark);
    display: flex; flex-direction: column;
    transition: transform .6s var(--nh-ease), box-shadow .6s var(--nh-ease), border-color .6s var(--nh-ease);
}
.nh-avis-card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(42,15,19,.10); border-color: var(--nh-or); }
.nh-avis-card::before {
    content: "“"; position: absolute; top: -14px; left: clamp(24px, 3.2vw, 40px);
    font-family: var(--nh-display); font-size: 5.6rem; line-height: 1;
    color: var(--nh-or); opacity: .34;
}
.nh-avis-quote {
    font-family: var(--nh-display); font-style: italic; font-weight: 400;
    font-size: clamp(1.02rem, 1.35vw, 1.2rem); line-height: 1.66;
    color: #2E251C; margin: 22px 0 0; flex: 1;
}
.nh-avis-foot {
    display: flex; align-items: center; gap: 14px;
    margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--nh-cream-dark);
}
.nh-avis-init {
    width: 42px; height: 42px; flex: none; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--nh-bordeaux); color: var(--nh-cream);
    font-family: var(--nh-display); font-size: 1rem;
}
.nh-avis-name { font-family: var(--nh-body); font-weight: 700; font-size: .9rem; color: var(--nh-charbon); display: block; }
.nh-avis-origin { font-family: var(--nh-body); font-size: .76rem; color: var(--nh-sable); }

/* =========================================================================
   06 — CTA FINAL
   ========================================================================= */
.nh-cta { background: var(--nh-bordeaux); color: var(--nh-cream-light); padding: clamp(72px, 10vh, 132px) 0; text-align: center; }
.nh-cta-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.nh-cta .nh-h2 { color: var(--nh-cream-light); }
.nh-cta .nh-h2 em { color: var(--nh-or-pale); }
.nh-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.nh-cta-note {
    margin-top: 24px; font-family: var(--nh-body); font-size: .8rem;
    color: rgba(230,220,197,.82); display: inline-flex; align-items: center; gap: 8px;
}
.nh-cta-note svg { width: 14px; height: 14px; color: var(--nh-or); }

/* =========================================================================
   ADAPTATIF
   ========================================================================= */
@media (max-width: 1080px) {
    .nh-cgrid { grid-template-columns: repeat(2, 1fr); }
    .nh-sec-head { grid-template-columns: 1fr; align-items: start; }
    .nh-omra-grid { grid-template-columns: 1fr; }
    .nh-mesure-head { grid-template-columns: 1fr; align-items: start; }
    .nh-mats { grid-template-columns: repeat(3, 1fr); }
    .nh-mat:nth-child(even) { margin-top: 0; }
    .nh-mat:nth-child(3n+2) { margin-top: clamp(24px, 4vw, 48px); }
    .nh-mesure-foot { grid-template-columns: 1fr; }
    .nh-omra-visual { aspect-ratio: 16 / 10; max-height: 380px; }
}
@media (max-width: 700px) {
    .nh-cgrid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .nh-avis-grid { grid-template-columns: 1fr; }
    .nh-hero-title { max-width: none; }
    .nh-hero-actions .nh-btn,
    .nh-cta-actions .nh-btn,
    .nh-circuits-foot .nh-btn { width: 100%; }
    .nh-dep li { grid-template-columns: 1fr auto; }
    .nh-dep-desc { grid-column: 1 / -1; }
    .nh-mats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .nh-mat:nth-child(3n+2) { margin-top: 0; }
    .nh-mat:nth-child(even) { margin-top: 30px; }
    .nh-mesure-actions .nh-btn { width: 100%; }
}

/* =========================================================================
   AJUSTEMENTS MOBILE DU HERO
   Sur petit écran, le titre passait sur trois lignes et repoussait les
   boutons derrière la bulle WhatsApp, qui masquait le CTA principal.
   ========================================================================= */
@media (max-width: 560px) {
    .nh-hero { min-height: 92svh; padding-bottom: 28px; }
    .nh-hero-title { font-size: clamp(2.4rem, 11vw, 3.1rem); line-height: 1.02; }
    .nh-hero-eyebrow { font-size: .6rem; letter-spacing: .26em; margin-bottom: 16px; }
    .nh-hero-eyebrow::before { width: 26px; }
    .nh-hero-desc { font-size: .96rem; line-height: 1.6; margin-top: 20px; }
    .nh-hero-actions { margin-top: 24px; gap: 10px; }
    .nh-hero-actions .nh-btn { padding: 16px 22px; font-size: .7rem; letter-spacing: .13em; }
    /* le bandeau de confiance passe en colonne, compact */
    .nh-hero-trust {
        margin-top: 22px; padding-top: 16px; gap: 8px 18px;
        font-size: .72rem;
    }
}

/* La bulle WhatsApp ne doit jamais recouvrir un bouton du hero. */
@media (max-width: 560px) {
    .wa-popup { bottom: 84px; }
    .wa-popup-body .wa-bubble { font-size: .9rem; line-height: 1.5; }
    .wa-popup-header { padding-top: 14px; padding-bottom: 14px; }
}

/* =========================================================================
   PAGES INTÉRIEURES — SOCLE COMMUN
   home.css sert désormais de système de design partagé (variables,
   typographie, boutons, révélations). Ce qui suit vaut pour toutes
   les pages intérieures refondues.
   ========================================================================= */

/* ---------- hero de page intérieure ---------- */
.nh-phero {
    position: relative; isolation: isolate;
    min-height: 62svh; display: flex; align-items: flex-end;
    padding: clamp(120px, 16vh, 180px) 0 clamp(44px, 7vh, 76px);
    color: var(--nh-cream-light); overflow: hidden;
}
.nh-phero-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.nh-phero-veil {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(42,15,19,.80) 0%, rgba(42,15,19,.52) 40%, rgba(42,15,19,.90) 100%),
        linear-gradient(90deg, rgba(42,15,19,.70) 0%, rgba(42,15,19,.10) 75%);
}
.nh-phero-in { position: relative; z-index: 2; max-width: var(--nh-max); margin: 0 auto; padding: 0 var(--nh-gutter); width: 100%; }
.nh-phero-eyebrow {
    font-family: var(--nh-body); font-size: .66rem; font-weight: 700;
    letter-spacing: .34em; text-transform: uppercase;
    color: var(--nh-or-pale); margin: 0 0 20px;
    display: flex; align-items: center; gap: 14px;
}
.nh-phero-eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--nh-or); }
.nh-phero-title {
    font-family: var(--nh-display); font-weight: 500;
    font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.02;
    letter-spacing: -.026em; margin: 0; max-width: 17ch;
}
.nh-phero-title em { font-style: italic; font-weight: 400; color: var(--nh-cream); }
.nh-phero-desc {
    font-family: var(--nh-body); font-weight: 300;
    font-size: clamp(.99rem, 1.3vw, 1.12rem); line-height: 1.7;
    color: rgba(242,237,224,.93); max-width: 56ch; margin: 26px 0 0;
}

/* =========================================================================
   SERVICES — LES TROIS MÉTIERS
   Bandeaux alternés : le regard change de côté à chaque métier, ce qui
   crée le rythme sans multiplier les effets.
   ========================================================================= */
.nh-metiers { padding: clamp(78px, 11vh, 140px) 0 clamp(40px, 6vh, 70px); background: var(--nh-paper); }

.nh-metier {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 76px); align-items: center;
    padding: clamp(38px, 6vh, 76px) 0;
    border-top: 1px solid var(--nh-cream-dark);
}
.nh-metier:first-of-type { border-top: 0; padding-top: 0; }
.nh-metier:nth-child(even) .nh-metier-media { order: 2; }

.nh-metier-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.nh-metier-media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 1.4s var(--nh-ease);
}
.nh-metier:hover .nh-metier-media img { transform: scale(1.05); }
.nh-metier-media::after {
    content: ""; position: absolute; inset: 0;
    border: 1px solid rgba(201,169,110,.42); margin: 14px; pointer-events: none;
}

.nh-metier-num {
    font-family: var(--nh-body); font-size: .66rem; font-weight: 700;
    letter-spacing: .3em; text-transform: uppercase; color: var(--nh-or);
    display: inline-flex; align-items: center; gap: 13px;
}
.nh-metier-num::after { content: ""; width: 48px; height: 1px; background: currentColor; opacity: .55; }
.nh-metier-title {
    font-family: var(--nh-display); font-weight: 500;
    font-size: clamp(1.65rem, 3vw, 2.5rem); line-height: 1.08;
    color: var(--nh-bordeaux); margin: 18px 0 0;
}
.nh-metier-title em { font-style: italic; font-weight: 400; color: var(--nh-bordeaux-dark); }
.nh-metier-text {
    font-family: var(--nh-body); font-weight: 300; font-size: .97rem;
    line-height: 1.72; color: var(--nh-texte); margin: 18px 0 0; max-width: 52ch;
}
.nh-metier-caps { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 0; }
.nh-metier-caps li {
    font-family: var(--nh-body); font-size: .88rem; color: var(--nh-texte);
    padding: 11px 0 11px 26px; border-top: 1px solid var(--nh-cream-dark);
    position: relative;
}
.nh-metier-caps li:last-child { border-bottom: 1px solid var(--nh-cream-dark); }
.nh-metier-caps li::before {
    content: ""; position: absolute; left: 2px; top: 50%;
    width: 10px; height: 1px; background: var(--nh-or);
}
.nh-metier-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================================
   RÉFÉRENCES INSTITUTIONNELLES
   ========================================================================= */
.nh-refs { padding: clamp(72px, 10vh, 130px) 0; background: var(--nh-bordeaux); color: var(--nh-cream-light); }
.nh-refs-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.nh-refs-head .nh-lede { text-align: center; margin-left: auto; margin-right: auto; }

.nh-logos {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: clamp(16px, 2.4vw, 34px); align-items: center;
    margin-top: clamp(40px, 5.5vh, 64px);
    padding: clamp(26px, 3.5vh, 40px) 0;
    border-top: 1px solid rgba(230,220,197,.18);
    border-bottom: 1px solid rgba(230,220,197,.18);
}
/* Trois de ces logos ont un fond blanc opaque : un filtre d'inversion les
   transformerait en aplats. On les pose donc tous sur un cartouche clair,
   ce qui les rend lisibles quel que soit leur fond d'origine. */
.nh-logos li {
    list-style: none; display: grid; place-items: center;
    background: var(--nh-cream-light);
    padding: 16px 18px; min-height: 92px;
    transition: transform .5s var(--nh-ease), box-shadow .5s var(--nh-ease);
}
.nh-logos li:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.nh-logos img {
    width: 100%; height: auto; max-height: 56px; object-fit: contain;
    filter: grayscale(1); opacity: .78;
    transition: filter .5s var(--nh-ease), opacity .5s var(--nh-ease);
}
.nh-logos li:hover img { filter: grayscale(0); opacity: 1; }

.nh-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 28px); margin-top: clamp(40px, 5.5vh, 62px); }
.nh-case { position: relative; overflow: hidden; }
.nh-case-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.nh-case-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.3s var(--nh-ease); }
.nh-case:hover .nh-case-media img { transform: scale(1.06); }
.nh-case-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(42,15,19,.10) 40%, rgba(42,15,19,.86) 100%);
}
.nh-case-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; z-index: 2; }
.nh-case-tag {
    font-family: var(--nh-body); font-size: .58rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase; color: var(--nh-or-pale);
    display: block; margin-bottom: 7px;
}
.nh-case-title { font-family: var(--nh-display); font-weight: 500; font-size: 1.16rem; margin: 0; color: var(--nh-cream-light); }
.nh-case-desc { font-family: var(--nh-body); font-weight: 300; font-size: .8rem; line-height: 1.5; color: rgba(230,220,197,.86); margin: 6px 0 0; }

/* =========================================================================
   ÉCOSYSTÈME
   ========================================================================= */
.nh-eco { padding: clamp(72px, 10vh, 130px) 0; background: var(--nh-cream-light); }
.nh-eco-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.nh-eco-head .nh-lede { text-align: center; margin-left: auto; margin-right: auto; }
.nh-eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.6vw, 32px); margin-top: clamp(40px, 5.5vh, 62px); }
.nh-eco-item {
    background: var(--nh-paper); padding: clamp(26px, 3vw, 38px);
    border: 1px solid var(--nh-cream-dark); border-top: 3px solid var(--nh-or);
    display: flex; flex-direction: column;
    transition: transform .6s var(--nh-ease), box-shadow .6s var(--nh-ease);
}
.nh-eco-item:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(42,15,19,.10); }
.nh-eco-name { font-family: var(--nh-display); font-weight: 600; font-size: 1.28rem; color: var(--nh-bordeaux); margin: 0; }
.nh-eco-role {
    font-family: var(--nh-body); font-size: .68rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--nh-or);
    margin: 8px 0 0;
}
.nh-eco-text { font-family: var(--nh-body); font-weight: 300; font-size: .89rem; line-height: 1.65; color: var(--nh-texte); margin: 16px 0 0; flex: 1; }
.nh-eco-link {
    font-family: var(--nh-body); font-size: .74rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--nh-bordeaux);
    text-decoration: none; margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--nh-or); padding-bottom: 4px; align-self: flex-start;
    transition: gap .4s var(--nh-ease);
}
.nh-eco-link:hover { gap: 14px; }

/* ---------- adaptatif pages intérieures ---------- */
@media (max-width: 1000px) {
    .nh-metier { grid-template-columns: 1fr; gap: 26px; }
    .nh-metier:nth-child(even) .nh-metier-media { order: 0; }
    .nh-logos { grid-template-columns: repeat(3, 1fr); gap: 26px; }
    .nh-cases { grid-template-columns: repeat(2, 1fr); }
    .nh-eco-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 620px) {
    .nh-phero { min-height: 54svh; }
    .nh-cases { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .nh-logos { grid-template-columns: repeat(2, 1fr); }
    .nh-metier-cta .nh-btn { width: 100%; }
}

/* =========================================================================
   CIRCUITS — SOMMAIRE COLLANT
   Remplace les boutons de filtre : au lieu de masquer des cartes, il donne
   la vue d'ensemble de l'offre et suit la lecture (scroll-spy).
   ========================================================================= */
.nh-somm {
    position: sticky; top: 0; z-index: 40;
    background: rgba(42, 15, 19, .96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201,169,110,.28);
}
.nh-somm-in {
    max-width: var(--nh-max); margin: 0 auto; padding: 0 var(--nh-gutter);
    display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none;
}
.nh-somm-in::-webkit-scrollbar { display: none; }
.nh-somm a {
    flex: none; display: flex; flex-direction: column; gap: 3px;
    padding: 16px 20px; text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color .4s var(--nh-ease), background .4s var(--nh-ease);
}
.nh-somm a:hover { background: rgba(201,169,110,.10); }
.nh-somm a.is-here { border-bottom-color: var(--nh-or); background: rgba(201,169,110,.08); }
.nh-somm-nom {
    font-family: var(--nh-body); font-size: .78rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; color: var(--nh-cream-light);
    white-space: nowrap;
}
.nh-somm a.is-here .nh-somm-nom { color: var(--nh-or-pale); }
.nh-somm-prix {
    font-family: var(--nh-body); font-size: .68rem;
    color: rgba(230,220,197,.82); white-space: nowrap;
}

/* =========================================================================
   CIRCUITS — FICHE DÉTAILLÉE
   ========================================================================= */
.nh-fiches { background: var(--nh-paper); padding: clamp(56px, 8vh, 96px) 0 clamp(30px, 5vh, 56px); }

.nh-fiche {
    display: grid; grid-template-columns: .92fr 1.08fr;
    gap: clamp(28px, 4.5vw, 68px);
    padding: clamp(38px, 6vh, 72px) 0;
    border-top: 1px solid var(--nh-cream-dark);
    scroll-margin-top: 130px;
}
.nh-fiche:first-of-type { border-top: 0; padding-top: 0; }
.nh-fiche:nth-of-type(even) .nh-fiche-media { order: 2; }

/* Visuel + carte prix. Sur grand écran il devient collant : l'image et le
   tarif restent sous les yeux pendant la lecture du programme. */
.nh-fiche-media { position: relative; align-self: start; }
@media (min-width: 1001px) {
    .nh-fiche-media { position: sticky; top: 132px; }
}
.nh-fiche-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.nh-fiche-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 1.4s var(--nh-ease);
}
.nh-fiche:hover .nh-fiche-photo img { transform: scale(1.05); }
.nh-fiche-photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(42,15,19,0) 58%, rgba(42,15,19,.5) 100%);
}
.nh-fiche-prix {
    position: absolute; left: 0; bottom: -1px; z-index: 2;
    background: var(--nh-bordeaux); color: var(--nh-cream-light);
    padding: 16px 22px; border-top: 3px solid var(--nh-or);
}
.nh-fiche-prix span {
    display: block; font-family: var(--nh-body); font-size: .58rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase; color: var(--nh-or);
}
.nh-fiche-prix b {
    font-family: var(--nh-display); font-weight: 600; font-size: 1.75rem;
    display: block; line-height: 1.15;
}
.nh-fiche-prix small { font-size: .68rem; color: rgba(230,220,197,.86); }

/* corps de la fiche */
.nh-fiche-pays {
    font-family: var(--nh-body); font-size: .64rem; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase; color: var(--nh-or);
    display: inline-flex; align-items: center; gap: 12px;
}
.nh-fiche-pays::after { content: ""; width: 40px; height: 1px; background: currentColor; opacity: .5; }
.nh-fiche-nom {
    font-family: var(--nh-display); font-weight: 500;
    font-size: clamp(1.7rem, 3.1vw, 2.6rem); line-height: 1.06;
    color: var(--nh-bordeaux); margin: 14px 0 0;
}
.nh-fiche-duree {
    font-family: var(--nh-body); font-size: .82rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: var(--nh-sable);
    margin: 10px 0 0;
}
.nh-fiche-accroche {
    font-family: var(--nh-body); font-weight: 300; font-size: 1rem;
    line-height: 1.7; color: var(--nh-texte); margin: 16px 0 0; max-width: 54ch;
}

/* bloc réutilisable : titre de sous-partie */
.nh-sub {
    font-family: var(--nh-body); font-size: .64rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase; color: var(--nh-bordeaux);
    margin: 28px 0 12px; padding-bottom: 8px;
    border-bottom: 1px solid var(--nh-cream-dark);
}

/* programme jour par jour */
.nh-jours { list-style: none; margin: 0; padding: 0; }
.nh-jours li {
    display: grid; grid-template-columns: 74px 1fr; gap: 16px;
    padding: 9px 0; align-items: baseline;
}
.nh-jour-n {
    font-family: var(--nh-display); font-size: .95rem; font-weight: 600;
    color: var(--nh-or); white-space: nowrap;
}
.nh-jour-t { font-family: var(--nh-body); font-weight: 300; font-size: .88rem; line-height: 1.6; color: var(--nh-texte); }

/* inclus */
.nh-inclus { display: flex; flex-wrap: wrap; gap: 7px; }
.nh-inclus span {
    font-family: var(--nh-body); font-size: .76rem; color: var(--nh-bordeaux);
    padding: 8px 13px; background: var(--nh-cream-light);
    border: 1px solid var(--nh-cream-dark);
}

/* départs */
.nh-departs { list-style: none; margin: 0; padding: 0; }
.nh-departs li {
    display: grid; grid-template-columns: 1fr auto auto; gap: 14px;
    align-items: baseline; padding: 11px 0;
    border-bottom: 1px solid var(--nh-cream-dark);
    font-family: var(--nh-body);
}
.nh-dep-quand { font-size: .92rem; font-weight: 700; color: var(--nh-bordeaux); }
.nh-dep-retour { font-size: .78rem; color: var(--nh-texte); }
.nh-dep-tarif { font-size: .86rem; font-weight: 700; color: var(--nh-bordeaux); white-space: nowrap; }

.nh-fiche-note {
    font-family: var(--nh-body); font-size: .78rem; font-style: italic;
    line-height: 1.6; color: var(--nh-texte); margin: 16px 0 0;
    padding-left: 14px; border-left: 2px solid var(--nh-or);
}
.nh-fiche-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }

/* mention pour les circuits sans programme publié */
.nh-fiche-surdemande {
    font-family: var(--nh-body); font-weight: 300; font-size: .88rem;
    line-height: 1.65; color: var(--nh-texte); margin: 0;
    padding: 16px 18px; background: var(--nh-cream-light);
    border-left: 2px solid var(--nh-or);
}

/* =========================================================================
   CIRCUITS — INFORMATIONS PRATIQUES
   ========================================================================= */
.nh-pratique { background: var(--nh-cream-light); padding: clamp(72px, 10vh, 130px) 0; }
.nh-pratique-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.nh-pratique-head .nh-lede { text-align: center; margin-left: auto; margin-right: auto; }
.nh-qa { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 30px); margin-top: clamp(40px, 5.5vh, 62px); }
.nh-qa-item {
    background: var(--nh-paper); padding: clamp(22px, 2.6vw, 32px);
    border: 1px solid var(--nh-cream-dark); border-left: 3px solid var(--nh-or);
}
.nh-qa-q { font-family: var(--nh-display); font-weight: 500; font-size: 1.1rem; color: var(--nh-bordeaux); margin: 0; }
.nh-qa-a { font-family: var(--nh-body); font-weight: 300; font-size: .89rem; line-height: 1.68; color: var(--nh-texte); margin: 12px 0 0; }

@media (max-width: 1000px) {
    .nh-fiche { grid-template-columns: 1fr; gap: 26px; }
    .nh-fiche:nth-of-type(even) .nh-fiche-media { order: 0; }
    .nh-fiche-photo { aspect-ratio: 16 / 10; }
    .nh-qa { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .nh-somm a { padding: 13px 15px; }
    .nh-jours li { grid-template-columns: 58px 1fr; gap: 12px; }
    .nh-departs li { grid-template-columns: 1fr auto; }
    .nh-dep-retour { grid-column: 1 / -1; }
    .nh-fiche-cta .nh-btn { width: 100%; }
}

/* =========================================================================
   OMRA & HAJJ
   Parti pris : la cliente marocaine décide sur la date et le prix. Tout le
   reste (hôtels, numéros de vol, formules détaillées) se dit sur WhatsApp.
   La page ne cherche donc pas à tout expliquer, mais à faire écrire.
   ========================================================================= */

/* ---------- ancre de prix dans le hero ---------- */
.nh-phero-prix {
    display: inline-flex; align-items: baseline; gap: 12px;
    margin: 28px 0 0; padding: 14px 22px;
    background: rgba(201,169,110,.14);
    border: 1px solid rgba(201,169,110,.44);
}
.nh-phero-prix span {
    font-family: var(--nh-body); font-size: .68rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase; color: var(--nh-or-pale);
}
.nh-phero-prix b {
    font-family: var(--nh-display); font-weight: 600;
    font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--nh-cream-light);
}
.nh-phero-prix small { font-family: var(--nh-body); font-size: .8rem; color: rgba(230,220,197,.86); }
.nh-phero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- les départs : une carte = une décision ---------- */
.nh-om-departs { background: var(--nh-paper); padding: clamp(72px, 10vh, 130px) 0; }
.nh-om-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.nh-om-head .nh-lede { text-align: center; margin-left: auto; margin-right: auto; }

.nh-om-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.6vw, 30px); margin-top: clamp(44px, 6vh, 68px); }

.nh-om-card {
    display: flex; flex-direction: column;
    background: var(--nh-cream-light);
    border: 1px solid var(--nh-cream-dark); border-top: 3px solid var(--nh-or);
    padding: clamp(26px, 3vw, 38px);
    transition: transform .55s var(--nh-ease), box-shadow .55s var(--nh-ease);
}
.nh-om-card:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(42,15,19,.12); }
.nh-om-card--star { background: var(--nh-bordeaux); border-color: var(--nh-bordeaux); }

.nh-om-tag {
    align-self: flex-start;
    font-family: var(--nh-body); font-size: .58rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    background: var(--nh-or); color: var(--nh-bordeaux-deep);
    padding: 6px 11px; margin-bottom: 16px;
}
.nh-om-date {
    font-family: var(--nh-display); font-weight: 500;
    font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.06;
    color: var(--nh-bordeaux); margin: 0;
}
.nh-om-card--star .nh-om-date { color: var(--nh-cream-light); }
.nh-om-meta {
    font-family: var(--nh-body); font-size: .88rem; line-height: 1.6;
    color: var(--nh-texte); margin: 12px 0 0;
}
.nh-om-card--star .nh-om-meta { color: rgba(230,220,197,.9); }

.nh-om-prix {
    margin: auto 0 0; padding-top: 22px;
    border-top: 1px solid var(--nh-cream-dark);
    display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.nh-om-card--star .nh-om-prix { border-top-color: rgba(201,169,110,.4); }
.nh-om-prix span {
    font-family: var(--nh-body); font-size: .62rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--nh-sable);
}
.nh-om-card--star .nh-om-prix span { color: var(--nh-or); }
.nh-om-prix b {
    font-family: var(--nh-display); font-weight: 600;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--nh-bordeaux);
}
.nh-om-card--star .nh-om-prix b { color: var(--nh-cream-light); }
.nh-om-card .nh-btn { margin-top: 20px; width: 100%; }

/* ---------- quatre niveaux, pas dix lignes ---------- */
.nh-niveaux { background: var(--nh-cream-light); padding: clamp(72px, 10vh, 130px) 0; }
.nh-niv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px); margin-top: clamp(40px, 5.5vh, 62px); }
.nh-niv {
    background: var(--nh-paper); border: 1px solid var(--nh-cream-dark);
    padding: clamp(22px, 2.4vw, 30px); text-align: center;
    display: flex; flex-direction: column; align-items: center;
    transition: border-color .5s var(--nh-ease), transform .5s var(--nh-ease);
}
.nh-niv:hover { border-color: var(--nh-or); transform: translateY(-3px); }
.nh-niv-nom { font-family: var(--nh-display); font-weight: 500; font-size: 1.24rem; color: var(--nh-bordeaux); margin: 0; }
.nh-niv-desc { font-family: var(--nh-body); font-weight: 300; font-size: .82rem; line-height: 1.55; color: var(--nh-texte); margin: 10px 0 0; flex: 1; }
.nh-niv-prix { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--nh-cream-dark); width: 100%; }
.nh-niv-prix span { display: block; font-family: var(--nh-body); font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--nh-sable); }
.nh-niv-prix b { font-family: var(--nh-display); font-weight: 600; font-size: 1.5rem; color: var(--nh-bordeaux); }
.nh-niv-note { font-family: var(--nh-body); font-size: .82rem; font-style: italic; color: var(--nh-texte); text-align: center; margin: 26px auto 0; max-width: 62ch; }

/* ---------- ce qui est compris : six repères, pas une liste ---------- */
.nh-compris { background: var(--nh-bordeaux); color: var(--nh-cream-light); padding: clamp(60px, 8vh, 100px) 0; }
.nh-compris-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 2vw, 28px); }
.nh-compris-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.nh-compris-item svg { width: 28px; height: 28px; color: var(--nh-or); }
.nh-compris-item span { font-family: var(--nh-body); font-size: .82rem; line-height: 1.4; color: rgba(242,237,224,.93); }

/* ---------- Hajj ---------- */
.nh-hajj {
    position: relative; isolation: isolate; overflow: hidden;
    color: var(--nh-cream-light);
    border-top: 3px solid var(--nh-or);
}
.nh-hajj-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.nh-hajj-veil {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(42,15,19,.96) 0%, rgba(42,15,19,.92) 48%, rgba(55,22,27,.72) 100%);
}
.nh-hajj-in {
    position: relative; z-index: 2;
    max-width: var(--nh-max); margin: 0 auto; padding: clamp(56px, 8vh, 96px) var(--nh-gutter);
    display: grid; grid-template-columns: 1.1fr auto; gap: clamp(28px, 5vw, 70px); align-items: center;
}
.nh-hajj-pts { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 0; margin: 20px 0 0; padding: 0; }
.nh-hajj-pts li {
    font-family: var(--nh-body); font-size: .84rem; color: rgba(242,237,224,.93);
    padding: 0 14px; border-left: 1px solid rgba(201,169,110,.45);
}
.nh-hajj-pts li:first-child { padding-left: 0; border-left: 0; }
.nh-hajj-right {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    padding-left: clamp(24px, 3vw, 44px); border-left: 1px solid rgba(201,169,110,.36);
}
.nh-hajj-prix span { display: block; font-family: var(--nh-body); font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--nh-or); }
.nh-hajj-prix b { display: block; font-family: var(--nh-display); font-weight: 600; font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1.1; margin: 4px 0 6px; }
.nh-hajj-prix small { display: block; font-family: var(--nh-body); font-size: .74rem; color: rgba(230,220,197,.86); }

@media (max-width: 1000px) {
    .nh-om-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
    .nh-niv-grid { grid-template-columns: repeat(2, 1fr); }
    .nh-compris-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
    .nh-hajj-in { grid-template-columns: 1fr; }
    .nh-hajj-right { padding-left: 0; padding-top: 22px; border-left: 0; border-top: 1px solid rgba(201,169,110,.36); width: 100%; }
}
@media (max-width: 620px) {
    .nh-niv-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .nh-compris-grid { grid-template-columns: repeat(2, 1fr); }
    .nh-hajj-pts li { padding: 0; border-left: 0; width: 100%; }
    .nh-hajj-right .nh-btn, .nh-phero-actions .nh-btn { width: 100%; }
}

/* =========================================================================
   VERSION ARABE — ADAPTATION RTL DU SYSTÈME .nh-
   Playfair Display ne couvre pas l'arabe : les titres passent à Amiri,
   le texte courant à Noto Sans Arabic. Tout ce qui est directionnel
   (filets, bordures, dégradés, positions) est retourné.
   ========================================================================= */
html[dir="rtl"] {
    --nh-display: 'Amiri', 'Playfair Display', Georgia, serif;
    --nh-body: 'Noto Sans Arabic', 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

/* L'italique n'existe pas en typographie arabe : on marque l'accent
   par la couleur et la graisse plutôt que par l'inclinaison. */
html[dir="rtl"] .nh-h2 em,
html[dir="rtl"] .nh-hero-title em,
html[dir="rtl"] .nh-phero-title em,
html[dir="rtl"] .nh-ved-title em,
html[dir="rtl"] .nh-metier-title em,
html[dir="rtl"] .nh-mesure-claim em,
html[dir="rtl"] .nh-avis-quote,
html[dir="rtl"] .nh-mesure-sign,
html[dir="rtl"] .nh-niv-note,
html[dir="rtl"] .nh-fiche-note,
html[dir="rtl"] .nh-ved-cible {
    font-style: normal;
}
html[dir="rtl"] .nh-h2 em,
html[dir="rtl"] .nh-phero-title em { font-weight: 700; }

/* Interlignage : l'arabe a besoin de plus d'air */
html[dir="rtl"] .nh-h2,
html[dir="rtl"] .nh-phero-title,
html[dir="rtl"] .nh-hero-title { line-height: 1.28; letter-spacing: 0; }
html[dir="rtl"] .nh-om-date,
html[dir="rtl"] .nh-fiche-nom,
html[dir="rtl"] .nh-metier-title,
html[dir="rtl"] .nh-ved-title { line-height: 1.35; }

/* Les interlettrages larges nuisent à la lecture de l'arabe */
html[dir="rtl"] .nh-num,
html[dir="rtl"] .nh-phero-eyebrow,
html[dir="rtl"] .nh-hero-eyebrow,
html[dir="rtl"] .nh-btn,
html[dir="rtl"] .nh-om-tag,
html[dir="rtl"] .nh-ved-tag,
html[dir="rtl"] .nh-sub,
html[dir="rtl"] .nh-om-prix span,
html[dir="rtl"] .nh-niv-prix span,
html[dir="rtl"] .nh-hajj-prix span,
html[dir="rtl"] .nh-phero-prix span { letter-spacing: .06em; }

/* Bordures et retraits directionnels */
html[dir="rtl"] .nh-mesure-sign,
html[dir="rtl"] .nh-fiche-note,
html[dir="rtl"] .nh-fiche-surdemande {
    border-left: 0; border-right: 2px solid var(--nh-or);
    padding-left: 0; padding-right: 20px;
}
html[dir="rtl"] .nh-qa-item { border-left: 1px solid var(--nh-cream-dark); border-right: 3px solid var(--nh-or); }
html[dir="rtl"] .nh-ved-right,
html[dir="rtl"] .nh-hajj-right {
    border-left: 0; border-right: 1px solid rgba(201,169,110,.36);
    padding-left: 0; padding-right: clamp(24px, 3vw, 44px);
    align-items: flex-start;
}
html[dir="rtl"] .nh-ved-pts li,
html[dir="rtl"] .nh-hajj-pts li { border-left: 0; border-right: 1px solid rgba(201,169,110,.45); }
html[dir="rtl"] .nh-ved-pts li:first-child,
html[dir="rtl"] .nh-hajj-pts li:first-child { padding-right: 0; border-right: 0; }
html[dir="rtl"] .nh-metier-caps li { padding-left: 0; padding-right: 26px; }
html[dir="rtl"] .nh-metier-caps li::before { left: auto; right: 2px; }
html[dir="rtl"] .nh-mat-title::after { left: auto; right: 0; }
html[dir="rtl"] .nh-card-tag { left: auto; right: 16px; }
html[dir="rtl"] .nh-fiche-prix { left: auto; right: 0; }
html[dir="rtl"] .nh-avis-card::before { left: auto; right: clamp(24px, 3.2vw, 40px); }

/* Dégradés horizontaux retournés */
html[dir="rtl"] .nh-phero-veil {
    background:
        linear-gradient(180deg, rgba(42,15,19,.80) 0%, rgba(42,15,19,.52) 40%, rgba(42,15,19,.90) 100%),
        linear-gradient(270deg, rgba(42,15,19,.70) 0%, rgba(42,15,19,.10) 75%);
}
html[dir="rtl"] .nh-ved-veil {
    background:
        linear-gradient(270deg,
            rgba(42,15,19,.955) 0%, rgba(42,15,19,.93) 42%,
            rgba(55,22,27,.80) 66%, rgba(55,22,27,.58) 100%),
        linear-gradient(180deg, rgba(42,15,19,.30) 0%, rgba(42,15,19,.42) 100%);
}
html[dir="rtl"] .nh-hajj-veil {
    background: linear-gradient(270deg, rgba(42,15,19,.96) 0%, rgba(42,15,19,.92) 48%, rgba(55,22,27,.72) 100%);
}
/* Le hero Omra : la Kaaba doit rester du côté opposé au texte */
html[dir="rtl"] .nh-phero-bg { transform: scaleX(-1); }

@media (max-width: 1000px) {
    html[dir="rtl"] .nh-ved-right,
    html[dir="rtl"] .nh-hajj-right {
        border-right: 0; border-top: 1px solid rgba(201,169,110,.36); padding-right: 0;
    }
}
@media (max-width: 620px) {
    html[dir="rtl"] .nh-hajj-pts li { border-right: 0; padding-right: 0; }
}

/* Les nombres à séparateur de milliers étaient scindés puis inversés par
   l'algorithme bidirectionnel (« 900 13 » au lieu de « 13 900 »).
   On les isole pour qu'ils restent une séquence de gauche à droite. */
html[dir="rtl"] .nh-om-prix b,
html[dir="rtl"] .nh-niv-prix b,
html[dir="rtl"] .nh-hajj-prix b,
html[dir="rtl"] .nh-phero-prix b,
html[dir="rtl"] .nh-fiche-prix b,
html[dir="rtl"] .nh-ved-prix b,
html[dir="rtl"] .nh-dep-tarif,
html[dir="rtl"] .nh-somm-prix,
html[dir="rtl"] .nh-card-price {
    unicode-bidi: isolate;
}

/* Numéros de téléphone en RTL
   « +212 6 10 66 16 67 » s'affichait « 1607   61 62 1626+ » : l'algorithme
   bidirectionnel traite chaque groupe de chiffres séparément et rejette le
   « + » en fin de ligne. On force un sens de lecture isolé, de gauche à droite. */
html[dir="rtl"] a[href^="tel:"],
html[dir="rtl"] .footer-contact-line a[href^="tel:"],
html[dir="rtl"] .nh-cta-actions a[href^="tel:"] {
    direction: ltr;
    unicode-bidi: isolate;
}

/* =========================================================================
   NOTRE HISTOIRE
   Page courte et intime : le portrait porte la page, le texte se fait rare.
   La confiance vient de détails vrais, pas d'adjectifs.
   ========================================================================= */
.nh-hist-hero {
    background: var(--nh-paper);
    padding: clamp(120px, 15vh, 190px) 0 clamp(60px, 8vh, 100px);
}
.nh-hist-grid {
    display: grid; grid-template-columns: 1.02fr .98fr;
    gap: clamp(32px, 6vw, 90px); align-items: center;
}
.nh-hist-portrait { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.nh-hist-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nh-hist-portrait::after {
    content: ""; position: absolute; inset: 0;
    border: 1px solid rgba(201,169,110,.5); margin: 16px; pointer-events: none;
}
.nh-hist-nom {
    position: absolute; left: 0; bottom: 0; z-index: 2;
    background: var(--nh-bordeaux); color: var(--nh-cream-light);
    padding: 16px 22px; border-top: 3px solid var(--nh-or);
}
.nh-hist-nom b { display: block; font-family: var(--nh-display); font-weight: 600; font-size: 1.2rem; }
.nh-hist-nom span {
    display: block; font-family: var(--nh-body); font-size: .68rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase; color: var(--nh-or); margin-top: 4px;
}
.nh-hist-h1 {
    font-family: var(--nh-display); font-weight: 500;
    font-size: clamp(2.2rem, 5vw, 3.9rem); line-height: 1.05;
    letter-spacing: -.024em; color: var(--nh-bordeaux); margin: 20px 0 0;
}
.nh-hist-h1 em { font-style: italic; font-weight: 400; color: var(--nh-bordeaux-dark); }

/* --- le récit en trois temps --- */
.nh-recit { list-style: none; margin: clamp(28px, 4vh, 42px) 0 0; padding: 0; }
.nh-recit li {
    display: grid; grid-template-columns: 92px 1fr; gap: 22px;
    padding: 20px 0; border-top: 1px solid var(--nh-cream-dark);
}
.nh-recit li:last-child { border-bottom: 1px solid var(--nh-cream-dark); }
.nh-recit-quand {
    font-family: var(--nh-body); font-size: .68rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--nh-or);
    padding-top: 4px;
}
.nh-recit-quoi {
    font-family: var(--nh-body); font-weight: 300; font-size: .95rem;
    line-height: 1.72; color: var(--nh-texte); margin: 0;
}
.nh-recit-quoi b { font-weight: 700; color: var(--nh-bordeaux); }

/* --- les repères : quatre faits, aucun adjectif --- */
.nh-reperes { background: var(--nh-bordeaux); color: var(--nh-cream-light); padding: clamp(46px, 6vh, 72px) 0; }
.nh-reperes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 44px); }
.nh-repere { text-align: center; }
.nh-repere b {
    display: block; font-family: var(--nh-display); font-weight: 500;
    font-size: clamp(1.15rem, 1.9vw, 1.5rem); line-height: 1.2; color: var(--nh-cream-light);
}
.nh-repere span {
    display: block; margin-top: 8px;
    font-family: var(--nh-body); font-size: .7rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--nh-or);
}

/* --- ce qui ne change pas --- */
.nh-principes { background: var(--nh-cream-light); padding: clamp(64px, 9vh, 110px) 0; }
.nh-principes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: clamp(36px, 5vh, 54px); }
.nh-principe { padding-top: 22px; border-top: 2px solid var(--nh-or); }
.nh-principe h3 { font-family: var(--nh-display); font-weight: 500; font-size: 1.2rem; color: var(--nh-bordeaux); margin: 0; }
.nh-principe p { font-family: var(--nh-body); font-weight: 300; font-size: .9rem; line-height: 1.68; color: var(--nh-texte); margin: 10px 0 0; }

@media (max-width: 1000px) {
    .nh-hist-grid { grid-template-columns: 1fr; gap: 30px; }
    .nh-hist-portrait { max-width: 460px; }
    .nh-reperes-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .nh-principes-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 620px) {
    .nh-recit li { grid-template-columns: 1fr; gap: 8px; }
    .nh-reperes-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* --- La citation : le seul endroit où quelqu'un parle à la première personne --- */
.nh-citation {
    background: var(--nh-paper);
    padding: clamp(64px, 9vh, 110px) 0;
}
.nh-citation-in {
    max-width: 900px; margin: 0 auto;
    text-align: center; position: relative;
}
.nh-citation-in::before {
    content: "“"; display: block;
    font-family: var(--nh-display); font-size: 5rem; line-height: .6;
    color: var(--nh-or); opacity: .5; margin-bottom: 18px;
}
.nh-citation blockquote {
    margin: 0; font-family: var(--nh-display); font-style: italic; font-weight: 400;
    font-size: clamp(1.3rem, 2.6vw, 2.05rem); line-height: 1.48;
    color: var(--nh-bordeaux); letter-spacing: -.008em;
}
.nh-citation figcaption {
    margin-top: 28px; display: inline-flex; align-items: center; gap: 14px;
}
.nh-citation figcaption::before {
    content: ""; width: 40px; height: 1px; background: var(--nh-or);
}
.nh-citation-qui {
    font-family: var(--nh-body); font-size: .74rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--nh-sable);
}

/* =========================================================================
   PARTENARIATS — PAGE RÉCEPTIF (B2B)
   Cible : agences et tour-opérateurs étrangers qui envoient des groupes
   au Maroc. Le discours n'est pas « rejoignez-nous » mais « voici ce que
   nous prenons en charge, et comment ».
   ========================================================================= */

/* --- ce que nous prenons en charge --- */
.nh-prise { background: var(--nh-paper); padding: clamp(72px, 10vh, 130px) 0; }
.nh-prise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.6vw, 32px); margin-top: clamp(40px, 5.5vh, 62px); }
.nh-prise-item { padding-top: 20px; border-top: 1px solid var(--nh-cream-dark); }
.nh-prise-item svg { width: 24px; height: 24px; color: var(--nh-or); display: block; margin-bottom: 14px; }
.nh-prise-item h3 { font-family: var(--nh-display); font-weight: 500; font-size: 1.12rem; color: var(--nh-bordeaux); margin: 0; }
.nh-prise-item p { font-family: var(--nh-body); font-weight: 300; font-size: .87rem; line-height: 1.65; color: var(--nh-texte); margin: 8px 0 0; }

/* --- la méthode, en quatre temps --- */
.nh-methode { background: var(--nh-bordeaux); color: var(--nh-cream-light); padding: clamp(72px, 10vh, 130px) 0; }
.nh-methode-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.nh-methode-head .nh-lede { text-align: center; margin-left: auto; margin-right: auto; }
.nh-etapes { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 30px); margin-top: clamp(44px, 6vh, 68px); }
.nh-etape { position: relative; padding-top: 26px; border-top: 1px solid rgba(201,169,110,.4); }
.nh-etape-n {
    position: absolute; top: -14px; left: 0;
    font-family: var(--nh-display); font-weight: 600; font-size: 1.15rem;
    color: var(--nh-or); background: var(--nh-bordeaux); padding-right: 12px;
}
.nh-etape h3 { font-family: var(--nh-display); font-weight: 500; font-size: 1.15rem; color: var(--nh-cream-light); margin: 0; }
.nh-etape p { font-family: var(--nh-body); font-weight: 300; font-size: .86rem; line-height: 1.65; color: rgba(242,237,224,.93); margin: 10px 0 0; }
.nh-etape-delai {
    display: inline-block; margin-top: 12px;
    font-family: var(--nh-body); font-size: .64rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase; color: var(--nh-or);
}

/* --- différenciateurs --- */
.nh-pourquoi { background: var(--nh-cream-light); padding: clamp(66px, 9vh, 118px) 0; }
.nh-pourquoi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.6vw, 34px); margin-top: clamp(38px, 5vh, 56px); }
.nh-pourquoi-item {
    background: var(--nh-paper); border: 1px solid var(--nh-cream-dark);
    border-left: 3px solid var(--nh-or); padding: clamp(22px, 2.6vw, 32px);
}
.nh-pourquoi-item h3 { font-family: var(--nh-display); font-weight: 500; font-size: 1.16rem; color: var(--nh-bordeaux); margin: 0; }
.nh-pourquoi-item p { font-family: var(--nh-body); font-weight: 300; font-size: .89rem; line-height: 1.68; color: var(--nh-texte); margin: 10px 0 0; }

/* --- le brief --- */
.nh-brief { background: var(--nh-paper); padding: clamp(72px, 10vh, 130px) 0; }
.nh-brief-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 5vw, 76px); align-items: start; }
.nh-brief-aside .nh-lede { margin-top: 18px; }
.nh-brief-alt {
    margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--nh-cream-dark);
}
.nh-brief-alt p { font-family: var(--nh-body); font-size: .84rem; line-height: 1.6; color: var(--nh-texte); margin: 0 0 14px; }

.nh-brief-form { background: var(--nh-cream-light); border: 1px solid var(--nh-cream-dark); border-top: 3px solid var(--nh-or); padding: clamp(26px, 3.4vw, 44px); }
.nh-brief-form .pf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nh-brief-form .fl-group { position: relative; margin-bottom: 16px; }
.nh-brief-form input,
.nh-brief-form select,
.nh-brief-form textarea {
    width: 100%; font-family: var(--nh-body); font-size: .92rem; color: var(--nh-charbon);
    background: var(--nh-paper); border: 1px solid var(--nh-cream-dark);
    padding: 15px 16px; border-radius: 0; transition: border-color .35s var(--nh-ease);
}
.nh-brief-form input:focus,
.nh-brief-form select:focus,
.nh-brief-form textarea:focus { outline: none; border-color: var(--nh-or); }
.nh-brief-form label {
    position: absolute; top: 15px; left: 16px; pointer-events: none;
    font-family: var(--nh-body); font-size: .92rem; color: var(--nh-sable);
    transition: all .3s var(--nh-ease);
}
.nh-brief-form input:focus + label,
.nh-brief-form input:not(:placeholder-shown) + label,
.nh-brief-form textarea:focus + label,
.nh-brief-form textarea:not(:placeholder-shown) + label {
    top: -9px; left: 10px; font-size: .68rem; letter-spacing: .08em;
    background: var(--nh-cream-light); padding: 0 6px; color: var(--nh-bordeaux);
}
.nh-brief-form textarea { resize: vertical; min-height: 108px; }
.nh-brief-form .nh-btn { width: 100%; margin-top: 4px; }
.nh-brief-note { font-family: var(--nh-body); font-size: .76rem; color: var(--nh-sable); text-align: center; margin: 14px 0 0; }
.nh-brief-ok { display: none; text-align: center; padding: 30px 0; }
.nh-brief-ok.is-on,
.nh-brief-ok.visible { display: block; }   /* le script existant pose « visible » */
.nh-brief-ok b { display: block; font-family: var(--nh-display); font-size: 1.3rem; color: var(--nh-bordeaux); }

/* --- fournisseurs : discret, en fin de page --- */
.nh-fournisseurs { background: var(--nh-cream-light); padding: clamp(48px, 6vh, 76px) 0; }
.nh-fournisseurs-in {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 24px; padding: clamp(24px, 3vw, 34px); background: var(--nh-paper);
    border: 1px solid var(--nh-cream-dark);
}
.nh-fournisseurs h3 { font-family: var(--nh-display); font-weight: 500; font-size: 1.18rem; color: var(--nh-bordeaux); margin: 0; }
.nh-fournisseurs p { font-family: var(--nh-body); font-weight: 300; font-size: .87rem; line-height: 1.6; color: var(--nh-texte); margin: 6px 0 0; max-width: 62ch; }

@media (max-width: 1000px) {
    .nh-prise-grid { grid-template-columns: repeat(2, 1fr); }
    .nh-etapes { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .nh-brief-grid { grid-template-columns: 1fr; }
    .nh-pourquoi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .nh-prise-grid { grid-template-columns: 1fr; }
    .nh-etapes { grid-template-columns: 1fr; }
    .nh-brief-form .pf-row { grid-template-columns: 1fr; gap: 0; }
    .nh-fournisseurs-in { flex-direction: column; align-items: stretch; }
    .nh-fournisseurs .nh-btn { width: 100%; }
}

/* Secours : si l'envoi échoue, on ne perd pas le brief saisi. */
.nh-brief-secours { display: none; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--nh-cream-dark); }
.nh-brief-secours.is-on { display: block; }
.nh-brief-secours p { font-family: var(--nh-body); font-size: .82rem; line-height: 1.55; color: #A03B2F; margin: 0 0 12px; }
.nh-brief-secours .nh-btn { width: 100%; }

/* =========================================================================
   FINITIONS MOBILE
   Corrections issues de l'audit tactile : zoom iOS sur les champs,
   zones de contact trop étroites, et quelques textes trop petits à lire
   sur un téléphone.
   ========================================================================= */

/* iOS Safari zoome automatiquement sur un champ dont le texte fait moins
   de 16 px. Sur un formulaire B2B, ce saut de zoom fait perdre des leads. */
@media (max-width: 900px) {
    .nh-brief-form input,
    .nh-brief-form select,
    .nh-brief-form textarea,
    .nh-brief-form label { font-size: 16px; }
    .nh-brief-form input:focus + label,
    .nh-brief-form input:not(:placeholder-shown) + label,
    .nh-brief-form textarea:focus + label,
    .nh-brief-form textarea:not(:placeholder-shown) + label { font-size: 11.5px; }
}

/* Zones de contact : viser 44 × 44 px, seuil recommandé au doigt. */
@media (max-width: 900px) {
    .nav-lang {
        min-width: 44px; min-height: 44px;
        display: inline-flex; align-items: center; justify-content: center;
    }
    .social-link { min-width: 44px; min-height: 44px; }
    .wa-popup-close {
        min-width: 44px; min-height: 44px;
        display: inline-flex; align-items: center; justify-content: center;
    }
    .nh-somm a { min-height: 56px; }
}

/* Phrases devenues trop petites sur téléphone (10,5 à 12,5 px). */
@media (max-width: 700px) {
    .nh-phero-eyebrow,
    .nh-hero-eyebrow { font-size: .72rem; letter-spacing: .22em; }
    .nh-fiche-note,
    .nh-ved-cible,
    .nh-brief-note,
    .nh-niv-note { font-size: .84rem; }
    .nh-ved-route { font-size: .8rem; }
    .nh-inclus span,
    .nh-ved-inclus span { font-size: .82rem; }
}
