/* =========================================================
   Les Mains Pleines de Pousses — feuille de style principale
   Reconstruction fidèle du site (thème Divi) en HTML/CSS statique
   Palette : #18AF91 (marque), #02d002 (survol), #374059 (bleu nuit)
   Polices : Lato (titres) + Open Sans (texte) — comme l'original
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
  font-size: 14px;
  line-height: 1.7em;
  color: #666;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; border: 0; display: block; }
a { color: #2ea3f2; text-decoration: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  color: #333;
  font-weight: 500;
  margin: 0;
  padding-bottom: 10px;
  line-height: 1em;
}
h1 { font-size: 30px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
p { margin: 0; padding-bottom: 1em; }
p:last-of-type { padding-bottom: 0; }
ul { margin: 0; padding: 0 0 0 1em; }

/* ---------- Grille Divi ---------- */
.section { position: relative; padding: 54px 0; }
.section-fullwidth { padding: 0; }
.row {
  position: relative;
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 27px 0;
  display: flex;
  flex-wrap: wrap;
}
.row.no-pad { padding: 0; }
.col { position: relative; }
.col-1-4 { width: 20.875%; margin-right: 5.5%; }
.col-1-3 { width: 29.6667%; margin-right: 5.5%; }
.col-1-2 { width: 47.25%; margin-right: 5.5%; }
.col-2-3 { width: 64.8333%; margin-right: 5.5%; }
.col-4-4 { width: 100%; margin-right: 0; }
.row > .col:last-child { margin-right: 0 !important; }

/* gouttières « 1 » : colonnes jointives */
.gutters1 > .col-1-2 { width: 50%; margin-right: 0; }
.gutters1 > .col-1-4 { width: 25%; margin-right: 0; }
/* gouttières « 2 » : grille des produits */
.gutters2 > .col-1-4 { width: 22.75%; margin-right: 3%; }

@media (min-width: 1350px) {
  .section { padding: 54px 0; }
  .row { padding: 27px 0; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  border: 0;
}
/* Bouton plein — vert marque */
.btn-brand {
  color: #fff !important;
  background-color: #18AF91;
  border: 3px solid #18AF91;
  border-radius: 4px;
  letter-spacing: 3px;
  font-size: 18px;
  padding: 0.3em 1em;
  transition: letter-spacing 300ms ease;
}
.btn-brand:hover { letter-spacing: 1px; }
/* Bouton du héros — un peu plus gros, coins 5px */
.btn-hero {
  color: #fff !important;
  background-color: #18AF91;
  border: 0;
  border-radius: 5px;
  letter-spacing: 3px;
  font-size: 23px;
  padding: 0.3em 1em;
  transition: letter-spacing 300ms ease;
}
.btn-hero:hover { letter-spacing: 1px; }
/* Bouton « texte » — Devenir Client */
.btn-text {
  color: #18AF91 !important;
  background: transparent;
  border: 0;
  border-radius: 0;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 0;
  transition: color 300ms ease;
}
.btn-text:hover { color: #02d002 !important; }

/* ---------- En-tête ---------- */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background-color: transparent;
  transition: background-color .4s ease, box-shadow .4s ease;
}
#main-header .header-container {
  padding: 12px 0;
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo-container { display: block; padding: 0; }
#logo {
  max-height: 100px;
  margin-top: 0;
  width: auto;
  transition: max-height .4s ease;
}
#top-navigation { padding: 15px 0 0 0; }
#top-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
#top-menu li { margin-left: 22px; }
#top-menu li a {
  display: block;
  font-size: 14px;
  color: #fff;
  padding-bottom: 15px;
  text-transform: none;
  transition: color .3s ease, opacity .3s ease;
}
#top-menu li a:hover { opacity: .7; }
#top-menu li.current a {
  color: #fff;
  box-shadow: inset 0 -2px 0 #18AF91;
}

