@font-face {
  font-family: 'Aptos';
  src: url('../fonts/Aptos-Light.ttf') format('opentype');
  font-weight: 300;
  /* Light */
}

@font-face {
  font-family: 'Aptos';
  src: url('../fonts/Aptos.ttf') format('opentype');
  font-weight: 400;
  /* Normal */
}

@font-face {
  font-family: 'Aptos';
  src: url('../fonts/Aptos-SemiBold.ttf') format('opentype');
  font-weight: 600;
  /* Semibold */
}

@font-face {
  font-family: 'Aptos';
  src: url('../fonts/Aptos-Bold.ttf') format('opentype');
  font-weight: 700;
  /* Bold */
}

:root {
  --bg: #f5f3f0;
  --site: #f7f3eb;
  --card: #ece8e3;
  --surface: #e9e4de;
  --ink: #1f1f1f;
  --muted: #5f5c57;
  --brown: #685842;
  --malt: #8a6a3d;
  --darkgreen: #004E5A;
  --barley: #FFC000;
  --line: rgba(0, 0, 0, 0.08);
  --white: #ffffff;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --container: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Aptos', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.container-full {
  width: 100%;
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

ul {
  margin-left: 2rem;
}

.display {
  font-family: Georgia, serif;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--brown);
}


.title-xl {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 0.94;
  color: var(--darkgreen);
}

.title-lg {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--darkgreen);
  margin: 0 0 18px;
}

.country-title {
  margin: 0 0 24px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .9;
  color: var(--ink);
}

.hero .title-xl {
  color: var(--white);
}

.paragraph-text .title-lg {
  color: var(--darkgreen);
}

.subtitle {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 700;
  color: var(--malt);
}

.text-muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-primary {
  background: var(--darkgreen);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  border-color: var(--line);
  color: #4f4b46;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand__logo {
  height: 3.5rem;
  width: auto;
  display: block;
}

.brand__logo-lg {
  height: 6rem;
  margin: 2rem 0;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--darkgreen);
  color: white;
  font-weight: 700;
}

.brand__name {
  font-size: 0.98rem;
  font-weight: 700;
}

.brand__sub {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.6);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 1rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--darkgreen);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.hero {
  padding-top: 0;
  padding-bottom: 0;
}

.hero__media {
  position: relative;
  min-height: 520px;
  /*border-radius: 28px;*/
  overflow: hidden;
  background: var(--ink);
}

.hero__video,
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 50%,
      rgba(0, 0, 0, 0.25) 75%,
      rgba(0, 0, 0, 0.75) 125%);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: white;
}

.hero__copy {
  max-width: 760px;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.text,
.intro-text {
  /*max-width: 1040px;*/
  max-width: 100%;
  font-size: 18px;
  line-height: 1.65rem;
  margin: 1.5rem 0;
}

section.marques-carrousel,
section.citation-section,
section.chiffres-section {
  padding: 3rem;
}

.chiffres-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 42px;
}

.chiffres-stat {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 32px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.chiffres-stat strong {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  color: var(--darkgreen);
  margin-bottom: 20px;
}

.chiffres-stat span {
  display: block;
  color: var(--muted);
  /* font-weight: 700; */
  font-size: 1.25rem;
  line-height: 1.25;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 36px;
  padding-bottom: 70px;
}

.card {
  position: relative;
  background: #e8e8e8;
  border-radius: 24px;
  min-height: 430px;
  padding: 24px 34px 150px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card__outer_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card__body {
  padding: 0;
  max-width: 430px;
}

.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000000;
}

.card__text {
  font-size: 1rem;
  color: #5c6470;
  line-height: 1.35;
  max-width: 420px;
  margin-right: 65px
}

.card__link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--darkgreen);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
  flex: 0 0 52px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.card__link-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  transition: transform 0.25s ease;
}

.card__link-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card__link:hover .card__link-icon {
  transform: translateX(4px);
}

.card__link:hover {
  opacity: 0.8;
}

