/* ==========================================================================
   O'PRIMEUR31 — Feuille de style
   Identité dérivée du logo : vert #B4C06C · rouge #B94A49 · blanc
   Aucune librairie externe. Polices auto-hébergées (RGPD + performance).
   ========================================================================== */

/* --------------------------------------------------------------- Polices */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-latin.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-stretch: 75% 112%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla-latin.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

/* ---------------------------------------------------------------- Tokens */
:root {
  /* Couleurs — toutes issues du logo */
  --papier:      #F7F7F2;
  --papier-2:    #EEEFE5;
  --encre:       #191E17;
  --encre-2:     #5A6155;
  --ligne:       #DCDED0;
  --vert:        #B4C06C;   /* vert exact du logo */
  --vert-fonce:  #54641F;   /* même teinte, assombrie pour le texte/CTA */
  --vert-pale:   #E9EDD6;
  --rouge:       #B94A49;   /* rouge exact du logo */
  --rouge-texte: #A33F3E;
  --nuit:        #12170F;
  --nuit-2:      #1D2418;
  --nuit-ligne:  #303A29;
  --nuit-texte:  #AEB6A4;

  /* Typographie */
  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --texte:   'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Rythme */
  --gap:     clamp(1.5rem, 3vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 7.5rem);
  --r:       4px;            /* rayon discret, jamais de "pilule" partout */

  --ombre:   0 1px 2px rgba(25,30,23,.05), 0 8px 28px -12px rgba(25,30,23,.18);
}

/* ------------------------------------------------------------------ Base */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--papier);
  color: var(--encre);
  font-family: var(--texte);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--vert-fonce); text-underline-offset: .18em; }
a:hover { color: var(--encre); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -.018em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--vert-fonce);
  outline-offset: 3px;
  border-radius: 2px;
}

.saut-contenu {
  position: absolute; left: -9999px;
  background: var(--encre); color: var(--papier);
  padding: .8rem 1.2rem; z-index: 200;
}
.saut-contenu:focus { left: 1rem; top: 1rem; }

.sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------- Éléments */
.wrap { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }
@media (min-width: 48em) { .wrap { width: min(1160px, 100% - 5rem); } }

.section { padding-block: var(--section); }
.section--bord { border-top: 1px solid var(--ligne); }
.section[id] { scroll-margin-top: 5.5rem; }

/* Étiquette typographique — Archivo étendu, versales espacées (signalétique) */
.eyebrow {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 600;
  font-size: .69rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--vert-fonce);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 2px;
  background: var(--rouge);
  flex: none;
}
.eyebrow--nuit { color: var(--vert); }

.titre-section { font-size: clamp(1.8rem, 1.1rem + 2.9vw, 2.9rem); max-width: 20ch; }
.lede {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem);
  color: var(--encre-2);
  max-width: 60ch;
}

/* --------------------------------------------------------------- Boutons */
.btn {
  --btn-bg: var(--vert-fonce);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.5rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .005em;
  text-decoration: none;
  border: 1px solid var(--btn-bg);
  border-radius: var(--r);
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -12px rgba(25,30,23,.55);
}
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--encre);
  border-color: var(--ligne);
}
.btn--ghost:hover { background: var(--papier-2); }

.btn--clair {
  --btn-bg: var(--papier);
  --btn-fg: var(--nuit);
}
.btn--large { padding: 1.1rem 1.9rem; font-size: 1.02rem; }

/* ---------------------------------------------------------------- Entête */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--papier) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.site-header[data-scrolled="true"] { border-bottom-color: var(--ligne); }

.header-inner {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 4.5rem;
}
@media (min-width: 36em) { .header-inner { gap: 1rem; } }
.brand { margin-right: auto; display: inline-flex; align-items: center; }
.brand img { width: clamp(134px, 34vw, 186px); }

.nav { display: none; }
@media (min-width: 62em) { .nav { display: block; } }
.nav ul {
  display: flex;
  gap: clamp(1.1rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  font-family: var(--display);
  font-size: .93rem;
  font-weight: 500;
  color: var(--encre);
  text-decoration: none;
  padding-block: .4rem;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--rouge);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a[aria-current="true"]::after { transform: scaleX(1); }

.header-tel {
  display: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--encre);
  text-decoration: none;
  white-space: nowrap;
  margin-left: 1.25rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--ligne);
}
.header-tel:hover { color: var(--vert-fonce); }
@media (min-width: 75em) { .header-tel { display: inline-block; } }

