/* La Casa Verde — boutique CBD, 38 rue Lamalgue, Toulon
   Couleurs relevées sur la devanture : menthe, crème, bois, vert feuille. */

:root {
  --papier: #FCFBF8;
  --blanc: #FFFFFF;
  --menthe: #9CC7AE;
  --menthe-f: #7BAF93;
  --menthe-p: #E9F2EC;
  --menthe-pp: #F3F8F4;
  --vert: #2F6B50;
  --vert-f: #24543F;
  --creme: #F7F4E9;
  --bois: #B98C5A;
  --encre: #22302A;
  --encre-2: #5E6E65;
  --ligne: rgba(34, 48, 42, .12);
  --ligne-f: rgba(34, 48, 42, .26);

  --f-titre: 'Fraunces', Georgia, serif;
  --f-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --gutter: clamp(18px, 5vw, 64px);
  --ease: cubic-bezier(.22, .8, .2, 1);
  --sortie: cubic-bezier(.76, 0, .24, 1);
  --ressort: cubic-bezier(.34, 1.56, .64, 1);
  --radius: 14px;
  --radius-l: 24px;
  --top-h: 72px;
  --ombre: 0 26px 50px -34px rgba(34, 48, 42, .5);
  --ombre-h: 0 40px 70px -40px rgba(34, 48, 42, .55);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--top-h) + 12px); }
html.reduce { scroll-behavior: auto; }
body {
  margin: 0; background: var(--papier); color: var(--encre);
  font: 400 17px/1.6 var(--f-body); overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--f-titre); font-weight: 600; line-height: 1.08; letter-spacing: -.015em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }
button { font: inherit; color: inherit; }
::selection { background: var(--menthe); color: var(--encre); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 500; background: var(--vert); color: var(--blanc); padding: 10px 16px; border-radius: 10px; font-weight: 700; }
.skip:focus { left: 12px; }
:focus-visible { outline: 2px solid var(--vert); outline-offset: 3px; border-radius: 6px; }

/* ================= CURSEUR ================= */
.curseur { display: none; }
html.fin:not(.reduce) .curseur {
  display: block; position: fixed; left: 0; top: 0; z-index: 600; pointer-events: none;
  mix-blend-mode: normal;
}
.cur-point, .cur-anneau { position: absolute; border-radius: 50%; transform: translate(-50%, -50%); }
.cur-point { width: 7px; height: 7px; background: var(--vert); transition: opacity .2s; }
.cur-anneau {
  width: 38px; height: 38px; border: 1.5px solid rgba(47, 107, 80, .45);
  transition: width .3s var(--ease), height .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease);
}
html.fin .curseur.sur .cur-anneau { width: 64px; height: 64px; background: rgba(156, 199, 174, .22); border-color: transparent; }
html.fin .curseur.sur .cur-point { opacity: 0; }
html.fin .curseur.zoom .cur-anneau { width: 86px; height: 86px; background: rgba(47, 107, 80, .9); border-color: transparent; }
html.fin .curseur.zoom .cur-point { opacity: 0; }
.curseur .cur-anneau::after {
  content: 'voir'; position: absolute; inset: 0; display: grid; place-items: center;
  font: 700 11px/1 var(--f-body); letter-spacing: .12em; text-transform: uppercase; color: var(--creme);
  opacity: 0; transition: opacity .25s;
}
html.fin .curseur.zoom .cur-anneau::after { opacity: 1; }
html.fin:not(.reduce) * { cursor: none !important; }

/* ================= RIDEAU D'OUVERTURE =================
   La feuille se dessine foliole par foliole, se remplit, puis devient la
   fenêtre par laquelle le site apparaît : le même tracé sert de trou dans
   le masque du voile, et on l'agrandit jusqu'à ce qu'il déborde l'écran. */
.intro { position: fixed; inset: 0; z-index: 400; pointer-events: none; }
.intro[hidden] { display: none; }
.intro-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* le trou du masque reste fermé tant que la feuille se dessine */
.cv-masque { opacity: 0; }
.intro.is-out .cv-masque { opacity: 1; }

/* les folioles : le trait court, puis la feuille se remplit de crème */
.intro-fos .fo {
  fill: #F7F4E9; fill-opacity: 0;
  stroke: #F7F4E9; stroke-width: 2.1; stroke-linejoin: round; stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: var(--len, 1400); stroke-dashoffset: var(--len, 1400);
}
.intro.is-on .intro-fos .fo {
  animation: cvTrace .84s var(--ease) forwards calc(var(--o) * .082s),
             cvRemplit .5s ease-out forwards calc(var(--o) * .082s + .52s);
}
@keyframes cvTrace { to { stroke-dashoffset: 0; } }
@keyframes cvRemplit { to { fill-opacity: 1; } }

/* les nervures, plus fines, arrivent derrière le remplissage */
.intro-nes .ne {
  fill: none; stroke: #7BAF93; stroke-width: 1.5; stroke-linecap: round; opacity: 0;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: var(--len, 320); stroke-dashoffset: var(--len, 320);
}
.intro.is-on .intro-nes .ne {
  animation: cvTrace .55s var(--ease) forwards calc(var(--o) * .06s + .62s),
             cvMontre .35s linear forwards calc(var(--o) * .06s + .62s);
}
@keyframes cvMontre { to { opacity: .8; } }

