/* ================================================
   LA FERME DES GARRATES — Design System
   Palette : Terre · Vert · Bois
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Caveat:wght@500&display=swap');

/* ── Variables ──────────────────────────────────── */
:root {
  /* Couleurs */
  --vert-fonce:   #2A4A10;
  --vert:         #3D6B1A;
  --vert-clair:   #6A9C35;
  --vert-pale:    #B8D47A;
  --vert-bg:      #EBF5D8;
  --terre:        #7A4420;
  --terre-clair:  #B06030;
  --terre-pale:   #E0A870;
  --creme:        #FBF0DC;
  --creme-fonce:  #F0D9B0;
  --bois:         #9B7240;
  --bois-clair:   #C9A06A;
  --blanc:        #FFFDF8;
  --texte:        #2A1A08;
  --texte-leger:  #6B4E2A;
  --ombre:        rgba(42, 26, 8, .13);

  /* Typographie */
  --f-titre:  'Playfair Display', Georgia, serif;
  --f-corps:  'Lato', system-ui, sans-serif;
  --f-accent: 'Caveat', cursive;

  /* Espacements */
  --s:  .75rem;
  --m:  1.5rem;
  --l:  3rem;
  --xl: 5rem;

  /* Misc */
  --r:    8px;
  --r-lg: 16px;
  --ease: .3s ease;
  --w:    1200px;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--f-corps); background: var(--blanc); color: var(--texte); line-height: 1.7; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { color: var(--vert); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--terre); }