.card__media {
  position: absolute;
  left: 50%;
  bottom: -70px;
  transform: translateX(-50%);
  width: min(65%, 290px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 34px;
  background: #ffffff;
  padding: 8px;
  box-shadow: var(--shadow-lg);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
}

.media-rounded {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.media-rounded img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.highlight-box {
  display: grid;
  gap: 2rem;
  background: var(--surface);
  /*border-radius: var(--radius-xl);*/
  padding: 2rem;
}

.why-top,
.why-bottom {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.why-top {
  grid-template-columns: 2fr 1fr;
}

.why-bottom {
  grid-template-columns: 1.5fr 2fr;
}

.linkedin-head {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.linkedin-icon {
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.linkedin-title h2 {
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
}

.linkedin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.linkedin-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.linkedin-card--1 {
  background: #bedfd8;
}

.linkedin-card--2 {
  background: #e7c0a1;
}

.linkedin-card--3 {
  background: #b8c4ec;
}

.linkedin-card--4 {
  background: #cde4af;
}

.linkedin-stack,
.linkedin-topstack {
  position: absolute;
  display: flex;
  gap: 4px;
}

.linkedin-stack {
  left: 16px;
  bottom: 16px;
  flex-direction: column;
}

.linkedin-topstack {
  right: 16px;
  top: 16px;
}

.mini-block {
  width: 12px;
  height: 12px;
}

.c1 {
  background: #f2cf3a;
}

.c2 {
  background: #49b1c1;
}

.c3 {
  background: #ea5b3a;
}

.c4 {
  background: #0f3951;
}

.partners-copy {
  text-align: center;
  color: var(--brown);
  font-size: 0.95rem;
  margin-top: 26px;
}

.logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  opacity: 0.65;
  margin-top: 20px;
}

.logo {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #66615b;
}

.site-footer {
  border-top: 1px solid var(--line);
  /*margin-top: 10px;*/
  background-color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 48px 0;
}

.footer-grid section{
  /*text-align: center;*/
}

.footer-title {
  font-size: 1.08rem;
  font-weight: 600;
}

.footer-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.footer-title a {
  color: inherit;
  text-decoration: none;
}

.footer-title a:hover {
  text-decoration: underline;
}



.language-switcher {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--darkgreen);
}

.lang-link {
  padding: 6px 4px;
  border-radius: 6px;
  opacity: 0.6;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.lang-link:hover {
  opacity: 1;
}

.lang-link.is-active {
  opacity: 1;
  /*text-decoration: underline;*/
}

.lang-sep {
  opacity: 0.5;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/*** paragraph-text-image ***/
.paragraph-text,
.paragraph-text-image {
  padding: 3rem;
}
.paragraph-text a:not(.btn), .paragraph-text-image a:not(.btn){
color: var(--darkgreen);
font-weight: 600;
}
.paragraph-text a:not(.btn):hover, .paragraph-text-image a:not(.btn):hover {
text-decoration: underline;
}
.paragraph-text li,
.paragraph-text-image li {
    margin-left: 2rem;
}
.paragraph-text__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.paragraph-text-image__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.paragraph-text-image p,
.paragraph-text p,
.rich-text p {
  padding: 0.5rem 0;
}

.paragraph-text-image--image-half.paragraph-text-image--image-left .paragraph-text-image__inner {
  grid-template-columns: 1fr 1.15fr;
}

.paragraph-text-image--image-half.paragraph-text-image--image-right .paragraph-text-image__inner {
  grid-template-columns: 1.15fr 1fr;
}

.paragraph-text-image--image-third.paragraph-text-image--image-left .paragraph-text-image__inner {
  grid-template-columns: 1fr 2fr;
}

.paragraph-text-image--image-third.paragraph-text-image--image-right .paragraph-text-image__inner {
  grid-template-columns: 2fr 1fr;
}

.paragraph-text-image--image-left .paragraph-text-image__media {
  order: -1;
}

.paragraph-text-image--image-right .paragraph-text-image__media {
  order: 1;
}

.paragraph-text-image--image-right .paragraph-text-image__content {
  order: 0;
}

.paragraph-text-image__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.marques-carrousel--bg-white,
.citation-section--bg-white,
.chiffres-section--bg-white,
.paragraph-text--bg-white,
.paragraph-text-image--bg-white {
  background: #fff;
}

.marques-carrousel--bg-beige,
.citation-section--bg-beige,
.chiffres-section--bg-beige,
.paragraph-text--bg-beige,
.paragraph-text-image--bg-beige {
  background: #f6f0e8;
}

.marques-carrousel--bg-green,
.citation-section--bg-green,
.chiffres-section--bg-green,
.paragraph-text--bg-green,
.paragraph-text-image--bg-green {
  background: var(--darkgreen);
}

.marques-carrousel--bg-dark,
.citation-section--bg-dark,
.chiffres-section--bg-dark,
.paragraph-text--bg-dark,
.paragraph-text-image--bg-dark {
  background: var(--surface);
  ;
}


#go-top {
  background-color: var(--darkgreen);
  ;
  width: 45px;
  height: 45px;
  display: block;
  border-radius: 22px;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 99;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

#go-top:hover {
  opacity: 0.95;
}

#go-top:before {
  transform: rotate(-90deg);
  content: '';
  background-image: url(../images/arrow-white.svg);
  display: block;
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px;
}



.edit-link-1 {
  font-size: 1.5em;
  position: fixed;
  top: 100px;
  right: 20px;
  color: var(--darkgreen);
}

.edit-link-2 {
  font-size: 1.5em;
  position: fixed;
  top: 100px;
  right: 50px;
  color: var(--darkgreen);
}


#user-login-form {

  padding: 7rem 0;
  margin: 0 auto;
  max-width: 620px;
}

#user-login-form label {
  font: normal 16px/19px 'Lato';
}

#user-login-form input {
  padding: 1.125rem;
  font: normal 16px/19px 'Lato';
  color: #000;
  border: 1px solid #C9C0A1;
  border-radius: 8px;
  width: 100%;
}