/* au dévoilement, la feuille n'est plus qu'un liseré autour de la fenêtre.
   Il faut couper l'animation : en `forwards` elle l'emporte sur toute
   déclaration normale, et le remplissage crème resterait opaque. */
.intro.is-out .intro-fos .fo {
  animation: none; fill-opacity: 0; stroke-dashoffset: 0; stroke-width: 2.6;
}
.intro.is-out .intro-nes { opacity: 0; }

.intro-in {
  position: absolute; inset: 0; display: grid; align-content: end; justify-items: center;
  gap: 12px; text-align: center; padding: 0 24px 11vh;
  transition: opacity .5s var(--ease), transform .7s var(--ease);
}
.intro-mot {
  display: flex; gap: .01em; font-family: var(--f-titre); font-weight: 600;
  font-size: clamp(30px, 5.6vw, 66px); color: var(--creme); letter-spacing: -.02em;
  text-shadow: 0 10px 26px rgba(34, 48, 42, .18);
}
.intro-mot b { display: inline-block; font-weight: inherit; opacity: 0; transform: translateY(.55em) rotate(4deg); }
.intro.is-on .intro-mot b { animation: cvLettre .8s var(--ease) forwards; animation-delay: calc(1s + var(--i) * .034s); }
@keyframes cvLettre { to { opacity: 1; transform: none; } }
.intro-sous {
  font-size: 12px; font-weight: 700; letter-spacing: .36em; text-transform: uppercase;
  color: rgba(247, 244, 233, .82); opacity: 0;
}
.intro.is-on .intro-sous { animation: cvLettre .8s var(--ease) 1.5s forwards; }
.intro.is-out .intro-in { opacity: 0; transform: translateY(-26px) scale(.96); }

/* ================= LIANE DE PROGRESSION ================= */
.vigne { display: none; }
html.fin .vigne {
  display: block; position: fixed; left: 10px; top: 0; z-index: 90;
  width: 46px; height: 100vh; pointer-events: none;
}
.vigne-t { fill: none; stroke: var(--menthe); stroke-width: 2.4; stroke-linecap: round; }
.vigne-f { display: none; }
html.fin .vigne-f { display: block; position: fixed; left: 0; top: 0; width: 66px; height: 100vh; z-index: 91; pointer-events: none; }
.vigne-f i {
  position: absolute; width: 16px; height: 16px; color: var(--vert);
  transform: translate(-50%, -50%) scale(0) rotate(var(--r, 0deg)); transform-origin: 50% 50%;
  transition: transform .6s var(--ressort), opacity .4s;
  opacity: 0;
}
.vigne-f i.is-out { transform: translate(-50%, -50%) scale(1) rotate(var(--r, 0deg)); opacity: 1; }
.vigne-f svg { width: 100%; height: 100%; }
html.reduce .vigne, html.reduce .vigne-f { display: none; }

/* ================= ENTRÉES ================= */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
html.reduce .reveal { opacity: 1 !important; transform: none !important; }

/* titres découpés mot à mot */
.mot { display: inline-block; overflow: hidden; vertical-align: top; }
.mot > i { display: inline-block; font-style: inherit; transform: translateY(105%) rotate(3deg); }
.js [data-split].is-in .mot > i {
  transform: none; transition: transform .95s var(--sortie); transition-delay: calc(var(--m) * 55ms);
}
html.reduce .mot > i { transform: none !important; }

/* entrée du héro */
.js [data-anim] { opacity: 0; transform: translateY(24px); }
.js body.go [data-anim] { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--a) * 110ms); }
html.reduce [data-anim] { opacity: 1 !important; transform: none !important; }

/* ================= BOUTONS ================= */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 15px; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
  overflow: hidden;
}
.btn > * { position: relative; z-index: 1; }
.btn::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; background: var(--vert-f);
  transform: translateY(101%); transition: transform .45s var(--sortie); z-index: 0;
}
.btn:hover::before { transform: none; }
.btn-go { background: var(--vert); color: var(--blanc); box-shadow: 0 16px 28px -20px rgba(47, 107, 80, .95); }
.btn-go:hover { box-shadow: 0 22px 36px -22px rgba(47, 107, 80, 1); }
.btn-ghost { border-color: var(--ligne-f); color: var(--encre); background: var(--blanc); }
.btn-ghost:hover { color: var(--blanc); border-color: var(--vert-f); }
.btn-clair { background: var(--blanc); color: var(--vert-f); }
.btn-clair::before { background: var(--menthe); }
.btn-clair:hover { color: var(--vert-f); }
.btn-ligne { border-color: rgba(255, 255, 255, .55); color: var(--blanc); }
.btn-ligne::before { background: rgba(255, 255, 255, .18); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ================= TYPO ================= */
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--vert); margin-bottom: 14px; }
.h2 { font-size: clamp(30px, 4.6vw, 50px); max-width: 16ch; }
.section-p { margin-top: 16px; color: var(--encre-2); max-width: 50ch; }
.lead { margin-top: 18px; font-size: clamp(17.5px, 1.9vw, 20px); color: var(--encre-2); max-width: 48ch; }

