

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/mulish.woff2') format('woff2-variations');
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  
  
  --papier:        #FEF5EC;   
  --papier-chaud:  #F7EBDB;
  --papier-blanc:  #FFFDFA;
  --encre:         #14332C;
  --encre-douce:   #4A6259;
  --encre-tenue:   #8A9A92;
  --vert:          #044139;
  --vert-clair:    #076A4E;   
  --vert-profond:  #001B0A;
  --ambre:         #F8AA02;
  --ambre-sombre:  #A46700;   
  --ambre-pale:    #FDE7B4;
  --cyan:          #20D6BE;
  --cyan-sombre:   #06786A;
  --alerte:        #B23A21;   
  --trait:         #E3D6C4;
  --trait-fort:    #C9B79E;

  
  --r1: 6px;
  --r2: 10px;
  --r3: 16px;
  --r4: 24px;
  --r5: 34px;
  --rp: 999px;

  
  --ombre-1: 0 1px 2px rgba(20, 51, 44, .05), 0 2px 6px -2px rgba(20, 51, 44, .07);
  --ombre-2: 0 2px 4px rgba(20, 51, 44, .05), 0 14px 28px -14px rgba(20, 51, 44, .20);
  --ombre-3: 0 4px 8px rgba(20, 51, 44, .06), 0 28px 50px -22px rgba(20, 51, 44, .28);

  
  --e1: .25rem;  --e2: .5rem;   --e3: .75rem;  --e4: 1rem;
  --e5: 1.5rem;  --e6: 2rem;    --e7: 3rem;    --e8: 4rem;
  --e9: 5.5rem;

  --large: 1200px;
  --etroit: 760px;

  --anim: 180ms cubic-bezier(.2, .7, .3, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--papier);
  
  background-image: radial-gradient(circle at 1px 1px, rgba(20, 51, 44, .055) 1px, transparent 0);
  background-size: 22px 22px;
  color: var(--encre);
  font-family: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--vert-clair); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--vert); }

::selection { background: var(--ambre-pale); color: var(--encre); }

:focus-visible {
  outline: 3px solid var(--ambre);
  outline-offset: 3px;
  border-radius: var(--r1);
}

h1, h2, h3, h4, .titre {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--vert);
  margin: 0 0 var(--e4);
  line-height: 1.08;
  letter-spacing: -.015em;
  font-weight: 700;
  font-variation-settings: 'SOFT' 20, 'WONK' 1, 'opsz' 48;
}

h1, .t-geant {
  font-size: clamp(2.15rem, 1.3rem + 2.3vw, 3.3rem);
  font-variation-settings: 'SOFT' 24, 'WONK' 1, 'opsz' 72;
  font-weight: 750;
  text-wrap: balance;
}
h2, .t-grand { font-size: clamp(1.65rem, 1.15rem + 1.5vw, 2.35rem); text-wrap: balance; }
h3, .t-moyen {
  font-size: clamp(1.2rem, 1rem + .6vw, 1.5rem);
  font-variation-settings: 'SOFT' 20, 'WONK' 0, 'opsz' 28;
}
h4 {
  font-size: 1.05rem;
  font-variation-settings: 'SOFT' 20, 'WONK' 0, 'opsz' 14;
}

p { margin: 0 0 var(--e4); }
p:last-child { margin-bottom: 0; }

.chapo {
  font-size: clamp(1.05rem, .98rem + .35vw, 1.22rem);
  line-height: 1.55;
  color: var(--encre-douce);
  max-width: 58ch;
}

.surtitre {
  font-family: 'Mulish', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ambre-sombre);
  margin: 0 0 var(--e3);
  display: flex;
  align-items: center;
  gap: var(--e3);
}
.surtitre::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--ambre) 0 34px, var(--trait) 34px);
  border-radius: var(--rp);
}
.surtitre.centre { justify-content: center; }
.surtitre.centre::after { display: none; }
.surtitre.centre::before {
  content: '';
  width: 34px; height: 2px;
  background: var(--ambre);
  border-radius: var(--rp);
}

