:root {
  /* Brand — driven by the page's inline accent declarations */
  --c-accent:        #e6bd1a;   /* honey gold (default accent) */
  --c-accent-dark:   #c9a414;
  --c-accent-soft:   rgba(230, 189, 26, 0.12);
  --c-green:         #80c342;   /* extra-color-1, Greenpeace meadow green */
  --c-green-dark:    #5fa324;
  --c-bronze:        #a67600;   /* extra-color-2 */
  --c-dark:          #333333;   /* extra-color-3 */
  --c-cta-bg:        #ECEBE9;
  --c-cta-text:      #4B4F52;

  /* Surfaces */
  --c-bg:            #ffffff;
  --c-bg-alt:        #fdfdfd;
  --c-bg-warm:       #fbf6e7;
  --c-bg-petition:   #212121;
  --c-bg-petition-2: #1a1a1a;

  /* Text */
  --c-text:          #555555;
  --c-text-strong:   #333333;
  --c-text-soft:     #888888;
  --c-text-light:    rgba(255, 255, 255, 0.85);
  --c-heading:       #232323;
  --c-line:          rgba(0, 0, 0, 0.08);
  --c-line-strong:   rgba(0, 0, 0, 0.14);
  --c-line-light:    rgba(255, 255, 255, 0.15);

  /* Type */
  --f-body:    'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --f-heading: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --f-light:   'Roboto', sans-serif;

  /* Layout */
  --container-max:   1100px;
  --container-pad:   18px;
  --row-gutter:      30px;
  --header-h:        112px;        /* matches inline #header-space height */
  --header-secondary-h: 38px;
  --header-h-stuck:  70px;

  /* Effects */
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px -8px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 26px 60px -20px rgba(0, 0, 0, 0.28);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; height: auto; display: block; border: 0; }

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
a:hover, a:focus { color: var(--c-accent-dark); }

ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1.2em; }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

/* Clearfix utility used by Salient */
.clear { clear: both; }
.clearfix::after, .row::after, .container::after { content: ""; display: table; clear: both; }

/* Floats */
.left { float: left; }
.right { float: right; }
.text-align-center { text-align: center; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  font-weight: 400;
  color: var(--c-heading);
  line-height: 1.25;
  margin: 0 0 0.5em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 300; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 300; }