/* Toujours visible : c'est l'action n°1 sur mobile.
   Sous 24em l'intitulé s'efface, l'icône WhatsApp reste. */
.header-cta { padding: .8rem 1rem; }
.header-cta span { display: none; }
@media (min-width: 24em) {
  .header-cta { padding: .8rem 1.15rem; }
  .header-cta span { display: inline; }
}
@media (min-width: 62em) { .header-cta { padding: .9rem 1.4rem; } }

/* Bouton hamburger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.9rem; height: 2.9rem;
  padding: 0 .6rem;
  background: none;
  border: 1px solid var(--ligne);
  border-radius: var(--r);
  cursor: pointer;
}
@media (min-width: 62em) { .burger { display: none; } }
.burger span {
  height: 2px;
  background: var(--encre);
  transition: transform .3s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Panneau mobile */
.drawer {
  position: fixed;
  inset: 4.5rem 0 0;
  z-index: 99;
  background: var(--papier);
  padding: 2rem 1.25rem 3rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.drawer[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 62em) { .drawer { display: none; } }
.drawer ul { list-style: none; margin: 0 0 2rem; padding: 0; }
.drawer li + li { border-top: 1px solid var(--ligne); }
.drawer a {
  display: block;
  padding: 1.05rem .25rem;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--encre);
  text-decoration: none;
}
.drawer .btn { width: 100%; margin-bottom: .75rem; }
.drawer-contact {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ligne);
  font-size: .95rem;
  color: var(--encre-2);
}
.drawer-contact a { color: var(--encre); }

/* ------------------------------------------------------------------ Héro */
.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.5rem, 5vw, 4rem); }
.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 62em) {
  .hero__grid { grid-template-columns: 1.15fr .85fr; gap: clamp(3rem, 5vw, 5rem); }
}

.hero__titre {
  font-size: clamp(2.3rem, 1.15rem + 4.9vw, 3.9rem);
  font-stretch: 93%;
  font-weight: 700;
  letter-spacing: -.028em;
  line-height: 1.04;
  margin-bottom: .6em;
  max-width: 16ch;
}
.hero__titre em {
  font-style: normal;
  color: var(--vert-fonce);
}
.hero__lede { font-size: clamp(1.05rem, .98rem + .5vw, 1.28rem); max-width: 46ch; color: var(--encre-2); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}
@media (max-width: 26em) { .hero__actions .btn { width: 100%; } }

.hero__signaux {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.35rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ligne);
  font-family: var(--display);
  font-stretch: 104%;
  font-size: .705rem;
  font-weight: 600;
  letter-spacing: .105em;
  text-transform: uppercase;
  color: var(--encre-2);
}
.hero__signaux li { list-style: none; display: flex; align-items: center; gap: .5rem; }
.hero__signaux li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--vert);
  border-radius: 50%;
  flex: none;
}
.hero__signaux { margin-inline: 0; padding-inline: 0; }

/* ------------------ Élément signature : « Le marché du moment » ---------- */
.marche {
  background: var(--papier);
  border: 1px solid var(--ligne);
  border-radius: var(--r);
  box-shadow: var(--ombre);
  overflow: hidden;
}
.marche__tete {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .1rem 1rem;
  padding: 1.15rem clamp(1.1rem, 2.5vw, 1.6rem) 1.05rem;
  background: var(--vert-pale);
  border-bottom: 1px solid #DCE2C0;
}
.marche__titre { grid-column: 1 / -1; }
.marche__sur {
  align-self: center;
  font-family: var(--display);
  font-stretch: 112%;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--vert-fonce);
  margin: 0;
}
.marche__titre {
  font-size: clamp(1.15rem, 1rem + .6vw, 1.4rem);
  margin: 0;
  letter-spacing: -.015em;
}
.marche__nav { display: flex; align-items: center; gap: .1rem; flex: none; }
.marche__fleche {
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  background: none;
  border: 1px solid transparent;
  border-radius: var(--r);
  color: var(--vert-fonce);
  cursor: pointer;
}
.marche__fleche svg { width: 1.05rem; height: 1.05rem; }
.marche__fleche:hover { background: #fff; border-color: #DCE2C0; }
.marche__mois {
  font-family: var(--display);
  font-size: .86rem;
  font-weight: 600;
  color: var(--encre);
  min-width: 5.4rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.marche__grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  padding: clamp(.9rem, 2.2vw, 1.15rem);
}
@media (max-width: 24em) { .marche__grille { grid-template-columns: repeat(3, 1fr); } }
.marche__repli { grid-column: 1 / -1; margin: 0; color: var(--encre-2); font-size: .95rem; }

.produit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: .6rem .3rem .5rem;
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: var(--r);
  cursor: pointer;
  font: inherit;
  color: var(--encre);
  text-align: center;
  position: relative;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.produit:hover { border-color: var(--vert); transform: translateY(-2px); }
.produit svg { width: 2.35rem; height: 2.35rem; }
.produit span {
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.005em;
  hyphens: auto;
}
.produit[aria-pressed="true"] {
  background: var(--vert-pale);
  border-color: var(--vert-fonce);
}
.produit[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  top: -6px; right: -6px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--vert-fonce) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m5 12 5 5 9-10' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
}

