/* =============================================================
   Natakassam Cola — site vitrine
   Feuille de style partagée (accueil + professionnels)
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  --green: #006633;          /* vert de marque principal */
  --green-alt: #006634;      /* variante */
  --green-dark: #0a5731;     /* vert foncé (texte gravé) */
  --green-light: #bfe6cf;    /* vert clair (accents) */
  --ink: #23291f;            /* texte sombre */
  --ink-strong: #1b201b;
  --gray: #4d5349;           /* gris texte */
  --gray-faint: #8a9389;     /* gris discret */
  --cream: #efe9dd;          /* fond crème (bandeau ombre) */
  --white: #ffffff;

  --maxw: 1280px;
  --pad-x: 44px;
  --header-h: 56px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink-strong);
  font-family: 'Jost', sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--green-alt); color: var(--white); }

img, video, svg { display: block; }

a { color: inherit; }

h1, h2, h3, p { margin: 0; }

em { font-style: italic; }

/* ---------- Reusable typographic helpers ---------- */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 9px;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark .name { font-size: 16px; letter-spacing: .32em; text-indent: .32em; font-weight: 500; }
.wordmark .sub  { font-size: 15px; letter-spacing: .06em; font-weight: 300; }

/* ============================================================
   Scroll-reveal (remplace les attributs data-rev du prototype)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .15s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes ntk-ken   { 0% { transform: scale(1.06); } 100% { transform: scale(1.16); } }
@keyframes ntk-bob   { 0%, 100% { transform: translateY(0); opacity: .7; } 50% { transform: translateY(8px); opacity: 1; } }
@keyframes ntk-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-17px); } }
@keyframes ntk-halo  { 0%, 100% { transform: scale(.96); opacity: .5; } 50% { transform: scale(1.06); opacity: .95; } }
@keyframes ntk-fade  { from { opacity: 0; } to { opacity: 1; } }
@keyframes ntk-rise  { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes starPulse { 0%, 100% { transform: scale(1); opacity: .6; } 50% { transform: scale(1.45); opacity: 1; } }

/* ============================================================
   Header (bandeau menu)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  color: var(--white);
  background: rgba(0, 102, 51, .75);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
/* variante page Professionnels : vert plein */
.site-header--solid {
  background: var(--green);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.site-header nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-nav-links { display: flex; align-items: center; gap: 32px; }
.site-nav-links a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity .3s ease;
}
.site-nav-links a:hover { opacity: .6; }
.site-nav-links a.is-current {
  border-bottom: 1px solid var(--green-light);
  padding-bottom: 2px;
}

/* ============================================================
   Boutons « Consulter »
   ============================================================ */
.btn-outline {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .6);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.btn-outline:hover { background: var(--white); color: var(--green-alt); border-color: var(--white); }

.btn-outline--lg { padding: 18px 46px; font-size: 16px; }
.btn-outline--sm {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 26px;
  font-size: 12px;
  border-color: rgba(255, 255, 255, .55);
}
.btn-outline--sm .arrow { font-size: 15px; letter-spacing: 0; }

/* boutons CTA Professionnels */
.btn-solid {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  padding: 16px 34px;
  background: var(--white);
  color: var(--green);
  transition: opacity .3s ease;
}
.btn-solid:hover { opacity: .85; }
.btn-ghost {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  padding: 16px 34px;
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
  transition: background .3s ease, color .3s ease;
}
.btn-ghost:hover { background: var(--white); color: var(--green); }

/* ============================================================
   HERO (accueil)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: #1a120c;
}
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img,
.hero__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero__media img { animation: ntk-ken 18s ease-out forwards; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 12, 8, .5) 0%,
    rgba(20, 12, 8, .15) 32%,
    rgba(20, 12, 8, .15) 60%,
    rgba(20, 12, 8, .72) 100%);
}
.hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.hero__title {
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: .42em;
  font-weight: 300;
  opacity: 0;
  animation: ntk-fade 1.4s ease .3s forwards;
}
.hero__title--1 { font-size: clamp(26px, 4.4vw, 48px); }
.hero__title--2 { font-size: clamp(18px, 2.8vw, 30px); margin-top: 46px; animation-delay: .6s; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 34px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue span {
  width: 1px; height: 42px;
  background: linear-gradient(rgba(255, 255, 255, .7), rgba(255, 255, 255, 0));
  animation: ntk-bob 2.4s ease-in-out infinite;
}

/* ============================================================
   L'Histoire (intro statement)
   ============================================================ */