/* ================= CONTRÔLE D'ÂGE ================= */
.gate { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 24px; background: rgba(34, 48, 42, .74); backdrop-filter: blur(18px) saturate(.7); }
.gate[hidden] { display: none; }
.gate-card { width: min(420px, 100%); text-align: center; background: var(--blanc); border-radius: var(--radius-l); padding: 36px 28px 28px; box-shadow: 0 50px 90px -50px rgba(34, 48, 42, .85); animation: pop .7s var(--ressort); }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.96); } }
.gate-leaf { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--menthe-p); color: var(--vert); }
.gate-card h2 { margin-top: 16px; font-size: 26px; }
.gate-txt { margin-top: 10px; color: var(--encre-2); font-size: 15px; }
.gate-btns { margin-top: 22px; display: grid; gap: 10px; }

/* ================= EN-TÊTE ================= */
.top {
  position: fixed; inset: 0 0 auto; z-index: 120; height: var(--top-h);
  display: flex; align-items: center; gap: 20px; padding: 0 var(--gutter);
  background: rgba(252, 251, 248, .72); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), transform .5s var(--ease);
}
.top.is-stuck { background: rgba(252, 251, 248, .94); border-bottom-color: var(--ligne); box-shadow: 0 10px 30px -28px rgba(34, 48, 42, .8); }
.top.is-hide { transform: translateY(-101%); }
.top-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.top-mark { color: var(--vert); flex: none; transition: transform .6s var(--ressort); }
.top-brand:hover .top-mark { transform: rotate(-12deg) scale(1.08); }
.top-brand span { display: grid; line-height: 1.15; }
.top-brand b { font-family: var(--f-titre); font-weight: 600; font-size: 18px; }
.top-brand i { font-style: normal; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-2); }
.top-nav { display: flex; gap: 26px; }
.top-nav a { position: relative; text-decoration: none; font-size: 14.5px; color: var(--encre-2); transition: color .25s; }
.top-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -5px; height: 1.5px; background: var(--vert); transform: scaleX(0); transform-origin: 0 50%; transition: transform .4s var(--sortie); }
.top-nav a:hover { color: var(--vert); }
.top-nav a:hover::after { transform: none; }
.top-right { display: flex; align-items: center; gap: 14px; }

.statut { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 500; color: var(--encre-2); }
.statut i { width: 7px; height: 7px; border-radius: 50%; background: var(--encre-2); flex: none; }
.statut.is-open i { background: var(--menthe-f); box-shadow: 0 0 0 0 rgba(123, 175, 147, .6); animation: pulse 2.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(123, 175, 147, 0); } 100% { box-shadow: 0 0 0 0 rgba(123, 175, 147, 0); } }

.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--ligne-f); border-radius: 12px; background: var(--blanc); position: relative; }
.burger span:not(.sr-only) { position: absolute; left: 11px; width: 20px; height: 2px; background: var(--encre); border-radius: 2px; transition: transform .3s var(--ease); }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.menu-mob { position: fixed; inset: var(--top-h) 0 auto; z-index: 110; background: var(--papier); border-bottom: 1px solid var(--ligne); padding: 14px var(--gutter) 26px; display: grid; gap: 2px; box-shadow: var(--ombre); }
.menu-mob[hidden] { display: none; }
.menu-mob a { text-decoration: none; padding: 13px 2px; border-bottom: 1px solid var(--ligne); font-size: 17px; }
.menu-mob .btn { margin-top: 14px; border-bottom: 0; }

/* ================= HÉRO ================= */
.hero { position: relative; padding: calc(var(--top-h) + clamp(26px, 4vw, 56px)) var(--gutter) clamp(60px, 7vw, 90px); overflow: hidden; }
.hero-gl, .hero-feuilles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-gl { opacity: .9; }
.hero-in { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.kicker { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; color: var(--encre-2); background: rgba(255, 255, 255, .8); backdrop-filter: blur(4px); border: 1px solid var(--ligne); border-radius: 999px; padding: 8px 16px; }
.kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--menthe-f); }
.hero-t { margin-top: 22px; font-size: clamp(38px, 5.6vw, 70px); line-height: 1.04; }
.hero-t em { font-style: italic; color: var(--vert); }
.hero-p { margin-top: 20px; max-width: 42ch; font-size: clamp(17px, 1.6vw, 19px); color: var(--encre-2); }
.hero-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 24px; display: flex; align-items: center; gap: 11px; color: var(--encre-2); font-size: 14.5px; }
.note-stars { display: inline-flex; gap: 2px; color: var(--bois); }
.note-stars svg { animation: etoile .6s var(--ressort) backwards; }
.note-stars svg:nth-child(1) { animation-delay: 1.1s; }
.note-stars svg:nth-child(2) { animation-delay: 1.18s; }
.note-stars svg:nth-child(3) { animation-delay: 1.26s; }
.note-stars svg:nth-child(4) { animation-delay: 1.34s; }
.note-stars svg:nth-child(5) { animation-delay: 1.42s; }
@keyframes etoile { from { transform: scale(0) rotate(-40deg); opacity: 0; } }
.hero-note b { color: var(--encre); }

