/* ═══════════════════════════════════════════════
   M-FORCE — La force à l'état brut
   Palette : obsidienne / or fondu / rouge aigle / bleu glace
   ═══════════════════════════════════════════════ */

:root {
  --noir: #000000;
  --carbon: #0f0e0c;
  --or: #F2A81D;
  --or-vif: #FFC94A;
  --rouge: #E8482E;
  --bleu: #55B7E8;
  --blanc: #F4F0E6;
  --gris: #8d887c;
  --font-display: "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* le débordement horizontal est bloqué à la racine UNIQUEMENT :
   un overflow sur body en ferait un conteneur de défilement et casserait
   le position:sticky du piqué. */
html { scroll-behavior: auto; overflow-x: hidden; }
@supports (overflow-x: clip) {
  html, main { overflow-x: clip; }
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--noir);
  color: var(--blanc);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  /* aucun geste de défilement horizontal : le doigt ne peut plus révéler les bords */
  touch-action: pan-y pinch-zoom;
}

::selection { background: var(--or); color: var(--noir); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--or); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.mono { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; color: var(--gris); }

/* ── selecteur de langue (FR ⇄ العربية) ──────────────
   Present dans l'en-tete et le menu mobile des deux versions du site. */
.langsw {
  font-family: var(--font-mono);
  border: 1px solid rgba(244, 240, 230, 0.22);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.6rem;
  line-height: 1;
  color: var(--blanc);
  opacity: 0.72;
  transition: opacity 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.langsw:hover { opacity: 1; border-color: var(--or); color: var(--or); }
/* le libelle « العربية » sur une page francaise : Montserrat n'a aucun
   glyphe arabe, on nomme donc explicitement des polices systeme. */
.langsw[lang="ar"] {
  font-family: "Cairo", "Noto Sans Arabic", "Geeza Pro", "Segoe UI", sans-serif;
  letter-spacing: 0;
  font-size: 0.68rem;
}


/* ── grain ── */
body::after {
  content: "";
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ═══════════ PRELOADER — LA CHARGE ═══════════ */
.loader {
  position: fixed; inset: 0;
  background: var(--noir);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  will-change: clip-path;
}
.loader__logo {
  width: clamp(140px, 20vw, 210px);
  opacity: 0;
  position: relative; z-index: 2;
}

/* ── lignes de vitesse ── */
.loader__streaks { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.loader__streaks i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  opacity: 0;
  transform-origin: left center;
  will-change: transform, opacity;
}
.loader__streaks i:nth-child(1) { top: 26%; }
.loader__streaks i:nth-child(2) { top: 38%; height: 1px; }
.loader__streaks i:nth-child(3) { top: 47%; height: 3px; }
.loader__streaks i:nth-child(4) { top: 56%; height: 1px; }
.loader__streaks i:nth-child(5) { top: 64%; }
.loader__streaks i:nth-child(6) { top: 74%; height: 1px; }

/* ── l'aigle ── */
.loader__sky { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.loader__bird,
.loader__trail {
  position: absolute;
  left: 0; top: 50%;
  width: clamp(150px, 22vw, 300px);
  margin-top: -8%;
  color: var(--or);
  opacity: 0;
  will-change: transform, opacity;
}
.loader__bird svg,
.loader__trail svg { width: 100%; height: auto; display: block; }
.loader__trail { filter: blur(3px); }

/* ── éclair d'impact ── */
.loader__flash {
  position: absolute; inset: 0;
  z-index: 4;
  background: radial-gradient(circle at 55% 50%, #fff 0%, var(--or) 30%, transparent 72%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

@media (prefers-reduced-motion: reduce) {
  .loader__bird, .loader__trail, .loader__streaks, .loader__flash { display: none; }
  .loader__logo { opacity: 1; }
}

/* ═══════════ CANVAS ═══════════ */
#scene {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

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


/* ═══════════ HEADER ═══════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 250;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2.5rem 1.6rem;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(6, 6, 5, 0.9) 0%, rgba(6, 6, 5, 0.45) 60%, rgba(6, 6, 5, 0) 100%);
}
.header__brand { display: flex; align-items: center; }
.header__brand img { height: 24px; width: auto; display: block; }
.header__nav { display: flex; gap: 2.2rem; }
.header__nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gris);
  transition: color 0.25s;
}
.header__nav a:hover { color: var(--blanc); }

/* ═══════════ BOUTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 999px;
  background: var(--or);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.3s;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--or-vif);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(242, 168, 29, 0.35); }
.btn span { position: relative; z-index: 1; }
.btn--small { padding: 0.7rem 1.5rem; font-size: 0.68rem; }
.btn--big { padding: 1.4rem 3.2rem; font-size: 0.9rem; }

/* ═══════════ BOUTON WHATSAPP FLOTTANT ═══════════
   Injecte par js/whatsapp.js sur toutes les pages sauf celle de
   remerciement. z-index 190 : sous le menu mobile (200/210) et sous
   l'en-tete (250), pour ne jamais recouvrir la navigation. */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 190;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #04220f;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45), 0 0 0 6px rgba(37, 211, 102, 0.13);
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}
.wa-float.is-on { opacity: 1; transform: none; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 0 10px rgba(37, 211, 102, 0.2);
}

/* La page produit porte le badge reCAPTCHA en bas a droite : on remonte
   le bouton pour ne pas l'ecraser. */
.pp-body .wa-float { bottom: 92px; }

@media (max-width: 700px) {
  .wa-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .wa-float svg { width: 27px; height: 27px; }
  .pp-body .wa-float { bottom: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float { transition: opacity 0.2s ease; transform: none; }
}

/* ═══════════ LAYOUT ═══════════ */
main { position: relative; z-index: 3; }

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  border-top: 1px solid rgba(242, 168, 29, 0.25);
  border-bottom: 1px solid rgba(242, 168, 29, 0.25);
  padding: 1.1rem 0;
  overflow: hidden;
  background: rgba(6, 6, 5, 0.55);
  backdrop-filter: blur(6px);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track { align-items: center; }
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: rgba(244, 240, 230, 0.85);
  white-space: nowrap;
}
.marquee__eagle {
  width: 30px; height: auto;
  flex: none;
  margin: 0 1.6rem;
  color: var(--or);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════ CHAPITRES ═══════════ */
.chapter {
  min-height: 175vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 14rem 2.5rem;
  max-width: 1400px;
  margin-inline: auto;
}
.chapter__watermark {
  position: absolute;
  top: 8rem;
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 20rem);
  line-height: 1;
  color: rgba(244, 240, 230, 0.045);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.chapter--eagle .chapter__watermark { right: -2rem; }
.chapter--recover .chapter__watermark { left: -2rem; }

.chapter__content {
  max-width: 34rem;
  position: relative; z-index: 2;
}
.chapter--eagle .chapter__content { margin-right: auto; margin-left: 3vw; }
.chapter--recover .chapter__content { margin-left: auto; margin-right: 3vw; }

.chapter__index { margin-bottom: 1.6rem; color: var(--or); }
.chapter__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.chapter__title .line { display: block; overflow: hidden; }
.chapter__title--red { color: var(--rouge); text-shadow: 0 0 60px rgba(232, 72, 46, 0.35); }
.chapter__title--blue { color: var(--bleu); text-shadow: 0 0 60px rgba(85, 183, 232, 0.3); }

.chapter__desc {
  margin-top: 1.8rem;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gris);
}
.chapter__benefits { margin-top: 2rem; }
.chapter__benefits li {
  display: flex; align-items: baseline; gap: 0.8rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(244, 240, 230, 0.09);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.chapter__benefits li span { color: var(--or); font-family: var(--font-mono); }

.chapter__chips {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.chapter__chips span {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(244, 240, 230, 0.16);
  border-radius: 999px;
  font-size: 0.62rem;
  color: rgba(244, 240, 230, 0.65);
}

.chapter__buy {
  margin-top: 2.8rem;
  display: flex; align-items: center; gap: 2.4rem;
  flex-wrap: wrap;
}
.chapter__price { display: flex; flex-direction: column; gap: 0.3rem; }
.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.9rem;
  line-height: 1;
  color: var(--or);
}
.price em { font-style: normal; font-size: 1.4rem; }
.price--blue { color: var(--bleu); }
.price--old { text-decoration: line-through; color: var(--gris); }
.price__note { font-size: 0.6rem; }

/* ═══════════ RITUEL ═══════════ */
.rituel { padding: 10rem 2.5rem 8rem; position: relative; z-index: 2; }
.rituel__head { margin-bottom: 3.5rem; }
.rituel__head .mono { color: var(--or); margin-bottom: 1.2rem; }
.rituel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 6rem);
  text-transform: uppercase;
  line-height: 1;
}
.rituel__title span { display: inline-block; overflow: hidden; vertical-align: bottom; }
.rituel__title .outline {
  color: var(--or);
}
/* ── blocs produit : barre d'info + rangée de 3 visuels ── */
.rituel__block { margin-bottom: 3.5rem; --rc: var(--rouge); }
.rituel__block--nuit { --rc: var(--bleu); margin-bottom: 0; }

.rituel__bar {
  display: flex; align-items: baseline; gap: 1.2rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(244, 240, 230, 0.12);
}
.rituel__time { color: var(--rc); }
.rituel__product {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--blanc);
}
.rituel__bar .rituel__dose { margin-right: auto; }
.rituel__link { color: var(--or); transition: opacity 0.25s; }
.rituel__link:hover { opacity: 0.7; }

.rituel__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.rituel__card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  display: block;
}
.rituel__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) brightness(0.9);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s;
}
.rituel__card:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1); }