/* En-tête fixe une fois la page défilée */
#main-header.fixed {
  background-color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
}
#main-header.fixed #logo { max-height: 80px; }
#main-header.fixed #top-navigation { padding: 20px 0 0 0; }
#main-header.fixed #top-menu li a { color: #666; font-size: 13px; padding-bottom: 20px; }
#main-header.fixed #top-menu li a:hover { color: #18AF91; opacity: 1; }
#main-header.fixed #top-menu li.current a {
  color: #18AF91;
  box-shadow: inset 0 -2px 0 #18AF91;
}

/* Menu mobile */
.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
}
.mobile-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: background .3s ease;
}
#main-header.fixed .mobile-toggle span { background: #333; }
#mobile-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 5%;
  background: #fff;
  border-top: 3px solid #18AF91;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}
#mobile-menu li { padding: 10px 5%; border-bottom: 1px solid rgba(0, 0, 0, .03); }
#mobile-menu li a { color: #666; font-size: 14px; }
#mobile-menu.open { display: block; }

/* ---------- En-tête plein écran (héros) ---------- */
.fullwidth-header {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.fullwidth-header .header-content-container {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
}
.fullwidth-header .header-content { max-width: 700px; }
.fullwidth-header h1,
.fullwidth-header h2 {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  color: #fff;
  line-height: 1.2em;
  font-weight: 500;
  padding-bottom: 20px;
}
.fullwidth-header .header-content p { color: #fff; font-size: 20px; line-height: 1.8em; }

.hero-home {
  padding: 12% 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .22) 55%, rgba(0, 0, 0, .38) 100%),
    url('../images/panier-site-web-1240x827-1.jpg');
}
.hero-home h1 { font-size: 69px; }

.page-hero { padding: 8% 0; }
.page-hero h1 { font-size: 60px; }
.page-hero-produits {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 100%),
    url('../images/IMG_3767-scaled.jpg');
}
.page-hero-mission {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 100%),
    url('../images/bg-qui.jpg');
}
.page-hero-contact {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 100%),
    url('../images/IMG_7055-1-scaled.jpg');
}

/* Bandeau d'appel à l'action final */
.cta-band {
  padding: 8% 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 100%),
    url('../images/variete.jpg');
  background-attachment: fixed;
}
.cta-band .header-content { max-width: 800px; }
.cta-band h2 { font-size: 60px; }

/* ---------- Section « Pourquoi » ---------- */
.section-why { padding: 100px 0; }
.section-why .row-intro { padding: 40px 0; }
.title-36 {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-size: 36px;
  line-height: 1.5em;
  padding-bottom: 0;
}
.intro-text { font-size: 16px; line-height: 1.8em; }
.intro-text p { padding-bottom: 1em; }

/* Blurbs (icône + titre + texte) */
.blurb { width: 85%; font-size: 16px; }
.blurb-icon {
  display: block;
  text-align: center;
  color: #18AF91;
  font-size: 96px;
  line-height: 1;
  margin-bottom: 20px;
}
.blurb h4 {
  font-size: 25px;
  color: #18AF91;
  letter-spacing: 1px;
  line-height: 2em;
  text-align: center;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  padding-bottom: 0;
}
.blurb-text { font-size: 16px; }

/* ---------- Mosaïque de photos ---------- */
.section-mosaic { padding: 0; }
.section-mosaic .row { width: 100%; max-width: 100%; padding: 0; }
.mosaic-frame { box-shadow: inset 0 0 0 8px #fff; display: block; position: relative; }
.mosaic-frame img { width: 100%; display: block; }
.mosaic-tall img { height: 920px; object-fit: cover; }
.mosaic-hover { position: relative; overflow: hidden; }
.mosaic-hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .3);
  opacity: 0;
  transition: opacity .5s ease;
}
.mosaic-hover:hover::after { opacity: 1; }
.section-mosaic .mosaic-inner { width: 100%; max-width: 100%; }
.mosaic-half { width: 50%; margin-right: 0; }

/* ---------- Section clients / terreau / compteurs ---------- */
.section-clients { padding: 100px 0; }
.row-clients { padding: 60px 0 0 0; }
.img-mais { padding-left: 40px; }
.text-18 { font-size: 18px; line-height: 1.8em; max-width: 525px; }
.mb-15 { margin-bottom: 15px; }