.hero-img { position: relative; margin: 0; transform-style: preserve-3d; }
.hero-cadre { position: absolute; inset: 30px -30px -30px 30px; background: var(--menthe); border-radius: var(--radius-l); }
.hero-img-1 {
  position: relative; width: 100%; aspect-ratio: 4 / 3.2; max-height: min(58vh, 520px);
  object-fit: cover; object-position: center 64%;
  border-radius: var(--radius-l); box-shadow: var(--ombre);
}
.js .hero-img-1 { clip-path: inset(0 0 100% 0 round var(--radius-l)); }
.js body.go .hero-img-1 { clip-path: inset(0 0 0 0 round var(--radius-l)); transition: clip-path 1.3s var(--sortie) .3s; }
html.reduce .hero-img-1 { clip-path: none !important; }
.hero-img-2 { position: absolute; left: -26px; bottom: -26px; width: 32%; max-width: 186px; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); border: 6px solid var(--papier); box-shadow: var(--ombre); }
.hero-badge { position: absolute; right: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, .95); border-radius: 999px; padding: 9px 15px; font-size: 13px; font-weight: 600; box-shadow: 0 12px 24px -18px rgba(34, 48, 42, .9); }
.hero-badge[hidden] { display: none; }
.hero-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--encre-2); }
.hero-badge.is-open i { background: var(--menthe-f); }
.hero-badge.is-open span { color: var(--vert); }

.hero-bas { position: relative; z-index: 2; margin: clamp(28px, 4vw, 54px) auto 0; max-width: 1180px; display: flex; align-items: center; gap: 12px; font-size: 11.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--encre-2); }
.souris { width: 22px; height: 34px; border: 1.5px solid var(--ligne-f); border-radius: 12px; position: relative; }
.souris i { position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; margin-left: -1.5px; border-radius: 2px; background: var(--vert); animation: roule 1.8s var(--ease) infinite; }
@keyframes roule { 0% { transform: translateY(0); opacity: 0; } 20% { opacity: 1; } 80% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }
html.reduce .souris i { animation: none; }

/* ================= BANDEAU ================= */
.marquee { border-block: 1px solid var(--menthe-f); background: var(--menthe); overflow: hidden; padding: 14px 0; }
.marquee-in { display: flex; gap: 28px; width: max-content; will-change: transform; }
.marquee span { font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(34, 48, 42, .82); white-space: nowrap; }
.marquee i { color: var(--creme); font-style: normal; }

/* ================= LA BOUTIQUE ================= */
.boutique { position: relative; padding: clamp(66px, 9vw, 120px) 0; }
.boutique-in { position: relative; }
.pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.pills li { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--vert); background: var(--menthe-p); border-radius: 999px; padding: 8px 15px; transition: transform .4s var(--ressort), background-color .3s; }
.pills li:hover { transform: translateY(-3px); background: var(--menthe); }
.chiffres { margin-top: clamp(44px, 6vw, 72px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid var(--ligne); padding-top: 30px; }
.chiffres b { display: block; font-family: var(--f-titre); font-size: clamp(34px, 5vw, 56px); font-weight: 600; color: var(--vert); line-height: 1; font-variant-numeric: tabular-nums; }
.chiffres span { display: block; margin-top: 8px; color: var(--encre-2); font-size: 14.5px; }

/* ================= LA CARTE ================= */
.carte { padding: clamp(66px, 9vw, 110px) 0; background: var(--menthe-pp); border-block: 1px solid var(--ligne); }
.offre { margin-top: 22px; display: inline-flex; align-items: center; gap: 12px; background: var(--menthe); border-radius: 999px; padding: 11px 22px; }
.offre::before { content: '★'; color: var(--vert-f); font-size: 13px; animation: tourne 6s linear infinite; }
@keyframes tourne { to { transform: rotate(360deg); } }
.offre b { font-size: 15px; font-weight: 700; }
.offre span { font-size: 15px; color: rgba(34, 48, 42, .8); }

.prods { margin-top: 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; perspective: 1400px; }
.prod {
  background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius-l);
  padding: 26px 24px 24px; display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), transform .5s var(--ease);
}
.js .prod { opacity: 0; transform: translateY(40px) rotateX(10deg); transform-origin: 50% 100%; }
.js .prod.is-in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform 1s var(--sortie), border-color .4s, box-shadow .4s; }
html.reduce .prod { opacity: 1 !important; transform: none !important; }
.prod:hover { border-color: var(--menthe-f); box-shadow: var(--ombre-h); transform: translateY(-6px); }
.prod-tag { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--vert); }
.prod-var { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.prod-var li { font-size: 13.5px; font-weight: 500; background: var(--menthe-p); border-radius: 999px; padding: 6px 13px; transition: transform .35s var(--ressort), background-color .3s; }
.prod-var li:hover { transform: translateY(-2px) scale(1.04); background: var(--menthe); }
.prod-var-l { display: grid; gap: 6px; }
.prod-var-l li { background: none; padding: 0 0 0 16px; position: relative; font-size: 15px; }
.prod-var-l li:hover { transform: translateX(3px); background: none; }
.prod-var-l li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--menthe-f); }
.prod-var-l em { font-style: normal; color: var(--encre-2); font-size: 13.5px; }

.prix { margin-top: auto; padding-top: 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(76px, 1fr)); gap: 8px; perspective: 700px; }
.prix li { border: 1px solid var(--ligne); border-radius: 12px; padding: 10px 6px 12px; text-align: center; background: var(--papier); transition: transform .4s var(--ressort), background-color .3s, border-color .3s; }
.prix li:hover { background: var(--menthe-p); border-color: var(--menthe-f); transform: translateY(-4px) scale(1.04); }
.prix span { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--encre-2); }
.prix b { display: block; margin-top: 4px; font-family: var(--f-titre); font-size: 25px; font-weight: 600; }
.js .prix li { opacity: 0; transform: rotateX(-75deg) translateY(10px); transform-origin: 50% 0; }
.js .prod.is-in .prix li { opacity: 1; transform: none; transition: opacity .5s var(--ease), transform .7s var(--ressort); }
.js .prod.is-in .prix li:nth-child(1) { transition-delay: .3s; }
.js .prod.is-in .prix li:nth-child(2) { transition-delay: .39s; }
.js .prod.is-in .prix li:nth-child(3) { transition-delay: .48s; }
.js .prod.is-in .prix li:nth-child(4) { transition-delay: .57s; }
.js .prod.is-in .prix li:nth-child(5) { transition-delay: .66s; }
html.reduce .prix li { opacity: 1 !important; transform: none !important; }

