/* The WodOutFit Box : feuille de style commune a toutes les pages de la vitrine.
   Identite reprise du site Shopify (noir #121212, rouge #D72323, bleu nuit #172351, Archivo + Oswald).
   Un seul univers visuel assume (pas de theme sombre separe) : chaque section pose son fond et ses couleurs. */

:root {
  --noir: #121212;
  --noir-2: #1c1c1e;
  --noir-pied: #0b0b0c;
  --craie: #f3f1ec;
  --papier: #ffffff;
  --rouge: #d72323;
  --rouge-fonce: #a91a1a;
  --rouge-texte: #b81c1c;   /* rouge lisible en petit texte sur fond clair (contraste > 4,5) */
  --rouge-clair: #ff6b6b;   /* rouge lisible en petit texte sur fond sombre */
  --nuit: #172351;
  --gris: #5f5e64;
  --gris-clair: #c9c7c2;
  --trait: #dcd9d2;
  --etoile: #f5b50a;
  --display: "Oswald", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --texte: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --feutre: "Permanent Marker", "Comic Sans MS", cursive;
  --largeur: 1180px;
  --gouttiere: clamp(16px, 4vw, 40px);
  --haut-entete: 68px;
  color-scheme: light;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; background: var(--craie); color: var(--noir); font: 400 16px/1.6 var(--texte); -webkit-font-smoothing: antialiased; overflow-x: clip; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { overflow-wrap: break-word; }
[hidden] { display: none !important; }
li:has(> a[hidden]) { display: none; }
[id] { scroll-margin-top: calc(var(--haut-entete) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* focus visible sur tous les fonds : anneau blanc cerne de noir */
:focus-visible { outline: 3px solid #fff; outline-offset: 2px; box-shadow: 0 0 0 7px var(--noir); }
.defile:focus-visible, .page-texte :focus-visible { box-shadow: 0 0 0 7px var(--noir); }

.evitement { position: absolute; left: 8px; top: -60px; z-index: 100; background: var(--papier); color: var(--noir); padding: .7rem 1rem; font-weight: 600; text-decoration: none; }
.evitement:focus { top: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.conteneur { width: 100%; max-width: var(--largeur); margin-inline: auto; padding-inline: var(--gouttiere); }
h1, h2, h3 { font-family: var(--display); text-transform: uppercase; line-height: 1.04; letter-spacing: .01em; margin: 0; text-wrap: balance; font-weight: 600; }
h1 { font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.4rem); }
.surtitre { font: 600 .78rem/1.3 var(--texte); letter-spacing: .18em; text-transform: uppercase; color: var(--rouge-texte); margin: 0 0 .9rem; }
.chapo { max-width: 60ch; color: var(--gris); margin: 1rem 0 0; }
section { padding-block: clamp(56px, 8vw, 104px); }

/* sections sombres : couleurs de texte adaptees */
.sombre-fond { background: var(--noir); color: #fff; }
.sombre-fond .surtitre, .plus .surtitre { color: var(--rouge-clair); }
.sombre-fond .chapo { color: var(--gris-clair); }

/* ---------- boutons ---------- */
.bouton { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 48px; padding: .85rem 1.5rem; border: 2px solid var(--rouge); background: var(--rouge); color: #fff;
  font: 600 .95rem/1.1 var(--display); letter-spacing: .08em; text-transform: uppercase; text-decoration: none; text-align: center; cursor: pointer; transition: background .2s, border-color .2s, color .2s, transform .2s; }
.bouton:hover { background: var(--rouge-fonce); border-color: var(--rouge-fonce); transform: translateY(-2px); }
.bouton.secondaire { background: transparent; color: inherit; border-color: currentColor; }
.bouton.secondaire:hover { background: var(--noir); color: #fff; border-color: var(--noir); }
.sombre-fond .bouton.secondaire:hover { background: #fff; color: var(--noir); border-color: #fff; }
.bouton.noir { background: var(--noir); border-color: var(--noir); }
.bouton.noir:hover { background: var(--rouge); border-color: var(--rouge); }

/* ---------- bandeau promo et en-tete ---------- */
.promo { background: var(--rouge); color: #fff; text-align: center; font: 600 .8rem/1.35 var(--display); letter-spacing: .1em; text-transform: uppercase; padding: .6rem var(--gouttiere); }
.promo a { color: #fff; text-underline-offset: 3px; white-space: nowrap; }

header.entete { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50; background: var(--noir); color: #fff; }
.entete .conteneur { display: flex; align-items: center; gap: 1rem; min-height: var(--haut-entete); }
.entete .logo { flex: none; display: block; background: #fff; padding: 4px 6px; }
.entete .logo img { width: 62px; height: 44px; object-fit: contain; }
.entete .menu { flex: 1; display: flex; justify-content: center; }
.entete .menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .2rem 1.4rem; font: 500 .9rem/1 var(--display); letter-spacing: .08em; text-transform: uppercase; }
.entete .menu a { display: block; text-decoration: none; padding: .55rem 0; border-bottom: 2px solid transparent; }
.entete .menu a:hover, .entete .menu a[aria-current="page"] { border-color: var(--rouge); }
.entete .actions-entete { flex: none; display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.entete .compte { display: inline-flex; align-items: center; min-height: 40px; font: 600 .8rem/1 var(--display); letter-spacing: .08em; text-transform: uppercase; text-decoration: none; border: 1px solid #fff; padding: .5rem .85rem; white-space: nowrap; }
.entete .compte:hover { background: #fff; color: var(--noir); }
.bouton-menu { display: none; align-items: center; gap: .55rem; min-height: 40px; padding: .45rem .75rem; background: transparent; color: #fff; border: 1px solid #fff; font: 600 .8rem/1 var(--display); letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.bouton-menu .barres { position: relative; width: 18px; height: 12px; }
.bouton-menu .barres span { position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; transition: transform .2s, opacity .2s, top .2s; }
.bouton-menu .barres span:nth-child(1) { top: 0; }
.bouton-menu .barres span:nth-child(2) { top: 5px; }
.bouton-menu .barres span:nth-child(3) { top: 10px; }
.bouton-menu[aria-expanded="true"] .barres span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.bouton-menu[aria-expanded="true"] .barres span:nth-child(2) { opacity: 0; }
.bouton-menu[aria-expanded="true"] .barres span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* menu mobile : panneau sous l'en-tete (seulement si le JavaScript est actif) */
@media (max-width: 900px) {
  .js .bouton-menu { display: inline-flex; }
  .js .entete .menu { position: fixed; left: 0; right: 0; bottom: 0; top: var(--bas-entete, 68px); z-index: 49; display: block; background: var(--noir); border-top: 1px solid #2a2a2d;
    padding: 1.2rem var(--gouttiere) calc(2rem + env(safe-area-inset-bottom, 0px)); overflow-y: auto; overscroll-behavior: contain; }
  .js .entete .menu:not(.ouvert) { display: none; }
  .js .entete .menu ul { flex-direction: column; flex-wrap: nowrap; align-items: stretch; gap: 0; font-size: 1.45rem; letter-spacing: .06em; }
  .js .entete .menu li + li { border-top: 1px solid #2a2a2d; }
  .js .entete .menu a { padding: 1rem 0; border-bottom: 0; }
  .js .entete .menu a[aria-current="page"] { color: var(--rouge-clair); }
  .js .entete .menu .menu-bas { display: grid; gap: .8rem; margin-top: 1.6rem; font-size: .95rem; color: var(--gris-clair); }
  .js .entete .menu .menu-bas a { display: inline; padding: 0; text-decoration: underline; text-underline-offset: 3px; }
  html:not(.js) .entete .conteneur { flex-wrap: wrap; padding-block: .6rem; }
  html:not(.js) .entete .menu { order: 3; flex-basis: 100%; }
  body.menu-ouvert { overflow: hidden; }
}
@media (min-width: 901px) { .entete .menu .menu-bas { display: none; } }
@media (max-width: 380px) { .entete .compte { padding-inline: .6rem; } .bouton-menu .libelle { display: none; } .bouton-menu { padding-inline: .7rem; } }

/* ---------- accueil : ouverture ---------- */
.ouverture { padding-block: clamp(36px, 7vw, 88px) 0; overflow: hidden; }
.ouverture .conteneur { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.ouverture h1 { font-size: clamp(2.4rem, 6.4vw, 5.2rem); }
.ouverture h1 em { font-style: normal; color: var(--rouge); }
.ouverture .chapo { font-size: 1.06rem; }
.ouverture .actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 2.2rem; }
.preuves { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; margin: 0; padding-bottom: clamp(32px, 5vw, 64px); font-size: .9rem; color: var(--gris-clair); }
.preuves p { margin: 0; display: grid; gap: .3rem; }
.preuves strong { font: 600 1.7rem/1 var(--display); color: #fff; font-variant-numeric: tabular-nums; }
.etoiles { color: var(--etoile); letter-spacing: .1em; font-size: .9em; }
.visuel-box { position: relative; padding-bottom: clamp(24px, 4vw, 56px); }
.visuel-box img { width: 100%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.6)); }
.tampon { position: absolute; left: 3%; bottom: calc(clamp(24px, 4vw, 56px) + 10%); margin: 0; transform: rotate(-7deg); background: var(--rouge); color: #fff; font: 600 .78rem/1.15 var(--display); letter-spacing: .08em;
  text-transform: uppercase; text-align: center; padding: .8rem .9rem; border: 2px dashed rgba(255,255,255,.75); }
.tampon b { display: block; font-size: 1.6rem; font-weight: 700; }
@media (max-width: 860px) {
  .ouverture .conteneur { grid-template-columns: minmax(0, 1fr); }
  .visuel-box { max-width: 520px; width: 100%; margin-inline: auto; }
  .preuves { padding-bottom: 0; }
}
@media (max-width: 420px) { .ouverture .actions .bouton { flex: 1 1 100%; } .tampon { font-size: .68rem; padding: .6rem .7rem; } .tampon b { font-size: 1.3rem; } }

/* ---------- comment ca marche ---------- */
.seance { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 2.6rem 0 0; border-top: 3px solid var(--noir); }
.seance li { padding: 1.6rem 1.4rem 0 0; }
.seance li + li { padding-left: 1.4rem; border-left: 1px solid var(--trait); }
.seance .etape { font: 700 .8rem/1 var(--display); letter-spacing: .16em; text-transform: uppercase; color: var(--rouge-texte); }
.seance h3 { font-size: 1.7rem; margin: .5rem 0 .6rem; }
.seance p { margin: 0; color: var(--gris); }
.seance .etape-media { aspect-ratio: 1; margin-bottom: 1.1rem; overflow: hidden; background: #e7e4dd; border-radius: 6px; }
.seance .etape-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .seance li { display: grid; grid-template-columns: 116px minmax(0, 1fr); column-gap: 1rem; align-items: start; }
  .seance .etape-media { grid-row: 1 / span 3; margin-bottom: 0; }
  .seance li > :not(.etape-media) { grid-column: 2; }
}
@media (max-width: 860px) {
  .seance { grid-template-columns: minmax(0, 1fr); }
  .seance li { padding: 1.3rem 0; }
  .seance li + li { padding-left: 0; border-left: 0; border-top: 1px solid var(--trait); }
}

/* ---------- offres : tableau blanc de la salle ---------- */
.tableau { margin-top: 2.6rem; background: #fdfdfb; color: var(--noir); padding: clamp(16px, 3vw, 34px); border: clamp(6px, 1vw, 10px) solid #9aa0a6; border-radius: 4px;
  box-shadow: inset 0 0 0 1px #e6e6e1, 0 25px 50px rgba(0,0,0,.45); }
.tableau .titre-tableau { font: 400 clamp(1.15rem, 2.4vw, 1.5rem)/1.25 var(--feutre); color: var(--nuit); margin: 0 0 1.4rem; }
.cartes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.carte { display: flex; flex-direction: column; border: 2px solid var(--noir); background: #fff; min-width: 0; }
.carte.vedette { border-color: var(--rouge); box-shadow: 6px 6px 0 var(--rouge); }
.carte .image { aspect-ratio: 1; background: #1a1a1a; overflow: hidden; position: relative; }
.carte .image img { width: 100%; height: 100%; object-fit: cover; }
.carte .niveau { position: absolute; left: 0; top: 14px; background: var(--noir); color: #fff; font: 600 .78rem/1 var(--display); letter-spacing: .14em; text-transform: uppercase; padding: .45rem .7rem; }
.carte.vedette .niveau { background: var(--rouge); }
.carte .corps { padding: 1.2rem 1.2rem 1.4rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.carte h3 { font-size: clamp(1.6rem, 2.6vw, 1.9rem); }
.prix { font: 700 clamp(2rem, 3.4vw, 2.3rem)/1 var(--display); font-variant-numeric: tabular-nums; margin: 0; }
.prix small { font: 500 .9rem/1 var(--texte); color: var(--gris); margin-left: .25rem; }
.carte ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; font-size: .93rem; }
.carte li { display: grid; grid-template-columns: 1.2rem minmax(0, 1fr); gap: .3rem; }
.carte li::before { content: "✓"; color: var(--rouge-texte); font-weight: 800; }
.carte .bouton { margin-top: auto; width: 100%; }
.mentions-offres { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; margin: 1.6rem 0 0; font: 400 1.02rem/1.35 var(--feutre); color: var(--nuit); }
@media (max-width: 1000px) and (min-width: 701px) {
  .cartes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .carte.vedette { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .carte.vedette .image { aspect-ratio: auto; min-height: 100%; }
}
@media (max-width: 700px) {
  .cartes { grid-template-columns: minmax(0, 1fr); max-width: 480px; margin-inline: auto; }
  .carte .image { aspect-ratio: 4 / 3; }
  .carte.vedette { box-shadow: 5px 5px 0 var(--rouge); margin-right: 5px; }
}

/* ---------- contenu de la box ---------- */
.contenu { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; background: var(--trait); border: 1px solid var(--trait); margin: 2.4rem 0 0; }
.contenu li { background: var(--papier); padding: 1.4rem 1.1rem; }
.contenu h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.contenu p { margin: 0; font-size: .92rem; color: var(--gris); }
@media (max-width: 1000px) { .contenu { grid-template-columns: repeat(2, minmax(0, 1fr)); } .contenu li:last-child { grid-column: 1 / -1; } }
@media (max-width: 480px) { .contenu { grid-template-columns: minmax(0, 1fr); } }

/* ---------- marques ---------- */
.marques { background: var(--papier); }
.logos { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); margin: 2.4rem 0 0; border-top: 1px solid var(--trait); border-left: 1px solid var(--trait); }
.logos li { margin: 0; background: #fff; aspect-ratio: 3 / 2; display: grid; place-items: center; padding: clamp(8px, 1.4vw, 16px); border-right: 1px solid var(--trait); border-bottom: 1px solid var(--trait); min-width: 0; }
.logos li.sombre { background: var(--noir); }
.logos img { width: auto; height: auto; max-width: 100%; max-height: clamp(30px, 4.4vw, 56px); object-fit: contain; }
@media (hover: hover) {
  .logos li:not(.sombre) img { filter: grayscale(1); opacity: .85; transition: filter .2s, opacity .2s; }
  .logos li:hover img { filter: none; opacity: 1; }
}
@media (max-width: 700px) { .logos { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- avis ---------- */
.avis .entete-avis { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; }
.note { margin: 0; font: 700 clamp(2.6rem, 6vw, 3.4rem)/1 var(--display); }
.note span { font: 500 1rem/1 var(--texte); color: var(--gris); margin-left: .4rem; }
.carrousel { position: relative; margin-top: 2rem; }
.defile { overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; padding: 4px 4px 1rem; scrollbar-width: thin; scrollbar-color: #b9b6ae transparent; }
.defile .piste { list-style: none; margin: 0; padding: 0; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 340px); gap: 18px; }
.defile li { scroll-snap-align: start; }
.defile blockquote { height: 100%; margin: 0; background: var(--papier); border: 1px solid var(--trait); padding: 1.4rem; display: flex; flex-direction: column; gap: .7rem; }
.defile h3 { font-size: 1.15rem; }
.defile p { margin: 0; color: #3b3a3f; font-size: .95rem; }
.defile footer { margin-top: auto; font-size: .85rem; color: var(--gris); }
.defile footer b { color: var(--noir); }
.fleches { display: flex; justify-content: flex-end; gap: .5rem; margin-top: .6rem; }
.fleches button { width: 48px; height: 48px; display: grid; place-items: center; background: var(--papier); color: var(--noir); border: 2px solid var(--noir); font: 600 1.3rem/1 var(--display); cursor: pointer; }
.fleches button:hover:not(:disabled) { background: var(--noir); color: #fff; }
.fleches button:disabled { opacity: .35; cursor: default; }
@media (max-width: 480px) { .defile .piste { grid-auto-columns: 84%; } }

/* ---------- plus encore ---------- */
.plus { background: var(--nuit); color: #fff; }
.plus .grille { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 2.5vw, 32px); margin: 2.4rem 0 0; }
.plus h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.plus p { margin: 0; color: #d3d7e8; font-size: .95rem; }
.plus .valeur { display: inline-block; margin-top: .7rem; font: 600 .8rem/1 var(--display); letter-spacing: .1em; text-transform: uppercase; background: var(--rouge); padding: .4rem .55rem; }
@media (max-width: 900px) { .plus .grille { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .plus .grille { grid-template-columns: minmax(0, 1fr); } }

/* ---------- promesses ---------- */
.promesses { padding-block: 0; background: var(--rouge); color: #fff; }
.promesses ul { list-style: none; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.promesses li { padding: 1.5rem 1rem; text-align: center; }
.promesses li + li { border-left: 1px solid rgba(255,255,255,.35); }
.promesses b { display: block; font: 600 1.2rem/1.1 var(--display); text-transform: uppercase; letter-spacing: .04em; }
.promesses span { font-size: .88rem; }
@media (max-width: 760px) {
  .promesses ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promesses li:nth-child(3) { border-left: 0; }
  .promesses li:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.35); }
}

/* ---------- FAQ (accueil et page FAQ) ---------- */
.faq .colonnes { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(24px, 5vw, 64px); }
.faq .colonnes > div:first-child { align-self: start; }
.faq .lien-faq { margin-top: 1.4rem; }
.faq .chapo a { color: var(--noir); }
.questions details { border-top: 1px solid var(--trait); }
.questions details:not(:has(+ details)) { border-bottom: 1px solid var(--trait); }
.questions summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1.05rem 0; font: 600 1.04rem/1.4 var(--texte); }
.questions summary::-webkit-details-marker { display: none; }
.questions summary::after { content: "+"; flex: none; font: 600 1.5rem/1 var(--display); color: var(--rouge-texte); }
.questions details[open] summary::after { content: "–"; }
.questions summary:hover { color: var(--rouge-texte); }
.questions .reponse { padding: 0 0 1.2rem; color: #3b3a3f; max-width: 66ch; }
.questions .reponse p, .questions .reponse ul { margin: 0 0 .7rem; }
.questions .reponse ul { padding-left: 1.2rem; }
.questions .groupe { font: 600 .78rem/1.3 var(--texte); letter-spacing: .16em; text-transform: uppercase; color: var(--gris); margin: 2rem 0 .5rem; }
.questions .groupe:first-child { margin-top: 0; }
@media (max-width: 860px) { .faq .colonnes { grid-template-columns: minmax(0, 1fr); } }

/* ---------- appel final ---------- */
.final { text-align: center; border-top: 6px solid var(--rouge); }
.final .conteneur { display: grid; justify-items: center; gap: 1.2rem; }
.final h2 { font-size: clamp(2rem, 5.5vw, 4.2rem); max-width: 18ch; }

/* ---------- pied de page ---------- */
footer.pied { background: var(--noir-pied); color: #c4c2bc; padding-block: 56px calc(32px + env(safe-area-inset-bottom, 0px)); font-size: .92rem; }
.pied .colonnes { display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr)); gap: 32px; }
.pied h2 { color: #fff; font-size: 1rem; letter-spacing: .1em; margin-bottom: .9rem; }
.pied p { margin: 0 0 .8rem; }
.pied ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .15rem; }
.pied ul a { display: inline-block; padding: .3rem 0; }
.pied a { text-decoration: none; }
.pied a:hover { color: #fff; text-decoration: underline; }
.pied .bas { margin-top: 36px; padding-top: 20px; border-top: 1px solid #2a2a2d; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem 1.5rem; font-size: .82rem; }
@media (max-width: 860px) { .pied .colonnes { grid-template-columns: repeat(3, minmax(0, 1fr)); } .pied .colonnes > div:first-child { grid-column: 1 / -1; } }
@media (max-width: 560px) { .pied .colonnes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 340px) { .pied .colonnes { grid-template-columns: minmax(0, 1fr); } }

/* ---------- pages interieures ---------- */
.tete-page { background: var(--noir); color: #fff; padding-block: clamp(40px, 7vw, 84px) clamp(32px, 5vw, 56px); border-bottom: 6px solid var(--rouge); }
.tete-page h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); }
.tete-page .surtitre { color: var(--rouge-clair); }
.tete-page .chapo { color: var(--gris-clair); }
.tete-page .fil { margin: 0 0 1.2rem; font-size: .85rem; color: var(--gris-clair); }
.tete-page .fil a, .tete-page .chapo a { color: #fff; }
.page-corps { padding-block: clamp(40px, 6vw, 80px); }
.page-grille { display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); align-items: start; }
.sommaire { position: sticky; top: calc(var(--haut-entete) + 24px); font-size: .9rem; }
.sommaire summary { cursor: pointer; font: 600 .75rem/1.2 var(--texte); letter-spacing: .16em; text-transform: uppercase; color: var(--gris); margin: 0 0 .7rem; list-style: none; }
.sommaire summary::-webkit-details-marker { display: none; }
.sommaire summary::after { content: " +"; color: var(--rouge-texte); }
.sommaire details[open] summary::after { content: " –"; }
.sommaire ol, .sommaire ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; border-left: 2px solid var(--trait); }
.sommaire a { display: block; padding: .35rem 0 .35rem .9rem; text-decoration: none; color: #3b3a3f; }
.sommaire a:hover { color: var(--rouge-texte); }
@media (max-width: 860px) {
  .page-grille { grid-template-columns: minmax(0, 1fr); }
  .sommaire { position: static; background: var(--papier); border: 1px solid var(--trait); padding: 1rem 1.1rem; }
}
.page-texte { max-width: 72ch; }
.page-texte h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.6rem 0 .9rem; }
.page-texte h2:first-child { margin-top: 0; }
.page-texte h3 { font-size: 1.2rem; margin: 1.8rem 0 .6rem; }
.page-texte p, .page-texte ul, .page-texte ol { margin: 0 0 1rem; }
.page-texte ul, .page-texte ol { padding-left: 1.3rem; }
.page-texte li + li { margin-top: .35rem; }
.page-texte a:not(.bouton) { color: var(--rouge-texte); text-underline-offset: 3px; }
.page-texte .questions + p, .page-texte details + h2 { margin-top: 2.6rem; }
.page-texte .maj { font-size: .88rem; color: var(--gris); }
.page-texte .tableau-texte { overflow-x: auto; margin: 0 0 1.2rem; }
.page-texte table { border-collapse: collapse; width: 100%; min-width: 480px; font-size: .92rem; background: var(--papier); }
.page-texte th, .page-texte td { border: 1px solid var(--trait); padding: .6rem .75rem; text-align: left; vertical-align: top; }
.page-texte th { background: #ebe8e1; font-weight: 600; }

/* encadre « a valider » : a retirer une fois le texte relu */
.a-valider { margin: 1.2rem 0 1.6rem; padding: 1rem 1.1rem 1rem 1.1rem; background: #fff6d6; border: 2px dashed #b88a00; color: #3d2f00; font-size: .93rem; }
.a-valider > strong:first-child { display: block; font: 600 .8rem/1.2 var(--display); letter-spacing: .12em; text-transform: uppercase; color: #6e5200; margin-bottom: .35rem; }
.a-valider p, .a-valider ul { margin: 0 0 .5rem; }
.a-valider :last-child { margin-bottom: 0; }
.a-valider ul { padding-left: 1.2rem; }

/* ---------- contact ---------- */
.contact-grille { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(24px, 5vw, 64px); align-items: start; }
.coordonnees { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--trait); border: 1px solid var(--trait); }
.coordonnees li { background: var(--papier); padding: 1.1rem 1.2rem; display: grid; gap: .25rem; }
.coordonnees li span a { color: var(--rouge-texte); }
.coordonnees .etiquette { font: 600 .75rem/1.2 var(--texte); letter-spacing: .14em; text-transform: uppercase; color: var(--gris); }
.coordonnees li > a, .coordonnees .valeur { font: 600 1.25rem/1.3 var(--display); letter-spacing: .02em; text-decoration: none; overflow-wrap: anywhere; }
.coordonnees li > a:hover { color: var(--rouge-texte); text-decoration: underline; }
.reseaux { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .3rem; }
.reseaux a { font: 600 .85rem/1 var(--display); letter-spacing: .08em; text-transform: uppercase; border: 1px solid var(--noir); padding: .65rem .8rem; }
.coordonnees .reseaux a { color: var(--noir); text-decoration: none; }
.coordonnees .reseaux a:hover { background: var(--noir); color: #fff; }
.formulaire { background: var(--papier); border: 2px solid var(--noir); padding: clamp(18px, 3vw, 32px); display: grid; gap: 1.1rem; }
.formulaire h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.champ { display: grid; gap: .35rem; }
.champ label { font-weight: 600; font-size: .92rem; }
.champ input, .champ select, .champ textarea { width: 100%; font: 400 1rem/1.4 var(--texte); color: var(--noir); background: #fff; border: 1px solid #8d8b86; border-radius: 0; padding: .75rem .8rem; min-height: 48px; }
.champ textarea { min-height: 150px; resize: vertical; }
.champ input:focus-visible, .champ select:focus-visible, .champ textarea:focus-visible { outline: 3px solid var(--rouge); outline-offset: 0; box-shadow: none; border-color: var(--noir); }
.duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.formulaire .aide { font-size: .85rem; color: var(--gris); margin: 0; }
.formulaire .bouton { justify-self: start; }
@media (max-width: 860px) { .contact-grille { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 520px) { .duo { grid-template-columns: minmax(0, 1fr); } .formulaire .bouton { justify-self: stretch; } }

/* ---------- 404 ---------- */
.introuvable { min-height: 60vh; display: grid; align-content: center; }
.introuvable .grand { font: 700 clamp(5rem, 22vw, 12rem)/.9 var(--display); color: var(--rouge); margin: 0; }
.introuvable .actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* ---------- bulle video flottante (accueil), reprise du site Shopify ---------- */
.bulle-video { position: fixed; left: 15px; bottom: 15px; z-index: 30; width: 100px; height: 100px; border-radius: 50%;
  background: var(--noir); box-shadow: 0 4px 18px rgba(0,0,0,.35); transition: width .3s ease, height .3s ease, border-radius .3s ease; }
.bulle-video .bulle-ouvrir { display: block; width: 100%; height: 100%; padding: 0; border: 3px solid var(--rouge); border-radius: inherit; overflow: hidden; background: var(--noir); cursor: pointer; }
.bulle-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.bulle-video .bulle-fermer { position: absolute; top: -6px; right: -6px; z-index: 2; width: 26px; height: 26px; display: grid; place-items: center;
  border: 0; border-radius: 50%; background: var(--noir); color: #fff; cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,.4); }
.bulle-video .bulle-cta, .bulle-video .bulle-son { display: none; }
.bulle-video.ouverte { width: min(350px, calc(100vw - 30px)); height: min(600px, calc(100dvh - 30px)); border-radius: 10px; }
.bulle-video.ouverte .bulle-ouvrir { cursor: default; }
.bulle-video.ouverte .bulle-fermer { top: 8px; right: 8px; }
.bulle-video.ouverte .bulle-cta { display: flex; justify-content: center; position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; }
.bulle-video.ouverte .bulle-son { display: block; position: absolute; left: 8px; top: 8px; z-index: 2; border: 0; border-radius: 4px; padding: .4rem .6rem;
  background: rgba(0,0,0,.65); color: #fff; font: 600 .75rem/1 var(--display); letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
@media (min-width: 1024px) {
  .bulle-video { left: 20px; bottom: 20px; width: 150px; height: 200px; border-radius: 10px; }
}
body.menu-ouvert .bulle-video { display: none; }
@media print { .bulle-video { display: none; } }

/* ---------- mur de videos de deballage (accueil) ---------- */
.mur-videos { overflow: hidden; }
.mur-piste-cadre { margin-top: 2.4rem; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.mur-piste { list-style: none; margin: 0; padding: 0; display: flex; gap: 16px; width: max-content; animation: mur-defile 60s linear infinite; }
.mur-piste-cadre:hover .mur-piste, .mur-piste-cadre:focus-within .mur-piste, .mur-videos.lecture .mur-piste { animation-play-state: paused; }
@keyframes mur-defile { to { transform: translateX(calc(-50% - 8px)); } }
.mur-vignette { position: relative; display: block; width: clamp(150px, 42vw, 220px); aspect-ratio: 9 / 16; padding: 0; border: 0; border-radius: 10px; overflow: hidden; background: var(--noir-2); cursor: pointer; }
.mur-vignette video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.mur-vignette:hover video { transform: scale(1.04); }
.mur-lecture { position: absolute; left: 50%; top: 50%; width: 52px; height: 52px; margin: -26px 0 0 -26px; border-radius: 50%; background: rgba(215,35,35,.9); box-shadow: 0 4px 14px rgba(0,0,0,.4); }
.mur-lecture::after { content: ""; position: absolute; left: 21px; top: 16px; border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #fff; }
@media (prefers-reduced-motion: reduce) {
  .mur-piste-cadre { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .mur-piste li[aria-hidden="true"] { display: none; }
}
.mur-lecteur { padding: 0; border: 0; background: transparent; max-width: none; max-height: none; overflow: visible; }
.mur-lecteur::backdrop { background: rgba(0,0,0,.85); }
.mur-lecteur-cadre { position: relative; width: min(420px, calc(100vw - 32px), calc((100dvh - 48px) * 9 / 16)); aspect-ratio: 9 / 16; }
.mur-lecteur video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; border-radius: 10px; }
.mur-fermer { position: absolute; top: 8px; right: 8px; z-index: 2; width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(0,0,0,.7); color: #fff; cursor: pointer; }
.mur-fleche { position: absolute; top: 50%; z-index: 2; width: 44px; height: 44px; margin-top: -22px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--noir); cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,.4); }
.mur-fleche[data-sens="-1"] { left: -22px; }
.mur-fleche[data-sens="1"] { right: -22px; }
@media (max-width: 520px) { .mur-fleche[data-sens="-1"] { left: 6px; } .mur-fleche[data-sens="1"] { right: 6px; } }
body.lecteur-ouvert { overflow: hidden; }