h3 { font-size: 1.35rem; font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
h5 { font-size: 1rem; }
h6 { font-size: 0.88rem; }

.uppercase { text-transform: uppercase; letter-spacing: 0.06em; }
strong, b { font-weight: 600; color: var(--c-text-strong); }

/* --------------------------------------------------------------------------
   4. LAYOUT — Salient grid (12-column) and WPBakery columns
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}
.container-wrap { width: 100%; position: relative; }
.main-content { width: 100%; }

.row {
  width: 100%;
  position: relative;
}

/* Salient .span_N columns (out of 12) — only floats with margin when used as
   the original Salient grid. WPBakery .wpb_column.col uses internal padding
   for its gutters instead, so margin-right is overridden by the .wpb_column
   rule below. */
.col {
  float: left;
  position: relative;
  min-height: 1px;
}
.col.span_1, .col.span_2, .col.span_3, .col.span_4, .col.span_5, .col.span_6,
.col.span_7, .col.span_8, .col.span_9, .col.span_10, .col.span_11 {
  margin-right: 2.5%;
}
.col.col_last, .col:last-child { margin-right: 0; }
.col.span_1  { width: 6.04167%; }
.col.span_2  { width: 14.5833%; }
.col.span_3  { width: 23.125%; }
.col.span_4  { width: 31.6667%; }
.col.span_5  { width: 40.2083%; }
.col.span_6  { width: 48.75%; }
.col.span_7  { width: 57.2917%; }
.col.span_8  { width: 65.8333%; }
.col.span_9  { width: 74.375%; }
.col.span_10 { width: 82.9167%; }
.col.span_11 { width: 91.4583%; }
.col.span_12 { width: 100%; margin-right: 0; float: none; }

/* WPBakery vc_span columns (also out of 12) — used by .wpb_column.
   These have a .col class in markup too, so we explicitly null out margin-right
   so the .span_N rule never applies (.wpb_column never gets a .span_N class). */
.wpb_column {
  position: relative;
  display: block;
  padding: 0 15px;
  box-sizing: border-box;
  float: left;
  margin-right: 0;
}
.wpb_column.vc_span12 { width: 100%; }
.wpb_column.vc_span11 { width: 91.6667%; }
.wpb_column.vc_span10 { width: 83.3333%; }
.wpb_column.vc_span9  { width: 75%; }
.wpb_column.vc_span8  { width: 66.6667%; }
.wpb_column.vc_span7  { width: 58.3333%; }
.wpb_column.vc_span6  { width: 50%; }
.wpb_column.vc_span5  { width: 41.6667%; }
.wpb_column.vc_span4  { width: 33.3333%; }
.wpb_column.vc_span3  { width: 25%; }
.wpb_column.vc_span2  { width: 16.6667%; }
.wpb_column.vc_span1  { width: 8.3333%; }

/* WPBakery row */
.wpb_row, .vc_row-fluid {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}
.wpb_row::after, .vc_row-fluid::after { content: ""; display: table; clear: both; }

/* Full-width section escapes the container into the viewport edges */
.full-width-section {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.standard_section { position: relative; }

/* Wrap a typoblock's inner content to container width when inside full-width section */
.full-width-section > .col,
.full-width-section > .wpb_column {
  max-width: var(--container-max);
  margin-left: auto !important;
  margin-right: auto !important;
  float: none;
}
.full-width-section > .col::after { content: ""; display: table; clear: both; }

/* Inner content padding for WPBakery widgets */
.wpb_wrapper { width: 100%; }
.wpb_content_element { margin-bottom: 18px; position: relative; }
.wpb_content_element:last-child { margin-bottom: 0; }
.wpb_text_column { margin-bottom: 12px; }

/* "extra-padding" used inside section titles */
.extra-padding { padding: 18px 0; }

/* Screen-reader text */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px;
  overflow: hidden;
}

/* dark/light schemes on column wrappers (Salient quirk: .dark = dark text) */
.col.dark { color: var(--c-text); }

/* --------------------------------------------------------------------------
   5. HEADERS — secondary top bar + main header
   -------------------------------------------------------------------------- */

/* The body needs no extra padding because the markup includes #header-space */
#header-space {
  height: var(--header-h);
  width: 100%;
}

/* --- Secondary header bar (above main, holds socials + secondary nav + lang) --- */
#header-secondary-outer {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1010;
  background: var(--c-bg-petition);
  color: var(--c-text-light);
  min-height: var(--header-secondary-h);
  font-size: 12px;
  border-bottom: 1px solid var(--c-line-light);
}
#header-secondary-outer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-secondary-h);
  gap: 12px;
}
#header-secondary-outer nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 14px;
}

/* Social icons on the left */
#header-secondary-outer #social {
  display: flex;
  align-items: center;
  gap: 4px;
}
#header-secondary-outer #social li { display: inline-flex; }
#header-secondary-outer #social a {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  border-radius: 50%;
  font-size: 12px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
#header-secondary-outer #social a:hover {
  color: var(--c-accent);
  background: rgba(255,255,255,0.06);
}

/* Secondary menu (Rapport, Actualités, Contacts, Médias, lang) */
#header-secondary-outer ul.sf-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
#header-secondary-outer ul.sf-menu > li {
  position: relative;
  padding: 0;
}
#header-secondary-outer ul.sf-menu > li > a {
  display: inline-flex;
  align-items: center;
  height: var(--header-secondary-h);
  padding: 0 12px;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
}
#header-secondary-outer ul.sf-menu > li > a:hover,
#header-secondary-outer ul.sf-menu > li.current-menu-item > a {
  color: var(--c-accent);
}