#user-login-form div {
  margin-top: 1em;
  margin-bottom: 1em;
}

#user-login-form .form-item .description {
  font-size: 0.85rem;
  color: #888;
}

#user-login-form input[type="submit"] {
  background-color: var(--darkgreen);
  border-radius: 4px;
  border: none;
  color: #FFF;
  text-transform: uppercase;
  font: bold 15px/20px 'Lato';
  letter-spacing: 0.04em;
  padding: 1.5rem 4.75rem;
  cursor: pointer;
}

#user-login-form input[type="submit"]:hover {
  opacity: 0.95;
}


.eu-cookie-compliance-save-preferences-button,
.eu-cookie-compliance-default-button {
  background: var(--white);
  color: var(--darkgreen);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.eu-cookie-compliance-save-preferences-button:hover,
.eu-cookie-compliance-default-button:hover {
  opacity: 0.95;
}

/* Catalogue Produits */
.catalog-tools {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.catalog-input,
.catalog-select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 13px 18px;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  outline: none;
}

.catalog-input:focus,
.catalog-select:focus {
  border-color: var(--darkgreen);
}

.catalog-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
}

.catalog-count {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.malt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.malt-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(0, 78, 90, 0.08);
  color: var(--darkgreen);
  font-size: 0.85rem;
  font-weight: 600;
}

.empty-state {
  display: none;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

.malt-tag.js-type-filter {
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}

.malt-tag.js-type-filter:hover {
  border-color: var(--color-primary);
  background: rgba(0, 0, 0, 0.03);
}

.accordion {
  background-color: #FFF;
  margin: 1rem;
  border-radius: 24px;
  padding: 1rem;
}

.accordion h3 {
  position: relative;
  margin: 0;
  padding: 18px 75px 18px 0;
  cursor: pointer;
  font-size: clamp(28px, 1.5vw, 32px);
  line-height: clamp(28px, 1.5vw, 32px);
  color: var(--darkgreen);
  font-family: Georgia, serif;
  font-weight: 700;
  text-align: left;
}

.accordion h3::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 52px;
  border-radius: 50%;
  background: var(--darkgreen);
  color: var(--white);
  display: grid;
  place-items: center;
  padding-bottom: 4px;
}