/* étiquette */
.rituel__tag {
  position: absolute;
  left: 0.9rem; bottom: 0.9rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid color-mix(in srgb, var(--rc) 55%, transparent);
  color: var(--rc);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

/* ═══════════ CTA ═══════════ */
.cta {
  min-height: 120vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2.5rem;
  position: relative;
}
.cta__eyebrow { color: var(--or); margin-bottom: 1.8rem; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 11vw, 10rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.cta__title .line { display: block; overflow: hidden; }
.cta__stats {
  margin-top: 3rem;
  display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(244, 240, 230, 0.1);
  background: var(--noir);
  padding: 4rem 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, auto);
  gap: 2.4rem 2.8rem;
  align-items: start;
}
@media (max-width: 1180px) and (min-width: 901px) {
  .footer { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem; }
.footer__brandrow { display: flex; align-items: center; gap: 0.9rem; }
.footer__tag {
  font-size: 0.72rem;
  color: rgba(244, 240, 230, 0.55);
  line-height: 1.65;
  max-width: 30ch;
}
.footer__head {
  color: var(--or);
  letter-spacing: 0.24em;
  font-size: 0.56rem;
  margin-bottom: 0.25rem;
}
.footer__contact a { transition: color 0.25s; }
.footer__contact a:hover { color: var(--or); }
.footer__eagle { width: 42px; height: auto; color: var(--or); flex: none; }
.footer__brand img { height: 28px; width: auto; display: block; }
.footer__links, .footer__contact {
  display: flex; flex-direction: column; gap: 0.8rem;
}
.footer__links a { transition: color 0.25s; }
.footer__links a:hover { color: var(--or); }
.footer__legal {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 240, 230, 0.07);
  font-size: 0.6rem;
}

/* ═══════════ SPLIT / REVEAL ═══════════ */
[data-split] {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  vertical-align: bottom;
  padding-top: 0.14em;
  margin-top: -0.14em;
  /* le titre peut revenir à la ligne aux espaces… */
  white-space: normal;
  text-wrap: balance;
}
/* …mais jamais au milieu d'un mot : chaque mot reste solidaire */
[data-split] .word { display: inline-block; white-space: nowrap; }
[data-split] .char { display: inline-block; will-change: transform; }
[data-reveal] { opacity: 0; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  /* Le menu de l'en-tete disparait, mais le choix de la langue doit rester
     atteignable : sur les pages sans menu mobile (boutique, pages de contenu)
     .langsw est le SEUL acces a l'autre version du site. On garde donc la
     barre et on masque tout sauf ce bouton. */
  .header__nav { display: flex; gap: 0; }
  .header__nav a:not(.langsw) { display: none; }
  .chapter--eagle .chapter__content { margin-left: 0; }
  .chapter--recover .chapter__content { margin-right: 0; }
  .chapter { padding: 47vh 1.2rem 5rem; min-height: auto; }
  .chapter__title { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .chapter__watermark { top: 2rem; font-size: 26vw; }
  .chapter__benefits li { font-size: 0.92rem; padding: 0.6rem 0; }
  .chapter__buy { gap: 1.2rem; margin-top: 2rem; }
  .price { font-size: 2.4rem; }
  .chapter__content { max-width: 100%; }
  .rituel { padding: 4.5rem 1.2rem; }
  .rituel__title { font-size: clamp(2rem, 10vw, 3rem); }
  .rituel__row { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .rituel__row > .rituel__card:first-child { grid-column: 1 / -1; }
  .rituel__bar { gap: 0.5rem 1rem; }
  .rituel__bar .rituel__dose { margin-right: 0; width: 100%; order: 3; }
  .rituel__link { order: 4; }
  .rituel__tag { left: 0.55rem; bottom: 0.55rem; font-size: 0.46rem; padding: 0.28rem 0.5rem; }
  .rituel__block { margin-bottom: 2.4rem; }
  .cta { padding: 5rem 1.2rem; min-height: 78vh; }
  .cta__title { font-size: clamp(1.8rem, 9.4vw, 4rem); margin-bottom: 2.2rem; }
  .cta .btn--big { width: 100%; padding: 1.2rem 1rem; font-size: 0.78rem; }
  .cta__stats { font-size: 0.5rem; gap: 0.6rem; }
  /* 2 colonnes sur mobile : le pied de page tenait sur plus d'un ecran */
  .footer {
    grid-template-columns: 1fr 1fr;
    padding: 2.6rem 1.2rem max(1.5rem, env(safe-area-inset-bottom));
    gap: 1.8rem 1.2rem;
  }
  .footer__brand { grid-column: 1 / -1; }
  /* PRODUITS + LA MARQUE tiennent en 2 colonnes ; INFOS a des libelles
     trop longs pour une demi-largeur, donc pleine largeur, comme CONTACT. */
  .footer nav:nth-of-type(3) { grid-column: 1 / -1; }
  .footer__contact { grid-column: 1 / -1; }
  .footer__eagle { width: 34px; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  body::after, .marquee__track, .loader__logo { animation: none !important; }
  [data-reveal] { opacity: 1; }
}

/* ═══════════════════════════════════════════════
   MOBILE — navigation & adaptations
   ═══════════════════════════════════════════════ */

/* ── burger ── */
.burger {
  display: none;
  width: 46px; height: 46px;
  flex: none;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 210;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  margin: 5px auto;
  background: var(--blanc);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.2s;
}
.burger.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ── panneau plein écran ── */
.mnav {
  position: fixed; inset: 0;
  z-index: 200;
  background: #000;
  padding: max(6.2rem, env(safe-area-inset-top) + 4.8rem) 1.4rem
           max(1.6rem, env(safe-area-inset-bottom) + 1rem);
  display: flex; flex-direction: column;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}
.mnav.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }

.mnav__eagle {
  position: absolute;
  right: -22%; top: 12%;
  width: 92%;
  height: auto;
  color: var(--or);
  opacity: 0.1;
  pointer-events: none;
}

.mnav__list { position: relative; flex: 1; }
.mnav__list li { overflow: hidden; border-bottom: 1px solid rgba(244, 240, 230, 0.1); }
.mnav__list a {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--blanc);
  transform: translateY(110%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.mnav.is-open .mnav__list a { transform: translateY(0); }
.mnav.is-open .mnav__list li:nth-child(2) a { transition-delay: 0.07s; }
.mnav.is-open .mnav__list li:nth-child(3) a { transition-delay: 0.14s; }
.mnav__list a span { color: var(--or); font-size: 0.6rem; }

.mnav__buy {
  position: relative;
  display: flex; flex-direction: column; gap: 0.7rem;
  margin: 1.6rem 0 1.4rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s 0.2s, transform 0.5s 0.2s;
}
.mnav.is-open .mnav__buy { opacity: 1; transform: none; }
.mnav__buy .btn { width: 100%; }
.btn--blue { background: var(--bleu); }
.btn--blue::before { background: #7ecbf2; }
.btn--blue:hover { box-shadow: 0 10px 30px rgba(85, 183, 232, 0.35); }

.mnav__foot {
  position: relative;
  display: flex; justify-content: space-between;
  font-size: 0.55rem;
  opacity: 0;
  transition: opacity 0.5s 0.34s;
}
.mnav.is-open .mnav__foot { opacity: 1; }

body.nav-open { overflow: hidden; }
body.nav-open .header { background: none; }
body.nav-open .header .btn--small { opacity: 0; pointer-events: none; transition: opacity 0.2s; }

@media (max-width: 900px) {
  .burger { display: block; }
  .header {
    padding: 0.9rem max(1.1rem, env(safe-area-inset-right)) 1.3rem max(1.1rem, env(safe-area-inset-left));
    gap: 0.6rem;
  }
  .header .btn--small { padding: 0.62rem 1rem; font-size: 0.6rem; letter-spacing: 0.06em; }
  /* le bouton Commander disparaît sur mobile (le burger + les slides suffisent) */
  .header a.btn--small[href^="produit"] { display: none; }
  .header__brand img { height: 19px; }
}
@media (min-width: 901px) {
  .mnav { display: none; }
}

/* ── cibles tactiles : liens de texte hors gabarit bouton ── */
@media (max-width: 900px) {
  .header .btn--small { min-height: 40px; }
  .rituel__link,
  .footer__links a,
  .pp-back {
    display: inline-flex; align-items: center;
    min-height: 40px;
  }
  .rituel__bar { row-gap: 0.2rem; }
}

/* ═══════════════════════════════════════════════
   EN ACTION — le fondateur sur le terrain
   ═══════════════════════════════════════════════ */
.action {
  position: relative; z-index: 2;
  padding: 8rem 2.5rem 6rem;
  max-width: 1400px;
  margin-inline: auto;
}
.action__head { max-width: 46rem; margin-bottom: 3rem; }
.action__head .mono { color: var(--or); margin-bottom: 1.2rem; }
.action__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.action__intro {
  margin-top: 1.4rem;
  max-width: 34rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gris);
}

.action__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-auto-rows: 1fr;
  gap: 1rem;
}
.action__card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  min-height: 260px;
}
.action__card--lead { grid-row: span 2; }
.action__card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.82);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s;
}
.action__card:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(0.95); }
.action__card figcaption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 0.55rem;
  padding: 1.6rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.25) 45%, transparent 75%);
}
.action__tag { color: var(--or); letter-spacing: 0.16em; font-size: 0.55rem; }
.action__tag--blue { color: var(--bleu); }
.action__card--lead strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--blanc);
}
.action__quote {
  max-width: 22rem;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(244, 240, 230, 0.72);
}
.action__link { color: rgba(244, 240, 230, 0.75); transition: color 0.25s; }
.action__card:hover .action__link { color: var(--or); }