.section { padding: 96px var(--pad-x) 64px; }

.histoire { background: var(--white); }
.histoire__inner { max-width: 920px; margin: 0 auto; text-align: center; }
.histoire .eyebrow { color: var(--green-alt); margin-bottom: 40px; font-size: 33px; }
.histoire__lead {
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.42;
  letter-spacing: .01em;
  color: var(--ink);
}
.histoire__p {
  font-weight: 300;
  font-size: clamp(15px, 2vw, 24px);
  line-height: 1.45;
  letter-spacing: .01em;
  color: var(--ink);
  margin-top: 28px;
}
.histoire__p--nowrap { white-space: nowrap; margin-top: 20px; }
.rule { width: 54px; height: 1px; background: var(--green-alt); margin: 36px auto 0; }

/* ============================================================
   Vidéo plein cadre
   ============================================================ */
.fullbleed-video {
  position: relative;
  height: 90vh; min-height: 580px;
  overflow: hidden;
  background: #000;
}
.fullbleed-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.fullbleed-video .v-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 5, .35), transparent 40%, rgba(10, 8, 5, .55));
}

/* ---------- Respir ---------- */
.breath {
  background: var(--white);
  padding: 54px var(--pad-x);
  display: flex; align-items: center; justify-content: center;
}
.breath span { color: var(--green-alt); font-size: 20px; line-height: 0; opacity: .85; }

/* ============================================================
   Halal
   ============================================================ */
.halal {
  position: relative;
  background: var(--green-alt);
  color: var(--white);
  padding: 108px var(--pad-x);
  overflow: hidden;
}
.halal__motif,
.halal__veil {
  position: absolute; top: 0; left: 0; right: 0;
  height: 780px; pointer-events: none;
}
.halal__motif {
  background-color: var(--white);
  opacity: .15;
  -webkit-mask-image: url('../assets/motif-mask.png');
  mask-image: url('../assets/motif-mask.png');
  -webkit-mask-size: 240px; mask-size: 240px;
  -webkit-mask-repeat: repeat; mask-repeat: repeat;
}
.halal__veil {
  background: radial-gradient(58% 70% at 50% 26%,
    transparent 0%, transparent 24%, rgba(0, 102, 52, .72) 54%, var(--green-alt) 78%);
}
.halal__inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.halal__head { text-align: center; max-width: 820px; margin: 0 auto 62px; }
.halal__seal { position: relative; display: inline-block; margin-bottom: 34px; }
.halal__seal .halo {
  position: absolute; inset: -15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 66%);
  animation: ntk-halo 4.6s ease-in-out infinite;
  pointer-events: none;
}
.halal__seal img {
  position: relative;
  width: clamp(150px, 16vw, 200px);
  height: auto;
  animation: ntk-float 5s ease-in-out infinite;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, .22));
}
.halal__title {
  font-weight: 300;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: .02em;
}
.halal__cols { display: grid; grid-template-columns: repeat(3, 1fr); }
.halal__col { padding: 0 40px; border-right: 1px solid rgba(255, 255, 255, .18); }
.halal__col:last-child { border-right: none; }
.halal__col h3 {
  margin-bottom: 16px;
  font-weight: 500; font-size: 22px;
  letter-spacing: .08em; text-transform: uppercase;
}
.halal__col p {
  font-weight: 300; font-size: 19px; line-height: 1.72;
  color: rgba(255, 255, 255, .95);
}
.halal__cta { text-align: center; margin-top: 56px; }

/* ============================================================
   La Bouteille (callouts animés)
   ============================================================ */
