/* NOVA LEAF — base clean, SEO-friendly */
/* 1) Variables de design (à ajuster ensuite si besoin) */
:root{
  --nl-font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  --nl-text:#0c0d0e;
  --nl-muted:#69727d;
  --nl-bg:#ffffff;
  --nl-accent:#0e9f6e;   /* vert */
  --nl-accent-2:#0b815a; /* vert foncé */
  --nl-max-w:1200px;

  /* Breakpoints (proches d’Elementor) */
  --bp-mobile:767px;
  --bp-tablet:1024px;
  --bp-laptop:1366px;
}

/* 2) Reset léger + base typographique */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; color:var(--nl-text); background:var(--nl-bg);
  font-family:var(--nl-font-sans); line-height:1.45; font-weight:400; font-size:16px;
}
img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
a:hover{opacity:.9}
h1,h2,h3,h4{margin:0 0 .6em; line-height:1.1; font-weight:800}
p{margin:0 0 1em}
ul{margin:0; padding-left:1.2em}

/* 3) Layout helpers */
.nl-container{
  width:100%;
  max-width:var(--nl-max-w);
  margin-inline:auto;
  padding-inline: clamp(16px, 4vw, 32px);
}
.nl-grid{
  display:grid; gap: clamp(16px, 4vw, 32px);
}
@media(min-width:768px){ .nl-grid-2{grid-template-columns:1fr 1fr} }
@media(min-width:1024px){ .nl-grid-3{grid-template-columns:repeat(3,1fr)} }

/* ===== Header ===== */
.nl-skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.nl-skip:focus{
  position:fixed; left:16px; top:16px; width:auto; height:auto; padding:.6rem 1rem;
  background:#000; color:#fff; z-index:9999; border-radius:6px;
}

.nl-header{
  position:sticky; top:0; z-index:50; background:#ffffffF2; /* léger alpha */
  backdrop-filter:saturate(1.1) blur(6px);
  border-bottom:1px solid #eee;
  transition: box-shadow .2s ease, background .2s ease;
}
.nl-header.is-stuck{
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  background:#fff;
}
.nl-header__bar{
  display:flex; align-items:center; justify-content:space-between;
  min-height:68px;
}
.nl-logo{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:900; letter-spacing:.06em; color:#0c0d0e;
  text-transform:uppercase;
}
.nl-logo img{ display:block; height:26px; width:auto }

.nl-burger{
  border:0; background:transparent; font-size:28px; line-height:1; cursor:pointer;
  padding:.2rem .4rem;
}
#nl-nav{ display:none }
#nl-nav.open{ display:block; }

#nl-nav ul{ list-style:none; margin:16px 0 0; padding:0; }
#nl-nav li{ margin:8px 0; }
#nl-nav a{
  display:inline-block; padding:.25rem 0; font-weight:600; color:#0c0d0e;
  text-underline-offset: 4px;
  position:relative;
}
#nl-nav a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background:#0e9f6e;
  transition:width .18s ease;
}
#nl-nav a:hover::after{ width:100%; }

/* Desktop */
@media (min-width:1024px){
  .nl-burger{ display:none; }
  #nl-nav{ display:block; }
  #nl-nav ul{ display:flex; align-items:center; gap:28px; margin:0; }
  #nl-nav li{ margin:0; }
}

/* Donner un peu d'air au début de page si le header recouvre */
#content{ scroll-margin-top:90px; }