.accordion.is-open h3::after {
  content: "−";
}

.accordion .contenu {
  display: none;
  padding: 0 0 20px;
  line-height: 1.6;
}

.accordion.is-open .contenu {
  display: block;
}

/* =========================================================
   Thèmes
========================================================= */

.themes-section {
  background: var(--surface);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.theme-card {
  background: #eeeeee;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.theme-card:hover {
  /*transform: translateY(-4px);*/
  box-shadow: var(--shadow-md);
}

.theme-card.is-open {
  grid-column: 1 / -1;
}

.theme-card__header {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  cursor: pointer;
  text-align: left;
}

.theme-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.theme-card__headings h3 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  color: var(--darkgreen);
}

.theme-card__intro {
  display: flex;
  align-items: center;
  gap: 24px;
}

.theme-card__logo {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: var(--white);
  flex: 0 0 110px;
  padding: 18px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.theme-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.theme-card__intro p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.theme-card__toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--darkgreen);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
  flex: 0 0 52px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.theme-card.is-open .theme-card__toggle {
  transform: rotate(180deg);
}

.theme-card__content {
  display: none;
  padding: 0 32px 32px;
}

.theme-card.is-open .theme-card__content {
  display: block;
}

.theme-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 42px;
}

.theme-stat {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 32px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.theme-stat strong {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  color: var(--darkgreen);
  margin-bottom: 20px;
}

.theme-stat span {
  display: block;
  color: #686868;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

.theme-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.theme-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}

html {
  scroll-behavior: smooth;
}

.country-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 32px;
}

.country-navigation__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  color: var(--darkgreen);
  text-decoration: none;
  font-weight: 700;
  transition: .2s;
  border: 1px solid var(--darkgreen);
}

.country-navigation__link:hover {
  background: var(--darkgreen);
  color: white;
  transform: translateY(-2px);
}

.country-hero {
  padding: 80px 0;
  background: var(--site);
}

.country-layout {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.country-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
}





.country-intro {
  max-width: 780px;
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #3d3834;
}

.country-stats {
  display: flex;
  gap: 24px;
  margin-top: 36px;
}

.country-stat {
  padding: 22px 26px;
  border-radius: 22px;
  background: #fff;
}

.country-stat strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  color: var(--darkgreen);
}

.country-stat span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: #777;
}

.plant-section {
  padding: 80px 0;
  background: #fff;
}


.plant-card {
  display: grid;
  grid-template-columns: .9fr 1.3fr;
  gap: 40px;
  padding: 32px;
  margin-bottom: 36px;
  border-radius: 32px;
  background: var(--site);
}
.plant-card.siege {
  border: 3px solid var(--darkgreen);
}
.plant-card.siege h3 {
  color: var(--darkgreen);
}
.plant-card__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 24px;
}

.plant-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.plant-card h3 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: .95;
  color: var(--ink);
}

.plant-card__description {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.6;
  color: #3d3834;
}

.plant-certifications {
  margin-bottom: 30px;
}

.certification-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.certification-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 16px;
  border-radius: 12px;
  background: #fff;

  font-size: 13px;
  font-weight: 800;
  color: var(--white);
}

.certification-logo.NSF,
.certification-logo.HACCP,
.certification-logo.MPINP3,
.certification-logo.SEDEX,
.certification-logo.GMP\+ {
  background-color: #117b8c;
}

.certification-logo.Ecovadis {
  background-color: #80a642;
}

.certification-logo[class*="ISO"] {
  background-color: #55686b;
}