@media (max-width: 900px) {
  .action { padding: 4.5rem 1.2rem 3.5rem; }
  .action__head { margin-bottom: 1.8rem; }
  .action__title { font-size: clamp(1.6rem, 8vw, 2.8rem); }
  .action__grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .action__card--lead { grid-row: auto; min-height: 74vw; }
  .action__card { min-height: 46vw; }
  .action__card figcaption { padding: 1.1rem; }
  .action__quote { font-size: 0.82rem; }
}

/* ═══════════════════════════════════════════════
   LES DEUX AILES — la gamme
   ═══════════════════════════════════════════════ */
.wings {
  position: relative;
  overflow: hidden;
  padding: 7rem 2.5rem 6rem;
  border-top: 1px solid rgba(244, 240, 230, 0.08);
}
/* l'aigle déployé derrière la paire */
.wings__mark {
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: min(120vw, 1500px);
  height: auto;
  color: var(--or);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}

.wings__head {
  position: relative;
  max-width: 46rem;
  margin: 0 auto 3.4rem;
  text-align: center;
}
.wings__head .mono { color: var(--or); margin-bottom: 1rem; }
.wings__title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.wings__title .l { display: block; overflow: hidden; padding-top: 0.12em; margin-top: -0.12em; }
.wings__title .l:first-child { font-size: clamp(2.1rem, 5.4vw, 4.4rem); color: var(--blanc); }
.wings__title .l--sub { font-size: clamp(1.2rem, 3vw, 2.4rem); color: var(--or); }
.wings__intro {
  margin: 1.2rem auto 0;
  max-width: 30rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gris);
}