/* Language switcher dropdown */
.custom-lang-switcher { position: relative; }
.custom-lang-switcher > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.custom-lang-switcher > a::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.2s var(--ease);
}
.custom-lang-switcher:hover > a::after { transform: rotate(-135deg) translate(-1px, -1px); }
.submenu-languages {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: #fff;
  color: var(--c-text);
  padding: 6px 0;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear 0.2s;
  z-index: 50;
}
.custom-lang-switcher:hover .submenu-languages,
.custom-lang-switcher:focus-within .submenu-languages {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear;
}
.submenu-languages li { display: block; }
.submenu-languages a {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--c-text);
}
.submenu-languages a:hover { background: var(--c-accent-soft); color: var(--c-accent-dark); }

/* --- Main header --- */
#header-outer {
  position: fixed;
  top: var(--header-secondary-h);
  left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-top: 28px;
  padding-bottom: 28px;
  box-shadow: 0 1px 0 var(--c-line);
  transition: padding 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
/* When data-bg-header="true" + light scheme over hero: transparent on top */
body[data-bg-header="true"] #header-outer:not(.scrolled-down) {
  background: rgba(255, 255, 255, 0.0);
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body[data-bg-header="true"] #header-outer:not(.scrolled-down) header#top a:not(.nectar-button) {
  color: #fff;
}
body[data-bg-header="true"] #header-outer.scrolled-down {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  padding-top: 14px;
  padding-bottom: 14px;
}

header#top {
  position: relative;
  width: 100%;
}
header#top .container { padding: 0 var(--container-pad); }
header#top .row { display: flex; align-items: center; justify-content: space-between; }
header#top .col.span_3, header#top .col.span_9 { float: none; margin-right: 0; }
header#top .col.span_3 { width: auto; }
header#top .col.span_9 { width: auto; flex: 0 0 auto; }

/* Logo */
header#top #logo {
  display: inline-flex;
  align-items: center;
  color: var(--c-text-strong);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 22px !important;
}
header#top #logo img {
  height: 22px;
  width: auto;
  display: block;
}

/* Main nav */
header#top nav { display: flex; align-items: center; }
header#top ul.sf-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
header#top ul.sf-menu > li {
  position: relative;
}
header#top nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  padding: 1px 14px 29px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-strong);
  position: relative;
  transition: color 0.2s var(--ease);
}
header#top nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 26px;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
header#top nav > ul > li:hover > a::after,
header#top nav > ul > li.current-menu-item > a::after,
header#top nav > ul > li.current_page_item > a::after,
header#top nav > ul > li.current_page_ancestor > a::after {
  transform: scaleX(1);
}
header#top nav > ul > li:hover > a,
header#top nav > ul > li.current-menu-item > a,
header#top nav > ul > li.current_page_item > a { color: var(--c-accent) !important; }

/* Sub-menus */
header#top .sf-menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-top: 3px solid var(--c-accent);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
  z-index: 50;
}
header#top .sf-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear;
}
header#top .sf-menu li ul li a {
  display: block;
  padding: 10px 18px;
  color: var(--c-text);
  font-size: 13px;
  font-family: var(--f-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}
header#top .sf-menu li ul li a:hover {
  background: var(--c-accent-soft);
  color: var(--c-accent-dark);
}

/* Dropdown caret */
.sf-sub-indicator {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  height: 20px;
  font-size: 10px;
  opacity: 0.7;
}
.sf-sub-indicator i { line-height: 1; }

/* Mobile toggle (hidden on desktop) */
#toggle-nav {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--c-text-strong);
  font-size: 20px;
}
#toggle-nav:hover { background: var(--c-accent-soft); color: var(--c-accent-dark); }

/* Search overlay */
#search-outer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
}
#search-outer.open { display: block; }
#search { padding-top: 30vh; }
#search-box input[type="text"] {
  width: 100%;
  padding: 18px 0;
  font-size: 2rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  outline: none;
}
#close {
  position: absolute;
  top: 20px; right: 20px;
}
#close a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
}
.icon-salient-x::before { content: "✕"; }