.discret { color: var(--encre-tenue); font-size: .875rem; }
.fort { font-weight: 800; }
.chiffre { font-variant-numeric: tabular-nums; font-weight: 800; }

.enveloppe {
  width: 100%;
  max-width: var(--large);
  margin-inline: auto;
  padding-inline: var(--e5);
}
.enveloppe.etroite { max-width: var(--etroit); }

.section { padding-block: var(--e9); }
.section.serree { padding-block: var(--e7); }
.section.chaude { background: var(--papier-chaud); }
.section.blanche { background: var(--papier-blanc); }
.section.verte {
  background: var(--vert);
  color: rgba(253, 248, 241, .88);
  background-image: radial-gradient(circle at 1px 1px, rgba(253, 248, 241, .07) 1px, transparent 0);
  background-size: 22px 22px;
}
.section.verte h1, .section.verte h2, .section.verte h3, .section.verte h4 { color: var(--papier); }
.section.verte .chapo { color: rgba(253, 248, 241, .78); }
.section.verte .surtitre { color: var(--ambre); }
.section.verte .surtitre::after {
  background: linear-gradient(90deg, var(--ambre) 0 34px, rgba(253, 248, 241, .22) 34px);
}

.tete-section { margin-bottom: var(--e6); }
.tete-section.centre { text-align: center; }
.tete-section.centre .chapo { margin-inline: auto; }
.tete-section .lien-suite { white-space: nowrap; }

.entre-deux { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--e5); flex-wrap: wrap; }

.bouton {
  --fond: var(--vert);
  --texte: var(--papier);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--e2);
  padding: .78rem 1.45rem;
  border: 2px solid transparent;
  border-radius: var(--rp);
  background: var(--fond);
  color: var(--texte);
  font-family: 'Mulish', sans-serif;
  font-size: .97rem;
  font-weight: 800;
  letter-spacing: .005em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--anim), box-shadow var(--anim), background var(--anim), color var(--anim);
  box-shadow: var(--ombre-1);
}
.bouton:hover {
  color: var(--texte);
  transform: translateY(-2px);
  box-shadow: var(--ombre-2);
}
.bouton:active { transform: translateY(0); }