/* ── la paire ── */
.wings__pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1320px;
  margin-inline: auto;
  align-items: stretch;
}

/* l'axe central : le corps */
.wings__spine {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
  padding: 0 1.6rem;
}
.wings__spine span {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(242, 168, 29, 0.4), transparent);
}
.wings__spine-mark { width: 46px; height: auto; color: var(--or); flex: none; }

/* ── une aile ── */
.wing {
  position: relative;
  display: flex; flex-direction: column;
  padding: 2rem;
  border: 1px solid rgba(244, 240, 230, 0.1);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
  transition: border-color 0.45s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
  --wc: var(--rouge);
}
.wing--night { --wc: var(--bleu); }
.wing::before {                      /* halo de couleur, révélé au survol */
  content: "";
  position: absolute; inset: 0;
  border-radius: 12px;
  background: radial-gradient(90% 60% at 50% 0%, color-mix(in srgb, var(--wc) 16%, transparent) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}
.wing:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--wc) 55%, transparent); }
.wing:hover::before { opacity: 1; }

.wing__bar {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(244, 240, 230, 0.1);
}
.wing__time { color: var(--wc); }
.wing__side { font-size: 0.5rem; color: rgba(244, 240, 230, 0.35); }

.wing__shot {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 1.8rem 0 1.2rem;
}
.wing__shot img {
  width: auto;
  max-height: 300px;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.7));
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.wing:hover .wing__shot img { transform: translateY(-8px) scale(1.03); }

.wing__name {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.wing__name span { display: block; font-size: clamp(1.7rem, 3.2vw, 2.7rem); color: var(--wc); }
.wing__name em {
  display: block; font-style: normal; font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: rgba(244, 240, 230, 0.85);
}
.wing__desc {
  margin-top: 0.9rem;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gris);
}

.wing__specs {
  display: flex; gap: 1.6rem;
  margin: 1.3rem 0;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(244, 240, 230, 0.09);
  border-bottom: 1px solid rgba(244, 240, 230, 0.09);
  list-style: none;
}
.wing__specs li { font-size: 0.55rem; letter-spacing: 0.12em; color: rgba(244, 240, 230, 0.55); }
.wing__specs b {
  display: block;
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.35rem; letter-spacing: -0.02em;
  color: var(--wc);
}

.wing__list { list-style: none; margin-bottom: 1.6rem; }
.wing__list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.wing__list li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 7px; height: 7px;
  margin-top: -3.5px;
  background: var(--wc);
  clip-path: polygon(0 0, 100% 50%, 0 100%);   /* pointe de plume */
}

.wing__foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.wing__price {
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.1rem; line-height: 1; letter-spacing: -0.02em;
  color: var(--wc);
}
.wing__price em { font-style: normal; font-size: 1rem; }
.wing__price s { font-family: var(--font-mono); font-size: 0.62rem; color: var(--gris); margin-left: 0.3rem; }

.wing__cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  background: var(--wc);
  color: #000;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.25s, box-shadow 0.3s;
}
.wing__cta i { font-style: normal; transition: transform 0.3s; }
.wing__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px color-mix(in srgb, var(--wc) 45%, transparent); }
.wing__cta:hover i { transform: translateX(4px); }

@media (max-width: 900px) {
  .wings { padding: 4.5rem 1.2rem 3.5rem; }
  .wings__head { margin-bottom: 2rem; }
  .wings__pair { grid-template-columns: 1fr; gap: 0.9rem; }
  .wings__spine { flex-direction: row; padding: 0.4rem 0; }
  .wings__spine span { flex: 1; width: auto; height: 1px; background: linear-gradient(to right, transparent, rgba(242, 168, 29, 0.4), transparent); }
  .wings__spine-mark { width: 36px; }
  .wing { padding: 1.3rem; }
  .wing__shot { padding: 1.2rem 0 0.8rem; }
  .wing__shot img { max-height: 210px; }
  .wing__specs { gap: 1.1rem; }
  .wing__foot { justify-content: space-between; }
  .wing__cta { flex: 1; justify-content: center; }
  .wings__mark { width: 210vw; opacity: 0.05; }
}

/* ── mise en scène des ailes : perspective + onde de choc ── */
.wings__pair { perspective: 1400px; }
.wing { transform-style: preserve-3d; will-change: transform, opacity; }
.wings__mark { will-change: transform, opacity; transform-origin: 50% 50%; }

.wings__pulse {
  position: absolute;
  left: 50%; top: 50%;
  width: 120px; height: 120px;
  margin: -60px 0 0 -60px;
  border: 2px solid var(--or);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  flex: none !important;
  background: none !important;
}
/* le trait de l'axe se dessine du centre vers les extrémités */
.wings__spine > span:not(.wings__pulse) { transform-origin: center; }

/* ═══════════════════════════════════════════════
   LE PIQUÉ — séquence scrubbée au scroll
   ═══════════════════════════════════════════════ */
.dive {
  position: relative;
  height: 320vh;                 /* la course de scroll du piqué */
  background: #000;
}
.dive__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.dive__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* éclair d'impact */
.dive__flash {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 44%, rgba(255,255,255,0.9) 0%, var(--or) 14%, transparent 42%);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* les trois temps */
.dive__beat {
  position: absolute;
  left: 0; right: 0;
  padding: 0 2.5rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.dive__beat[data-beat="1"] { bottom: 12svh; }
.dive__beat[data-beat="2"] { bottom: 10svh; }
.dive__beat[data-beat="3"] { bottom: 14svh; }
.dive__beat .mono { display: block; color: var(--or); margin-bottom: 0.9rem; letter-spacing: 0.24em; }
.dive__beat h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--blanc);
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.9);
}
.dive__beat h2 em { font-style: normal; color: var(--or); }