/* --------------------------------------------------------------------------
   6. MOBILE MENU (Salient #mobile-menu, hidden by default)
   -------------------------------------------------------------------------- */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 86vw);
  height: 100vh;
  background: #fff;
  overflow-y: auto;
  z-index: 2050;
  box-shadow: -10px 0 30px rgba(0,0,0,0.18);
  padding: 80px 0 30px;
}
body.mobile-menu-open #mobile-menu { display: block; }
#mobile-menu ul { display: block; }
#mobile-menu li { border-bottom: 1px solid var(--c-line); }
#mobile-menu li a {
  display: block;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-strong);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#mobile-menu li.open > a, #mobile-menu li a:hover { color: var(--c-accent); }
#mobile-menu .sub-menu { background: var(--c-bg-warm); }
#mobile-menu .sub-menu a {
  padding: 10px 36px;
  font-size: 13px;
  text-transform: none;
  font-weight: 400;
  color: var(--c-text);
}
#mobile-search input {
  width: calc(100% - 48px);
  margin: 12px 24px;
  padding: 10px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff;
}

/* --------------------------------------------------------------------------
   7. NECTAR SLIDER — fullwidth video hero
   -------------------------------------------------------------------------- */
.parallax_slider_outer {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #000;
}
.nectar-slider-wrap {
  position: relative;
  width: 100%;
  height: 750px;
}
.swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Video background */
.swiper-slide .video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.swiper-slide .video-wrap video,
.swiper-slide .slider-video {
  position: absolute;
  top: 50%; left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Texture / dim overlay over the video */
.swiper-slide .video-texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.30) 0%,
      rgba(0, 0, 0, 0.50) 60%,
      rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.swiper-slide .video-texture.active_texture::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(230, 189, 26, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(128, 195, 66, 0.12), transparent 50%);
  pointer-events: none;
}
.mobile-video-image { display: none; }

/* Slide content (left aligned per data-x-pos="left") */
.swiper-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
}
.swiper-slide[data-y-pos="middle"] .container { align-items: center; }
.swiper-slide[data-y-pos="top"]    .container { align-items: flex-start; padding-top: 12vh; }
.swiper-slide[data-y-pos="bottom"] .container { align-items: flex-end;   padding-bottom: 12vh; }

.swiper-slide .content {
  max-width: 640px;
  color: #fff;
}
.swiper-slide .content h2 {
  font-family: var(--f-heading);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
  animation: bee-fade-up 0.9s var(--ease) both;
}
.swiper-slide .content p {
  font-family: var(--f-light);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  color: rgba(255,255,255,0.92);
  margin: 0 0 28px;
  line-height: 1.4;
  animation: bee-fade-up 0.9s var(--ease) 0.15s both;
}
.swiper-slide .content p span { color: inherit; }
.swiper-slide .buttons {
  animation: bee-fade-up 0.9s var(--ease) 0.3s both;
}
.swiper-slide .button.transparent a,
.swiper-slide .button a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 99px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}
.swiper-slide .button.transparent a:hover,
.swiper-slide .button a:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
  transform: translateY(-2px);
}
.swiper-slide .button a.primary-color { /* used in markup */ }

@keyframes bee-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Loader (hidden once content shows) */
.nectar-slider-loading { display: none; }

/* --------------------------------------------------------------------------
   8. SECTION CONTAINERS — alternating bands
   -------------------------------------------------------------------------- */
.full-width-section.standard_section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
/* Inline styles set bg color + padding per row; we just ensure they look right */
.link-boxes { /* the 3-feature row */ }

/* --------------------------------------------------------------------------
   9. ICONS — minimal fallback glyphs so the icon-* classes render
   without the original Font Awesome / Steadysets / Linecon font files
   -------------------------------------------------------------------------- */
[class^="icon-"], [class*=" icon-"] {
  display: inline-block;
  line-height: 1;
  font-style: normal;
  font-weight: 400;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}