.bouteille { background: var(--white); padding: 130px var(--pad-x) 20px; }
.bouteille__inner { max-width: 1180px; margin: 0 auto; }
.bouteille__head { text-align: center; margin-bottom: 24px; }
.bouteille__head .eyebrow { color: var(--green-alt); margin-bottom: 20px; font-size: 25px; }
.bouteille__head h2 {
  margin-bottom: 14px;
  font-weight: 300;
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 1.04; letter-spacing: .02em;
  color: var(--ink);
}
.bouteille__head h2 em { font-style: italic; }
.bouteille__head p { font-weight: 300; font-size: 19px; line-height: 1.7; letter-spacing: .02em; color: var(--gray); }

.btl-stage {
  position: relative;
  width: 100%; max-width: 1060px; margin: 0 auto;
  height: clamp(560px, 64vw, 700px);
}
.btl-stage svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.btl-stage .bottle {
  position: absolute; left: 50%; top: 50%;
  height: 104%; width: auto;
  transform: translate(-50%, -50%) scale(.96);
  opacity: 0;
  transition: opacity 1s ease, transform 1s var(--ease);
}
.btl-stage.in .bottle { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.btl-stage .conn {
  stroke-dasharray: 1; stroke-dashoffset: -1;
  transition: stroke-dashoffset 1.2s cubic-bezier(.4, 0, .2, 1);
  transition-delay: .75s;
}
.btl-stage.in .conn { stroke-dashoffset: 0; }
.btl-stage .dot {
  opacity: 0;
  transform-box: fill-box; transform-origin: center; transform: scale(.2);
  transition: opacity .5s ease, transform .6s cubic-bezier(.2, 1.7, .45, 1);
  transition-delay: .35s;
}
.btl-stage.in .dot { opacity: 1; transform: scale(1); }

.cap {
  position: absolute;
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .9s var(--ease);
  transition-delay: 1.15s;
}
.btl-stage.in .cap { opacity: 1; transform: translateY(0); }
.cap__label {
  font-size: 14.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--green); font-weight: 500; margin-bottom: 9px;
}
.cap__label .st {
  display: inline-block; font-size: 1.7em; line-height: 0; vertical-align: -.04em;
  animation: starPulse 1.6s ease-in-out infinite;
}
.cap p { font-weight: 700; font-size: 16px; line-height: 1.55; color: #111; }

/* ============================================================
   Bandeau 10% (ombre)
   ============================================================ */
.shadow-banner { position: relative; overflow: hidden; background: var(--cream); }
.shadow-banner > img { width: 100%; height: auto; }
.shadow-banner__veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(239, 233, 221, .82) 0%, rgba(239, 233, 221, .4) 38%, transparent 62%);
}
.shadow-banner__text {
  position: absolute; left: 0; top: 0; bottom: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(32px, 7vw, 110px);
  max-width: 640px;
}
.engrave-1 {
  font-weight: 300;
  font-size: clamp(96px, 13vw, 210px);
  line-height: .86; letter-spacing: -.01em;
  color: var(--green);
  mix-blend-mode: multiply;
  text-shadow: 0 2px 1px rgba(255, 255, 255, .5), 0 -2px 3px rgba(0, 0, 0, .42), 0 1px 0 rgba(255, 255, 255, .3);
}
.engrave-2 {
  margin-top: 20px;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1.4; letter-spacing: .01em;
  color: var(--green);
  max-width: 560px;
  mix-blend-mode: multiply;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .55), 0 -1px 1px rgba(0, 0, 0, .34);
}

/* ============================================================
   Fondation
   ============================================================ */
.fondation { background: var(--green); color: var(--white); padding: 80px var(--pad-x) 0; }
.fondation__intro { max-width: var(--maxw); margin: 0 auto 80px; }
.fondation .eyebrow { color: var(--green-light); margin-bottom: 24px; }
.fondation__title {
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.04; letter-spacing: .02em;
}
.fondation__accent {
  margin-top: 30px;
  font-weight: 300;
  font-size: clamp(30px, 3.8vw, 50px);
  letter-spacing: .01em; line-height: 1;
  color: var(--green-light);
}
.fondation__accent strong { font-weight: 400; }
.fondation__legal { max-width: 1080px; margin-top: 40px; }
.fondation__legal p {
  font-weight: 300; font-size: 18.5px; line-height: 1.8; letter-spacing: .02em;
  color: rgba(255, 255, 255, .85);
  text-align: justify;
}
.fondation__legal p + p { margin-top: 20px; }