.dive__hint {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 0.8rem;
  color: var(--gris);
}
.dive__hint span {
  display: block; width: 46px; height: 1px;
  background: var(--or);
  transform-origin: left;
  animation: hsScrollLine 1.9s ease-in-out infinite;
}

@media (max-width: 900px) {
  .dive { height: 280vh; }
  .dive__beat { padding: 0 1.2rem; }
  .dive__beat[data-beat="1"] { bottom: 16svh; }
  .dive__beat[data-beat="2"] { bottom: 14svh; }
  .dive__beat[data-beat="3"] { bottom: 18svh; }
  .dive__hint { bottom: max(1.4rem, env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  .dive { height: auto; }
  .dive__stage { position: static; height: 70svh; }
  .dive__beat { position: static; opacity: 1; margin-top: 1rem; }
  .dive__hint { display: none; }
}

/* ── vignette : les bords se referment sur la scène ── */
.dive__vignette {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(120% 95% at 50% 46%, transparent 32%, rgba(0,0,0,0.55) 72%, rgba(0,0,0,0.92) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, transparent 22%, transparent 70%, rgba(0,0,0,0.9) 100%);
}

/* ── les produits surgissent de l'impact ── */
.dive__reveal {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5vw;
  padding: 0 5vw;
  pointer-events: none;
  z-index: 4;
}
.dive__prod {
  position: relative;
  justify-self: center;
  width: min(100%, 400px);
  display: flex; flex-direction: column; align-items: center;
  padding: 1.6rem 1.4rem 1.4rem;
  border-radius: 18px;
  opacity: 0;
  pointer-events: auto;
  will-change: transform, opacity;

  /* verre fumé : socle sombre pour rester lisible devant les flammes */
  background:
    linear-gradient(160deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.025) 55%, rgba(255,255,255,0.05) 100%),
    rgba(10, 8, 8, 0.48);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.4s, box-shadow 0.4s;
  --pc: var(--rouge);
}
.dive__prod--r { --pc: var(--bleu); }

/* halo de couleur derrière le verre */
.dive__glow {
  position: absolute;
  left: 50%; top: 34%;
  width: 118%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--pc) 42%, transparent) 0%, transparent 62%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}
.dive__prod:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--pc) 60%, transparent);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 60px color-mix(in srgb, var(--pc) 28%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.24);
}

/* ── la carte en feu : flammes couleur produit (rouge / bleu) ── */
.dive__prod::before,
.dive__prod::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -10%;
  width: 120%; height: 118%;
  transform: translateX(-50%);
  z-index: -2;
  pointer-events: none;
  border-radius: 46% 54% 42% 46%;
  background:
    radial-gradient(42% 58% at 28% 80%, color-mix(in srgb, var(--pc) 88%, white 6%) 0%, transparent 58%),
    radial-gradient(36% 52% at 72% 84%, color-mix(in srgb, var(--pc) 72%, transparent) 0%, transparent 62%),
    radial-gradient(58% 74% at 50% 92%, color-mix(in srgb, var(--pc) 58%, transparent) 0%, transparent 70%);
  filter: blur(18px) saturate(1.35);
  opacity: 0.62;
  animation: dive-fire-a 1.7s ease-in-out infinite;
}
.dive__prod::after {
  filter: blur(32px) saturate(1.2);
  opacity: 0.4;
  animation: dive-fire-b 2.4s ease-in-out infinite;
}
@keyframes dive-fire-a {
  0%, 100% { transform: translateX(-50%) scale(1, 1); }
  28%      { transform: translate(-53%, -2.5%) scale(1.05, 1.14); }
  62%      { transform: translate(-47%, -1%) scale(0.97, 0.94); }
  84%      { transform: translate(-51%, -3%) scale(1.02, 1.08); }
}
@keyframes dive-fire-b {
  0%, 100% { transform: translateX(-50%) scale(1, 1); }
  35%      { transform: translate(-46%, -3%) scale(1.08, 1.16); }
  70%      { transform: translate(-54%, -1.5%) scale(0.95, 0.96); }
}
/* le halo respire avec le feu */
.dive__prod .dive__glow { animation: dive-glow-pulse 1.9s ease-in-out infinite; }
@keyframes dive-glow-pulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 0.85; filter: blur(26px); }
}

.dive__prod img {
  width: auto;
  max-height: min(30svh, 260px);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.75));
}