.icon-default-style {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px; height: 90px;
  font-size: 38px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.col:hover .icon-default-style {
  transform: translateY(-4px) scale(1.06);
  background: var(--c-accent);
  color: #fff;
}
.icon-tiny {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  font-size: 14px;
  border-radius: 50%;
  color: var(--c-accent);
}

/* Glyph fallbacks via unicode characters */
.icon-twitter::before        { content: "𝕏"; font-family: 'Segoe UI', sans-serif; }
.icon-facebook::before       { content: "f"; font-family: Georgia, serif; font-weight: 700; }
.icon-google-plus::before    { content: "G+"; font-family: var(--f-body); font-weight: 700; font-size: 0.78em; }
.icon-reorder::before        { content: "≡"; }
.icon-angle-down::before     { content: "▾"; }
.icon-angle-up::before       { content: "▲"; font-size: 0.85em; }
.steadysets-icon-bolt::before { content: "⚡"; }
.icon-truck::before          { content: "🚜"; font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif; }
.icon-lightbulb::before      { content: "💡"; font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif; }
.icon-twitter, .icon-facebook, .icon-google-plus, .icon-reorder,
.icon-angle-down, .icon-angle-up { font-family: var(--f-body); font-weight: 600; }

/* --------------------------------------------------------------------------
   10. BUTTONS — .nectar-button with size + color modifiers
   -------------------------------------------------------------------------- */
.nectar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--c-accent);
  border-radius: 99px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  box-shadow: 0 6px 16px -6px rgba(230, 189, 26, 0.45);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.25s var(--ease);
}
.nectar-button:hover {
  color: #fff !important;
  transform: translateY(-2px);
  background: var(--c-accent-dark);
  box-shadow: 0 12px 22px -8px rgba(230, 189, 26, 0.55);
}
.nectar-button.small  { padding: 11px 22px; font-size: 11px; }
.nectar-button.medium { padding: 14px 30px; font-size: 12px; }
.nectar-button.large  { padding: 16px 36px; font-size: 13px; }
.nectar-button.extra-color-1 { background: var(--c-green) !important; box-shadow: 0 6px 16px -6px rgba(128, 195, 66, 0.45); }
.nectar-button.extra-color-1:hover { background: var(--c-green-dark) !important; box-shadow: 0 12px 22px -8px rgba(128, 195, 66, 0.55); }
.nectar-button.extra-color-2 { background: var(--c-bronze) !important; }
.nectar-button.extra-color-3 { background: var(--c-dark) !important; }

/* Empty button anchors (markup has empty <a class="nectar-button">) — give them
   default "Read more" label via ::before so they don't render as zero-width */
.nectar-button:empty::before {
  content: "En savoir plus";
}

/* --------------------------------------------------------------------------
   11. THREE-COLUMN FEATURE CARDS — La situation / Les causes / La solution
   -------------------------------------------------------------------------- */