.certification-logo.Biomass,
.certification-logo[class*="FSA3"],
.certification-logo.Kosher,
.certification-logo.SURE,
.certification-logo.FSSC22000,
.certification-logo.HALAL,
.certification-logo.DAFE {
  background-color: #e9b004;
}

.malt-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 14px;
}

.malt-mini-card {
  display: block;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  transition: .2s ease;
}

.malt-mini-card:hover {
  transform: translateY(-3px);
}

.malt-mini-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
}

.malt-mini-card span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}





.detail-hero {
  padding: 80px 0 38px 0;
  background: var(--site);
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.detail-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
}



.product-origin {
  margin: 0 0 24px;
}

.product-origin__label {
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  color: #8b8b8b;
}

.product-origin__countries {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.product-origin__country {
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  color: var(--darkgreen);
  transition: .2s ease;
  /*border: 1px solid var(--darkgreen);*/
  border-radius: 24px;
  padding: 12px 1.5rem;
  background-color: var(--white);

}

.product-origin__country:hover {
  transform: translateY(-2px);
  /*background-color: rgba(0, 78, 90, 0.08);*/
  background-color: var(--darkgreen);
  color: var(--white);
}

.intro-text {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: #3d3834;
}

.detail-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.tag-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag-group__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #7f7f7f;
}

.tag-group__details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.detail-tag--style {
  padding: 6px 10px;
  background: rgba(0, 78, 90, 0.08);
  color: var(--darkgreen);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.detail-tag--aroma {
  background: #f5efe0;
  color: #8a6a3d;
  border: 1px solid #e8dcc2;
}

.detail-tag--color {
  background: #fff;
  color: #444;
  border: 1px solid #ddd;
}

.color-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 7px;
}

.color-straw-blonde {
  background: #f3d85a;
}

.color-straw-yellow {
  background: #f3d85a;
}

.color-light-golden {
  background: #e4bc45;
}

.color-gold {
  background: #d79a2b;
}

.color-light-amber {
  background: #c77a2d;
}

.color-copper {
  background: #b55a26;
}

.color-deep-amber {
  background: #8d3f1b;
}

.color-dark-wood {
  background: #4b2818;
}

.detail-actions {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.detail-info,
.detail-characteristics {
  padding: 38px 0;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.detail-panel {
  padding: 32px;
  border-radius: 24px;
  background: #fff;
}

.detail-panel h2,
.detail-characteristics h2 {
  margin-top: 0;
  margin-bottom: 24px;
}

.rich-text {
  line-height: 1.7;
}

.detail-list {
  margin: 0;
}

.detail-list div {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.detail-list dt {
  font-weight: 700;
  margin-bottom: 6px;
}

.detail-list dd {
  margin: 0;
}

.characteristics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.characteristic-card {
  padding: 24px 20px;
  border-radius: 24px;
  background: var(--site);
  border: 1px solid var(--malt);
}

.characteristic-card__label {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #8a6a3d;
}

.characteristic-card__value {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  color: #1f1a17;
}

.characteristic-card__unit {
  margin-left: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #6f6258;
}

.section-title {
  text-align: center;
  color: var(--green);
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  margin-bottom: 50px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

/* PROCESS */
.process-section {
  padding: 80px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.process-card {
  position: relative;
  min-height: 340px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.process-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--darkgreen);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
  flex: 0 0 52px;
}

.process-card-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process-card h3 {
  margin: 0 0 20px 70px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);

}

.process-card img {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.process-card p {
  margin: 0;

  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}

.card-arrow {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 42px;
  height: 42px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 34px;
  line-height: 38px;
  text-align: center;
  transition: 0.25s ease;
}
.catalog-family-filter {
/*  grid-column: 1 / -1;*/
  display: flex;
  flex-wrap: wrap;
  gap: 16px;


}

.catalog-family-filter__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--darkgreen);
  border-radius: 999px;
  background: var(--white);
  color: var(--darkgreen);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
    box-shadow: var(--shadow-md);
}

.catalog-family-filter__button:hover,
.catalog-family-filter__button.is-active {
  background: var(--darkgreen);
  color: var(--white);

}

.card-arrow:hover {
  background: var(--gold);
  transform: translateX(4px);
}
.corner {
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.10em;
    font-size: 11px;
    position: relative;
    text-align: right;
    padding: 0.25rem 0.5rem;
}
/* MAP */
.map-section {
  padding: 80px 0;
}

.world-map {
  position: relative;
  width: 100%;
  max-width: 1010px;
  margin: 0 auto;
}

.world-map>img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.75;
}

.map-point {
  position: absolute;
  width: clamp(12px, 1.6vw, 18px);
  height: clamp(12px, 1.6vw, 18px);
  background: var(--barley);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}

.map-point::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--darkgreen);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.map-point span {
  position: absolute;
  z-index: 3;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 170px;
  padding: 14px 16px;
  background: #fff;
  color: var(--darkgreen);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  white-space: nowrap;
  border : 1px solid var(--darkgreen);
}