/* ===== Hero ===== */
.hero{
  padding: clamp(72px, 12vw, 160px) 0 clamp(48px, 8vw, 96px);
  text-align:center;
}
.hero__title{
  font-weight:800;
  font-size: clamp(32px, 7vw, 72px);
  letter-spacing:.02em;
}
.hero__subtitle{
  max-width:820px;
  margin:16px auto 24px;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--nl-muted);
}
.hero__divider{
  display:block;
  margin:24px auto;
  /* il reste vertical, centré */
}
/* ===== Hero - Scroll indicator (fix) ===== */
.hero__scroll{
  display:grid; gap:12px; justify-content:center; align-items:center;
  margin-top:24px; color:#fff; font-weight:600; letter-spacing:.08em;
  text-align:center;
}
.mouse{
  width:26px; height:42px;
  border:2px solid currentColor;          /* ← utilise la couleur du texte (gris) */
  background:transparent;                  /* ← s'assure qu'il n'est pas rempli */
  border-radius:20px;                      /* ← coins arrondis bien visibles */
  position:relative; margin:0 auto;
}
.wheel{
  width:4px; height:10px; background:currentColor;
  border-radius:2px; position:absolute; left:50%; top:8px;
  transform:translateX(-50%);
  animation: nl-scrollwheel 1.8s infinite;
}
@keyframes nl-scrollwheel{
  0%   { opacity:1; transform:translate(-50%, 0); }
  100% { opacity:0; transform:translate(-50%, 12px); }
}


/* ===== Section: Herbal blends ===== */
/* === Background texture for "Herbal smoking blends" === */
.section--full.blend{
  position: relative;
  --section-bg: #fff url('../img/bg.jpg') center / cover no-repeat;
  background: var(--section-bg);
}

.blend{ background: var(--nl-bg); }
.blend__grid{ align-items: center; }
.blend__media{ margin: 0; }
.blend__media img{
  width: min(100%, 800px);
  height: auto;
  margin-inline: auto;
}
.blend__caption{
  text-align:center;
  margin-top:12px;
  color: var(--nl-text);
}
.blend__variant{
  display:block; font-weight:700;
  font-size: clamp(16px, 2.2vw, 20px);
}
.blend__weight{
  display:block; font-weight:600; opacity:.7; margin-top:2px;
}

.blend__title{
  font-size: clamp(28px, 6vw, 64px);
  line-height: 1.02;
}
.blend__kicker{
  margin-top:16px;
  font-weight:700;
  font-size: clamp(18px, 2.6vw, 24px);
}
.blend__text{
  margin-top:8px;
  color: var(--nl-muted);
  font-size: clamp(15px, 1.8vw, 18px);
}

/* Option: resserrer la grille sur très grands écrans */
@media (min-width: 1440px){
  .blend .nl-container{ max-width: 1200px; }
}
/* ===== Full-bleed for specific sections ===== */
.section--full .nl-container{
  max-width: 100%;
  padding-inline: 0;      /* retire le padding gauche/droite du container */
}

/* Mieux répartir la grille sur grand écran quand on est full-bleed */
/* ✅ gap par défaut, 1 seule colonne en mobile */
.section--full .blend__grid{
  gap: clamp(16px, 4vw, 32px);
}

/* ✅ confort en mobile : on remet un peu de padding latéral */
@media (max-width: 767px){
  .section--full .nl-container{
    padding-inline: 16px;
  }
  .blend__content{
    text-align: center;   /* plus lisible en colonne */
  }
}

/* ✅ deux colonnes seulement à partir du desktop */
@media (min-width: 1024px){
  .section--full .blend__grid{
    grid-template-columns: minmax(420px, 1fr) minmax(420px, 640px);
    align-items: center;
  }
  .blend__content{
    text-align: left;
  }
}
/* Blends — tighten caption under the image */
.blend__caption{
  margin-top: 6px;                /* smaller gap by default */
}

/* Desktop: nudge it a little closer to the image */
@media (min-width:1024px){
  .blend__caption{
    margin-top: 0;
    transform: translateY(-8px);  /* pull up ~8px; tweak to taste */
  }
}

/* === TERPENES — layout mobile d'abord (texte → image) === */
/* === TERPENES — fond texturé vert + couleurs de texte sur fond sombre === */
.section--full.terps{
  /* couleur de secours + texture */
  background: #0f2f22 url('../img/plain-green-paper-textured.jpg') center / cover no-repeat;
  color: #fff;                      /* texte par défaut en blanc */
}

/* textes secondaires/explicatifs un peu plus doux */
.section--full.terps .terps__text,
.section--full.terps .terps__caption{
  color: rgba(255,255,255,.85);
}

/* si besoin de contraste maximal pour le titre/kicker */
.section--full.terps .terps__title,
.section--full.terps .terps__kicker{
  color: #fff;
}