.link-boxes .col.centered-text {
  text-align: center;
  padding: 20px 28px;
  border-radius: var(--r-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
}
.link-boxes .col.centered-text:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.link-boxes .col.centered-text h3 {
  font-family: var(--f-heading);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--c-heading);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.link-boxes .col.centered-text p {
  text-align: justify;
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.7;
  margin: 0 0 14px;
}
.link-boxes .col.centered-text p:has(.icon-default-style),
.link-boxes .col.centered-text p:first-child {
  text-align: center !important;
  margin-bottom: 16px;
}
/* Each feature gets a distinct accent on its icon */
.link-boxes .wpb_column:nth-child(1) .icon-default-style { background: rgba(230, 189, 26, 0.10); color: var(--c-accent); }
.link-boxes .wpb_column:nth-child(2) .icon-default-style { background: rgba(166, 118, 0, 0.10);  color: var(--c-bronze); }
.link-boxes .wpb_column:nth-child(3) .icon-default-style { background: rgba(128, 195, 66, 0.12); color: var(--c-green); }
.link-boxes .wpb_column:nth-child(2) .col:hover .icon-default-style { background: var(--c-bronze); color: #fff; }
.link-boxes .wpb_column:nth-child(3) .col:hover .icon-default-style { background: var(--c-green); color: #fff; }

/* --------------------------------------------------------------------------
   12. TYPOBLOCK — used for image+text alternating rows
   -------------------------------------------------------------------------- */
.typoblock {
  padding-right: 14px;
}
.typoblock h2 {
  font-family: var(--f-heading);
  font-weight: 300;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  color: var(--c-heading);
  margin: 0 0 14px;
  position: relative;
  padding-bottom: 14px;
  letter-spacing: -0.005em;
}
.typoblock h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 3px;
  margin-top: 14px;
}
.typoblock .description {
  display: block;
  font-family: var(--f-light);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--c-text-strong);
  line-height: 1.55;
  margin: 0 0 18px;
}
.typoblock p {
  color: var(--c-text);
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0 0 14px;
}

/* Image with animation */
.img-with-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  border-radius: var(--r-md);
  width: 100%;
  height: auto;
  display: block;
  box-shadow: var(--shadow-sm);
}
.img-with-animation.animated,
/* fallback for when JS doesn't run — make visible by default */
.img-with-animation {
  opacity: 1;
  transform: none;
}


/* --------------------------------------------------------------------------
   13. CONVERSION / PETITION SECTION
   -------------------------------------------------------------------------- */
.conversion-section {
  position: relative;
  color: var(--c-text-light);
  overflow: hidden;
}
.conversion-section::before {
  /* subtle radial accent behind the petition */
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(230, 189, 26, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(128, 195, 66, 0.06), transparent 50%);
  pointer-events: none;
}
.conversion-section .col.dark { color: var(--c-text-light); }
.conversion-section h2,
.conversion-section h3,
.conversion-section h4 { color: #fff; }
.conversion-section p { color: rgba(255, 255, 255, 0.8); }
.conversion-section a:not(.nectar-button) { color: var(--c-accent); }

/* Conversion title */
.conversion-title .section-title h2 {
  font-family: var(--f-heading);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
  color: #fff;
  position: relative;
  padding-bottom: 18px;
}
.conversion-title .section-title h2::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 80px; height: 3px;
  background: var(--c-accent);
  transform: translateX(-50%);
  border-radius: 3px;
}

/* Letter / petition block (text on left + bee illustration on right) */
.letter-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 26px;
  position: relative;
}
.letter-block .petition.border-right {
  border-right: 1px dashed rgba(255, 255, 255, 0.15);
  padding-right: 24px;
}
.letter-block h2 {
  font-family: var(--f-heading);
  font-weight: 400;
  font-size: 1.55rem;
  color: #fff;
  margin: 0 0 14px;
}
.letter-block p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.bee-sign-block {
  text-align: center;
  padding-left: 12px;
}
.bee-sign-block img {
  max-height: 240px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
}

/* Signature counter (left column) */
.signature-counter,
.last_signature {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}
.signatures-icon,
.lastsignature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-bg-petition);
  margin-bottom: 14px;
  font-size: 24px;
}
.signatures-icon::before { content: "✓"; }
.lastsignature-icon::before { content: "🐝"; font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif; font-size: 22px; }
.signatures-count {
  display: block;
  font-family: var(--f-heading);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--c-accent);
  line-height: 1;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.signature-counter p {
  margin: 0;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}
.last_signature p {
  margin: 0 0 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lastsigner-txt {
  display: block;
  font-family: var(--f-light);
  font-weight: 300;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.4;
}

/* Petition form column */
.petition-form {
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
  position: relative;
}
.petition-form * { color: var(--c-text); }
.petition-form .section-title h2 {
  font-family: var(--f-heading);
  font-weight: 400;
  font-size: 1.3rem;
  text-align: center;
  color: var(--c-heading) !important;
  margin: 0 0 18px;
  padding-bottom: 12px;
  position: relative;
}
.petition-form .section-title h2::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 40px; height: 2px;
  background: var(--c-accent);
  transform: translateX(-50%);
}