.prix-gros { margin-top: auto; padding-top: 22px; display: flex; align-items: baseline; gap: 12px; }
.prix-gros span { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .8); }
.prix-gros b { font-family: var(--f-titre); font-size: clamp(42px, 5vw, 60px); font-weight: 600; line-height: 1; }
.prod-vedette { position: relative; background: linear-gradient(160deg, var(--vert), var(--vert-f)); border-color: transparent; color: var(--blanc); overflow: hidden; }
.prod-vedette::after {
  content: ''; position: absolute; top: -60%; left: -30%; width: 60%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
  transform: rotate(18deg) translateX(-120%);
}
.prod-vedette.is-in::after { animation: brille 2.2s var(--ease) .6s; }
@keyframes brille { to { transform: rotate(18deg) translateX(320%); } }
.prod-vedette .prod-tag { color: var(--menthe); }
.prod-vedette .prod-var li { background: rgba(255, 255, 255, .14); color: var(--blanc); }
.prod-vedette .prod-var li:hover { background: rgba(255, 255, 255, .26); }
.prod-note { margin-top: 14px; font-size: 14.5px; color: var(--encre-2); }
.prod-note b { color: var(--encre); }

.aussi { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-2); }
.aussi span { font-size: 13.5px; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--encre); background: var(--blanc); border: 1px solid var(--ligne); border-radius: 999px; padding: 6px 14px; transition: transform .35s var(--ressort), border-color .3s; }
.aussi span:hover { transform: translateY(-3px); border-color: var(--menthe-f); }
.note-prix { margin-top: 18px; font-size: 14.5px; color: var(--encre-2); }
.note-prix a { color: var(--vert); font-weight: 700; }

/* ================= GALERIE ÉPINGLÉE ================= */
.galerie { padding: clamp(66px, 9vw, 110px) 0 0; }
.gal-h { margin-bottom: 28px; }
.pin { position: relative; }
.pin-in { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.rail { display: flex; gap: clamp(14px, 2vw, 26px); padding: 0 var(--gutter); will-change: transform; }
.vue { flex: none; width: clamp(240px, 30vw, 440px); margin: 0; }
.vue button {
  display: block; width: 100%; padding: 0; border: 0; border-radius: var(--radius-l); overflow: hidden;
  background: var(--menthe-p); box-shadow: var(--ombre); position: relative;
}
.vue img { width: 100%; height: clamp(300px, 56vh, 540px); object-fit: cover; transition: transform .8s var(--ease); }
.vue button::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(34, 48, 42, .3), transparent 45%); opacity: .8; transition: opacity .5s; }
.vue button:hover img { transform: scale(1.06); }
.vue button:hover::after { opacity: .3; }
.vue figcaption { margin-top: 14px; font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--encre-2); }
.pin-jauge { margin: 26px auto 0; width: min(420px, 60vw); height: 3px; border-radius: 3px; background: var(--ligne); overflow: hidden; }
.pin-jauge i { display: block; height: 100%; width: 0; border-radius: 3px; background: var(--vert); }

/* ================= VISIONNEUSE ================= */
.lb { position: fixed; inset: 0; z-index: 250; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: clamp(14px, 4vw, 40px); background: rgba(34, 48, 42, .94); backdrop-filter: blur(10px); animation: fond .4s var(--ease); }
@keyframes fond { from { opacity: 0; } }
.lb[hidden] { display: none; }
.lb-fig { display: grid; justify-items: center; gap: 14px; min-width: 0; }
.lb-fig img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--radius); }
.lb-fig figcaption { font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .8); text-align: center; }
.lb-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .08); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background-color .25s var(--ease), transform .3s var(--ease); }
.lb-btn:hover { background: rgba(255, 255, 255, .2); transform: scale(1.08); }
.lb-x { position: absolute; top: clamp(12px, 3vw, 26px); right: clamp(12px, 3vw, 26px); font-size: 24px; }