/* garder le "gutter" pour que le texte ne colle pas au bord */
.section--full.terps .nl-container{
  padding-inline: clamp(16px, 6vw, 96px);
}


/* Gutter : évite le texte collé au bord en full-bleed */
.section--full.terps .nl-container{
  padding-inline: clamp(16px, 6vw, 96px);
}

.terps__grid{
  display:flex;
  flex-direction:column;         /* mobile : empile */
  gap: clamp(16px, 4vw, 32px);
}

.terps__content{
  order:1;
  text-align:center;
  max-width: 640px;
  margin-inline: auto;           /* centre le bloc texte en mobile */
}

.terps__media{
  order:2;
}
.terps__media img{
  display:block;
  width:100%;
  height:auto;
  margin-inline:auto;
}

.terps__caption{
  text-align:center;
  margin-top:8px;
  color: var(--nl-text);
}
.terps__flavors{ font-weight:700; }
.terps__weight{ display:block; opacity:.7; font-weight:600; margin-top:2px; }

/* Typographies plus proches de l'original */
.terps__title{
  font-size: clamp(32px, 6vw, 72px);
  line-height: .96;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.terps__kicker{
  margin-top:16px;
  font-weight:800;
  font-size: clamp(20px, 2.6vw, 28px);
}
.terps__text{
  margin-top:8px;
  color: var(--nl-muted);
  font-size: clamp(16px, 2vw, 20px);
}

/* === Desktop : 2 colonnes, texte à gauche / image à droite === */
@media (min-width: 1024px){
  .terps__grid{
    display:grid;
    grid-template-columns: minmax(480px, 640px) minmax(480px, 1fr);
    align-items:center;
    gap: clamp(24px, 4vw, 48px);
  }
  .terps__content{
    text-align:left;
    margin-inline: 0;
  }
}


/* Typographies */
.terps__title{ font-size: clamp(28px, 6vw, 56px); line-height:1.02; font-weight:800; }
.terps__kicker{ margin-top:16px; font-weight:700; font-size: clamp(18px, 2.6vw, 24px); }
.terps__text{ margin-top:8px; color: var(--nl-muted); font-size: clamp(15px, 1.8vw, 18px); }

/* Confort mobile : un peu d’air latéral */
@media (max-width: 767px){
  .section--full .nl-container{ padding-inline:16px; }
}

/* Desktop : 2 colonnes, texte à gauche / image à droite */
@media (min-width:1024px){
  .terps__grid{
    display:grid;
    grid-template-columns: minmax(420px, 640px) minmax(420px, 1fr);
    align-items:center;
  }
  .terps__content{ text-align:left; }
}


/* L’image touche bien le bord gauche */
.section--full .blend__media img{
  width: 100%;
  max-width: 900px;       /* tu peux augmenter/diminuer si besoin */
  object-fit: contain;
  margin-left: 0;
}

/* === Mobile rounded tops for full-bleed sections === */
.section--rounded{ position: relative; }

@media (max-width: 767px){
  /* on neutralise le bg direct et on dessine le fond via ::before avec un arrondi */
  .section--rounded{ background: none !important; }
  .section--rounded::before{
    content:"";
    position:absolute; inset:0;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    background: var(--section-bg, transparent);
    z-index: 0;
  }
  /* remet le contenu au-dessus du pseudo-element */
  .section--rounded > *{ position: relative; z-index: 1; }
}

/* ===== FRUITY NOVALEAF (ex-Carbon Filter) ===== */
.section--full.fruity{
  --section-bg: #fff url('../img/bg.jpg') center / cover no-repeat;
  background: var(--section-bg);
  color: var(--nl-text);
}
.section--full.fruity .nl-container{
  padding-inline: clamp(16px, 6vw, 96px);
}
.fruity__grid{
  display:flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 32px);
}
.fruity__content{
  order: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.fruity__media{ order: 2; }
.fruity__media img{
  display:block;
  width:100%;
  height:auto;
  margin-inline:auto;
}
/* Typographies */
.fruity__title{ font-weight:800; font-size: clamp(28px, 6vw, 64px); line-height:1.02; }
.fruity__kicker{ margin-top:8px; font-weight:700; font-size: clamp(18px, 2.4vw, 24px); }
.fruity__text{ margin-top:8px; color: var(--nl-muted); font-size: clamp(15px, 1.8vw, 18px); }
/* Légende/variantes sous l’image */
.fruity__caption{ text-align:center; margin-top:8px; }
.fruity__flavors{ font-weight:700; }
.fruity__weight{ display:block; opacity:.7; font-weight:600; margin-top:2px; }
/* Desktop : image à gauche / texte à droite */
@media (min-width:1024px){
  .fruity__grid{
    display: grid;
    grid-template-columns: minmax(480px, 1fr) minmax(420px, 640px);
    grid-template-areas: 'media content';
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
  }
  .fruity__media{ grid-area: media; }
  .fruity__content{
    grid-area: content;
    text-align: left;
    margin-inline: 0;
  }
}

/* ===== GOÛT TABAC (ex-Cones) ===== */
.section--full.tabac{
  --section-bg: #0f2f22 url('../img/plain-green-paper-textured.jpg') center / cover no-repeat;
  background: var(--section-bg);
  color: #fff;
}
.section--full.tabac .nl-container{
  padding-inline: clamp(16px, 6vw, 96px);
}
/* Mobile d’abord: texte → image */
.tabac__grid{
  display:flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 32px);
}
.tabac__content{
  order: 1;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.tabac__media{ order: 2; }
.tabac__media img, .tabac__packs img{
  display:block; width:100%; height:auto; margin-inline:auto;
}
/* Typographies */
.tabac__title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(28px, 6vw, 56px);
  line-height: .98;
  color:#fff;
}
.tabac__kicker{
  margin-top: 8px;
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 24px);
  color:#fff;
}
.tabac__note{
  margin-top: 8px;
  color: rgba(255,255,255,.85);
  font-size: clamp(14px, 1.8vw, 16px);
}
/* Packs: caché en mobile pour alléger (active si tu veux) */
.tabac__packs{ display:none; }
/* Desktop : image à gauche / texte à droite */
@media (min-width: 1024px){
  .tabac__grid{
    display:grid;
    grid-template-columns: minmax(480px, 1fr) minmax(480px, 640px);
    grid-template-areas: 'media content';
    align-items:center;
    gap: clamp(24px, 4vw, 48px);
  }
  .tabac__media{ grid-area: media; }
  .tabac__content{ grid-area: content; text-align: left; margin-inline: 0; }
  .tabac__packs{ display:block; margin-top: clamp(12px, 2vw, 16px); }
}