.bouton.ambre { --fond: var(--ambre); --texte: var(--vert-profond); }
.bouton.ambre:hover { --fond: #ffb92a; }
.bouton.clair { --fond: var(--papier-blanc); --texte: var(--vert); border-color: var(--trait-fort); }
.bouton.contour {
  --fond: transparent;
  --texte: var(--vert);
  border-color: var(--vert);
  box-shadow: none;
}
.bouton.contour:hover { background: rgba(4, 65, 57, .07); }
.bouton.sur-vert { --fond: var(--papier); --texte: var(--vert); }
.bouton.contour.sur-vert { --fond: transparent; --texte: var(--papier); border-color: rgba(253, 248, 241, .5); }
.bouton.contour.sur-vert:hover { background: rgba(253, 248, 241, .12); }
.bouton.grand { padding: .95rem 1.9rem; font-size: 1.05rem; }
.bouton.large { width: 100%; }
.bouton[disabled], .bouton.eteint {
  --fond: var(--trait);
  --texte: var(--encre-tenue);
  pointer-events: none;
  box-shadow: none;
}

.lien-suite {
  font-weight: 800;
  font-size: .95rem;
  color: var(--vert-clair);
  text-decoration: none;
  border-bottom: 2px solid var(--ambre);
  padding-bottom: 2px;
  transition: color var(--anim), border-color var(--anim);
}
.lien-suite:hover { color: var(--vert); border-color: var(--vert); }
.section.verte .lien-suite { color: var(--ambre); }
.section.verte .lien-suite:hover { color: var(--papier); }

.etiquette {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .26rem .68rem;
  border-radius: var(--rp);
  background: var(--papier-chaud);
  border: 1px solid var(--trait);
  color: var(--encre-douce);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.etiquette.type { background: var(--ambre-pale); border-color: #EBC97A; color: #6E4700; }
.etiquette.public { background: #DEF5F0; border-color: #A9E3D8; color: var(--cyan-sombre); }
.etiquette.complet { background: #EDEAE4; border-color: var(--trait-fort); color: var(--encre-douce); }
.etiquette.gratuit { background: #E4F2DF; border-color: #B8DDAC; color: #2F6B22; }

.places { display: flex; align-items: baseline; gap: .4rem; line-height: 1; }
.places .nb {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  font-variation-settings: 'SOFT' 20, 'WONK' 0, 'opsz' 36;
  color: var(--vert);
  font-variant-numeric: tabular-nums;
}
.places .sur { font-size: .95rem; font-weight: 700; color: var(--encre-tenue); }
.places.rare .nb { color: var(--alerte); }
.places.plein .nb { color: var(--encre-tenue); }
.places .mot { font-size: .82rem; font-weight: 700; color: var(--encre-douce); text-transform: uppercase; letter-spacing: .06em; }

.entete {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 241, .93);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--trait);
}
.entete .barre {
  display: flex;
  align-items: center;
  gap: var(--e5);
  min-height: 68px;
  padding-block: .6rem;
}
.marque { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }

.marque .ecu {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 4px;
  background: var(--vert);
  border-radius: var(--r3);
  box-shadow: var(--ombre-1);
  transition: transform var(--anim), box-shadow var(--anim);
}
.marque:hover .ecu { transform: translateY(-1px) rotate(-2deg); box-shadow: var(--ombre-2); }
.marque .ecu img { width: 100%; height: 100%; object-fit: contain; }
.marque .nom {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--vert);
  letter-spacing: -.01em;
  line-height: 1;
  font-variation-settings: 'SOFT' 20, 'WONK' 1, 'opsz' 24;
}
.marque .sous { display: block; font-family: 'Mulish', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--encre-tenue); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: var(--e2); }
.nav a {
  padding: .5rem .85rem;
  border-radius: var(--rp);
  color: var(--encre);
  font-weight: 700;
  font-size: .97rem;
  text-decoration: none;
  transition: background var(--anim), color var(--anim);
}
.nav a:hover { background: var(--papier-chaud); color: var(--vert); }
.nav a.actif { color: var(--vert); background: var(--ambre-pale); }

.account { display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; }
.account .account-name { font-weight: 800; }
.account form { display: inline; margin: 0; }
.account form button {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.pied .bas .account { color: rgba(253, 248, 241, .5); }
.pied .bas .account .account-name { color: rgba(253, 248, 241, .78); }
.account form button:hover { color: var(--ambre); }

.cta-tiroir { display: none; }

.burger {
  display: none;
  border: 1px solid var(--trait-fort);
  background: var(--papier-blanc);
  border-radius: var(--r2);
  padding: .5rem .7rem;
  cursor: pointer;
  font-weight: 800;
  color: var(--vert);
  font-family: 'Mulish', sans-serif;
}

.bandeau {
  background: var(--vert);
  color: rgba(253, 248, 241, .92);
  font-size: .875rem;
  font-weight: 600;
}
.bandeau .enveloppe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--e5);
  flex-wrap: wrap;
  padding-block: .55rem;
  text-align: center;
}
.bandeau .item { display: inline-flex; align-items: center; gap: .45rem; }
.bandeau .pastille { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); flex: none; }
.bandeau .pastille.ferme { background: var(--ambre); }
.bandeau b { color: var(--papier); font-weight: 800; }
.bandeau a { color: var(--ambre); font-weight: 800; text-decoration: none; }
.bandeau a:hover { color: var(--papier); text-decoration: underline; }