.marche__aide {
  margin: 0;
  padding: 0 clamp(1.1rem, 2.5vw, 1.6rem);
  font-size: .78rem;
  color: var(--encre-2);
  text-align: center;
}
.marche__cta {
  width: calc(100% - 2 * clamp(1.1rem, 2.5vw, 1.6rem));
  margin: .85rem clamp(1.1rem, 2.5vw, 1.6rem) 1.15rem;
}
.marche__nuit {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0;
  padding: .85rem clamp(1.1rem, 2.5vw, 1.6rem);
  background: var(--nuit);
  color: var(--nuit-texte);
  font-size: .82rem;
  line-height: 1.35;
}
.marche__heure {
  font-family: var(--display);
  font-stretch: 108%;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--papier);
  padding: .2rem .45rem;
  border: 1px solid var(--nuit-ligne);
  border-radius: 2px;
  flex: none;
}

/* --------------------------------------------------------------- Atouts */
.atouts {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ligne);
}
@media (min-width: 40em) { .atouts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68em) { .atouts { grid-template-columns: repeat(4, 1fr); } }

.atout {
  padding: 2rem 0 1.9rem;
  border-bottom: 1px solid var(--ligne);
}
@media (min-width: 40em) {
  .atout { padding: 2.25rem clamp(1rem, 2.2vw, 2rem) 2.25rem 0; }
  .atout + .atout { border-left: 1px solid var(--ligne); padding-left: clamp(1.25rem, 2.2vw, 2rem); }
}
@media (min-width: 40em) and (max-width: 67.99em) {
  .atout:nth-child(odd) { border-left: 0; padding-left: 0; }
}
.atout__num {
  display: block;
  font-family: var(--display);
  font-stretch: 112%;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--rouge);
  margin-bottom: .9rem;
}
.atout h3 { font-size: 1.22rem; margin-bottom: .45em; }
.atout p { font-size: .97rem; color: var(--encre-2); margin: 0; }

/* -------------------------------------------------------------- Produits */
.planches {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 54em) { .planches { grid-template-columns: 1fr 1fr; } }

.planche {
  display: flex;
  flex-direction: column;
  background: var(--papier-2);
  border: 1px solid var(--ligne);
  border-radius: var(--r);
  overflow: hidden;
}
/* chaque planche prend la teinte de son illustration */
.planche--fruits  { background: #FBF6EC; border-color: #EBE0C8; }
.planche--legumes { background: #F4F7E8; border-color: #DFE7C5; }
.planche--fruits  .familles li,
.planche--legumes .familles li { background: #fff; border-color: rgba(25,30,23,.10); }
.planche__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--vert-pale);
  overflow: hidden;
}
.planche__media img { width: 100%; height: 100%; object-fit: cover; }
.planche__media svg { width: 100%; height: 100%; }
.planche__etiquette {
  position: absolute;
  left: 1.1rem; top: 1.1rem;
  background: var(--papier);
  color: var(--encre);
  font-family: var(--display);
  font-stretch: 112%;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .45rem .8rem;
  border-radius: 2px;
}
.planche__corps { padding: clamp(1.4rem, 3vw, 2rem); flex: 1; }
.planche__corps h3 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-bottom: .35em; }
.planche__corps > p { color: var(--encre-2); font-size: .98rem; }
.familles {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}
.familles li {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  font-size: .87rem;
  line-height: 1.2;
  padding: .4rem .7rem .4rem .45rem;
  background: var(--papier);
  border: 1px solid var(--ligne);
  border-radius: 2px;
  color: var(--encre-2);
}
.familles svg { width: 1.35rem; height: 1.35rem; flex: none; }
.note-produits {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--ligne);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  color: var(--encre-2);
  font-size: .97rem;
}
.note-produits p { margin: 0; max-width: 52ch; }