.map-point small {
  display: block;
  margin-top: 4px;
  color: var(--barley);
  font-size: 12px;
}

.map-point:hover span {
  opacity: 1;
}


@keyframes pulse {
  from {
    transform: scale(0.8);
    opacity: 0.8;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* countries */
.countries-section {
  padding: 100px 0;
  background: var(--site);
}

.countries-header {
  max-width: 900px;
  margin-bottom: 60px;
}

.countries-title {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
  color: #1f1a17;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.country-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  transition: .25s ease;
  box-shadow: var(--shadow-sm);
}

.country-card:target {
  outline: 4px solid var(--barley);
  outline-offset: 4px;
  animation: country-highlight 2s ease;
}

.country-card {
  scroll-margin-top: 120px;
}

.country-card:hover {
  transform: translateY(-6px);
}

.country-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.country-card__flag {
  width: 78px;
  height: 78px;
  margin-bottom: 36px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.country-card__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card__content {
  position: relative;
  z-index: 1;
}

.country-card__content h3 {
  margin: 0;
  font-size: 30px;
  color: var(--darkgreen);
}

.country-card__count {
  margin: 10px 0 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.country-card__plants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.country-card__plants li {
  font-size: 14px;
  font-weight: 600;
  color: #3d3834;
}

.country-card__plants li::before {
  content: "•";
  margin-right: 6px;
  color: var(--gold);
}

@keyframes country-highlight {
  0% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.marques-carrousel {
  overflow: hidden;
  padding: 3rem;
}

.brands-swiper {
  position: relative;
  margin-top: 3rem;
  padding: 1rem 4rem;
}

.brands-swiper .swiper-wrapper {
  padding-bottom: 3rem;
}

.brand-card {
  height: 120px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.brand-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.brands-swiper__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--darkgreen);
  color: var(--white);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  transition: opacity .25s ease, transform .25s ease;
}

.brands-swiper__arrow:hover {
  opacity: .9;
  transform: translateY(-50%) scale(1.05);
}

.brands-swiper__arrow--prev {
  left: 0;
}

.brands-swiper__arrow--next {
  right: 0;
}

@media (max-width: 767px) {
  .marques-carrousel {
    padding: 45px 0;
  }

  .brands-swiper {
    padding: 1rem 3rem;
  }

  .brand-card {
    height: 95px;
    padding: 18px;
  }

  .brands-swiper__arrow {
    width: 42px;
    height: 42px;
  }
}

.eu-cookie-compliance-content {
  max-width: 90% !important;
}


table.rgpd {
    border: 1px solid #ddd;
    border-collapse: collapse;
    border-spacing: 0;
}

table.rgpd th {
    border:1px solid #ddd;
    text-align: left;
    padding : 5px 10px;
    background-color : var(--darkgreen);
    color : var(--white);
}

table.rgpd td {
    border: 1px solid #ddd;
    text-align: left;
    padding : 5px 10px;
    vertical-align:top;
}