.liste-nue { border-top: 2px solid var(--ambre); }
.liste-nue .ligne {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: var(--e5);
  padding: .85rem .25rem;
  border-bottom: 1px solid var(--trait);
  text-decoration: none;
  color: inherit;
}
.liste-nue .ligne:last-child { border-bottom: 2px solid var(--ambre); }
.liste-nue .ligne::before {
  content: '';
  position: absolute;
  inset: 0 -.75rem;
  background: var(--papier-chaud);
  border-radius: var(--r2);
  opacity: 0;
  transition: opacity var(--anim);
  z-index: 0;
}
.liste-nue .ligne:hover::before { opacity: 1; }
.liste-nue .ligne > * { position: relative; z-index: 1; }

.jour {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--vert);
  line-height: 1;
  font-variation-settings: 'SOFT' 20, 'WONK' 0, 'opsz' 36;
}
.jour .num { display: block; font-size: 1.85rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.jour .mois { display: block; font-family: 'Mulish', sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ambre-sombre); margin-top: 2px; }

.liste-nue .quoi { min-width: 0; }
.liste-nue .quoi .nom {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--encre);
  font-variation-settings: 'SOFT' 20, 'WONK' 0, 'opsz' 24;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.liste-nue .quoi .meta { font-size: .84rem; color: var(--encre-douce); font-weight: 600; }
.liste-nue .ligne:hover .quoi .nom { color: var(--vert); }
.liste-nue .droite { text-align: right; }
.liste-nue .droite .places { justify-content: flex-end; }
.liste-nue .droite .places .nb { font-size: 1.5rem; }

.grille { display: grid; gap: var(--e5); }
.grille.c2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.grille.duo-hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); }
.grille.duo-fiche { grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); }
.grille.c3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grille.c4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.carte {
  display: flex;
  flex-direction: column;
  background: var(--papier-blanc);
  border: 1px solid var(--trait);
  border-radius: var(--r4);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim);
  box-shadow: var(--ombre-1);
}
a.carte:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre-2);
  border-color: var(--trait-fort);
  color: inherit;
}
.carte .visuel {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--papier-chaud);
  overflow: hidden;
}
.carte .visuel img {
  width: 100%; height: 100%;
  object-fit: cover;
  
  object-position: center top;
  transition: transform 320ms cubic-bezier(.2, .7, .3, 1);
}
a.carte:hover .visuel img { transform: scale(1.035); }
.carte .visuel .date-coin {
  position: absolute;
  top: var(--e3);
  left: var(--e3);
  background: var(--papier-blanc);
  border-radius: var(--r2);
  padding: .35rem .6rem;
  text-align: center;
  box-shadow: var(--ombre-1);
  line-height: 1;
}
.carte .visuel .date-coin .num { display: block; font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 800; color: var(--vert); }
.carte .visuel .date-coin .mois { display: block; font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--ambre-sombre); margin-top: 2px; }
.carte .corps { padding: var(--e4) var(--e5) var(--e5); display: flex; flex-direction: column; gap: var(--e3); flex: 1; }
.carte .corps .nom {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--vert);
  line-height: 1.2;
  font-variation-settings: 'SOFT' 20, 'WONK' 0, 'opsz' 24;
}
.carte .corps .meta { font-size: .86rem; color: var(--encre-douce); font-weight: 600; }
.carte .etiquettes { display: flex; flex-wrap: wrap; gap: .35rem; }
.carte .pied-carte {
  margin-top: auto;
  padding-top: var(--e3);
  border-top: 1px dashed var(--trait);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--e3);
}
.carte.est-complet .visuel img { filter: grayscale(.75) contrast(.95); opacity: .75; }

.porte .visuel {
  aspect-ratio: 16 / 10;
  background: #fff;
  display: grid;
  place-items: center;
  padding: var(--e4);
  border-bottom: 1px solid var(--trait);
}
.porte .visuel img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 320ms cubic-bezier(.2, .7, .3, 1);
}
a.porte:hover .visuel img { transform: scale(1.05) rotate(-1.2deg); }
.porte .corps { padding: var(--e4) var(--e5) var(--e5); }