/* ------------------------------------- Livraison — la bande de nuit */
.nuit-section {
  background: var(--nuit);
  background-image: linear-gradient(100deg, var(--nuit) 40%, var(--nuit-2) 100%);
  color: var(--papier);
}
.nuit-section h2, .nuit-section h3 { color: var(--papier); }
.nuit-section .lede { color: var(--nuit-texte); }

.etapes {
  list-style: none;
  margin: clamp(2.75rem, 5vw, 4rem) 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: etape;
}
@media (min-width: 56em) { .etapes { grid-template-columns: repeat(4, 1fr); } }

.etape {
  position: relative;
  padding: 0 0 2.25rem 2.25rem;
  border-left: 1px solid var(--nuit-ligne);
}
.etape:last-child { padding-bottom: 0; }
@media (min-width: 56em) {
  .etape {
    padding: 2.5rem clamp(1rem, 2vw, 1.75rem) 0 0;
    border-left: 0;
    border-top: 1px solid var(--nuit-ligne);
  }
}
.etape::before {           /* le point sur la ligne du temps */
  counter-increment: etape;
  content: "";
  position: absolute;
  left: -5px; top: .35rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--vert);
}
@media (min-width: 56em) { .etape::before { left: 0; top: -5px; } }
.etape:last-child::before { background: var(--papier); }

.etape__moment {
  font-family: var(--display);
  font-stretch: 112%;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--vert);
  display: block;
  margin-bottom: .8rem;
  line-height: 1.4;
  min-height: 1.4em;          /* réserve la même hauteur, même sans texte */
}
.etape__moment:empty::before { content: "\00a0"; }
.etape h3 { font-size: 1.18rem; margin-bottom: .4em; }
.etape p { font-size: .95rem; color: var(--nuit-texte); margin: 0; }

.nuit-actions {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
}
.nuit-actions p {
  margin: 0;
  color: var(--nuit-texte);
  font-size: .95rem;
  max-width: 42ch;
}

/* ------------------------------------------------------------------ Zone */
.zone-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 58em) { .zone-grid { grid-template-columns: .95fr 1.05fr; } }

.carte {
  position: relative;
  background: var(--papier-2);
  border: 1px solid var(--ligne);
  border-radius: var(--r);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.carte svg { width: 100%; height: auto; }
.carte figcaption {
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--encre-2);
  text-align: center;
}
.zone-liste { list-style: none; margin: 1.75rem 0 0; padding: 0; }
.zone-liste li {
  display: flex;
  gap: .8rem;
  padding: .85rem 0;
  border-top: 1px solid var(--ligne);
  font-size: .98rem;
}
.zone-liste li::before { content: "→"; color: var(--vert-fonce); flex: none; }

/* -------------------------------------------------------------- À propos */
.apropos-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 58em) { .apropos-grid { grid-template-columns: .8fr 1.2fr; } }
.apropos-texte p + p { margin-top: 1.1em; }
.fiche {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--ligne);
}
.fiche div {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  justify-content: space-between;
  padding: .9rem 0;
  border-bottom: 1px solid var(--ligne);
}
.fiche dt {
  font-family: var(--display);
  font-stretch: 112%;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--encre-2);
}
.fiche dd { margin: 0; font-weight: 500; }

/* ------------------------------------------------------------------- FAQ */
.faq {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 4rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 52em) { .faq { grid-template-columns: 1fr 1fr; } }
.faq > div { border-top: 1px solid var(--ligne); padding-top: 1.4rem; }
.faq h3 { font-size: 1.1rem; margin-bottom: .5em; }
.faq p { font-size: .96rem; color: var(--encre-2); margin: 0; }

/* --------------------------------------------------------------- Contact */
.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
@media (min-width: 58em) { .contact-grid { grid-template-columns: 1.05fr .95fr; } }

.bloc-wa {
  background: var(--vert-pale);
  border: 1px solid #DCE2C0;
  border-radius: var(--r);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
}
.bloc-wa h3 { font-size: 1.35rem; margin-bottom: .4em; }
.bloc-wa p { color: var(--encre-2); font-size: .97rem; }
.bloc-wa .btn { margin-top: .5rem; }
@media (max-width: 30em) { .bloc-wa .btn { width: 100%; } }