.dive__info { width: 100%; text-align: center; margin-top: 1rem; }
.dive__when { display: block; color: var(--pc); font-size: 0.52rem; letter-spacing: 0.18em; }
.dive__name {
  display: block; margin-top: 0.5rem;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--blanc);
}
.dive__note {
  margin-top: 0.35rem;
  font-size: 0.78rem; font-weight: 300;
  color: rgba(244,240,230,0.62);
}
.dive__buy {
  display: flex; align-items: baseline; justify-content: center;
  gap: 0.6rem; flex-wrap: wrap;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.dive__price {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.7rem; line-height: 1; letter-spacing: -0.02em;
  color: var(--pc);
}
.dive__price em { font-style: normal; font-size: 0.8rem; }
.dive__buy s { color: var(--gris); font-size: 0.62rem; }
.dive__go {
  margin-left: auto;
  font-size: 0.54rem; letter-spacing: 0.14em;
  color: var(--pc);
  transition: transform 0.3s;
}
.dive__prod:hover .dive__go { transform: translateX(4px); }

@media (max-width: 900px) {
  .dive__reveal { gap: 2.5vw; padding: 0 2.5vw; align-content: center; }
  .dive__prod { padding: 0.9rem 0.7rem 0.8rem; border-radius: 14px; }
  .dive__prod img { max-height: 20svh; }
  .dive__info { margin-top: 0.6rem; }
  .dive__when { font-size: 0.42rem; letter-spacing: 0.1em; }
  .dive__name { font-size: 0.82rem; }
  .dive__note { font-size: 0.6rem; margin-top: 0.25rem; }
  .dive__buy { gap: 0.35rem; margin-top: 0.6rem; padding-top: 0.6rem; }
  .dive__price { font-size: 1.15rem; }
  .dive__buy s { display: none; }
  .dive__go { margin-left: 0; width: 100%; font-size: 0.46rem; }
}

/* ═══════════ LE DUEL — les deux ailes v2 ═══════════ */
.duel {
  position: relative;
  padding: 7rem 0 0;
  background: var(--noir);
  overflow: hidden;
}
.duel__head { text-align: center; padding: 0 1.4rem; margin-bottom: 4.2rem; }
.duel__eyebrow { color: var(--or); letter-spacing: 0.3em; font-size: 0.62rem; margin-bottom: 1.1rem; }
.duel__title {
  font-size: clamp(2.1rem, 6.4vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.duel__title .line { display: block; overflow: hidden; }
.duel__title .line--gold,
.cta__title .line--gold { color: var(--or); }
.duel__intro {
  margin: 1.3rem auto 0;
  max-width: 44ch;
  color: rgba(244, 240, 230, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── l'arène : deux mondes face à face ── */
.duel__arena {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 92svh;
}
.duel__side {
  --pc: var(--rouge);
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(3rem, 8vh, 5rem) clamp(1.2rem, 3vw, 3rem) 3.6rem;
  overflow: hidden;
  transition: flex 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.65s ease;
}
.duel__side--night { --pc: var(--bleu); }
.duel__side::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 62% at 50% 104%, color-mix(in srgb, var(--pc) 30%, transparent) 0%, transparent 62%),
    radial-gradient(90% 46% at 50% -6%, color-mix(in srgb, var(--pc) 11%, transparent) 0%, transparent 58%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.016) 0 2px, transparent 2px 9px),
    linear-gradient(180deg, #060505 0%, #0b0606 100%);
}
.duel__side--night::before {
  background:
    radial-gradient(120% 62% at 50% 104%, color-mix(in srgb, var(--pc) 28%, transparent) 0%, transparent 62%),
    radial-gradient(90% 46% at 50% -6%, color-mix(in srgb, var(--pc) 10%, transparent) 0%, transparent 58%),
    repeating-linear-gradient(65deg, rgba(255,255,255,0.016) 0 2px, transparent 2px 9px),
    linear-gradient(180deg, #050506 0%, #06070b 100%);
}

/* numéral géant : l'heure du monde */
.duel__num {
  position: absolute;
  top: clamp(0.6rem, 3vh, 2.4rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(8.5rem, 30vh, 19rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 2px color-mix(in srgb, var(--pc) 46%, transparent);
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke-color 0.5s;
}
/* sol lumineux sous le flacon */
.duel__glow {
  position: absolute;
  bottom: 24%;
  left: 50%;
  width: min(44vw, 430px);
  aspect-ratio: 1.6;
  transform: translate(-50%, 50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--pc) 52%, transparent) 0%, transparent 72%);
  filter: blur(44px);
  pointer-events: none;
}
.duel__bottle {
  position: relative;
  z-index: 2;
  width: auto;
  max-height: min(34svh, 330px);
  filter: drop-shadow(0 32px 54px rgba(0, 0, 0, 0.8));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.duel__meta {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 1.7rem;
  max-width: 34rem;
}
.duel__tag {
  display: block;
  color: var(--pc);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
}
.duel__name {
  margin-top: 0.7rem;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}
.duel__name em {
  display: block;
  font-style: normal;
  color: var(--pc);
  font-size: 0.52em;
  letter-spacing: 0.22em;
  margin-top: 0.18em;
}
.duel__desc {
  margin: 1rem auto 0;
  max-width: 40ch;
  color: rgba(244, 240, 230, 0.62);
  font-size: 0.82rem;
  line-height: 1.7;
}
/* plaques forgées */
.duel__specs {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
}
.duel__specs li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 4.6rem;
  padding: 0.6rem 0.7rem 0.55rem;
  border-radius: 8px;
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  color: rgba(244, 240, 230, 0.65);
  border: 1px solid color-mix(in srgb, var(--pc) 34%, transparent);
  background:
    linear-gradient(170deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01)),
    color-mix(in srgb, var(--pc) 7%, transparent);
  transition: transform 0.4s, border-color 0.4s;
}
.duel__specs b { color: var(--pc); font-size: 1.25rem; font-weight: 500; line-height: 1; }
.duel__side:hover .duel__specs li { transform: translateY(-3px); border-color: color-mix(in srgb, var(--pc) 60%, transparent); }
/* bénéfices marqués de la foudre */
.duel__list {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  margin-top: 1.3rem;
}
.duel__list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.duel__list li::before {
  content: '';
  width: 11px; height: 14px;
  flex: none;
  background: var(--pc);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M19 2 6 19h7l-2 11L25 12h-8l2-10z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M19 2 6 19h7l-2 11L25 12h-8l2-10z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.duel__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 1.7rem;
}
.duel__price { font-size: 1.7rem; font-weight: 900; color: var(--pc); }
.duel__price em { font-style: normal; font-size: 0.55em; letter-spacing: 0.06em; }
.duel__price s { color: rgba(244, 240, 230, 0.38); font-size: 0.55em; font-weight: 500; margin-left: 0.3rem; }

/* ── l'axe de foudre ── */
.duel__spine {
  position: relative;
  z-index: 3;
  width: 0;
}
.duel__bolt {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 0%, var(--or) 14%, #ffd97a 50%, var(--or) 86%, transparent 100%);
  box-shadow:
    0 0 16px rgba(242, 168, 29, 0.6),
    0 0 60px rgba(242, 168, 29, 0.25);
}
.duel__crest {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0a0908;
  border: 1px solid rgba(242, 168, 29, 0.55);
  box-shadow:
    0 0 0 6px rgba(242, 168, 29, 0.07),
    0 0 44px rgba(242, 168, 29, 0.35);
}
.duel__crest svg { width: 46px; height: auto; color: var(--or); }
.duel__flash {
  position: absolute; inset: 0;
  background: radial-gradient(46% 60% at 50% 50%, rgba(242, 168, 29, 0.2) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

/* choisis ton camp : un monde s'ouvre, l'autre s'assombrit */
@media (hover: hover) and (min-width: 901px) {
  .duel__arena:hover .duel__side { filter: brightness(0.55) saturate(0.75); }
  .duel__arena .duel__side:hover { flex: 1.4; filter: none; }
  .duel__side:hover .duel__bottle { transform: scale(1.06) rotate(-1.6deg); }
  .duel__side--night:hover .duel__bottle { transform: scale(1.06) rotate(1.6deg); }
  .duel__side:hover .duel__num { -webkit-text-stroke-color: color-mix(in srgb, var(--pc) 75%, transparent); }
}

@media (max-width: 900px) {
  .duel { padding-top: 4.6rem; }
  .duel__head { margin-bottom: 2.8rem; }
  .duel__arena { flex-direction: column; min-height: unset; }
  .duel__side { padding: 3.6rem 1.2rem 3rem; min-height: 88svh; justify-content: flex-end; }
  .duel__num { font-size: clamp(7rem, 26vh, 11rem); }
  .duel__bottle { max-height: min(30svh, 280px); }
  .duel__specs li { min-width: 4.1rem; }
  .duel__spine { width: auto; height: 0; }
  .duel__bolt {
    top: 50%; bottom: auto; left: 0; right: 0;
    width: auto; height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent 0%, var(--or) 14%, #ffd97a 50%, var(--or) 86%, transparent 100%);
  }
}

/* ═══════════ PAGES DE CONTENU (à propos, légal, contact) ═══════════ */
.doc {
  position: relative;
  padding: clamp(7rem, 16vh, 10rem) 1.4rem 0;
  overflow: hidden;
}
.doc__crest {
  position: absolute;
  top: -4%; right: -12%;
  width: min(52vw, 620px);
  color: var(--or);
  opacity: 0.035;
  pointer-events: none;
}
.doc__head {
  position: relative;
  max-width: 74rem;
  margin: 0 auto;
  padding-bottom: clamp(2.4rem, 6vh, 4rem);
  border-bottom: 1px solid rgba(244, 240, 230, 0.1);
}
.doc__eyebrow { color: var(--or); letter-spacing: 0.3em; font-size: 0.6rem; margin-bottom: 1.1rem; }
.doc__title {
  font-size: clamp(2.2rem, 6.5vw, 4.6rem);
  overflow-wrap: break-word;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.doc__title em { font-style: normal; color: var(--or); }
.doc__lead {
  margin-top: 1.4rem;
  max-width: 56ch;
  font-size: clamp(0.92rem, 2.2vw, 1.08rem);
  line-height: 1.75;
  color: rgba(244, 240, 230, 0.68);
}
.doc__updated { margin-top: 1.6rem; font-size: 0.58rem; letter-spacing: 0.2em; }

.doc__body {
  position: relative;
  max-width: 74rem;
  margin: 0 auto;
  padding: clamp(2.6rem, 7vh, 4.4rem) 0 clamp(4rem, 10vh, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.6rem;
}
.doc__body--split { grid-template-columns: minmax(0, 1fr) minmax(0, 20rem); align-items: start; gap: 3.4rem; }

.doc__section { scroll-margin-top: 6rem; }
.doc__section + .doc__section { margin-top: 2.8rem; }
.doc__section h2 {
  display: flex; align-items: baseline; gap: 0.9rem;
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
.doc__section h2::before {
  content: attr(data-n);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--or);
  flex: none;
}
.doc__section h3 {
  margin-top: 1.5rem; margin-bottom: 0.5rem;
  font-size: 0.94rem; font-weight: 700; color: var(--blanc);
}
.doc__section p,
.doc__section li {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(244, 240, 230, 0.66);
}
.doc__section p + p { margin-top: 0.9rem; }
.doc__section strong { color: var(--blanc); font-weight: 600; }
.doc__section a { color: var(--or); text-decoration: underline; text-underline-offset: 3px; }
.doc__section ul { margin-top: 0.8rem; display: grid; gap: 0.55rem; }
.doc__section ul li { position: relative; padding-left: 1.4rem; }
.doc__section ul li::before {
  content: '';
  position: absolute; left: 0; top: 0.62em;
  width: 9px; height: 11px;
  background: var(--or);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M19 2 6 19h7l-2 11L25 12h-8l2-10z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M19 2 6 19h7l-2 11L25 12h-8l2-10z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* encadré d'appui */
.doc__note {
  margin-top: 1.4rem;
  padding: 1.2rem 1.3rem;
  border-radius: 12px;
  border: 1px solid rgba(242, 168, 29, 0.28);
  background: linear-gradient(160deg, rgba(242,168,29,0.08), rgba(242,168,29,0.02));
}
.doc__note p { color: rgba(244, 240, 230, 0.8); }

/* sommaire collant */
.doc__toc {
  position: sticky; top: 6.5rem;
  padding: 1.3rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(244, 240, 230, 0.12);
  background: rgba(255, 255, 255, 0.028);
  display: grid; gap: 0.6rem;
}
.doc__toc span { color: var(--or); letter-spacing: 0.22em; font-size: 0.55rem; margin-bottom: 0.2rem; }
.doc__toc a { font-size: 0.74rem; color: rgba(244, 240, 230, 0.6); transition: color 0.25s; }
.doc__toc a:hover { color: var(--or); }

/* piliers "à propos" */
.doc__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; }
.doc__pillar {
  padding: 1.5rem 1.3rem;
  border-radius: 14px;
  border: 1px solid rgba(244, 240, 230, 0.12);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
}
.doc__pillar b { display: block; color: var(--or); font-size: 1.7rem; font-weight: 900; line-height: 1; }
.doc__pillar strong { display: block; margin: 0.7rem 0 0.35rem; font-size: 0.92rem; }
.doc__pillar p { font-size: 0.78rem; line-height: 1.65; color: rgba(244, 240, 230, 0.6); }

/* cartes de contact */
.doc__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1rem; margin-top: 2rem; }
.doc__card {
  padding: 1.6rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(244, 240, 230, 0.12);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
}
.doc__card .mono { display: block; color: var(--or); letter-spacing: 0.2em; font-size: 0.55rem; margin-bottom: 0.7rem; }
.doc__card a, .doc__card p { font-size: 1rem; font-weight: 600; color: var(--blanc); text-decoration: none; }
.doc__card small { display: block; margin-top: 0.45rem; font-size: 0.74rem; color: rgba(244, 240, 230, 0.55); font-weight: 400; }

/* CTA de bas de page */
.doc__cta {
  max-width: 74rem;
  margin: 0 auto clamp(3rem, 8vh, 5rem);
  padding: clamp(2.2rem, 6vw, 3.4rem) clamp(1.4rem, 4vw, 3rem);
  border-radius: 20px;
  border: 1px solid rgba(242, 168, 29, 0.25);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(242,168,29,0.12) 0%, transparent 60%),
    rgba(255, 255, 255, 0.022);
  text-align: center;
}
.doc__cta h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 900; text-transform: uppercase; }
.doc__cta p { margin: 0.8rem auto 1.6rem; max-width: 46ch; font-size: 0.86rem; line-height: 1.7; color: rgba(244,240,230,0.62); }
.doc__cta div { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }

@media (max-width: 900px) {
  .doc { padding-top: 5.6rem; }
  .doc__title { font-size: clamp(1.55rem, 8.4vw, 3.4rem); }
  .doc__body--split { grid-template-columns: minmax(0, 1fr); }
  .doc__toc { position: static; order: -1; }
  .doc__pillars { grid-template-columns: 1fr; }
  .doc__crest { right: -30%; width: 90vw; }
}

/* ═══════════════════════════════════════════════════════════════
   LE PACK — EAGLE FORCE
   Or plutôt que rouge/bleu : le pack n'appartient à aucun des deux
   camps, il les réunit.
   ═══════════════════════════════════════════════════════════════ */
.pack {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 2.5rem;
  overflow: hidden;
  isolation: isolate;
}
.pack__aura {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 22% 42%, rgba(232, 72, 46, 0.13), transparent 70%),
    radial-gradient(60% 50% at 78% 58%, rgba(85, 183, 232, 0.13), transparent 70%),
    radial-gradient(46% 40% at 50% 50%, rgba(242, 168, 29, 0.10), transparent 72%);
  pointer-events: none;
}
.pack__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

/* — visuel — */
.pack__visual { position: relative; }
.pack__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(242, 168, 29, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.pack__save {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--or);
  color: #0b0a08;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
}

/* — texte — */
.pack__eyebrow { color: var(--or); letter-spacing: 0.22em; font-size: 12px; }
.pack__title {
  margin: 14px 0 18px;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.88;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
.pack__title .line { display: block; overflow: hidden; }
.pack__title .line--gold { color: var(--or); }
.pack__intro {
  max-width: 46ch;
  color: rgba(244, 240, 230, 0.74);
  line-height: 1.65;
  margin-bottom: 26px;
}

.pack__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
}
.pack__grid li {
  border: 1px solid rgba(244, 240, 230, 0.14);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(244, 240, 230, 0.55);
  line-height: 1.5;
}
.pack__grid b {
  display: block;
  font-size: 26px;
  font-style: italic;
  color: var(--or);
  letter-spacing: 0;
  margin-bottom: 2px;
}

.pack__list { list-style: none; margin: 0 0 30px; padding: 0; }
.pack__list li {
  padding: 11px 0;
  border-top: 1px solid rgba(244, 240, 230, 0.1);
  color: rgba(244, 240, 230, 0.82);
  font-size: 15px;
}
.pack__list li:last-child { border-bottom: 1px solid rgba(244, 240, 230, 0.1); }
.pack__list .mono {
  color: var(--or);
  font-size: 12px;
  margin-right: 12px;
  letter-spacing: 0.08em;
}

.pack__foot { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.pack__price {
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 900;
  font-style: italic;
  color: var(--blanc);
  white-space: nowrap;
}
.pack__price em { font-style: normal; font-size: 0.46em; opacity: 0.6; margin-left: 2px; }
.pack__price s {
  font-size: 0.44em;
  opacity: 0.42;
  font-weight: 500;
  margin-left: 8px;
}
.pack__cta { background: var(--or); color: #0b0a08; border-color: var(--or); }
.pack__link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(244, 240, 230, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 168, 29, 0.4);
  padding-bottom: 2px;
}
.pack__link:hover { color: var(--or); }

@media (max-width: 900px) {
  .pack__inner { grid-template-columns: 1fr; gap: 30px; }
  .pack__visual { max-width: 460px; margin: 0 auto; }
  .pack__grid { grid-template-columns: repeat(2, 1fr); }
  .pack__foot { gap: 16px; }
  .pack__cta { flex: 1 1 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   LA BOUTIQUE — grille des 3 produits
   ═══════════════════════════════════════════════════════════════ */
.shop {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(9rem, 16vh, 12rem) 2.5rem clamp(70px, 10vw, 120px);
}
.shop__head { text-align: center; margin-bottom: clamp(38px, 6vw, 64px); }
.shop__eyebrow { color: var(--or); letter-spacing: 0.24em; font-size: 12px; }
.shop__title {
  margin: 12px 0 16px;
  font-size: clamp(38px, 7vw, 84px);
  line-height: 0.92;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
.shop__gold { color: var(--or); }
.shop__intro {
  max-width: 54ch;
  margin: 0 auto;
  color: rgba(244, 240, 230, 0.7);
  line-height: 1.65;
}

.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
}

.shop__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(244, 240, 230, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0));
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1), border-color 0.35s;
}
.shop__card:hover { transform: translateY(-6px); }
.shop__card--rouge:hover { border-color: rgba(232, 72, 46, 0.55); }
.shop__card--bleu:hover  { border-color: rgba(85, 183, 232, 0.55); }
.shop__card--or          { border-color: rgba(242, 168, 29, 0.34); }
.shop__card--or:hover    { border-color: rgba(242, 168, 29, 0.75); }

.shop__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: var(--or);
  color: #0b0a08;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 6px 11px;
  border-radius: 999px;
}

.shop__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: radial-gradient(60% 60% at 50% 45%, rgba(255,255,255,0.05), transparent 70%);
}
.shop__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
}
.shop__card--or .shop__media img { object-fit: cover; }
.shop__card:hover .shop__media img { transform: scale(1.05); }