.chiffres {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--e4);
  margin-bottom: var(--e5);
}
.chiffres .val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.3rem);
  font-weight: 800;
  color: var(--vert);
  line-height: 1;
  font-variation-settings: 'SOFT' 20, 'WONK' 0, 'opsz' 40;
}
.chiffres .quoi { display: block; font-size: .78rem; color: var(--encre-tenue); font-weight: 700; margin-top: .3rem; line-height: 1.3; }

.produit {
  display: flex;
  flex-direction: column;
  background: var(--papier-blanc);
  border: 1px solid var(--trait);
  border-radius: var(--r3);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim);
}
a.produit:hover { transform: translateY(-3px); box-shadow: var(--ombre-2); border-color: var(--trait-fort); color: inherit; }
.produit .visuel {
  aspect-ratio: 1;
  background: #fff;
  display: grid;
  place-items: center;
  padding: var(--e4);
  border-bottom: 1px solid var(--trait);
}
.produit .visuel img { max-height: 100%; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.produit .corps { padding: var(--e3) var(--e4) var(--e4); display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.produit .corps .nom {
  font-size: .93rem;
  font-weight: 700;
  color: var(--encre);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.produit .corps .rayon { font-size: .74rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--encre-tenue); }
.produit .corps .prix { margin-top: auto; padding-top: var(--e2); font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 800; color: var(--vert); }
.produit .dispo { font-size: .76rem; font-weight: 700; color: var(--cyan-sombre); display: flex; align-items: center; gap: .35rem; }
.produit .dispo::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }

.affiche {
  max-width: min(100%, 520px);
  max-height: 460px;
  width: auto;
  border-radius: var(--r4);
  border: 1px solid var(--trait);
  box-shadow: var(--ombre-2);
  margin-bottom: var(--e6);
}

.bloc {
  background: var(--papier-blanc);
  border: 1px solid var(--trait);
  border-radius: var(--r4);
  padding: var(--e6);
  box-shadow: var(--ombre-1);
}
.bloc.ambre { background: var(--ambre-pale); border-color: #EBC97A; }
.bloc.serre { padding: var(--e5); }
.bloc.plat { box-shadow: none; }

.fiche-liste { list-style: none; margin: 0; padding: 0; }
.fiche-liste li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: var(--e4);
  padding: .7rem 0;
  border-bottom: 1px solid var(--trait);
  align-items: baseline;
}
.fiche-liste li:last-child { border-bottom: 0; padding-bottom: 0; }
.fiche-liste li:first-child { padding-top: 0; }
.fiche-liste dt, .fiche-liste .cle {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--encre-tenue);
}
.fiche-liste .val { font-weight: 600; }

.puces { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--e3); }
.puces li { position: relative; padding-left: 1.6rem; }
.puces li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: .55rem; height: .55rem;
  background: var(--ambre);
  border-radius: 2px;
  transform: rotate(45deg);
}
.section.verte .puces li::before { background: var(--cyan); }

.champ { display: block; margin-bottom: var(--e4); }
.champ > .libelle {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--encre-douce);
  margin-bottom: .35rem;
}
.champ input, .champ select, .champ textarea {
  width: 100%;
  padding: .72rem .95rem;
  border: 1.5px solid var(--trait-fort);
  border-radius: var(--r2);
  background: var(--papier-blanc);
  color: var(--encre);
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  transition: border-color var(--anim), box-shadow var(--anim);
}
.champ input::placeholder, .champ textarea::placeholder { color: var(--encre-tenue); }
.champ input:focus, .champ select:focus, .champ textarea:focus {
  outline: none;
  border-color: var(--vert);
  box-shadow: 0 0 0 3px rgba(4, 65, 57, .13);
}
.champ .aide { font-size: .8rem; color: var(--encre-tenue); margin-top: .3rem; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: var(--e4); }