/* zone photo + étiquette */
.fondation__photo {
  position: relative;
  margin: 44px calc(-1 * var(--pad-x)) 0;
  padding-bottom: clamp(130px, 17vw, 250px);
  overflow: hidden;
}
.fondation__photo-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/fondation-mosquee.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.fondation__photo-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    var(--green) 0%, var(--green) 7%,
    rgba(0, 102, 51, .82) 22%, rgba(0, 102, 51, .6) 45%,
    rgba(0, 102, 51, .38) 65%, rgba(0, 102, 51, .15) 85%,
    rgba(0, 102, 51, 0) 100%);
  pointer-events: none;
}
.fondation__photo-inner {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* bloc-étiquette */
.label-block { max-width: 1080px; margin-top: 36px; text-shadow: 0 1px 12px rgba(0, 38, 20, .5); }
.label-block__pct {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 46px);
  padding: clamp(24px, 3.2vw, 38px) clamp(24px, 3.4vw, 42px);
}
.label-block__pct .big {
  font-weight: 300;
  font-size: clamp(74px, 11.5vw, 152px);
  line-height: .78; letter-spacing: -.02em;
  color: var(--white);
}
.label-block__pct .big .pct { font-size: .6em; }
.label-block__pct .txt {
  font-weight: 500;
  font-size: clamp(15px, 2vw, 27px);
  letter-spacing: .04em; text-transform: uppercase;
  line-height: 1.26; color: var(--white);
  white-space: nowrap;
}
.label-block__countries {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .3);
}
.label-block__countries div {
  padding: clamp(16px, 2vw, 24px) clamp(24px, 3.4vw, 42px);
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: .03em; color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, .3);
}
.label-block__countries div:last-child { border-right: none; }
.label-block__missions-head {
  border-top: 1px solid rgba(255, 255, 255, .3);
  padding: clamp(22px, 2.8vw, 34px) 24px;
  text-align: center;
  font-weight: 400;
  font-size: clamp(20px, 2.7vw, 36px);
  letter-spacing: .38em; text-transform: uppercase; color: var(--white);
}
.label-block__missions {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .3);
  background: rgba(0, 84, 43, .5);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.mission {
  display: flex; flex-direction: column; align-items: center; gap: 15px;
  padding: clamp(26px, 3vw, 38px) 18px;
  border-right: 1px solid rgba(255, 255, 255, .3);
  transition: background .35s ease, transform .35s ease;
}
.mission:last-child { border-right: none; }
.mission:hover { background: rgba(255, 255, 255, .08); transform: translateY(-5px); }
.mission__name {
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 19px);
  letter-spacing: .13em; text-transform: uppercase; color: var(--white);
  text-align: center;
}
.mission__desc {
  font-weight: 300; font-size: 19px; line-height: 1.62;
  color: var(--white); text-align: justify; max-width: 260px;
}

/* ============================================================
   Rejoignez-nous
   ============================================================ */
.join { position: relative; background: var(--white); padding: 80px var(--pad-x); text-align: center; overflow: hidden; }
.join__motif {
  position: absolute; inset: 0;
  background-color: var(--green-alt); opacity: .04;
  -webkit-mask-image: url('../assets/mash-mask.png');
  mask-image: url('../assets/mash-mask.png');
  -webkit-mask-size: 300px; mask-size: 300px;
  -webkit-mask-repeat: repeat; mask-repeat: repeat;
  pointer-events: none;
}
.join__inner { position: relative; max-width: 680px; margin: 0 auto; }
.join h2 {
  margin-bottom: 16px;
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.02; letter-spacing: .03em; color: var(--ink);
}
.join p { font-weight: 300; font-size: 16px; line-height: 1.6; color: var(--gray); margin-bottom: 30px; }
.join form { display: flex; max-width: 480px; margin: 0 auto; border-bottom: 1px solid var(--green-alt); }
.join input {
  flex: 1; background: transparent; border: none;
  padding: 14px 4px; color: var(--ink);
  font-family: 'Jost'; font-weight: 300; font-size: 15px; letter-spacing: .04em;
  outline: none;
}
.join button {
  background: transparent; border: none; cursor: pointer;
  color: var(--green-alt);
  font-family: 'Jost'; font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  padding: 0 8px;
  transition: opacity .3s ease;
}
.join button:hover { opacity: .6; }