/* ================= QUALITÉ ================= */
.qualite { position: relative; padding: clamp(66px, 9vw, 110px) 0; background: var(--menthe-pp); border-block: 1px solid var(--ligne); overflow: hidden; }
.qualite::before {
  content: ''; position: absolute; width: 520px; height: 520px; left: var(--sx, 50%); top: var(--sy, 50%);
  transform: translate(-50%, -50%); pointer-events: none;
  background: radial-gradient(circle, rgba(156, 199, 174, .45), transparent 65%);
  opacity: 0; transition: opacity .6s var(--ease);
}
.qualite.is-spot::before { opacity: 1; }
.qualite-in { position: relative; display: grid; grid-template-columns: 1.25fr .9fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.check { margin-top: 26px; display: grid; gap: 12px; }
.check li { display: flex; gap: 12px; align-items: baseline; color: var(--encre-2); font-size: 16.5px; }
.check span { color: var(--menthe-f); font-weight: 700; }
.fiche { background: linear-gradient(160deg, var(--vert), var(--vert-f)); color: var(--blanc); border-radius: var(--radius-l); padding: 28px 26px; box-shadow: var(--ombre); }
.fiche-h { font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--menthe); }
.fiche ul { margin-top: 16px; display: grid; gap: 13px; }
.fiche li { color: rgba(255, 255, 255, .8); font-size: 15.5px; padding-left: 15px; border-left: 2px solid rgba(156, 199, 174, .45); }
.fiche b { color: #fff; }

/* ================= VENIR ================= */
.venir { padding: clamp(66px, 9vw, 110px) 0; }
.venir-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 56px); align-items: start; }
.infos { margin-top: 32px; display: grid; gap: 18px; }
.info { background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius-l); padding: 24px 22px; transition: box-shadow .4s var(--ease), transform .4s var(--ease); }
.info:hover { box-shadow: var(--ombre); transform: translateY(-3px); }
.info-photo { width: 100%; height: 148px; object-fit: cover; border-radius: 12px; margin-bottom: 18px; }
.info-h { font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--vert); margin-bottom: 12px; }
.horaires th, .horaires td { padding: 9px 0; font-weight: 400; text-align: left; font-size: 15px; border-bottom: 1px solid var(--ligne); }
.horaires th { color: var(--encre-2); width: 38%; }
.horaires td { font-size: 14.5px; font-variant-numeric: tabular-nums; }
.horaires tr:last-child th, .horaires tr:last-child td { border-bottom: 0; }
.horaires tr.is-today th { color: var(--vert); font-weight: 700; }
.horaires tr.is-today td { font-weight: 600; }
.gros-lien { display: inline-block; font-family: var(--f-titre); font-size: clamp(26px, 3.2vw, 34px); font-weight: 600; text-decoration: none; transition: color .3s; }
.gros-lien:hover { color: var(--vert); }
.info-p { margin-top: 8px; color: var(--encre-2); }
.info-btns { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.carte-map { position: sticky; top: calc(var(--top-h) + 24px); border: 1px solid var(--ligne); border-radius: var(--radius-l); overflow: hidden; background: var(--blanc); box-shadow: var(--ombre); }
/* le voile circulaire est porté par l'iframe, pas par le cadre : un élément
   entièrement découpé au clip-path est vu comme invisible par IntersectionObserver,
   et ne se révélait donc jamais. */
.js .carte-map iframe { clip-path: circle(0% at 50% 50%); }
.js .carte-map.is-in iframe { clip-path: circle(76% at 50% 50%); transition: clip-path 1.4s var(--sortie); }
html.reduce .carte-map iframe { clip-path: none !important; }
.carte-map iframe { width: 100%; height: clamp(330px, 56vh, 540px); border: 0; }

/* ================= APPEL FINAL ================= */
.final { position: relative; padding: clamp(80px, 11vw, 140px) 0; background: linear-gradient(150deg, var(--vert), var(--vert-f)); color: #fff; text-align: center; overflow: hidden; }
.blob { position: absolute; border-radius: 42% 58% 61% 39% / 45% 42% 58% 55%; background: rgba(156, 199, 174, .22); filter: blur(2px); }
.blob-1 { width: 42vw; height: 42vw; left: -12vw; top: -14vw; animation: flotte 18s ease-in-out infinite; }
.blob-2 { width: 34vw; height: 34vw; right: -10vw; bottom: -14vw; background: rgba(156, 199, 174, .16); animation: flotte 22s ease-in-out infinite reverse; }
@keyframes flotte {
  33% { border-radius: 58% 42% 39% 61% / 55% 58% 42% 45%; transform: translate(3%, -4%) rotate(8deg); }
  66% { border-radius: 39% 61% 55% 45% / 61% 39% 58% 42%; transform: translate(-3%, 4%) rotate(-6deg); }
}
html.reduce .blob { animation: none; }
.final-in { position: relative; z-index: 1; }
.final-in h2 { font-size: clamp(31px, 5.6vw, 62px); max-width: none; }
.final-in p { margin-top: 14px; color: rgba(255, 255, 255, .82); }
.final-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ================= PIED ================= */
.pied { background: var(--papier); border-top: 1px solid var(--ligne); padding: 42px 0 38px; }
.pied-brand { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--vert); }
.pied-brand b { font-family: var(--f-titre); font-weight: 600; font-size: 18px; color: var(--encre); }
.pied-brand span { color: var(--encre-2); font-size: 14px; }
.pied-legal { margin-top: 18px; max-width: 76ch; color: var(--encre-2); font-size: 12.5px; line-height: 1.65; }
.pied-sign { margin-top: 16px; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--encre-2); }
.pied-sign a { color: var(--vert); text-decoration: none; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1040px) {
  .qualite-in, .venir-in { grid-template-columns: 1fr; }
  .carte-map { position: static; }
  .infos { grid-template-columns: 1fr 1fr; align-items: start; }
}
@media (max-width: 940px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .hero-img-1 { aspect-ratio: 16 / 10; max-height: 42vh; }
  .hero-cadre { inset: 20px -20px -20px 20px; }
  .hero-bas { display: none; }
}
@media (max-width: 900px) {
  .top-nav, .top-right .statut { display: none; }
  .burger { display: block; }
}
@media (max-width: 860px) {
  /* la galerie redevient un défilement horizontal naturel */
  .pin { height: auto !important; }
  .pin-in { position: static; height: auto; overflow: visible; }
  .rail { transform: none !important; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
  .vue { scroll-snap-align: center; width: 76vw; }
  .vue img { height: 54vh; }
  .pin-jauge { display: none; }
  .lb { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .lb-prev, .lb-next { grid-row: 2; grid-column: 1; }
  .lb-prev { justify-self: start; }
  .lb-next { justify-self: end; }
  .lb-fig { grid-row: 1; grid-column: 1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .infos { grid-template-columns: 1fr; }
  .chiffres { grid-template-columns: 1fr; gap: 20px; }
  .chiffres li { display: flex; align-items: baseline; gap: 14px; }
  .chiffres b { font-size: 38px; }
  .chiffres span { margin-top: 0; }
  .hero-cta .btn, .final-cta .btn { flex: 1 1 auto; }
}
@media (max-width: 420px) {
  .top-right .btn { padding: 9px 13px; font-size: 13px; }
  .hero-img-2 { display: none; }
}

/* =======================================================================
   V2 — rayon, bande éditoriale, guide, avis, questions, retour en haut
   ======================================================================= */

/* ---- fleur détourée qui flotte au-dessus du héro ---- */
.hero-bud {
  position: absolute; right: -46px; top: -40px; width: 46%; max-width: 268px; z-index: 3;
  filter: drop-shadow(0 26px 30px rgba(34, 48, 42, .32));
  pointer-events: none; transform-origin: 70% 70%;
}
html:not(.reduce) .hero-bud { animation: flottebud 9s ease-in-out infinite; }
@keyframes flottebud {
  50% { transform: translateY(-14px) rotate(-3.5deg); }
}
.js .hero-bud { opacity: 0; }
.js body.go .hero-bud { opacity: 1; transition: opacity 1s var(--ease) 1.1s; }
html.reduce .hero-bud { opacity: 1 !important; }

/* ---- la plante qui pousse dans « La boutique » ---- */
.pousse { display: none; }
@media (min-width: 1100px) {
  .pousse {
    display: block; position: absolute; right: 2%; bottom: 0;
    width: 260px; height: min(84%, 680px); pointer-events: none; z-index: 0;
  }
}
html.reduce .pousse { display: none; }
.pousse-tige { fill: none; stroke: var(--menthe-f); stroke-width: 4; stroke-linecap: round; opacity: .9; }
.pousse-f path { fill: var(--menthe); opacity: .9; transform-box: fill-box; transform-origin: 0% 50%; transform: scale(0); }
.pousse-f path.is-out { transform: scale(1); transition: transform .8s var(--ressort); }
.boutique-in { z-index: 1; }

/* ---- LE RAYON ---- */
.rayon { padding: clamp(66px, 9vw, 116px) 0; background: var(--papier); }
.univers {
  margin-top: clamp(30px, 4vw, 48px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.uni {
  position: relative; background: var(--blanc); border: 1px solid var(--ligne);
  border-radius: var(--radius-l); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .4s var(--ease);
}
.js .uni { opacity: 0; transform: translateY(38px); }
.js .uni.is-in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .9s var(--sortie); transition-delay: calc(var(--u, 0) * 90ms); }
html.reduce .uni { opacity: 1 !important; transform: none !important; }
.uni:hover { transform: translateY(-7px); box-shadow: var(--ombre-h); border-color: var(--menthe-f); }
.uni-img { position: relative; margin: 0; overflow: hidden; background: var(--menthe-p); }
.uni-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1s var(--ease); }
.uni:hover .uni-img img { transform: scale(1.07); }
.uni-img::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(47, 107, 80, .34), transparent 55%);
  opacity: .9; transition: opacity .5s var(--ease);
}
.uni:hover .uni-img::after { opacity: .35; }
.uni-txt { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.uni-h { font-family: var(--f-titre); font-size: 24px; font-weight: 600; letter-spacing: -.01em; }
.uni-p { margin-top: 9px; color: var(--encre-2); font-size: 15.5px; }
.uni-prix {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--ligne);
  font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--encre-2);
}
.uni-prix b { font-family: var(--f-titre); font-size: 19px; letter-spacing: 0; text-transform: none; color: var(--vert); }