.row-dark {
  background-color: #374059;
  width: 74%;
  max-width: 1080px;
  margin: 0 auto 180px auto;
  padding: 0;
}
.row-dark > .col { padding: 5%; }
.row-dark h2 { color: #fff; }
.row-dark .text-18 { color: rgba(255, 255, 255, .66); }
.img-basilic {
  margin-top: -20px;
  margin-bottom: -100px;
  box-shadow: 0 2px 80px 0 rgba(0, 0, 0, .3);
}

.row-counters { padding: 60px 0 27px 0; }
.counter { text-align: center; margin-bottom: 40px; }
.counter .percent p {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.counter-0 .percent p { font-size: 72px; color: #f75002; }
.counter-1 .percent p { font-size: 84px; color: #f29e02; }
.counter-2 .percent p { font-size: 84px; color: #374059; }
.counter h3 {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  line-height: 1.5em;
  font-size: 18px;
  font-weight: 500;
  padding-top: 10px;
}

/* ---------- Témoignage ---------- */
.section-testimonial {
  padding: 16% 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 100%),
    url('../images/IMG_3767-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, .1);
}
.section-testimonial .slide-description {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
.section-testimonial h4 {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.5em;
  color: #fff;
  padding-bottom: 20px;
}
.section-testimonial .slide-content {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 900;
  line-height: 1.9em;
  color: #fff;
}

/* ---------- Sections texturées (formulaire + infolettre) ---------- */
.section-texture {
  background-color: #f7f7f7;
  background-image: url('../images/background-texture.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 54px 0 140px 0;
}
.title-37 {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
  font-size: 37px;
  line-height: 1.3em;
  color: #000;
  padding-bottom: 0;
}
.text-17 {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-size: 17px;
  letter-spacing: 1px;
  padding-top: 15px;
}

/* Champ piège anti-robots (invisible pour les humains) */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Formulaire de contact */
.contact-form { display: flex; flex-wrap: wrap; }
.field { width: 100%; margin: 0 0 3% 0; }
.field-half { width: 48.5%; margin-right: 3%; }
.field-half.last { margin-right: 0; }
.field label { display: none; }
.field input,
.field textarea {
  width: 100%;
  background-color: #eee;
  border: none;
  border-radius: 0;
  color: #999;
  font-size: 16px;
  font-family: inherit;
  padding: 16px;
  line-height: 1.7em;
}
.field textarea { min-height: 150px; resize: vertical; }
.contact-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}
.captcha { display: flex; align-items: center; gap: 8px; font-size: 16px; }
.captcha input {
  width: 60px;
  background-color: #eee;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-family: inherit;
}

/* Infolettre */
.section-newsletter {
  background-color: #f7f7f7;
  background-image: url('../images/background-texture.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 54px 0 140px 0;
  position: relative;
}
.newsletter { display: flex; flex-wrap: wrap; align-items: center; }
.newsletter-description { width: 50%; padding-right: 4%; }
.newsletter-description h2 {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-size: 36px;
  line-height: 1.5em;
  padding-bottom: 15px;
}
.newsletter-description p { font-size: 16px; line-height: 1.8em; }
.newsletter-form { width: 50%; }
.newsletter-form p { padding-bottom: 12px; }
.newsletter-form input {
  width: 100%;
  background-color: #eee;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-family: inherit;
  color: #999;
}
/* Séparateur en vague, repris de l'original */
.divider-bottom::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  z-index: 1;
  background-size: 100% 100px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9InJnYmEoMCwwLDAsMC4wNSkiPjxwYXRoIGQ9Ik03MjUuMjkgMTAxLjJDMzI1LjIyIDEyMi40OCAwIDAgMCAwdjE0MGgxMjgwVjBzLTE1NC42NCA3OS45Mi01NTQuNzEgMTAxLjJ6IiBmaWxsLW9wYWNpdHk9Ii4zIi8+PHBhdGggZD0iTTU1Ni40NSAxMTkuNzRDOTUzLjQxIDE0MCAxMjgwIDE0IDEyODAgMTR2MTI2SDBWMHMxNTkuNSA5OS40OCA1NTYuNDUgMTE5Ljc0eiIgZmlsbC1vcGFjaXR5PSIuNSIvPjxwYXRoIGQ9Ik02NDAgMTQwYzM1My40NiAwIDY0MC0xNDAgNjQwLTEzOXYxNDBIMFYwczI4Ni41NCAxNDAgNjQwIDE0MHoiLz48L2c+PC9zdmc+");
}

/* ---------- Partenaires ---------- */
.section-partners { padding: 90px 0; }
.partners-title { max-width: 700px; margin: 0 auto; text-align: center; }
.friend-logo {
  opacity: .6;
  transition: .6s;
  margin-bottom: 30px;
}
.friend-logo:hover {
  opacity: 1;
  margin-top: -5px;
  box-shadow: 0 18px 22px -15px rgba(0, 0, 0, .3);
}
.logo-orygine { margin-top: 44px; }
.logo-contrebandier { padding: 25px 0 17px 0; }
.logo-legende img { height: 100px; width: auto; margin: 16px auto 0; }
.logo-legende { padding-left: 20px; text-align: center; }
.logo-rioux { padding-top: 20px; }
.logo-buck { margin-top: -42px; }

/* ---------- Pied de page ---------- */
#footer { background-color: rgba(0, 0, 0, .74); padding: 54px 0; }
#footer .row { align-items: stretch; }
#footer .footer-logo,
#footer .footer-gov {
  display: flex;
  align-items: flex-end;   /* les trois logos posés sur la même ligne */
  height: 100px;
}
#footer .footer-logo { justify-content: flex-start; }
#footer .footer-gov { justify-content: center; }
#footer .footer-logo img,
#footer .footer-gov img {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 215px;
  margin: 0;
}
.footer-tagline {
  color: rgba(255, 255, 255, .54);
  font-size: 19px;
  padding-top: 15px;
}
.footer-tagline p { padding-bottom: 0; }
.footer-search input[type="text"] {
  width: 100%;
  padding: 0.715em;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.footer-search input[type="submit"] {
  display: none;
}
.footer-note { color: rgba(255, 255, 255, .54); font-size: 13px; padding-top: 15px; }

/* ---------- Page « Nos produits » ---------- */
.section-accordion { padding: 54px 0; }
.accordion .toggle {
  border: 1px solid #d9d9d9;
  margin-bottom: 10px;
  padding: 20px;
  background-color: #f4f4f4;
}
.accordion .toggle.open { background-color: #fff; }
.accordion .toggle-title {
  cursor: pointer;
  position: relative;
  padding: 0 50px 0 0;
  color: #666;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  margin: 0;
}
.accordion .toggle.open .toggle-title { color: #333; }
.accordion .toggle-title::after {
  content: '\2296';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #ccc;
  line-height: 1;
}
.accordion .toggle.open .toggle-title::after { display: none; }
.accordion .toggle-content { display: none; padding-top: 20px; }
.accordion .toggle.open .toggle-content { display: block; }

.section-products { padding: 100px 0; position: relative; }
.section-products .row { max-width: 1280px; padding: 8px 0; }
/* Séparateur en vague, en haut de la grille */
.divider-top::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100px;
  z-index: 1;
  background-size: 100% 100px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9InJnYmEoMCwwLDAsMC4xMykiPjxwYXRoIGQ9Ik0wIDUxLjc2YzM2LjIxLTIuMjUgNzcuNTctMy41OCAxMjYuNDItMy41OCAzMjAgMCAzMjAgNTcuMzEgNjQwIDU3LjMxIDI2Ni42NCAwIDMxMC00MC4wMiA1MTMuNTgtNTMuNDVWMEgweiIvPjwvZz48L3N2Zz4=");
}

.product-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .38);
  margin-bottom: 24px;
  transition: transform .4s ease, box-shadow .4s ease;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .45) 45%, rgba(0, 0, 0, .1) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -14px rgba(0, 0, 0, .5);
}
.product-card:hover::before,
.product-card:focus-within::before { opacity: 1; }
.product-card .card-content {
  position: relative;
  padding: 12px 14px;
  width: 97%;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}
.product-card:hover .card-content,
.product-card:focus-within .card-content { opacity: 1; transform: translateY(0); }
.product-card .card-title {
  color: #fff;
  font-size: 21px;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  line-height: 1.3em;
  padding-bottom: 6px;
  margin: 0;
}
.product-card .card-desc { color: #fff; font-size: 15px; line-height: 1.5em; }

/* Écrans tactiles : aucun survol possible, le texte reste visible */
@media (hover: none) {
  .product-card::before { opacity: 1; }
  .product-card .card-content { opacity: 1; transform: none; }
}

/* ---------- Page « Notre mission » ---------- */
.section-mission { padding: 100px 0; }
.section-mission-alt { padding: 100px 0; background-color: #f7f7f7; }
.mission-label {
  font-size: 37px;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  color: #333;
  line-height: 1.5em;
  margin-bottom: 15px;
}
.mission-body { font-size: 16px; line-height: 1.8em; }
.value-blurb { font-size: 16px; line-height: 1.8em; }
.value-blurb img { margin-bottom: 20px; width: 100%; }
.value-blurb h4 {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-size: 22px;
  line-height: 1.5em;
  padding-bottom: 10px;
}

/* ---------- Page « Nous joindre » ---------- */
.section-contact { padding: 100px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-home h1 { font-size: 52px; }
  .page-hero h1, .cta-band h2 { font-size: 44px; }
}

@media (max-width: 980px) {
  #top-navigation { display: none; }
  .mobile-toggle { display: block; }
  #logo { max-height: 80px; margin-top: 0; }
  #main-header .header-container { padding: 10px 0; }
  #mobile-menu { position: absolute; top: 100%; left: 0; right: 0; }

  .row { width: 90%; flex-direction: column; }
  .col-1-4, .col-1-3, .col-1-2, .col-2-3,
  .gutters1 > .col-1-2, .gutters1 > .col-1-4, .gutters2 > .col-1-4 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .row > .col:last-child { margin-bottom: 0; }

  .hero-home h1 { font-size: 40px; }
  .page-hero h1, .cta-band h2 { font-size: 36px; }
  .title-36, .newsletter-description h2 { font-size: 30px; }
  .title-37 { font-size: 30px; }
  .section-testimonial h4 { font-size: 26px; }
  .section-why, .section-clients, .section-mission,
  .section-mission-alt, .section-products, .section-contact { padding: 60px 0; }

  .blurb { width: 100%; }
  .img-mais { padding-left: 0; }
  .row-dark { width: 90%; margin-bottom: 60px; }
  .img-basilic { margin: 20px 0 0 0; }
  .mosaic-tall img { height: auto; }

  .newsletter-description, .newsletter-form { width: 100%; padding-right: 0; }
  .newsletter-description { margin-bottom: 25px; }

  .section-texture, .section-newsletter { padding: 54px 0 120px 0; background-attachment: scroll; }
  .cta-band, .section-testimonial { background-attachment: scroll; }

  .friend-logo { text-align: center; }
  .friend-logo img { margin: 0 auto; }
  .logo-orygine, .logo-buck, .logo-contrebandier, .logo-legende { margin-top: 0; padding: 0; }

  #footer .footer-logo { width: 100%; }
  #footer .footer-logo { justify-content: center; }
  .footer-tagline { text-align: center; }
}

@media (max-width: 767px) {
  .hero-home { padding: 20% 0; }
  .hero-home h1 { font-size: 32px; }
  .page-hero { padding: 22% 0; }
  .page-hero h1, .cta-band h2 { font-size: 30px; }
  .section-testimonial h4 { font-size: 22px; }
  .field-half { width: 100%; margin-right: 0; }
  .counter-0 .percent p { font-size: 54px; }
  .counter-1 .percent p, .counter-2 .percent p { font-size: 64px; }
  .blurb-icon { font-size: 72px; }
  .mosaic-half { width: 100%; }
  .section-mosaic .col-1-2:first-child { display: none; }
}