/* ============================================================
   Footer (étiquette)
   ============================================================ */
.site-footer { position: relative; overflow: hidden; padding: 56px var(--pad-x); }
.site-footer--green { background: var(--green); color: var(--white); }
.site-footer--white { background: var(--white); color: var(--green); border-top: 1px solid rgba(0, 102, 52, .14); }

.site-footer__grain {
  position: absolute; inset: 0;
  background-size: 150px; background-repeat: repeat;
  pointer-events: none;
}
.site-footer--green .site-footer__grain { background-image: url('../assets/paper-grain.png'); opacity: .6; }
.site-footer--white .site-footer__grain { background-image: url('../assets/paper-grain-green.png'); opacity: .7; }

.site-footer__frame {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .42);
}
.site-footer--white .site-footer__frame { border-color: rgba(0, 102, 51, .28); }

.footer-row { border-bottom: 1px solid rgba(255, 255, 255, .42); }
.site-footer--white .footer-row { border-bottom-color: rgba(0, 102, 51, .28); }

.footer-brand {
  padding: 30px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.footer-brand .wordmark .name { font-size: 27px; letter-spacing: .3em; }
.footer-brand .wordmark .sub { font-size: 25px; }
.footer-brand__tag { margin-top: 8px; font-weight: 300; font-size: 16px; letter-spacing: .18em; }
.site-footer--white .footer-brand__tag { color: var(--gray); }
.footer-brand img { height: 92px; width: auto; }

.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr; }
.footer-cell { padding: 22px 40px; }
.footer-cell + .footer-cell,
.footer-grid .footer-cell:first-child { border-right: 1px solid rgba(255, 255, 255, .42); }
.site-footer--white .footer-grid .footer-cell:first-child { border-right-color: rgba(0, 102, 51, .28); }
.footer-grid .footer-cell:last-child { border-right: none; }

.footer-heading {
  font-size: 17px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.footer-links a { text-decoration: none; transition: opacity .3s ease; }
.footer-links a:hover { opacity: .6; }
.footer-links .sep { opacity: .55; }
.site-footer--white .footer-links .sep { opacity: .4; }
.footer-contact {
  display: flex; flex-direction: column; gap: 14px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.footer-contact a { text-decoration: none; transition: opacity .3s ease; }
.footer-contact a:hover { opacity: .6; }

.footer-legal {
  padding: 18px 40px;
  display: flex; gap: 26px; flex-wrap: wrap; align-items: center;
  font-size: 12px; letter-spacing: .04em;
}
.footer-legal a { text-decoration: none; transition: opacity .3s ease; }
.footer-legal a:hover { opacity: .6; }
.site-footer--white .footer-legal { color: var(--gray); }

.footer-social {
  padding: 18px 40px;
  display: flex; gap: 24px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; font-size: 12px; letter-spacing: .1em;
}
.footer-social__icons { display: flex; gap: 16px; align-items: center; }
.footer-social__icons a { display: inline-flex; transition: opacity .3s ease; }
.footer-social__icons a:hover { opacity: .6; }
.footer-social__tags { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   Professionnels — spécifique
   ============================================================ */
.pro-hero {
  position: relative;
  height: 74vh; min-height: 520px;
  overflow: hidden; background: #1a120c;
}
.pro-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
  animation: ntk-fade 1.2s ease forwards;
}
.pro-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 8, .45), rgba(20, 12, 8, .2) 40%, rgba(20, 12, 8, .7));
}
.pro-hero__content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 clamp(32px, 7vw, 110px) clamp(48px, 7vh, 84px);
}
.pro-hero__content > div {
  max-width: 760px;
  opacity: 0;
  animation: ntk-rise 1s var(--ease) .2s forwards;
}
.pro-hero .eyebrow { color: rgba(255, 255, 255, .85); margin-bottom: 24px; }
.pro-hero h1 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 1; letter-spacing: .02em;
}