/* ===== TYPE DE MÉLANGE (ex-Papers) ===== */
.section--full.type{
  --section-bg: #fff url('../img/bg.jpg') center / cover no-repeat;
  background: var(--section-bg);
  color: var(--nl-text);
}
.section--full.type .nl-container{
  padding-inline: clamp(16px, 6vw, 96px);
}
/* Mobile d’abord: on empile, texte → image */
.type__grid{
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 32px);
}
.type__content{
  order: 1;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.type__media{ order: 2; }
.type__media img, .type__display img{
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
}
/* Typographies */
.type__title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(28px, 6vw, 56px);
  line-height: .98;
}
.type__kicker{
  margin-top: 8px;
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 24px);
}
.type__note{
  margin-top: 8px;
  color: var(--nl-muted);
  font-size: clamp(14px, 1.8vw, 16px);
}
/* Affichages spécifiques */
.type__display--desktop,
.type__note--desktop{ display: none; }
/* Desktop : 2 colonnes, texte à gauche / image à droite */
@media (min-width: 1024px){
  .type__grid{
    display: grid;
    grid-template-columns: minmax(480px, 640px) minmax(480px, 1fr);
    grid-template-areas: 'content media';
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
  }
  .type__content{ grid-area: content; text-align: left; margin-inline: 0; }
  .type__media{ grid-area: media; }
  .type__display--desktop,
  .type__note--desktop{ display: block; }
  .type__display--mobile,
  .type__note--mobile{ display: none; }
}