.shop__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(16px, 2vw, 24px);
}
.shop__tag { font-size: 10px; letter-spacing: 0.16em; color: rgba(244, 240, 230, 0.5); }
.shop__card--rouge .shop__tag { color: var(--rouge); }
.shop__card--bleu  .shop__tag { color: var(--bleu); }
.shop__card--or    .shop__tag { color: var(--or); }

.shop__name {
  margin: 8px 0 10px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
}
.shop__name em { font-style: italic; color: rgba(244, 240, 230, 0.62); }
.shop__card--rouge .shop__name em { color: var(--rouge); }
.shop__card--bleu  .shop__name em { color: var(--bleu); }
.shop__card--or    .shop__name em { color: var(--or); }

.shop__desc {
  color: rgba(244, 240, 230, 0.66);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.shop__specs { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 18px; padding: 0; }
.shop__specs li {
  border: 1px solid rgba(244, 240, 230, 0.14);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: rgba(244, 240, 230, 0.55);
}

.shop__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.shop__price {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  font-style: italic;
  white-space: nowrap;
}
.shop__price em { font-style: normal; font-size: 0.46em; opacity: 0.6; margin-left: 2px; }
.shop__price s { font-size: 0.46em; opacity: 0.4; font-weight: 500; margin-left: 6px; }
.shop__cta { padding: 11px 20px; font-size: 12px; }
.shop__card--or .shop__cta { background: var(--or); color: #0b0a08; border-color: var(--or); }

.shop__note {
  margin-top: clamp(34px, 5vw, 56px);
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: rgba(244, 240, 230, 0.42);
}

.header__nav a.is-current { color: var(--or); }

@media (max-width: 980px) {
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
  /* le pack passe en premier et occupe toute la largeur */
  .shop__card--vedette { grid-column: 1 / -1; }
  .shop__card--vedette .shop__media { aspect-ratio: 16 / 9; }
}
@media (max-width: 620px) {
  .shop__grid { grid-template-columns: 1fr; }
  .shop__card--vedette .shop__media { aspect-ratio: 4 / 5; }
  .shop__foot { gap: 14px; }
  .shop__cta { flex: 1 1 100%; text-align: center; }
}

/* remise quantité affichée sous le sélecteur du formulaire de commande */
.buy__remise {
  margin: -4px 0 18px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(244, 240, 230, 0.42);
  transition: color 0.25s;
}
.buy__remise.is-on { color: var(--or); }