.pro-intro { background: var(--white); padding: clamp(70px, 9vw, 118px) var(--pad-x) clamp(36px, 4.5vw, 58px); }
.pro-intro__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.pro-intro p {
  font-weight: 300;
  font-size: clamp(22px, 2.7vw, 33px);
  line-height: 1.45; letter-spacing: .01em; color: var(--ink);
}

.pro-args { background: var(--white); padding: 0 var(--pad-x) clamp(80px, 9vw, 120px); }
.pro-args__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 5vw, 76px); align-items: center;
}
.pro-args__photo img { width: 100%; height: auto; }
.arg {
  display: flex; gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 102, 52, .16);
}
.arg:last-child { border-bottom: 1px solid rgba(0, 102, 52, .16); }
.arg__mark { color: var(--green); font-size: 17px; line-height: 1.7; flex-shrink: 0; }
.arg h3 { margin-bottom: 8px; font-weight: 500; font-size: 20px; letter-spacing: .02em; color: var(--ink); }
.arg p { font-weight: 300; font-size: 16px; line-height: 1.65; color: var(--gray); }

.pro-cta { position: relative; background: var(--green); color: var(--white); padding: 130px var(--pad-x); overflow: hidden; }
.pro-cta__motif {
  position: absolute; inset: 0;
  background-color: rgba(255, 255, 255, .07);
  -webkit-mask-image: url('../assets/motif-mask.png');
  mask-image: url('../assets/motif-mask.png');
  -webkit-mask-size: 170px auto; mask-size: 170px auto;
  -webkit-mask-repeat: repeat; mask-repeat: repeat;
  -webkit-mask-position: center; mask-position: center;
  pointer-events: none;
}
.pro-cta__inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.pro-cta .eyebrow { color: rgba(255, 255, 255, .8); margin-bottom: 26px; font-size: 17px; }
.pro-cta h2 {
  margin-bottom: 40px;
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.04; letter-spacing: .02em;
}
.pro-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Responsive (mobile)
   ============================================================ */
@media (max-width: 860px) {
  :root { --pad-x: 22px; }

  .hero__title { white-space: normal; }
  .hero__title--2 { margin-top: 28px; }

  .histoire__p--nowrap { white-space: normal; }

  .halal__cols { grid-template-columns: 1fr; gap: 40px; }
  .halal__col { border-right: none; padding: 0; }

  .fondation__legal p { text-align: left; }
  .label-block__pct { flex-direction: column; gap: 10px; text-align: center; }
  .label-block__pct .txt { white-space: normal; text-align: center; }
  .label-block__countries { grid-template-columns: 1fr; }
  .label-block__countries div { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .3); }
  .label-block__missions { grid-template-columns: 1fr; }
  .mission { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .3); }
  .mission__desc { max-width: none; }

  /* La Bouteille -> empilé */
  .btl-stage { height: auto; display: flex; flex-direction: column; align-items: center; gap: 6px; }
  .btl-stage svg { display: none; }
  .btl-stage .bottle {
    position: relative; left: auto; top: auto;
    transform: none; opacity: 1;
    width: auto; height: auto; max-height: 440px; max-width: 74%;
    margin-bottom: 10px;
  }
  .btl-stage.in .bottle { transform: none; }
  .cap {
    position: static; opacity: 1; transform: none;
    width: 100%; max-width: 440px; text-align: center; margin: 12px auto;
  }
  .cap p { text-align: center; }

  .pro-args__inner { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-cell:first-child { border-right: none; }
}

@media (max-width: 560px) {
  :root { --pad-x: 16px; }
  .label-block__pct .big { font-size: 64px; }
  .engrave-1 { font-size: 66px; }
}