/* 5) Sections génériques */
.section{padding: clamp(48px, 8vw, 96px) 0}
.section--alt{background:#fafafa}

/* 6) Boutons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.8rem 1.2rem; border-radius:999px; border:2px solid var(--nl-accent);
  color:#fff; background:var(--nl-accent); font-weight:700;
}
.btn--ghost{color:var(--nl-accent); background:transparent}

/* 7) Utilitaires */
.mt-0{margin-top:0} .mb-0{margin-bottom:0}
.mt-1{margin-top:.5rem} .mb-1{margin-bottom:.5rem}
.mt-2{margin-top:1rem}  .mb-2{margin-bottom:1rem}
.mt-3{margin-top:1.5rem} .mb-3{margin-bottom:1.5rem}

/* 8) Footer simple (sera raffiné ensuite) */
.nl-footer{border-top:1px solid #eee; background:#fff}
.nl-footer__bar{padding:24px 0; color:var(--nl-muted); font-size:14px}

/* === NAV FIX — desktop intact, tiroir uniquement en mobile === */

/* Cacher le drawer/overlay par défaut partout */
.nl-drawer, .nl-overlay { display: none; }

/* Desktop (>=1024px) : menu horizontal visible, burger/drawer cachés */
@media (min-width:1024px){
  /* ton #nl-nav reste visible grâce à tes règles existantes */
  .nl-burger { display: none; }
  .nl-drawer, .nl-overlay { display: none !important; }
}

/* Mobile (<1024px) : menu desktop caché, burger + tiroir actifs */
@media (max-width:1023px){
  /* cache la nav desktop */
  #nl-nav { display: none !important; }

  /* burger visible */
  .nl-burger{
    display: inline-flex;
    align-items: center; justify-content: center;
  }

  /* overlay */
  .nl-overlay{
    display:block;
    position:fixed; inset:0;
    background: rgba(0,0,0,.45);
    opacity:0; visibility:hidden;
    transition: opacity .25s, visibility .25s;
    z-index:1000;
  }
  .nl-overlay.is-active{ opacity:1; visibility:visible; }

  /* tiroir à droite */
  .nl-drawer{
    display:block;
    position:fixed; top:0; right:0; bottom:0;
    width: min(85vw, 420px);
    background:#fff;
    box-shadow: -24px 0 48px rgba(0,0,0,.16);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s;
    padding:24px;
    overflow:auto;
    z-index:1001;
  }
  .nl-drawer.is-open{ transform: translateX(0); visibility: visible; }

  /* bouton X */
  .nl-drawer__close{
    position:absolute; top:10px; right:10px;
    width:44px; height:44px; border:0; background:transparent; cursor:pointer;
  }
  .nl-drawer__close::before, .nl-drawer__close::after{
    content:""; position:absolute; top:50%; left:50%;
    width:24px; height:2px; background:#111; border-radius:1px;
    transform-origin:center;
  }
  .nl-drawer__close::before{ transform: translate(-50%,-50%) rotate(45deg); }
  .nl-drawer__close::after{  transform: translate(-50%,-50%) rotate(-45deg); }

  /* listes dans le tiroir */
  .nl-drawer__list{ list-style:none; margin:0; padding:0; }
  .nl-drawer__list li{ margin:18px 0; }
  .nl-drawer__list a{
    text-decoration:none; color:#111; font-weight:800; font-size:20px;
  }
  .nl-drawer__divider{
    border:0; height:1px; background: rgba(0,0,0,.1); margin:18px 0 10px;
  }
  .nl-drawer__list--secondary a{ font-weight:600; font-size:18px; opacity:.85; }
  .nl-drawer__brand{ margin-top:28px; font-weight:900; letter-spacing:.06em; opacity:.6; }
}
/* Accessibilité : texte uniquement pour lecteurs d’écran */
.sr-only{
  position:absolute!important;
  width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* S'assure que seul l'icône s'affiche dans le bouton */
.nl-burger svg{ display:block }

/* Centrer le logo dans le tiroir mobile */
@media (max-width:1023px){
  /* s'assurer que le tiroir est bien en flex colonne */
  .nl-drawer{ display:flex; flex-direction:column; }

  /* centrer le bloc logo et le pousser vers le bas si souhaité */
  .nl-drawer__logo{
    align-self:center;           /* centre horizontalement l'élément dans le tiroir */
    text-align:center;
    padding:16px 0 8px;
    margin-top:auto;             /* laisse le logo en bas du tiroir */
    width:100%;
  }

  .nl-drawer__logo img{
    display:block;
    margin:0 auto;               /* centre l'image dans son conteneur */
    max-width:180px;
    height:auto;
  }
}

/* ===== FOOTER (fond noir, textes blancs) ===== */
.nl-footer{
  background:#000;                /* fond noir */
  color:#fff;                     /* texte blanc par défaut */
  border-top:1px solid rgba(255,255,255,.15);
}

/* Barre principale du pied de page */
.nl-footer__bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(18px, 3vw, 26px) 0;
}

/* Liens */
.nl-footer__links ul{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: clamp(12px, 2vw, 24px);
  list-style:none;
  margin:0;
  padding:0;
}
.nl-footer__links a{
  color:#fff;
  font-weight:700;
  text-decoration:none;
}
.nl-footer__links a:hover{
  color:#e9e9e9;
  text-decoration:underline;
  text-underline-offset:3px;
}

/* Réseaux sociaux */
.nl-footer__social{
  display:flex; gap:14px;
}
.nl-footer__social a{
  width:36px; height:36px;
  display:inline-flex; align-items:center; justify-content:center;
  background:transparent;
  color:#fff;                                   /* icônes blanches */
  border:1px solid rgba(255,255,255,.25);
  border-radius:10%;
  transition: transform .15s ease, opacity .15s ease, border-color .15s ease;
}
.nl-footer__social a:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.5);
}