.rassurance {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  font-weight: 700;
  color: var(--cyan-sombre);
  background: #E7F7F3;
  border: 1px solid #B7E5DB;
  border-radius: var(--r2);
  padding: .55rem .8rem;
}

.pied {
  background: var(--vert-profond);
  color: rgba(253, 248, 241, .74);
  padding-block: var(--e8) var(--e5);
  font-size: .92rem;
}

.pied.pied a { color: rgba(253, 248, 241, .74); text-decoration: none; }
.pied.pied a:hover { color: var(--ambre); text-decoration: underline; }
.pied h4 {
  color: var(--papier);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: 'Mulish', sans-serif;
  margin-bottom: var(--e4);
}
.pied .colonnes { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--e6); }
.pied .liste { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.pied .marque-pied { display: flex; align-items: center; gap: .7rem; margin-bottom: var(--e4); }

.pied .marque-pied img { height: 52px; width: auto; }
.pied .marque-pied .nom { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 800; color: var(--papier); }
.pied .horaires-pied { display: grid; gap: .35rem; }
.pied .horaires-pied .ligne { display: flex; justify-content: space-between; gap: var(--e4); max-width: 15rem; }
.pied .horaires-pied .ferme { color: var(--ambre); font-weight: 700; }
.pied .bas {
  margin-top: var(--e7);
  padding-top: var(--e4);
  border-top: 1px solid rgba(253, 248, 241, .14);
  display: flex;
  justify-content: space-between;
  gap: var(--e4);
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(253, 248, 241, .5);
}
.pied .reseaux { display: flex; gap: var(--e3); flex-wrap: wrap; }
.pied .reseaux a {
  border: 1px solid rgba(253, 248, 241, .22);
  border-radius: var(--rp);
  padding: .35rem .85rem;
  font-weight: 700;
  font-size: .84rem;
  transition: background var(--anim), border-color var(--anim), color var(--anim);
}
.pied .reseaux a:hover { background: var(--ambre); border-color: var(--ambre); color: var(--vert-profond); text-decoration: none; }

.fil { font-size: .84rem; color: var(--encre-tenue); padding-block: var(--e5) 0; }
.fil a { color: var(--encre-douce); text-decoration: none; font-weight: 600; }
.fil a:hover { color: var(--vert); text-decoration: underline; }
.fil .sep { margin-inline: .45rem; color: var(--trait-fort); }

.filtres {
  display: flex;
  gap: var(--e6);
  flex-wrap: wrap;
  align-items: flex-start;
  padding: var(--e5);
  background: var(--papier-blanc);
  border: 1px solid var(--trait);
  border-radius: var(--r4);
  box-shadow: var(--ombre-1);
}
.filtres .groupe { display: flex; flex-direction: column; gap: .6rem; }
.filtres .groupe > .titre-filtre {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--encre-tenue);
  font-family: 'Mulish', sans-serif;
}
.filtres .choix { display: flex; gap: .45rem; flex-wrap: wrap; }
.pilule {
  border: 1.5px solid var(--trait-fort);
  background: var(--papier);
  color: var(--encre-douce);
  border-radius: var(--rp);
  padding: .38rem .9rem;
  font-family: 'Mulish', sans-serif;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--anim);
  white-space: nowrap;
}
.pilule:hover { border-color: var(--vert); color: var(--vert); }
.pilule[aria-pressed='true'] { background: var(--vert); border-color: var(--vert); color: var(--papier); }

.compte { font-size: .88rem; color: var(--encre-douce); font-weight: 700; }
.filtres .compte { margin-left: auto; align-self: center; }