/* ── Typographie ────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--f-titre); line-height: 1.25; color: var(--terre); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: var(--m); }
h3 { font-size: 1.2rem; margin-bottom: var(--s); }
p  { color: var(--texte-leger); margin-bottom: var(--s); }

/* Utilitaires texte */
.text-light  { color: var(--texte-leger); }
.text-vert   { color: var(--vert-fonce); }
.text-rouge  { color: #c0392b; }
.text-terre  { color: var(--terre); }
.text-warn   { color: #f59e0b; }
.font-bold   { font-weight: 700; }
.font-mono   { font-family: monospace; }

/* ── Layout ─────────────────────────────────────── */
.container  { max-width: var(--w); margin: 0 auto; padding: 0 var(--m); }
.section    { padding: var(--xl) 0; }
.section--alt  { background: var(--creme); }
.section--dark { background: var(--vert-fonce); }

.section__titre { text-align: center; margin-bottom: var(--l); }
.section__titre::after {
  content: '';
  display: block;
  width: 56px; height: 3px;
  background: var(--vert);
  margin: var(--s) auto 0;
  border-radius: 2px;
}
.section__titre p { color: var(--texte-leger); margin-top: var(--s); }

/* ── Grille 2 colonnes ───────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--l);
  align-items: center;
}
.grid-2__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px var(--ombre);
  height: 420px;
}
.grid-2__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── Boutons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r);
  font-family: var(--f-corps);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: all var(--ease);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn--primaire   { background: var(--vert);  color: var(--blanc); border-color: var(--vert); }
.btn--primaire:hover { background: var(--vert-fonce); border-color: var(--vert-fonce); color: var(--blanc); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,122,40,.3); }
.btn--secondaire { background: transparent; color: var(--terre); border-color: var(--terre); }
.btn--secondaire:hover { background: var(--terre); color: var(--blanc); transform: translateY(-2px); }
.btn--blanc  { background: var(--blanc); color: var(--vert-fonce); border-color: var(--blanc); }
.btn--blanc:hover { background: var(--creme); color: var(--vert-fonce); }
.btn--danger { background: transparent; color: #c0392b; border-color: #c0392b; }
.btn--danger:hover { background: #c0392b; color: var(--blanc); }
.btn--lg   { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--sm   { padding: .4rem .9rem; font-size: .82rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Formulaires ─────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: var(--m);
}
.form-group:last-child { margin-bottom: 0; }

label {
  font-size: .84rem;
  font-weight: 700;
  color: var(--texte);
  letter-spacing: .02em;
}
label .req { color: var(--terre); }

.input {
  padding: .65rem .9rem;
  border: 2px solid var(--creme-fonce);
  border-radius: var(--r);
  font-family: var(--f-corps);
  font-size: .95rem;
  color: var(--texte);
  background: var(--creme);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.input:focus {
  outline: none;
  border-color: var(--vert);
  box-shadow: 0 0 0 3px rgba(74,122,40,.15);
  background: var(--blanc);
}
.input--select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A7A28' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.input--error { border-color: #c0392b; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--m); }

/* ── Badges ──────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: .2rem .75rem;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge--vert      { background: var(--vert-bg);  color: var(--vert-fonce); }
.badge--terre     { background: var(--creme);    color: var(--terre); }
.badge--nouvelle  { background: #d6eaf8; color: #1a5276; }
.badge--confirmee { background: var(--vert-bg);  color: var(--vert-fonce); }
.badge--prete     { background: #fde8d8; color: #7e5109; }
.badge--livree    { background: #ecf0f1; color: #7f8c8d; }
.badge--annulee   { background: #fadbd8; color: #922b21; }

/* Badges inline (dans les tableaux) */
.badge-inline {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  padding: .1rem .35rem;
  border-radius: 4px;
  margin-left: .3rem;
}
.badge-inline--ok   { background: #d1fae5; color: #065f46; }
.badge-inline--warn { background: #fef3c7; color: #92400e; }

/* Badges paiement (dans modal détail) */
.badge-paiement { padding: .3rem .8rem; border-radius: 6px; font-weight: 700; }
.badge-paiement--ok   { background: #d1fae5; color: #065f46; }
.badge-paiement--warn { background: #fef3c7; color: #92400e; }

/* Badges mini (dans les cards client) */
.badge-mini {
  font-size: .65rem;
  font-weight: 700;
  padding: .1rem .35rem;
  border-radius: 4px;
  margin-left: .3rem;
  vertical-align: middle;
}
.badge-mini--pro  { background: var(--terre); color: #fff; }
.badge-mini--warn { background: #f59e0b; color: #fff; }

/* ── Cards ───────────────────────────────────────── */
.card {
  background: var(--blanc);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--ombre);
  border: 1px solid var(--creme-fonce);
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(42,31,20,.12); }
.card__img  { aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: var(--m); }

/* ── Placeholder image ───────────────────────────── */
.ph {
  background: var(--creme-fonce);
  border: 2px dashed var(--bois-clair);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bois);
  font-size: .82rem;
  text-align: center;
  padding: var(--m);
  border-radius: var(--r);
  width: 100%;
  height: 100%;
}
.ph span { font-size: 2rem; margin-bottom: .4rem; }

/* ── Animations scroll ───────────────────────────── */
.anim { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim--d1 { transition-delay: .1s; }
.anim--d2 { transition-delay: .2s; }
.anim--d3 { transition-delay: .3s; }

/* ── Navigation ──────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(45, 80, 22, .97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem var(--m);
  max-width: var(--w);
  margin: 0 auto;
  gap: var(--m);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--vert-pale);
}
.nav__logo-text {
  font-family: var(--f-titre);
  color: var(--creme);
  font-size: 1rem;
  line-height: 1.2;
}
.nav__logo-text small {
  display: block;
  font-family: var(--f-accent);
  font-size: .82rem;
  color: var(--vert-pale);
}
.nav__links {
  display: flex;
  list-style: none;
  gap: .25rem;
  align-items: center;
  flex-wrap: wrap;
}
.nav__links a {
  color: rgba(245,237,216,.85);
  padding: .45rem .9rem;
  border-radius: var(--r);
  font-size: .9rem;
  transition: all var(--ease);
}
.nav__links a:hover,
.nav__links a.active { background: rgba(255,255,255,.14); color: var(--vert-pale); }
.nav__links .nav__cta {
  background: var(--terre);
  color: var(--blanc) !important;
  font-weight: 700;
  padding: .45rem 1.1rem;
}
.nav__links .nav__cta:hover { background: var(--terre-clair); }
.nav__user-btn {
  background: rgba(255,255,255,.12);
  color: var(--creme);
  border: 1px solid rgba(255,255,255,.2);
  padding: .4rem .9rem;
  border-radius: var(--r);
  font-family: var(--f-corps);
  font-size: .85rem;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  display: inline-block;
}
.nav__user-btn:hover { background: rgba(255,255,255,.22); color: var(--creme); }
.nav__user-btn--on   { background: var(--terre); border-color: var(--terre); color: var(--blanc) !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--creme); border-radius: 2px;
  transition: all var(--ease);
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--vert-fonce) 0%, #3a6620 45%, var(--bois) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: var(--l) var(--m);
  margin-left: max(calc((100vw - var(--w)) / 2), var(--m));
}
.hero__tag {
  display: block;
  font-family: var(--f-accent);
  color: var(--vert-pale);
  font-size: 1.3rem;
  margin-bottom: var(--s);
}
.hero__content h1 { color: var(--blanc); margin-bottom: var(--m); }
.hero__content p  { color: rgba(245,237,216,.9); font-size: 1.05rem; max-width: 500px; margin-bottom: var(--l); }
.hero__btns { display: flex; gap: var(--s); flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  animation: bounce 2s infinite;
}
.hero__scroll::before { content: '↓'; font-size: 1.1rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}

/* ── Bande valeurs ───────────────────────────────── */
.valeurs { background: var(--terre); padding: var(--m) 0; }
.valeurs__inner {
  display: flex;
  justify-content: center;
  gap: var(--l);
  flex-wrap: wrap;
}
.valeur {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--creme);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── Fil d'Ariane ────────────────────────────────── */
.breadcrumb {
  background: var(--creme);
  padding: .65rem 0;
  border-bottom: 1px solid var(--creme-fonce);
  font-size: .84rem;
  color: var(--texte-leger);
}
.breadcrumb__inner { display: flex; align-items: center; gap: .5rem; }
.breadcrumb__inner a { color: var(--vert); }
.breadcrumb__sep { opacity: .4; }
.breadcrumb__current { color: var(--texte); font-weight: 700; }

/* ── News ────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--l); }
.news-vide { grid-column: 1 / -1; text-align: center; color: var(--texte-leger); }
.news-card__meta { display: flex; gap: var(--s); align-items: center; margin-bottom: var(--s); flex-wrap: wrap; }
.news-card__meta time { font-size: .8rem; color: var(--texte-leger); opacity: .7; }
.news-card__body { padding: var(--m); }
.news-card__body h3 { color: var(--terre); }
.lire-plus {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--vert);
  font-weight: 700;
  font-size: .9rem;
  margin-top: var(--s);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-corps);
  padding: 0;
  transition: gap var(--ease);
}
.lire-plus:hover { gap: .6rem; }

/* ── Stats ───────────────────────────────────────── */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--m); margin-top: var(--l); }
.stat { background: var(--blanc); padding: var(--m); border-radius: var(--r); border-left: 4px solid var(--vert); }
.stat__val   { font-family: var(--f-titre); font-size: 2rem; color: var(--terre); line-height: 1; display: block; }
.stat__label { font-size: .82rem; color: var(--texte-leger); margin-top: .2rem; display: block; }

/* ── Toast ───────────────────────────────────────── */
.fdg-toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--vert-fonce);
  color: var(--creme);
  padding: .9rem 1.4rem;
  border-radius: var(--r);
  font-size: .9rem;
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .6rem;
  max-width: 360px;
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s ease;
}
.fdg-toast--erreur  { background: #922b21; }
.fdg-toast--visible { transform: translateY(0); opacity: 1; }
.fdg-toast__icon    { flex-shrink: 0; }

/* ── Modal générique ─────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42,31,20,.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: var(--m);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--blanc);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  position: relative;
}
.modal--lg  { max-width: 680px; }
.modal--xl  { max-width: 900px; }
.modal__close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none; border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--texte-leger);
  line-height: 1;
  z-index: 1;
}

/* ── Modal Auth ──────────────────────────────────── */
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; }
.auth-tab {
  background: var(--creme);
  border: none;
  padding: var(--m);
  font-family: var(--f-titre);
  font-size: .95rem;
  color: var(--texte-leger);
  cursor: pointer;
  transition: all var(--ease);
  border-bottom: 3px solid var(--creme-fonce);
}
.auth-tab.active { background: var(--blanc); color: var(--terre); border-bottom-color: var(--vert); font-weight: 700; }
.auth-body    { padding: var(--l); }
.auth-panel   { display: none; }
.auth-panel.active { display: block; }
.auth-msg { padding: .6rem var(--m); border-radius: var(--r); font-size: .85rem; margin-bottom: var(--s); display: none; }
.auth-msg--err { background: #fde8e8; color: #c0392b; }
.auth-msg--ok  { background: var(--vert-bg); color: var(--vert-fonce); }
.btn-auth {
  width: 100%;
  padding: .85rem;
  background: var(--vert);
  color: var(--blanc);
  border: none;
  border-radius: var(--r);
  font-family: var(--f-titre);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--ease);
  margin-top: var(--s);
}
.btn-auth:hover { background: var(--vert-fonce); }

/* ── Cookies ─────────────────────────────────────── */
#cookies-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--vert-fonce);
  color: var(--creme);
  padding: var(--m) var(--l);
  display: flex;
  align-items: center;
  gap: var(--m);
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookies-banner.visible { transform: translateY(0); }
.cookies__text { flex: 1; font-size: .87rem; color: rgba(245,237,216,.9); }
.cookies__text a { color: var(--vert-pale); text-decoration: underline; }
.cookies__actions { display: flex; gap: var(--s); flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--vert-clair); color: var(--blanc); border: none;
  padding: .6rem 1.4rem; border-radius: var(--r);
  font-family: var(--f-corps); font-size: .87rem; font-weight: 700;
  cursor: pointer; transition: background var(--ease);
}
.btn-cookie-accept:hover { background: var(--vert); }
.btn-cookie-refuse {
  background: transparent; color: rgba(245,237,216,.6);
  border: 1px solid rgba(245,237,216,.3);
  padding: .6rem 1.2rem; border-radius: var(--r);
  font-family: var(--f-corps); font-size: .85rem;
  cursor: pointer; transition: all var(--ease);
}
.btn-cookie-refuse:hover { color: var(--creme); border-color: rgba(245,237,216,.6); }

/* ── Footer ──────────────────────────────────────── */
.footer { background: var(--vert-fonce); color: var(--creme); padding: var(--xl) 0 var(--l); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--l); margin-bottom: var(--l); }
.footer__brand p { color: rgba(245,237,216,.7); font-size: .9rem; max-width: 300px; margin-top: var(--s); }
.footer__col h4  { font-family: var(--f-titre); color: var(--vert-pale); font-size: .95rem; margin-bottom: var(--m); }
.footer__links   { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer__links a { color: rgba(245,237,216,.7); font-size: .88rem; }
.footer__links a:hover { color: var(--vert-pale); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--m);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s);
}
.footer__bottom p { color: rgba(245,237,216,.45); font-size: .8rem; margin: 0; }
.footer__legal    { display: flex; gap: var(--m); }
.footer__legal a  { color: rgba(245,237,216,.45); font-size: .78rem; }
.footer__legal a:hover { color: rgba(245,237,216,.8); }