/* Légal / copyright */
.nl-footer__legal{
  border-top:1px solid rgba(255,255,255,.15);
  padding: 12px 0 20px;
  text-align:center;
  color: rgba(255,255,255,.75);
  font-size:14px;
}

/* Les SVG héritent la couleur du texte */
.nl-footer svg{ fill: currentColor; }

/* Responsive */
@media (max-width: 767px){
  .nl-footer__bar{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
}

/* ===== HERO — fond image ===== */
.hero{
  /* ton image */
  background: #000 url('../img/Group-13.jpg') center / cover no-repeat;
  /* si tu veux garder le texte lisible, décommente la ligne suivante */
  /* color:#fff; */
}

/* ===== PARALLAX (fonds qui ne bougent pas) ===== */
/* Desktop / laptop : fond fixé */
@media (min-width:1024px){
  .hero,
  .section--full.blend,
  .section--full.terps,
  .section--full.filter, .section--full.fruity,   /* Carbon Filter → Fruity */
  .section--full.cones,  .section--full.tabac,    /* Cones → Tabac */
  .section--full.papers, .section--full.type {    /* Papers → Type */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/* Mobile / tablette : désactive le fixed pour éviter les bugs iOS */
@media (max-width:1023px){
  .hero,
  .section--full.blend,
  .section--full.terps,
  .section--full.filter, .section--full.fruity,
  .section--full.cones,  .section--full.tabac,
  .section--full.papers, .section--full.type {
    background-attachment: scroll;
  }
}

/* Hero — titre lisible sur fond sombre */
.hero__title{
  color:#fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.35); /* petit boost de contraste */
}
.hero__subtitle{ color:#f1f5f9; }


/* ===== ABOUT — Hero (unique, compatible section--rounded) ===== */
.hero.hero--about{
  position: relative;
  color:#fff;

  /* Utilisé aussi par .section--rounded::before en mobile */
  --section-bg:
    /* voile de lisibilité */
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.35)),
    /* 1er essai : ton nouveau fichier si présent */
    url('../img/About-NovaLeaf.jpg') center / cover no-repeat,
    /* 2e essai : ancien nom si le premier n'existe pas */
    url('../img/About-RealLeaf2.jpg') center / cover no-repeat,
    /* 3e essai : texture générique */
    url('../img/bg.jpg') center / cover no-repeat;

  /* Application desktop */
  background: var(--section-bg);
  padding: clamp(72px, 12vw, 160px) 0 clamp(48px, 8vw, 96px);
  text-align: center;
}

/* Lisibilité du texte dans le hero About */
.hero.hero--about .hero__title{ color:#fff; }
.hero.hero--about .hero__subtitle{ color:#f1f5f9; }
.hero.hero--about .hero__divider{ display:block; margin: 24px auto; }

/* Parallaxe desktop, désactivée en mobile (iOS) */
@media (min-width:1024px){
  .hero.hero--about{ background-attachment: fixed; }
}
@media (max-width:1023px){
  .hero.hero--about{ background-attachment: scroll; }
}


.about-hero__title{
  font-weight:900;
  letter-spacing:.02em;
  font-size: clamp(36px, 7vw, 72px);
  color:#fff;
}
.about-hero__subtitle{
  max-width:820px;
  margin:16px auto 0;
  color:#f1f5f9;
  font-size: clamp(16px, 2.2vw, 20px);
}

/* ===== ABOUT — Story (2 colonnes) ===== */
.about-story__grid{ align-items:center; }
.about-story__content p{ color:var(--nl-muted); }
.about-story__media img{
  width:100%; height:auto; border-radius:12px;
}

/* ===== ABOUT — Values (3 cartes) ===== */
.about-values{ background:#fafafa; }
.about-values__grid{ align-items:start; }
.about-value{
  background:#fff; border:1px solid #eee; border-radius:14px;
  padding: clamp(16px, 3vw, 24px);
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}
.about-value h3{ margin-bottom:.5rem; font-weight:800; }
.about-value p{ color:var(--nl-muted); margin:0; }

/* CTA spacing tweak */
.about-cta h2{ font-weight:800; margin-bottom:12px; }
/* ===== ABOUT — Hero (mêmes réglages que la home) ===== */


/* Optionnel : espace autour du trait vertical pour matcher l’original */
.hero.hero--about .hero__divider{
  display:block;
  margin: 24px auto;
}
/* About — cards avec icône */
.about-value__icon{
  display:inline-flex;
  align-items:center; justify-content:center;
  width:44px; height:44px;
  border-radius:12px;
  background: rgba(14,159,110,.10);   /* halo vert léger */
  color: var(--nl-accent);            /* icône verte */
  margin-bottom:12px;
}
.about-value__icon svg{ width:24px; height:24px; display:block; }

/* micro-ajustements */
.about-value h3{ margin:2px 0 6px; font-weight:800; }
.about-value p{ margin:0; color:var(--nl-muted); }

/* grille: 1 col mobile, 2 cols tablette, 3 cols desktop si tu préfères */
@media (min-width:768px){
  .about-values__grid{ grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width:1024px){
  .about-values__grid{ grid-template-columns: repeat(3, 1fr) !important; }
}
.about-story__content--mobile{ display:none; }
@media (max-width: 767px){
  .about-story__content--desktop{ display:none; }
  .about-story__content--mobile{ display:block; }
}
.about-metrics{ padding-top: 0; }
.about-metrics__grid{
  display:grid;
  gap: clamp(16px, 3vw, 24px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.metric{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  padding: clamp(16px, 3vw, 24px);
  text-align:center;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}
.metric__icon{
  width:44px; height:44px;
  margin:0 auto 8px;
  color: var(--nl-accent);
}
.metric__icon svg{ width:100%; height:100%; fill:currentColor; }
.metric__value{
  font-weight:900;
  font-size: clamp(24px, 4.6vw, 42px);
  line-height:1;
}
.metric__label{
  margin-top:6px;
  color: var(--nl-muted);
  font-weight:600;
  font-size: clamp(14px, 1.8vw, 16px);
}
.about-metrics__note{
  margin-top: 8px;
  text-align:center;
  color: var(--nl-muted);
  font-size: 13px;
}

@media (max-width: 1023px){
  .about-metrics__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px){
  .about-metrics__grid{ grid-template-columns: 1fr; }
}

/* ===== CONTACT ===== */
.contact-hero{ text-align:center; padding-top: clamp(48px,8vw,72px); padding-bottom: 0; }
.page-title{ font-weight:900; font-size: clamp(40px, 8vw, 96px); line-height:.95; }
.contact-intro{
  margin: 12px auto 24px;
  max-width: 1100px;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--nl-muted);
}
.contact-divider{
  border: 0; border-top: 2px dotted #222; opacity:.6;
  margin: 24px 0 0;
}

/* grille */
.contact-grid{ align-items: flex-start; gap: clamp(24px, 4vw, 48px); margin-top: clamp(24px, 6vw, 56px); }
@media (max-width: 1023px){
  .contact-grid{ display:block; }
  .contact-form-wrap{ margin-top: 24px; }
}

/* Infos */
.contact-company{ font-weight:800; font-size: clamp(20px, 2.2vw, 28px); margin:0 0 6px; }
.contact-address{ color:#444; margin:0 0 16px; font-size: clamp(16px, 1.8vw, 18px); }
.contact-label{ font-weight:700; margin: 18px 0 0; }
.contact-email{ color:#c71d49; text-decoration: underline; text-underline-offset: 3px; }

/* Form */
.contact-form{ display:grid; gap: 14px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea{
  width:100%;
  border:1px solid #ddd;
  border-radius:2px;
  padding: 16px 18px;
  font-size: clamp(16px, 1.8vw, 18px);
  background:#fff;
}
.contact-form textarea{ min-height: 220px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder{ color:#7a7a7a; }

.contact-form input:focus,
.contact-form textarea:focus{
  outline:0;
  border-color:#111;
  box-shadow: 0 0 0 2px rgba(0,0,0,.06);
}

/* bouton noir SEND */
.btn--black{
  background:#000;
  border-color:#000;
  color:#fff;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding: 16px 28px;
  border-radius: 0;
  display:inline-flex; align-items:center; justify-content:center;
}
.btn--black:hover{ opacity:.9 }

.contact-success{
  background:#ecfdf5; color:#065f46; border:1px solid #a7f3d0;
  padding:12px 14px; border-radius:6px; margin-bottom:14px; font-weight:600;
}

/* accessibilité (labels invisibles) */
.sr-only{ position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Contact — hero texte en blanc */
.hero.hero--short .hero__title,
.hero.hero--short .hero__subtitle,
.hero.hero--short .page-title,
.hero.hero--short .contact-intro{
  color:#fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}


/* ===== Forms (Contact/Distributors) ===== */

/* accessibilité : labels masqués visuellement */
.sr-only{
  position:absolute!important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* conteneur du formulaire */
.nl-form{
  display:grid;
  gap: 14px;
}

/* champs */
.nl-form input[type="text"],
.nl-form input[type="email"],
.nl-form input[type="tel"],
.nl-form textarea{
  display:block;
  width:100%;
  padding: 14px 16px;
  font: 500 16px/1.4 var(--nl-font-sans);
  color: var(--nl-text);
  background:#fff;
  border: 2px solid rgba(0,0,0,.12);
  border-radius: 4px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

/* focus */
.nl-form input:focus,
.nl-form textarea:focus{
  border-color: var(--nl-accent);
  box-shadow: 0 0 0 3px rgba(14,159,110,.15);
}

/* textarea un peu plus haut */
.nl-form textarea{ min-height: 160px; resize: vertical; }

/* bouton : style “SEND” noir comme l’original */
.nl-form .btn{
  justify-self: start;           /* bouton aligné à gauche */
  padding: .9rem 1.6rem;
  border-radius: 999px;
  background: #000;
  border: 2px solid #000;
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
}
.nl-form .btn:hover{ opacity:.9; }

/* petits messages sous le bouton */
.nl-form .form-status{ margin-top:6px; font-weight:600; }
.nl-form .form-status.ok{ color: var(--nl-accent); }
.nl-form .form-status.ko{ color: #d33; }

/* sur écrans très larges, on garde la pile verticale (fidèle à la maquette) */