.s_embed_code iframe, .oe_structure iframe {
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.note {
  border-left: 3px solid var(--ambre);
  padding: .2rem 0 .2rem var(--e4);
  color: var(--encre-douce);
  font-size: .92rem;
}
.vide {
  text-align: center;
  padding: var(--e8) var(--e5);
  color: var(--encre-douce);
  border: 1.5px dashed var(--trait-fort);
  border-radius: var(--r4);
}
.cache { display: none !important; }

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

.mesure-fold {
  position: fixed; left: 0; right: 0; top: 730px; height: 0;
  border-top: 2px dashed rgba(178, 58, 33, .8); z-index: 9999; pointer-events: none;
}
.mesure-fold::after {
  content: 'ligne de flottaison — 15 pouces (730 px)';
  position: absolute; right: 8px; top: 4px;
  font: 700 11px/1 'Mulish', sans-serif; color: #B23A21;
  background: rgba(255, 255, 255, .9); padding: 3px 6px; border-radius: 4px;
}

@media (max-width: 1080px) {
  .grille.c4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pied .colonnes { grid-template-columns: 1fr 1fr; gap: var(--e6) var(--e5); }
}

@media (max-width: 900px) {
  :root { --e9: 3.5rem; --e8: 3rem; }
  .burger { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: var(--e5); right: var(--e5); top: calc(100% + .5rem);
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    background: var(--papier-blanc);
    border: 1px solid var(--trait);
    border-radius: var(--r3);
    padding: var(--e3);
    box-shadow: var(--ombre-3);
  }
  .nav.ouvert { display: flex; }
  .nav a { padding: .8rem .9rem; font-size: 1.02rem; min-height: 46px; display: flex; align-items: center; }
  .nav .cta-tiroir { display: flex; justify-content: center; margin-top: var(--e2); }
  .entete .barre { position: relative; }
  .entete .action-entete { display: none; }

  
  .pilule { min-height: 44px; padding-inline: 1.05rem; font-size: .92rem; }
  .burger { min-height: 44px; padding-inline: .95rem; }
  .lien-suite { padding-block: .35rem; display: inline-block; }
  .grille.c3, .grille.c4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grille.duo-hero, .grille.duo-fiche { grid-template-columns: 1fr; gap: var(--e6) !important; }
  
  .grille.duo-fiche > .colonne-collante { position: static !important; order: -1; }
}

@media (max-width: 720px) {
  .enveloppe { padding-inline: var(--e4); }
  .grille.c2 { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .fiche-liste li { grid-template-columns: 1fr; gap: .15rem; }
  
  .bandeau .enveloppe { gap: var(--e4); font-size: .8rem; flex-wrap: nowrap; }
  .bandeau .item.adresse { display: none; }
  .bloc { padding: var(--e5); }

  
  .liste-nue .ligne { grid-template-columns: 64px 1fr; gap: var(--e4); row-gap: .3rem; padding-block: .75rem; }
  .liste-nue .droite { grid-column: 2; text-align: left; }
  .liste-nue .droite .places { justify-content: flex-start; }
  .liste-nue .droite .places .nb { font-size: 1.25rem; }
  .jour .num { font-size: 1.5rem; }
  .liste-nue .quoi .nom { white-space: normal; font-size: 1.02rem; }

  .pied .colonnes { grid-template-columns: 1fr; }
  .pied .bas { flex-direction: column; gap: var(--e2); }
  .filtres { padding: var(--e4); gap: var(--e4); }
  .filtres .compte { margin-left: 0; }
  .entre-deux.tete-liste { flex-direction: column; align-items: flex-start; gap: var(--e2); }
  .sur-bureau { display: none; }
  .sur-tel { display: inline-flex; }
}

@media (max-width: 480px) {
  
  .grille.c3 { grid-template-columns: 1fr; }
  .grille.c4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--e4); }
  .produit .corps { padding: var(--e3); }
  .produit .visuel { padding: var(--e3); }
  
  .carte .visuel { aspect-ratio: 16 / 10; }
  .marque .sous { display: none; }
  .marque img { height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