/* --------------------------------------------------------------------------
   14. NINJA FORMS
   -------------------------------------------------------------------------- */
.ninja-forms-form {
  display: block;
}
.ninja-forms-all-fields-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.field-wrap {
  position: relative;
  width: 100%;
}
.ninja-forms-field {
  width: 100%;
  display: block;
  padding: 12px 14px;
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--c-text-strong);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.ninja-forms-field:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-soft);
}
.ninja-forms-field-error {
  color: var(--c-bronze);
  font-size: 0.82rem;
  margin-top: 4px;
}
/* Submit button — inherits .ninja-forms-field, but we need to recolor */
.submit-wrap .ninja-forms-field,
#nf_submit_25 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--c-accent);
  color: #fff;
  border: 0;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 99px;
  cursor: pointer;
  box-shadow: 0 6px 16px -6px rgba(230, 189, 26, 0.45);
}
.submit-wrap .ninja-forms-field:hover,
#nf_submit_25 input[type="submit"]:hover {
  background: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -8px rgba(230, 189, 26, 0.55);
}

/* Checkbox row */
.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--c-text);
}
.checkbox-wrap input[type="checkbox"] {
  width: 18px; height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--c-accent);
}
.checkbox-wrap label {
  cursor: pointer;
  user-select: none;
}

/* Hide raw hidden label-inside labels */
[type="hidden"] { display: none; }
.label-inside .ninja-forms-field {
  /* labels float inside placeholders — already handled by `value=` initial text */
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
#footer-outer {
  background: #1c1c1c;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  position: relative;
}
#footer-widgets {
  padding: 70px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 12% 20%, rgba(230, 189, 26, 0.06), transparent 50%),
    radial-gradient(circle at 88% 80%, rgba(128, 195, 66, 0.04), transparent 50%),
    #1c1c1c;
}
#footer-widgets .container { padding-top: 0; padding-bottom: 0; }
#footer-widgets .col { padding-right: 20px; }
#footer-widgets .widget { margin-bottom: 28px; }

#footer-outer h4 {
  font-family: var(--f-heading);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  padding-bottom: 12px;
  position: relative;
}
#footer-outer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--c-accent);
}

#footer-outer ul.menu { display: block; }
#footer-outer .widget_nav_menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
#footer-outer .widget_nav_menu li:last-child { border-bottom: 0; }
#footer-outer .widget_nav_menu a {
  display: block;
  padding: 9px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
#footer-outer .widget_nav_menu a:hover {
  color: var(--c-accent);
  padding-left: 6px;
}
#footer-outer .widget_nav_menu a::before {
  content: "›";
  color: var(--c-accent);
  margin-right: 8px;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
  display: inline-block;
}
#footer-outer .widget_nav_menu a:hover::before { opacity: 1; }

/* Copyright bar */
#copyright {
  padding: 22px 0;
  background: #141414;
}
#copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
#copyright > .container > div:first-child {
  flex: 1;
}
#copyright p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}
#copyright p a {
  color: rgba(255, 255, 255, 0.7);
}
#copyright p a:hover { color: var(--c-accent); }
#copyright ul#social { display: flex; gap: 8px; }

/* --------------------------------------------------------------------------
   16. SCROLL-TO-TOP BUTTON
   -------------------------------------------------------------------------- */
#to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-petition);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 500;
}
#to-top:hover {
  background: var(--c-accent) !important;
  color: #fff;
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   17. MISC — section-title, lazy-load placeholder, video iframe
   -------------------------------------------------------------------------- */
.section-title { width: 100%; padding: 8px 0; }
.section-title h1, .section-title h2 { margin-bottom: 0; }
.section-title.text-align-center { text-align: center; }
.section-title.extra-padding { padding: 18px 0; }

.row .col.section-title p {
  font-family: 'OpenSans', var(--f-body);
  color: var(--c-text-soft);
}