/* ---- BANDE ÉDITORIALE ---- */
.bande { position: relative; overflow: hidden; min-height: clamp(300px, 46vw, 520px); display: grid; align-items: center; }
.bande-img {
  position: absolute; inset: -12% 0 -12%; width: 100%; height: 124%;
  object-fit: cover; object-position: 72% 46%; will-change: transform;
}
.bande::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(247, 244, 233, .96) 6%, rgba(247, 244, 233, .74) 38%, rgba(247, 244, 233, .12) 72%, transparent); }
.bande-in { position: relative; z-index: 2; padding-block: clamp(50px, 7vw, 90px); }
.bande-q { font-family: var(--f-titre); font-weight: 600; font-size: clamp(30px, 5vw, 60px); line-height: 1.06; letter-spacing: -.02em; max-width: 13ch; }
.bande-s { margin-top: 18px; max-width: 42ch; color: var(--encre-2); font-size: clamp(16px, 1.7vw, 18.5px); }

/* ---- vignettes dans les fiches de la carte ---- */
.prod-tag { display: flex; align-items: center; gap: 10px; }
.prod-vig { width: 34px; height: 34px; border-radius: 9px; object-fit: cover; flex: none; border: 1px solid var(--ligne); }
.prod-vedette .prod-vig { border-color: rgba(255, 255, 255, .3); }