/* ── Pages légales ───────────────────────────────── */
.legal { max-width: 780px; margin: 0 auto; padding: var(--xl) var(--m); }
.legal h1 { margin-bottom: var(--s); }
.legal__date { color: var(--texte-leger); font-size: .87rem; margin-bottom: var(--xl); display: block; }
.legal h2 { font-size: 1.25rem; margin-top: var(--l); padding-bottom: .5rem; border-bottom: 2px solid var(--creme-fonce); }
.legal h3 { font-size: 1rem; margin-top: var(--m); color: var(--vert-fonce); }
.legal ul { padding-left: 1.5rem; margin-bottom: var(--m); }
.legal ul li { margin-bottom: .4rem; color: var(--texte-leger); }
.ph-legal {
  display: inline-block;
  background: #fff3cd; border: 1px solid #ffc107;
  color: #856404; padding: .1rem .5rem;
  border-radius: 4px; font-size: .88em; font-style: italic;
}

/* ── 404 ─────────────────────────────────────────── */
.page-404     { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-404__num { font-family: var(--f-titre); font-size: clamp(5rem,18vw,9rem); color: var(--vert-pale); display: block; line-height: 1; }

/* ── Page compte (commandes client) ─────────────── */
.cmd-card { border: 2px solid var(--creme-fonce); border-radius: var(--r); padding: var(--m); margin-bottom: var(--m); transition: border-color var(--ease); }
.cmd-card:hover { border-color: var(--vert-clair); }
.cmd-card:last-child { margin-bottom: 0; }
.cmd-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--s); flex-wrap: wrap; gap: .5rem; }
.cmd-card__id     { font-family: var(--f-titre); color: var(--terre); font-size: .92rem; }
.cmd-card__date   { font-size: .8rem; color: var(--texte-leger); margin-bottom: var(--s); }
.cmd-card__lignes { font-size: .85rem; color: var(--texte-leger); margin-bottom: var(--s); line-height: 1.6; }
.cmd-card__footer { display: flex; justify-content: space-between; align-items: center; padding-top: var(--s); border-top: 1px solid var(--creme-fonce); flex-wrap: wrap; gap: .5rem; }
.cmd-card__total  { font-family: var(--f-titre); font-size: 1.1rem; color: var(--vert-fonce); }
.cmd-card__meta   { font-size: .8rem; color: var(--texte-leger); }

.liste-vide       { text-align: center; padding: var(--l); color: var(--texte-leger); }
.liste-vide__icon { font-size: 3rem; margin-bottom: var(--m); }
.liste-vide-texte { color: var(--texte-leger); font-style: italic; }
.erreur-chargement{ color: var(--texte-leger); }
.chargement       { color: var(--texte-leger); }



/* ── Responsive ──────────────────────────────────── */
@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--vert-fonce);
    padding: var(--m);
    gap: .25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
  }
  .hero__content { margin-left: var(--m); }
  .valeurs__inner { gap: var(--m); }
  .footer__grid { grid-template-columns: 1fr; }
  #cookies-banner { flex-direction: column; align-items: flex-start; padding: var(--m); }
  .stats { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }

  /* Grille 2 colonnes → colonne unique, photo au-dessus */
  .grid-2 {
    display: flex;
    flex-direction: column;
  }
  .grid-2__photo { height: 260px; }
  .form-row { grid-template-columns: 1fr; }
}