.coordonnees { list-style: none; margin: 2rem 0 0; padding: 0; }
.coordonnees li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--ligne);
}
.coordonnees svg { width: 1.3rem; height: 1.3rem; flex: none; color: var(--vert-fonce); margin-top: .15rem; }
.coordonnees span { display: block; }
.coordonnees .etiq {
  font-family: var(--display);
  font-stretch: 112%;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--encre-2);
  margin-bottom: .2rem;
}
.coordonnees a { display: inline-block; padding: .35rem 0; color: var(--encre); font-weight: 500; text-decoration: none; }
.coordonnees a:hover { color: var(--vert-fonce); text-decoration: underline; }

/* Formulaire */
.form-titre {
  font-family: var(--display);
  font-stretch: 112%;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--encre-2);
  margin: 0 0 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ligne);
}
.champ { margin-bottom: 1.1rem; }
.champ label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--encre);
}
.champ input, .champ textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--encre);
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: var(--r);
  padding: .8rem .9rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.champ input:focus, .champ textarea:focus {
  outline: none;
  border-color: var(--vert-fonce);
  box-shadow: 0 0 0 3px rgba(84,100,31,.13);
}
.champ textarea { resize: vertical; min-height: 7rem; }
.champ--pot { position: absolute; left: -9999px; }
.form-note { font-size: .82rem; color: var(--encre-2); margin: 1rem 0 0; }
.form-note a { color: var(--vert-fonce); }
.form-retour {
  margin-top: 1rem;
  padding: .9rem 1rem;
  border-radius: var(--r);
  font-size: .92rem;
  display: none;
}
.form-retour[data-etat="ok"] { display: block; background: var(--vert-pale); color: #3C4A15; }
.form-retour[data-etat="erreur"] { display: block; background: #FBEAEA; color: #8C2F2F; }

/* ------------------------------------------------------------- Pied de page */
.site-footer {
  background: var(--nuit);
  color: var(--nuit-texte);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--nuit-ligne);
}
@media (min-width: 46em) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer img { width: 172px; margin-bottom: 1.25rem; }
.site-footer h2 {
  font-family: var(--display);
  font-stretch: 112%;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: 1.1rem;
}
.site-footer address { font-style: normal; line-height: 1.75; }
.site-footer a { color: var(--papier); text-decoration: none; }
.site-footer a:hover { color: var(--vert); text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li a { display: inline-block; padding: .6rem 0; }   /* zone tactile ≥ 40 px */
.site-footer address a { display: inline-block; padding: .25rem 0; }
.footer-bas {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .82rem;
}
/* le bouton WhatsApp flottant ne doit jamais masquer le contenu */
@media (max-width: 61.99em) { .site-footer { padding-bottom: 5.5rem; } }
.footer-bas p { margin: 0; }

/* ------------------------------------------ Bouton WhatsApp flottant (mobile) */
.fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.15rem;
  background: var(--vert-fonce);
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 10px 26px -8px rgba(25,30,23,.5);
  transform: translateY(150%);
  transition: transform .3s cubic-bezier(.22,.9,.32,1);
}
.fab[data-visible="true"] { transform: none; }
.fab:hover { color: #fff; }
.fab svg { width: 1.3rem; height: 1.3rem; }
@media (min-width: 62em) { .fab { display: none; } }
@media (max-width: 22em) { .fab span { display: none; } .fab { padding: .95rem; } }

/* ----------------------------------------------------------- Animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.9,.32,1);
}
.reveal[data-vu="true"] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .fab { transform: none; }
}

/* --------------------------------------------------------- Pages légales */
.page-legale { padding-block: clamp(3rem, 7vw, 5rem); }
.page-legale .contenu { max-width: 68ch; }
.page-legale h1 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.7rem); margin-bottom: .5em; }
.page-legale h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ligne);
}
.page-legale ul { padding-left: 1.2rem; }
.page-legale li { margin-bottom: .4rem; }
.retour {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--display);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 2rem;
}
.a-completer {
  background: #FFF6D6;
  border-bottom: 1px dashed #C9A227;
  padding: 0 .2em;
  font-size: .95em;
}

@media print {
  .site-header, .fab, .drawer, .marche { display: none !important; }
  body { background: #fff; }
}