/* ---- COMMENT CHOISIR ---- */
.choisir { padding: clamp(66px, 9vw, 116px) 0; background: var(--menthe-pp); border-block: 1px solid var(--ligne); }
.choisir-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 62px); align-items: center; }
.etapes { margin-top: 28px; display: grid; gap: 14px; counter-reset: e; }
.etapes li {
  position: relative; background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius);
  padding: 17px 20px 17px 60px; transition: transform .4s var(--ease), border-color .3s, box-shadow .4s;
}
.etapes li::before {
  counter-increment: e; content: counter(e);
  position: absolute; left: 18px; top: 16px; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; background: var(--menthe-p); color: var(--vert);
  font-family: var(--f-titre); font-weight: 600; font-size: 15px;
}
.etapes li:hover { transform: translateX(5px); border-color: var(--menthe-f); box-shadow: var(--ombre); }
.etapes b { display: block; font-size: 16.5px; }
.etapes span { display: block; margin-top: 5px; color: var(--encre-2); font-size: 15px; }
.choisir-img { margin: 0; }
.choisir-img img { width: 100%; border-radius: var(--radius-l); box-shadow: var(--ombre); aspect-ratio: 4 / 3; object-fit: cover; }
.choisir-img figcaption { margin-top: 13px; font-size: 13px; color: var(--encre-2); font-style: italic; }

/* ---- AVIS ---- */
.avis { padding: clamp(66px, 9vw, 116px) 0; }
.avis-grille { margin-top: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.av {
  margin: 0; background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius-l);
  padding: 26px 24px 22px; display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.av:hover { transform: translateY(-5px); box-shadow: var(--ombre-h); border-color: var(--menthe-f); }
.av-stars { display: inline-flex; gap: 2px; color: var(--bois); }
.av p { margin-top: 14px; font-size: 16px; line-height: 1.62; }
.av p::before { content: '« '; color: var(--menthe-f); }
.av p::after { content: ' »'; color: var(--menthe-f); }
.av footer { margin-top: auto; padding-top: 18px; display: flex; align-items: baseline; gap: 9px; }
.av footer b { font-size: 14.5px; }
.av footer span { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--encre-2); }

/* ---- QUESTIONS ---- */
.faq { padding: clamp(66px, 9vw, 116px) 0; background: var(--menthe-pp); border-block: 1px solid var(--ligne); }
.faq-in { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.faq-h { position: sticky; top: calc(var(--top-h) + 26px); }
.lien { color: var(--vert); font-weight: 700; text-decoration: none; border-bottom: 1.5px solid var(--menthe); }
.qs { display: grid; gap: 10px; }
.q { background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, box-shadow .4s; }
.q[open] { border-color: var(--menthe-f); box-shadow: var(--ombre); }
.q summary {
  list-style: none; cursor: pointer; padding: 18px 54px 18px 20px; position: relative;
  font-weight: 500; font-size: 16.5px; transition: color .25s;
}
.q summary::-webkit-details-marker { display: none; }
.q summary:hover { color: var(--vert); }
.q summary::after {
  content: ''; position: absolute; right: 20px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--vert); border-bottom: 2px solid var(--vert);
  transform: translateY(-70%) rotate(45deg); transition: transform .4s var(--ressort);
}
.q[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.q-in { padding: 0 20px 20px; color: var(--encre-2); font-size: 15.5px; line-height: 1.68; }
.q[open] .q-in { animation: ouvreq .5s var(--ease); }
@keyframes ouvreq { from { opacity: 0; transform: translateY(-8px); } }
html.reduce .q[open] .q-in { animation: none; }

/* ---- RETOUR EN HAUT ---- */
.haut {
  position: fixed; right: clamp(14px, 3vw, 26px); bottom: clamp(14px, 3vw, 26px); z-index: 130;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--ligne-f);
  background: rgba(255, 255, 255, .9); backdrop-filter: blur(8px); color: var(--vert);
  display: grid; place-items: center; cursor: pointer; box-shadow: var(--ombre);
  transition: transform .4s var(--ressort), background-color .3s, opacity .4s;
}
.haut[hidden] { display: none; }
.haut:hover { background: var(--vert); color: #fff; transform: translateY(-4px); }

/* ---- PIED ---- */
.pied-nav { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px 20px; }
.pied-nav a { text-decoration: none; font-size: 14px; color: var(--encre-2); transition: color .25s; }
.pied-nav a:hover { color: var(--vert); }
.pied-credit { margin-top: 12px; max-width: 76ch; color: var(--encre-2); font-size: 11.5px; line-height: 1.6; opacity: .85; }

/* ---- RESPONSIVE V2 ---- */
@media (max-width: 1040px) {
  .choisir-in, .faq-in { grid-template-columns: 1fr; }
  .faq-h { position: static; }
}
/* sous 1100 px la photo occupe toute la largeur : la fleur doit rentrer
   dans le cadre, sinon le `overflow: hidden` du héro la rogne. */
@media (max-width: 1100px) {
  .hero-bud { right: -6px; top: -34px; width: 34%; max-width: 190px; }
}
@media (max-width: 560px) {
  .hero-bud { display: none; }
  .bande::after { background: linear-gradient(180deg, rgba(247, 244, 233, .5), rgba(247, 244, 233, .93) 46%); }
  .bande-img { object-position: center 30%; }
}