/* Lazy-loaded video iframe placeholder */
.wpb_video_widget { margin-bottom: 0; }
.wpb_video_wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
}
.wpb_video_wrapper iframe,
.wpb_video_wrapper .lazy-load-vimeo,
.wpb_video_wrapper .lazy-load-youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}
.lazy-load-vimeo, .lazy-load-youtube {
  background: #000 center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lazy-load-vimeo::after, .lazy-load-youtube::after {
  content: "▶";
  font-size: 60px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s var(--ease), color 0.2s var(--ease);
}
.lazy-load-vimeo:hover::after, .lazy-load-youtube:hover::after {
  color: var(--c-accent);
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE
   -------------------------------------------------------------------------- */

/* Tablet */
@media (max-width: 1000px) {
  :root {
    --container-pad: 18px;
    --header-h: 76px;
  }

  /* Hide secondary header bar on mobile (Salient default) */
  #header-secondary-outer { display: none; }
  #header-outer { top: 0; padding-top: 14px; padding-bottom: 14px; }
  #header-space { height: var(--header-h); }

  /* Show burger, hide main desktop nav */
  header#top nav { display: none; }
  #toggle-nav { display: inline-flex; }

  /* Logo sized */
  header#top #logo img { height: 26px; }
  header#top .row { padding-left: 4px; }

  /* Hero shorter on tablet */
  .parallax_slider_outer,
  .nectar-slider-wrap { height: 560px !important; }

  /* Three feature cards stack: 3 → 1 */
  .link-boxes .wpb_column.vc_span4 {
    width: 100%;
    padding-bottom: 12px;
  }

  /* Image+text rows: stack image on top */
  .wpb_column.vc_span8,
  .wpb_column.vc_span4,
  .wpb_column.vc_span6 {
    width: 100%;
    padding-bottom: 20px;
  }

  /* Petition: 3 columns → 1 */
  .conversion-section .wpb_column.vc_span4 {
    width: 100%;
    padding-bottom: 18px;
  }
  .conversion-section .wpb_column.vc_span10 { width: 70%; }
  .conversion-section .wpb_column.vc_span2  { width: 30%; }
  .letter-block .petition.border-right {
    border-right: 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding-right: 0;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  /* Footer: 3 → 1 */
  #footer-widgets .col.span_4 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
  #copyright .container { flex-direction: column; text-align: center; }

  /* Section padding tighter */
  .full-width-section.standard_section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
}

/* Mobile */
@media (max-width: 690px) {
  :root { --container-pad: 14px; }
  body { font-size: 14px; }

  .parallax_slider_outer,
  .nectar-slider-wrap { height: 460px !important; }
  .swiper-slide .content h2 { font-size: 2rem; }
  .swiper-slide .content p { font-size: 1rem; }

  /* Letter block layout: stack bee illustration below */
  .conversion-section .wpb_column.vc_span10,
  .conversion-section .wpb_column.vc_span2 { width: 100%; }
  .bee-sign-block img { max-height: 140px; }

  /* Buttons stack */
  .typoblock + .wpb_text_column .nectar-button { display: flex; width: 100%; margin-bottom: 8px; }

  /* Scroll-top smaller */
  #to-top { bottom: 14px; right: 14px; width: 40px; height: 40px; }

  /* Feature icons shrink */
  .icon-default-style { width: 70px; height: 70px; font-size: 30px; }

  .typoblock h2 { font-size: 1.5rem; }
  .typoblock .description { font-size: 1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .swiper-slide .content h2,
  .swiper-slide .content p,
  .swiper-slide .buttons { animation: none; }
}

/* --------------------------------------------------------------------------
   19. UTILITY — visibility helpers, mobile-only / desktop-only
   -------------------------------------------------------------------------- */
@media (min-width: 1001px) {
  .mobile-only { display: none !important; }
}
@media (max-width: 1000px) {
  .desktop-only { display: none !important; }
}

/* End of stylesheet */