/* ============================================================
   BLACK PEARL — épicerie de nuit · Villetaneuse (93)
   Static implementation of the Claude Design handoff.
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette tirée des illustrations : nuit brune, lanternes ambre, voiles crème */
  --bg: #0C0C0C;
  --fg: #f2e8d8;
  --gold: #F26A1B;          /* orange marque GTA */
  --gold-soft: #c8571a;
  --violet: #6A5ACD;        /* accent Vice City */
  --danger: #FF3D46;        /* alerte / +18 */
  --muted: #a8977f;
  --dim: #7c6d55;
  --line: #241f2b;
  --ink: #1a1208;
  --neon: #6A5ACD;          /* néon violet Vice City */
  --grad-logo: linear-gradient(178deg, #FFD24A, #FFB400 42%, #F26A1B);

  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Anton", "Arial Narrow", sans-serif;
  --label: "Saira", "Helvetica Neue", Arial, sans-serif;
  --mono: "Saira", "Helvetica Neue", Arial, sans-serif;
  --cond: "Oswald", "Arial Narrow", sans-serif;
  --script: "Yellowtail", cursive;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Lumières de rue la nuit — sodium orange qui tombe d'en haut,
   néon violet Vice City qui remonte du bas (fixes, très sombres) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(52% 36% at 14% -8%, rgba(242, 106, 27, 0.10), transparent 72%),
    radial-gradient(44% 30% at 78% -6%, rgba(255, 180, 0, 0.06), transparent 70%),
    radial-gradient(60% 44% at 88% 110%, rgba(106, 90, 205, 0.13), transparent 74%),
    radial-gradient(38% 30% at 6% 106%, rgba(106, 90, 205, 0.08), transparent 70%);
}

/* FOND — dégradé Vice City lisse (violet nuit -> braise orange), statique et propre */
.fx-aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(95% 60% at 84% -12%, rgba(106, 90, 205, 0.26), transparent 55%),
    radial-gradient(85% 55% at 8% 112%, rgba(242, 106, 27, 0.18), transparent 58%),
    radial-gradient(70% 60% at 50% 50%, rgba(123, 102, 235, 0.06), transparent 72%);
}
.fx-aurora i { display: none; }
/* grain de film — texture filmique subtile sur tout le fond */
.fx-aurora::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Vignette de nuit — les coins s'enfoncent dans le noir, comme un plan de nuit GTA */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 40%, transparent 58%, rgba(0, 0, 0, 0.5) 100%);
}

/* Barre de progression de lecture — fil d'or fixé en haut */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 200;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(242, 106, 27, 0.55);
  pointer-events: none;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

/* ---------- ACCESSIBILITÉ GLOBALE ---------- */
/* Focus clavier visible et cohérent (or) sur tout élément interactif */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Lien d'évitement — visible uniquement au focus clavier */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 150ms ease;
}

.skip-link:focus-visible {
  top: 16px;
  outline-offset: 0;
}

/* Icônes SVG inline (Lucide) — taille fixe, héritent la couleur */
.icon {
  width: 15px;
  height: 15px;
  flex: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ---------- HUD — barre d'état façon jeu ---------- */
.hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 28px;
  border-bottom: 1px solid var(--line);
  background: #060409;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--dim);
  white-space: nowrap;
  overflow: hidden;
}

.hud__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hud__item:first-child {
  color: var(--gold);
}

.hud__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: hud-pulse 2.2s ease-in-out infinite;
}

@keyframes hud-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(242, 106, 27, 0.5); }
  50% { opacity: 0.55; box-shadow: 0 0 0 5px rgba(242, 106, 27, 0); }
}

@media (max-width: 680px) {
  .hud__item--mid { display: none; }
}

/* ---------- Mascotte — le chien du Capitaine ---------- */
.header__dog {
  width: clamp(64px, 9vw, 96px);
  height: clamp(64px, 9vw, 96px);
  filter: drop-shadow(0 6px 24px rgba(242, 106, 27, 0.22));
}

/* Le blason complet en tête de proue */
.header__blason {
  /* calé DANS l'éclipse de l'image de fond */
  position: absolute;
  /* calé sur le centre du soleil (26.8% = fraction verticale de l'éclipse
     dans hero-pirate.webp, mesurée au pixel). Le background-position est réglé
     au même 26.8%, donc le soleil tombe TOUJOURS à 26.8% du header quelle que
     soit la fenêtre → blason et éclipse restent soudés sur tout écran. */
  top: 26.8%;
  left: 50%;
  width: clamp(150px, 17.5vw, 250px);
  height: auto;
  z-index: 2;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 22px rgba(255, 180, 0, 0.25));
  animation: bp-blason-float 6s ease-in-out infinite alternate;
}
@media (max-width: 620px) {
  .header__blason { width: 42vw; top: 26.8%; }
}
@keyframes bp-blason-float {
  from { transform: translate(-50%, -50%); }
  to   { transform: translate(-50%, calc(-50% - 7px)); }
}
@media (prefers-reduced-motion: reduce) {
  .header__blason { animation: none; }
}

.tickdog {
  width: 17px;
  height: 17px;
  vertical-align: -4px;
  margin: 0 4px;
}

.hero__dog {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(46%, 190px);
  height: min(46%, 190px);
  opacity: 0.92;
  transition: transform 0.5s ease;
}

.hero__tile:hover .hero__dog {
  transform: scale(1.06) rotate(-3deg);
}

/* ---------- Accès rapides — 3 boutons catégories ---------- */
.quicknav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 24px 8px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 14px;
}
.qbtn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 84px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #141018;
  text-decoration: none;
  transition: border-color .25s ease, transform .2s ease, background .25s ease;
}
.qbtn:hover { transform: translateY(-3px); border-color: var(--gold); }
.qbtn__k {
  font-family: var(--label); font-size: 10px; letter-spacing: .24em; color: var(--gold);
}
.qbtn__t {
  font-family: var(--display); font-weight: 400; font-size: clamp(17px, 2.3vw, 24px);
  letter-spacing: .02em; color: var(--fg); line-height: 1.05;
}
.qbtn__arr {
  position: absolute; top: 16px; right: 18px; width: 18px; height: 18px;
  stroke: var(--muted); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s ease, stroke .2s ease;
}
.qbtn:hover .qbtn__arr { transform: translateX(4px); stroke: var(--gold); }
.qbtn--primary {
  grid-row: span 1;
  border-color: rgba(242,106,27,.5);
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(242,106,27,.16), transparent 60%), #16100c;
}
.qbtn--primary .qbtn__t { font-size: clamp(20px, 3vw, 30px); }
.qbtn--primary .qbtn__arr { stroke: var(--gold); }

/* ---------- Adresse & horaires — l'essentiel ---------- */
.coords {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.coords__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #120f16;
  text-decoration: none;
  transition: border-color .25s ease;
}
a.coords__card:hover { border-color: var(--gold); }
.coords__k {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--label); font-size: 10px; letter-spacing: .2em; color: var(--muted);
}
.coords__k .icon { width: 14px; height: 14px; color: var(--gold); }
.coords__v {
  font-family: var(--sans); font-weight: 600; font-size: clamp(15px, 2vw, 18px);
  color: var(--fg); line-height: 1.35;
}
.coords__cta {
  font-family: var(--label); font-size: 11px; letter-spacing: .1em; color: var(--gold);
  margin-top: auto;
}
.coords__cta--live { color: #7be06b; display: inline-flex; align-items: center; gap: 7px; }
.coords__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #7be06b;
  box-shadow: 0 0 8px rgba(123,224,107,.8);
  animation: hud-pulse 2.2s ease-in-out infinite;
}
@media (max-width: 780px) {
  .quicknav { grid-template-columns: 1fr; }
  .coords { grid-template-columns: 1fr; }
}

/* ---------- Statements — manifeste plein écran ---------- */
.statements {
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px 24px 90px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  border-bottom: 1px solid var(--line);
}

.statement {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(23px, 3.4vw, 42px);
  line-height: 1.32;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.statement:nth-child(even) {
  align-self: flex-end;
  max-width: 86%;
  color: var(--muted);
}

.statement__arrow {
  color: var(--gold);
}

.statement__hl {
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Révélation au scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease !important;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Nudge unique de la flèche du manifeste, à l'apparition */
@keyframes bp-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.statement.is-in .statement__arrow {
  display: inline-block;
  animation: bp-nudge 0.9s ease 0.7s 2;
}

/* Balayage lumineux unique sur le grand titre, à l'apparition */
@supports (-webkit-background-clip: text) {
  .bigcta__title {
    background: linear-gradient(105deg, var(--gold) 42%, #ffc36e 50%, var(--gold) 58%);
    background-size: 240% 100%;
    background-position: 120% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .bigcta__title.is-in,
  .bigcta__title.is-done {
    animation: bp-shine 2s ease 0.55s 1 forwards;
  }
}

@keyframes bp-shine {
  from { background-position: 120% 0; }
  to { background-position: -30% 0; }
}

/* ---------- Grand CTA final ---------- */
.bigcta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 130px 20px 120px;
  border-top: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(55% 45% at 50% 62%, rgba(242, 106, 27, 0.09), transparent 72%);
}

/* filigrane du blason derrière le CTA */
.bigcta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("assets/logo/black-pearl-logo-emblem-transparent.svg") center / min(78vh, 640px) no-repeat;
  opacity: 0.05;
}

.bigcta > * {
  position: relative;
}

.bigcta__dog {
  width: clamp(90px, 14vw, 150px);
  height: clamp(90px, 14vw, 150px);
  filter: drop-shadow(0 10px 34px rgba(242, 106, 27, 0.28));
}

.bigcta__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 13vw, 170px);
  letter-spacing: 0.04em;
  line-height: 0.98;
  color: var(--gold);
  transition-delay: 0.1s;
  -webkit-text-stroke: 2px #0C0C0C;
  filter: drop-shadow(3px 5px 0 rgba(0, 0, 0, 0.5));
  transform: skewX(-4deg);
}

.bigcta__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--dim);
  transition-delay: 0.2s;
}

.bigcta .actions {
  transition-delay: 0.3s;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 28px;
  background: rgba(12, 10, 16, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--fg);
  text-decoration: none;
}

.nav__links {
  display: flex;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
}

/* Réseaux sociaux dans la nav — visibles en permanence */
.nav__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__social-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.nav__soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--fg);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.nav__soc svg { width: 17px; height: 17px; }
.nav__soc:hover,
.nav__soc:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(242, 106, 27, 0.08);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .nav__social-lbl { display: none; }
}

.nav__link {
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 200ms ease;
  /* Zone tactile ≥44px sans changer le rendu visuel */
  padding: 15px 4px;
  margin: -15px -4px;
}
@media (max-width: 480px) {
  .nav { gap: 10px; padding: 12px 16px; }
  .nav__links { gap: 13px; letter-spacing: 0.07em; font-size: 10.5px; }
}

.nav__link {
  background: linear-gradient(var(--gold), var(--gold)) left bottom / 0% 1px no-repeat;
  transition: color 0.2s ease, background-size 0.28s ease;
  padding-bottom: 3px;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--gold);
  background-size: 100% 1px;
}

.nav__link--active {
  color: var(--gold);
}

.nav__link--active:hover,
.nav__link--active:focus-visible {
  color: var(--gold);
}

/* ---------- HEADER ---------- */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 34px 20px 30px;
  border-bottom: 1px solid var(--line);
}

/* Hero 3D — la scène flotte derrière le wordmark */
.header--3d {
  position: relative;
  min-height: min(74vh, 720px);
  justify-content: flex-end;
  padding-bottom: clamp(40px, 9vh, 96px);
  overflow: hidden;
  /* FOND = l'image pirate 93 (galion + éclipse + grille synthwave) */
  background:
    linear-gradient(180deg, rgba(12, 10, 16, 0.42) 0%, rgba(12, 10, 16, 0.10) 26%, rgba(12, 10, 16, 0.30) 66%, rgba(12, 10, 16, 0.82) 100%),
    url("assets/hero-pirate.webp") center 26.8% / cover no-repeat #0C0C0C;
}

/* lueur d'horizon animée derrière la scène */
.header--3d::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 10%;
  height: 34%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(60% 100% at 50% 100%, rgba(242, 106, 27, 0.30), transparent 70%);
  filter: blur(34px);
  animation: bp-horizon 7s ease-in-out infinite;
}

@keyframes bp-horizon {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}

/* Bandeau multicolore GTA — écho des couleurs du spinner de la wait page */
.header--3d::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px; z-index: 3; pointer-events: none;
  background: linear-gradient(90deg,
    #35e0e6 0 20%, #ff4fa3 20% 40%, #ffd23f 40% 60%, #7be06b 60% 80%, var(--gold) 80% 100%);
}

.header--3d > *:not(.header__canvas):not(.header__scrim):not(.header__grid):not(.header__stars):not(.header__pearl):not(.header__comet):not(.header__blason) {
  position: relative;
  z-index: 2;
}

/* Ciel étoilé — deux couches de points, la 2e scintille en décalé */
.header__stars {
  position: absolute;
  inset: 0 0 30% 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 22px 34px, rgba(242, 232, 216, 0.85), transparent 55%),
    radial-gradient(1px 1px at 130px 90px, rgba(242, 232, 216, 0.6), transparent 55%),
    radial-gradient(1.5px 1.5px at 250px 50px, rgba(180, 170, 220, 0.7), transparent 55%),
    radial-gradient(1px 1px at 320px 140px, rgba(242, 232, 216, 0.5), transparent 55%),
    radial-gradient(1px 1px at 70px 180px, rgba(180, 170, 220, 0.55), transparent 55%);
  background-size: 230px 150px;
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent);
  mask-image: linear-gradient(180deg, #000 62%, transparent);
}
.header__stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 80px 60px, rgba(242, 232, 216, 0.9), transparent 55%),
    radial-gradient(1px 1px at 200px 120px, rgba(242, 232, 216, 0.65), transparent 55%),
    radial-gradient(1.5px 1.5px at 340px 30px, rgba(255, 210, 74, 0.7), transparent 55%),
    radial-gradient(1px 1px at 160px 200px, rgba(180, 170, 220, 0.6), transparent 55%);
  background-size: 270px 175px;
  animation: bp-twinkle 3.4s ease-in-out infinite alternate;
}
@keyframes bp-twinkle {
  from { opacity: 0.25; }
  to   { opacity: 1; }
}

/* L'ÉCLIPSE — la perle noire masque le soleil au point de fuite :
   disque sombre massif + anneau de feu + couronne orange/violette */
.header__pearl {
  position: absolute;
  left: 50%;
  bottom: 22%;
  width: clamp(200px, 30vw, 330px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #16121c 0%, #0a080d 72%);
  box-shadow:
    0 0 0 2px rgba(255, 210, 74, 0.95),
    0 0 30px 6px rgba(255, 180, 0, 0.7),
    0 0 120px 34px rgba(242, 106, 27, 0.48),
    0 0 260px 120px rgba(106, 90, 205, 0.30);
}
.header__pearl::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  box-shadow: 0 0 38px 10px rgba(255, 180, 0, 0.4);
  animation: bp-corona 4.5s ease-in-out infinite alternate;
}
@keyframes bp-corona {
  from { opacity: 0.45; }
  to   { opacity: 1; }
}

/* Étoile filante — traverse le ciel toutes les ~9 s */
.header__comet {
  position: absolute;
  top: 14%;
  left: -10%;
  width: 130px;
  height: 2px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(242, 232, 216, 0.9));
  border-radius: 2px;
  opacity: 0;
  transform: rotate(9deg);
  animation: bp-comet 9s linear infinite;
}
@keyframes bp-comet {
  0%   { opacity: 0; transform: translate(0, 0) rotate(9deg); }
  3%   { opacity: 0.9; }
  11%  { opacity: 0; transform: translate(72vw, 12vh) rotate(9deg); }
  100% { opacity: 0; transform: translate(72vw, 12vh) rotate(9deg); }
}

@media (prefers-reduced-motion: reduce) {
  .header__stars::after { animation: none; opacity: 0.7; }
  .header__pearl::after { animation: none; opacity: 0.8; }
  .header__comet { display: none; }
}

/* Grille rétro 3D — sol synthwave qui défile vers l'horizon */
.header__grid {
  position: absolute;
  left: -22%;
  right: -22%;
  bottom: -14%;
  height: 64%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  perspective: 420px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%);
  mask-image: linear-gradient(180deg, transparent, #000 30%);
}
.header__grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -60%;
  height: 240%;
  background:
    repeating-linear-gradient(90deg, rgba(106, 90, 205, 0.42) 0 1.5px, transparent 1.5px 46px),
    repeating-linear-gradient(0deg, rgba(106, 90, 205, 0.34) 0 1.5px, transparent 1.5px 46px);
  transform-origin: 50% 0;
  transform: rotateX(62deg) translateY(0);
  animation: bp-grid-run 3s linear infinite;
}
@keyframes bp-grid-run {
  to { transform: rotateX(62deg) translateY(46px); }
}
@media (prefers-reduced-motion: reduce) {
  .header__grid::before { animation: none; }
}

.header__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* voile radial pour la lisibilité du wordmark */
.header__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(60% 52% at 50% 50%, rgba(12, 10, 16, 0.62), transparent 78%);
}

.header__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg);
}

.header__title {
  position: relative;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(46px, 9vw, 104px);
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-align: center;
  /* traitement « poster GTA » — or chromé avec reflet qui balaie */
  background: linear-gradient(100deg, #F26A1B 0%, #FFB400 26%, #FFD24A 40%, #FFF6D6 48%, #FFD24A 56%, #FFB400 72%, #F26A1B 100%);
  background-size: 260% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 2px #0C0C0C;
  filter: drop-shadow(3px 4px 0 rgba(0, 0, 0, 0.55)) drop-shadow(0 0 18px rgba(106, 90, 205, 0.4));
  transform: skewX(-4deg);
  /* le reflet chromé balaie lentement les lettres */
  animation: bp-goldshine 5.5s linear infinite;
}

/* GLITCH cyan + rose PERMANENT (tranches décalées) */
@media (prefers-reduced-motion: no-preference) {
  .header__title::before,
  .header__title::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    z-index: -1;
    background: none;
    -webkit-text-stroke: 0;
    pointer-events: none;
  }
  .header__title::before {
    color: #35e0e6;
    -webkit-text-fill-color: #35e0e6;
    opacity: 0.85;
    animation: bp-glitch-a 0.9s steps(2, end) infinite;
  }
  .header__title::after {
    color: #ff4fa3;
    -webkit-text-fill-color: #ff4fa3;
    opacity: 0.85;
    animation: bp-glitch-b 0.9s steps(2, end) infinite reverse;
  }
}
@keyframes bp-glitch-a {
  0%   { clip-path: inset(12% 0 76% 0); transform: translate(-4px, -2px); }
  25%  { clip-path: inset(56% 0 26% 0); transform: translate(-3px, 1px); }
  50%  { clip-path: inset(28% 0 58% 0); transform: translate(-5px, 0); }
  75%  { clip-path: inset(78% 0 6% 0);  transform: translate(-2px, 2px); }
  100% { clip-path: inset(44% 0 42% 0); transform: translate(-4px, -1px); }
}
@keyframes bp-glitch-b {
  0%   { clip-path: inset(64% 0 22% 0); transform: translate(4px, 2px); }
  25%  { clip-path: inset(8% 0 80% 0);  transform: translate(3px, -1px); }
  50%  { clip-path: inset(50% 0 36% 0); transform: translate(5px, 1px); }
  75%  { clip-path: inset(20% 0 66% 0); transform: translate(2px, -2px); }
  100% { clip-path: inset(70% 0 14% 0); transform: translate(4px, 0); }
}
@keyframes bp-violet-glow {
  from { filter: drop-shadow(3px 4px 0 rgba(0, 0, 0, 0.55)) drop-shadow(0 0 13px rgba(106, 90, 205, 0.42)); }
  to   { filter: drop-shadow(3px 4px 0 rgba(0, 0, 0, 0.55)) drop-shadow(0 0 32px rgba(123, 102, 235, 0.85)); }
}
@media (prefers-reduced-motion: reduce) {
  .header__title {
    animation: none;
    filter: drop-shadow(2px 3px 0 rgba(0, 0, 0, 0.6)) drop-shadow(0 0 22px rgba(106, 90, 205, 0.55));
  }
}

/* Reflet chromé GTA — un highlight lumineux balaie le or (chargement GTA V) */
@keyframes bp-goldshine {
  0%   { background-position: 220% 0; }
  100% { background-position: -80% 0; }
}

/* MISSION ACCOMPLIE — plein écran, une fois par session */
.mission {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  background: radial-gradient(62% 52% at 50% 50%, rgba(6, 4, 9, 0.88), rgba(6, 4, 9, 0.97));
  opacity: 0;
  pointer-events: none;
}
.mission.is-on { animation: bp-mission 3.5s ease forwards; }
@keyframes bp-mission {
  0% { opacity: 0; }
  9% { opacity: 1; }
  84% { opacity: 1; }
  100% { opacity: 0; }
}
.mission__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 9vw, 108px);
  line-height: 0.95;
  text-align: center;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 2px #0C0C0C;
  filter: drop-shadow(3px 4px 0 rgba(0, 0, 0, 0.55));
  transform: skewX(-4deg);
}
.mission.is-on .mission__title {
  animation: bp-mission-pop 0.55s cubic-bezier(0.2, 1.4, 0.4, 1) both;
}
@keyframes bp-mission-pop {
  from { transform: skewX(-4deg) scale(0.82); }
  to   { transform: skewX(-4deg) scale(1); }
}
.mission__sub {
  font-family: var(--mono);
  font-size: clamp(10px, 1.6vw, 13px);
  letter-spacing: 0.3em;
  text-align: center;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}
@media (prefers-reduced-motion: reduce) {
  .mission { display: none; }
}

/* ---------- ACCUEIL — « il est HH:MM, c'est ouvert » ---------- */
.welcome {
  position: relative;
  text-align: center;
  padding: 30px 20px 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(123, 224, 107, 0.05), transparent 80%);
}
.welcome__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7be06b;
  box-shadow: 0 0 14px rgba(123, 224, 107, 0.8);
  animation: bp-dot-pulse 1.8s ease-in-out infinite;
  margin-bottom: 10px;
}
@keyframes bp-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.82); }
}
.welcome__line {
  font-family: var(--cond);
  font-weight: 600;
  font-size: clamp(19px, 3.4vw, 31px);
  letter-spacing: 0.08em;
  color: var(--fg);
}
.welcome__line #welcome-clock {
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.welcome__open {
  color: #7be06b;
  text-shadow: 0 0 16px rgba(123, 224, 107, 0.45);
}
.welcome__sub {
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
  .welcome__dot { animation: none; }
}

/* ---------- LE QUARTIER EN PARLE — avis + réseaux ---------- */
.buzz {
  max-width: 1320px;
  margin: 0 auto;
  padding: 70px 24px 60px;
  text-align: center;
}
.buzz__kicker {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 10px;
}
.buzz__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 46px);
  letter-spacing: 0.06em;
  margin-bottom: 34px;
}
.buzz__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  text-align: left;
}
.buzz__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  background: linear-gradient(180deg, rgba(242, 106, 27, 0.05), rgba(0, 0, 0, 0));
  border: 1px solid var(--line);
  border-radius: 14px 0 14px 14px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  text-decoration: none;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.buzz__card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
  background: linear-gradient(45deg, transparent calc(50% - 1.5px), rgba(242, 106, 27, 0.55) calc(50% - 0.5px), rgba(242, 106, 27, 0.55) calc(50% + 0.5px), transparent calc(50% + 1.5px));
}
.buzz__card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.buzz__ic {
  width: 30px;
  height: 30px;
  color: var(--gold);
}
.buzz__k {
  font-family: var(--label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
}
.buzz__v {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}
.buzz__cta {
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
}

/* Bento « dis-le au quartier » — 1 carte primaire (TikTok) + 2 secondaires */
.buzz__bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  text-align: left;
}
@media (min-width: 720px) {
  .buzz__bento {
    grid-template-columns: 1.25fr 1fr;
    align-items: stretch;
  }
  .buzz__card--lead {
    grid-row: 1 / 3;
  }
}
.buzz__card--lead {
  justify-content: center;
  gap: 14px;
  padding: 34px 32px;
}
.buzz__card--lead .buzz__ic {
  width: 40px;
  height: 40px;
}
.buzz__card--lead .buzz__v {
  font-size: 15px;
  max-width: 34ch;
}
/* Le @ traité en gros — typo signature */
.buzz__handle {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--gold);
  word-break: break-word;
}
.buzz__handle--sm {
  font-size: clamp(19px, 2.4vw, 26px);
}
.buzz__card--mini {
  gap: 9px;
}

.header__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--dim);
  text-align: center;
}

/* ---------- LE PONT (hero cinématique) ---------- */
@keyframes bp-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.09) translate(-1.5%, -2%); }
}

@keyframes bp-flicker {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.deck {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #100c16;
}

.deck__img {
  width: 100%;
  height: min(72vh, 640px);
  object-fit: cover;
  display: block;
  transform-origin: 60% 40%;
  animation: bp-kenburns 26s ease-in-out infinite alternate;
}

/* halo lanternes qui respire */
.deck__flicker {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    60% 50% at 68% 30%,
    rgba(242, 106, 27, 0.12),
    transparent 70%
  );
  animation: bp-flicker 4.5s ease-in-out infinite;
}

.deck__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(14, 9, 5, 0.5),
    transparent 28%,
    transparent 62%,
    rgba(14, 9, 5, 0.88)
  );
}

.deck__caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* ---------- CARTE AU TRÉSOR INTÉGRÉE ---------- */
.mapembed {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #100c16;
}

.mapembed__head {
  max-width: 1320px;
  margin: 0 auto;
  padding: 44px 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mapembed__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 4.5vw, 42px);
  letter-spacing: 0.06em;
}

.mapembed iframe {
  display: block;
  width: 100%;
  height: min(92vh, 860px);
  border: 0;
}

@media (max-width: 719px) {
  .mapembed iframe { height: 78vh; }
}

/* ---------- TICKER VITRINE ---------- */
@keyframes bp-marq {
  to { transform: translateX(-50%); }
}

.shopticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #100c16;
  padding: 11px 0;
}

.shopticker__track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
  animation: bp-marq 32s linear infinite;
}

.shopticker__track span { flex: none; }
.shopticker__track b { color: var(--gold); font-weight: 500; }
.shopticker__track .tick { font-size: 8px; vertical-align: 1px; opacity: 0.85; }

/* Le ticker se met en pause quand on le lit */
.shopticker:hover .shopticker__track {
  animation-play-state: paused;
}

/* Photo dans les tuiles hero */
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(1.02) contrast(1.05) hue-rotate(-4deg);
  transition: transform 900ms ease;
}

.hero__tile:hover .hero__img {
  transform: scale(1.05);
}

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
}

.hero__tile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #161120;
  cursor: pointer;
  transition: filter 350ms ease;
  border: none;
  padding: 0;
  width: 100%;
  display: block;
  color: inherit;
  text-align: left;
  font: inherit;
}

.hero__tile:hover,
.hero__tile:focus-visible {
  filter: brightness(1.18);
}

.hero__tile:focus-visible {
  outline-offset: -3px;
}

/* diagonal-stripe raster placeholder (drop real <img> in later) */
.hero__raster {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    #171221 0 2px,
    #0e0e12 2px 22px
  );
  transition: transform 900ms ease;
}

.hero__raster--gray {
  filter: grayscale(1);
}

.hero__tile:hover .hero__raster {
  transform: scale(1.04);
}

.hero__caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--muted);
}

/* ---------- MAIN / STOCK SECTIONS ---------- */
.cats {
  max-width: 1320px;
  margin: 0 auto;
  padding: 50px 20px 20px;
}
.cats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}
.cat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  min-height: 104px;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #141018;
  text-decoration: none;
  transition: border-color .25s ease, transform .2s ease, background .25s ease;
}
.cat:hover { transform: translateY(-4px); border-color: var(--gold); background: #17121c; }
.cat__n {
  font-family: var(--display); font-weight: 400; font-size: clamp(20px, 2.6vw, 27px);
  letter-spacing: .02em; color: var(--fg); line-height: 1;
}
.cat__n b { color: var(--danger); font-weight: 400; font-size: .6em; letter-spacing: .1em; margin-left: 4px; }
.cat__d {
  font-family: var(--label); font-size: 11px; letter-spacing: .06em; color: var(--muted);
}
.cat__arr {
  position: absolute; top: 20px; right: 20px; width: 18px; height: 18px;
  stroke: var(--muted); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s ease, stroke .2s ease;
}
.cat:hover .cat__arr { transform: translateX(4px); stroke: var(--gold); }
.cat--all {
  border-color: rgba(242,106,27,.45); border-style: dashed;
  background: radial-gradient(120% 160% at 0% 0%, rgba(242,106,27,.12), transparent 60%), #16100c;
}
.cat--all .cat__n { color: var(--gold); }

.main {
  padding: 0 20px;
}

.stock {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 0 30px;
}

.stock--first {
  padding-top: 90px;
}

.stock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

/* ---------- Emblèmes 3D des catégories ---------- */
@keyframes bp-float3d {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
}

.stock__lead {
  display: flex;
  align-items: center;
  gap: 18px;
  perspective: 500px;
}

.stock__icon {
  width: 62px;
  height: 62px;
  flex: none;
  transition: transform 450ms ease;
  transform-style: preserve-3d;
}

.stock__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  animation: bp-float3d 5.5s ease-in-out infinite;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.55));
}

.stock__lead:hover .stock__icon,
.stock__lead:focus-within .stock__icon {
  transform: rotateX(14deg) rotateY(-18deg) scale(1.12);
}

/* léger décalage pour que tout ne flotte pas en même temps */
section.stock:nth-of-type(2) .stock__icon svg { animation-delay: 0.9s; }
section.stock:nth-of-type(3) .stock__icon svg { animation-delay: 1.8s; }
section.stock:nth-of-type(4) .stock__icon svg { animation-delay: 2.7s; }
section.stock:nth-of-type(5) .stock__icon svg { animation-delay: 3.6s; }
section.stock:nth-of-type(6) .stock__icon svg { animation-delay: 4.5s; }

@media (max-width: 719px) {
  .stock__icon { width: 46px; height: 46px; }
  .stock__lead { gap: 12px; }
}

.stock__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 4.5vw, 42px);
  letter-spacing: 0.06em;
}

/* Écriteau manuscrit — comme les étiquettes en boutique */
.stock__tag {
  font-family: var(--script);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--gold);
  transform: rotate(-2deg);
}

.stock__tag--drop {
  color: var(--fg);
}

.stock__note {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--dim);
  line-height: 1.9;
}

/* Bento : héros 2×2 + tuiles larges, remplissage dense (pas de trous) */
.stock__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}
@media (min-width: 640px) {
  .stock__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 980px) {
  .stock__grid { grid-template-columns: repeat(4, 1fr); }
}

.card--hero {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.card--hero .card__label {
  font-size: 15px;
  letter-spacing: 0.14em;
  padding: 10px 16px;
}
.card--wide {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 120px;
}

/* ---------- PRODUCT CARDS ---------- */
.card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  /* panneau de jeu : coin haut-droit coupé, le reste arrondi */
  border-radius: 14px 0 14px 14px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  border: 1px solid rgba(242, 106, 27, 0.14);
  background: #141018;
  /* drop-shadow suit la découpe (box-shadow serait rognée par le clip) */
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.5));
  /* tilt 3D piloté par JS (vars --rx/--ry), lift au survol (--lift) */
  transform: perspective(720px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0px));
  transition: transform 200ms ease-out, filter 300ms ease, border-color 300ms ease;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

/* soudure néon sur la découpe du coin */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(45deg, transparent calc(50% - 1.5px), rgba(242, 106, 27, 0.55) calc(50% - 0.5px), rgba(242, 106, 27, 0.55) calc(50% + 0.5px), transparent calc(50% + 1.5px));
}

.card:hover {
  --lift: -6px;
  border-color: rgba(242, 106, 27, 0.5);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 12px rgba(242, 106, 27, 0.24));
}

/* Photo produit — filtre chaud unifiant (registre lanterne) */
.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* packshots produits lumineux — catalogue */
  filter: saturate(1.06) contrast(1.02);
  transition: transform 450ms ease, filter 450ms ease;
}

.card:hover .card__img {
  transform: scale(1.05);
  filter: saturate(1.14) contrast(1.04) brightness(1.04);
}

/* LA CALE (alcool) — pas de packshot, photos boutique → on garde le moody sombre */
#cale .card__img {
  filter: brightness(0.62) saturate(1) contrast(1.05) hue-rotate(-4deg);
}
#cale .card:hover .card__img {
  filter: brightness(0.85) saturate(1.08) contrast(1.03);
}

/* voile bas pour la lisibilité des étiquettes */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 6, 0.05),
    transparent 32%,
    rgba(10, 8, 6, 0.78) 88%
  );
}

.card__label {
  position: relative;
  z-index: 1;
  font-family: var(--label);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
  /* plaque d'inventaire : barre orange + fond sombre, inclinée comme les grands titres */
  background: rgba(10, 7, 16, 0.82);
  border-left: 3px solid var(--gold);
  padding: 6px 10px 5px;
  margin-left: 2px;
  transform: skewX(-6deg);
}

/* « le rayon continue en boutique » — fine bande discrète (pas une carte) */
.card--more {
  grid-column: 1 / -1;
  aspect-ratio: auto;
  min-height: 0;
  /* on annule tout ce qui vient de .card (découpe, tilt, ombre) */
  clip-path: none;
  filter: none;
  transform: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  text-decoration: none;
  padding: 10px 18px;
  border: 1px dashed rgba(242, 106, 27, 0.28);
  background: transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.card--more::after,
.card--more::before { display: none; }
.card--more__label {
  font-family: var(--label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1.4;
  color: var(--muted);
  text-transform: uppercase;
}
.card--more__label b {
  display: inline;
  font-family: var(--label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-left: 7px;
}
.card--more__arr {
  width: 17px;
  height: 17px;
  flex: none;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}
.card--more:hover {
  border-color: rgba(242, 106, 27, 0.6);
  background: rgba(242, 106, 27, 0.05);
  transform: none;
}
.card--more:hover .card--more__arr {
  transform: translateX(4px);
}


/* LE BUTIN — premium "drop" cards */
.card--butin {
  background: repeating-linear-gradient(
    135deg,
    #1d1726 0 2px,
    #111116 2px 20px
  );
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.75);
  border: 1px solid #272033;
}

.card--butin:hover {
  --lift: -6px;
  filter: brightness(1.14);
}

.card--butin .card__label {
  color: var(--fg);
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding: 46px 20px 54px;
}

.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__blason {
  width: clamp(92px, 12vw, 112px);
  height: auto;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 18px rgba(242, 106, 27, 0.22));
}

.footer__brand {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2em;
}

.footer__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--dim);
  line-height: 1.9;
}

/* ---------- CTA BUTTONS ---------- */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: filter 200ms ease, background 200ms ease, color 200ms ease,
    box-shadow 250ms ease, transform 120ms ease;
}

.btn--gold:hover,
.btn--gold:focus-visible {
  box-shadow: 0 0 26px rgba(242, 106, 27, 0.4);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  /* button-35 : l'anneau apparaît, l'ombre disparaît */
  box-shadow: var(--gold) 0 0 0 2px, transparent 0 0 0 0;
}

.btn:active {
  transform: translateY(1px);
}

.btn--gold {
  color: var(--ink);
  background-color: var(--gold);
  /* reflets glossy façon Uiverse button-90, adaptés à l'orange marque */
  background-image:
    radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%),
    radial-gradient(66% 87% at 26% 20%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0 14px 26px rgba(242, 106, 27, 0.26), 0 2px 6px rgba(0, 0, 0, 0.32);
}

.btn--gold:hover {
  filter: brightness(1.08);
  box-shadow: 0 16px 30px rgba(242, 106, 27, 0.42), 0 2px 8px rgba(0, 0, 0, 0.35);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(242, 232, 216, 0.22);
  color: var(--fg);
  box-shadow: rgba(0, 0, 0, 0.32) 0 6px 18px;
}

.btn--ghost:hover {
  background: transparent;
  border-color: transparent;
  color: var(--gold);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- INFOS & HORAIRES ---------- */
.infos {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 0 30px;
}

.infos__kicker {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.infos__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 4.5vw, 42px);
  letter-spacing: 0.06em;
  margin-bottom: 26px;
}

.infos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.info-card {
  background: #161120;
  border: 1px solid var(--line);
  padding: 22px;
}

.info-card__h {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Bloc « toujours ouvert » — remplace le tableau 7×24h/24 (trop générique) */
.always {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0 2px;
}
.always__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #7be06b;
}
.always__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7be06b;
  box-shadow: 0 0 12px rgba(123, 224, 107, 0.85);
  animation: bp-dot-pulse 1.8s ease-in-out infinite;
}
.always__big {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(60px, 11vw, 110px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  background: linear-gradient(100deg, #F26A1B, #FFB400 40%, #FFD24A 52%, #FFB400 64%, #F26A1B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 2px #0C0C0C;
  filter: drop-shadow(2px 3px 0 rgba(0, 0, 0, 0.5));
  transform: skewX(-4deg);
}
.always__big em {
  font-style: normal;
  -webkit-text-fill-color: var(--violet);
}
.always__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.always__facts {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.always__facts li {
  position: relative;
  padding-left: 22px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--fg);
  line-height: 1.4;
  text-wrap: pretty;
}
.always__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hours {
  list-style: none;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.hours li:last-child {
  border-bottom: none;
}

.hours .day {
  color: var(--fg);
}

.hours .time {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.addr {
  font-size: 14px;
  line-height: 1.9;
  color: var(--fg);
}

/* Bloc « le port » — adresse traitée comme la position d'un navire */
.port__addr {
  font-family: var(--cond);
  font-weight: 600;
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--fg);
}
.port__addr span { color: var(--gold); }
.port__coord {
  margin-top: 9px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.port__anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.port__anchor {
  position: relative;
  padding: 7px 13px 7px 25px;
  font-family: var(--label);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(242, 106, 27, 0.05);
}
.port__anchor::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(242, 106, 27, 0.6);
}

.addr__label {
  display: block;
  margin: 18px 0 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}

.pay-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-note {
  margin-top: 6px;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--dim);
  line-height: 1.5;
}

.pay-chip {
  border: 1px solid rgba(242, 106, 27, 0.28);
  padding: 8px 13px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg);
  background: rgba(242, 106, 27, 0.04);
}

.info-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.map-embed {
  border: 1px solid var(--line);
  line-height: 0;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  /* Rend la carte Google sombre pour coller à la DA */
  filter: grayscale(1) contrast(1.05) brightness(0.85) invert(0.92)
    hue-rotate(180deg);
}

@media (min-width: 720px) {
  .infos__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .infos__map {
    grid-column: 1 / -1;
  }
}

/* ---------- FOOTER (colonnes contact) ---------- */
.footer__grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px 40px;
}

.footer__col--brand { max-width: 340px; }

.footer__tag {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

.footer__col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Navigation de pied */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a,
.footer__link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  transition: color 200ms ease;
  width: fit-content;
}
.footer__link { line-height: 1.6; margin-bottom: 12px; }
.footer__nav a:hover,
.footer__link:hover { color: var(--gold); }

/* Statut ouvert */
.footer__open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #7be06b;
}
.footer__open-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7be06b;
  box-shadow: 0 0 10px rgba(123, 224, 107, 0.8);
  animation: bp-dot-pulse 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .footer__open-dot { animation: none; }
}

/* Réseaux — icône + label */
.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__soc {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 16px 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  font-family: var(--label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg);
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}
.footer__soc svg { width: 18px; height: 18px; color: var(--gold); transition: color .2s ease; }
.footer__soc:hover {
  border-color: var(--gold);
  background: rgba(242, 106, 27, 0.06);
  transform: translateX(3px);
}
.footer__handle {
  display: block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.footer__bottom {
  max-width: 1320px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--dim);
  line-height: 1.8;
}
.footer__credit {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
}
.footer__credit:hover { color: var(--gold); }

@media (min-width: 720px) {
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
    align-items: start;
  }
}

/* ---------- STICKY ACTION BAR (mobile) ---------- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(14, 9, 5, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}

.sticky-bar .btn {
  flex: 1;
  justify-content: center;
  min-height: 48px;
}

.btn {
  min-height: 44px;
}

body {
  padding-bottom: 64px;
}

@media (min-width: 720px) {
  .sticky-bar {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}

/* Décale les ancres sous la nav sticky */
[id] {
  scroll-margin-top: 76px;
}

/* ============================================================
   TEASER CARTE AU TRÉSOR (accueil)
   ============================================================ */
@keyframes bp-sweep-home {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes bp-xpulse {
  0%, 100% { transform: rotate(45deg) scale(1); }
  50% { transform: rotate(45deg) scale(1.16); }
}

@keyframes bp-pulse {
  0% { transform: scale(0.5); opacity: 0.85; }
  100% { transform: scale(3.2); opacity: 0; }
}

.tresor {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(130% 100% at 50% 30%, #0f0b15 0%, #0a070f 60%, #070509 100%);
  padding: 76px 20px 80px;
}

.tresor__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 220px 220px;
  pointer-events: none;
}

.tresor__sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1800px;
  height: 1800px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(242, 106, 27, 0.14),
    rgba(242, 106, 27, 0) 30%,
    transparent 100%
  );
  animation: bp-sweep-home 9s linear infinite;
  will-change: transform;
  pointer-events: none;
}

.tresor__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.tresor__x {
  position: relative;
  width: 34px;
  height: 34px;
}

.tresor__x-ring {
  position: absolute;
  inset: -11px;
  border-radius: 50%;
  border: 1px dashed rgba(242, 106, 27, 0.6);
  animation: bp-pulse 3s ease-out infinite;
}

.tresor__x-arm {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  margin-top: -1.5px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(242, 106, 27, 0.9);
}

.tresor__x-inner {
  position: absolute;
  inset: 0;
  animation: bp-xpulse 3s ease-in-out infinite;
}

.tresor__x-inner .tresor__x-arm:last-child {
  transform: rotate(90deg);
}

.tresor__kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: var(--gold);
}

.tresor__title {
  font-family: "Anton", var(--sans);
  font-weight: 400;
  font-size: clamp(38px, 8vw, 84px);
  line-height: 0.9;
  color: var(--gold);
  text-shadow: 0 6px 30px rgba(242, 106, 27, 0.3);
}

.tresor__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--muted);
  line-height: 2;
  max-width: 60ch;
}

/* ============================================================
   PAGES SECONDAIRES (Le Butin · Le Capitaine · Infos)
   ============================================================ */

/* ---------- Hero de page ---------- */
.phero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px 40px;
}

.phero__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
}

.phero__title {
  font-family: "Anton", var(--sans);
  font-weight: 400;
  font-size: clamp(56px, 13vw, 160px);
  line-height: 0.86;
  margin-top: 14px;
  letter-spacing: 0.01em;
}

.phero__note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--dim);
  margin-top: 16px;
}

/* ---------- Grille drops (Le Butin) ---------- */
.drops {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 24px 0;
}

.drops__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.drop {
  position: relative;
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(
    135deg,
    #151020 0 2px,
    #0e0a14 2px 20px
  );
  border: 1px solid #201a29;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.6);
  transition: transform 350ms ease, filter 350ms ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.drop:hover {
  transform: translateY(-7px);
  filter: brightness(1.14);
}

.drop__name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #eaeaea;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  padding: 3px 7px;
}

.badge--fill {
  color: var(--ink);
  background: var(--gold);
}

.badge--line {
  color: var(--gold);
  border: 1px solid var(--gold);
}

/* ============================================================
   COUCHE GTA PIRATE — néon, étoiles de recherche, toast de zone
   ============================================================ */

/* Néon rose du header — réplique du néon de la vraie boutique */
@keyframes bp-neon-flicker {
  0%, 100% { opacity: 1; }
  41% { opacity: 1; }
  42% { opacity: 0.55; }
  43% { opacity: 1; }
  45% { opacity: 0.75; }
  46% { opacity: 1; }
  81% { opacity: 1; }
  82% { opacity: 0.6; }
  83% { opacity: 1; }
}

.neon-sign {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: var(--neon);
  text-shadow:
    0 0 6px rgba(255, 79, 163, 0.9),
    0 0 18px rgba(255, 79, 163, 0.5),
    0 0 42px rgba(255, 79, 163, 0.3);
  border: 1px solid rgba(255, 79, 163, 0.55);
  border-radius: 4px;
  padding: 8px 16px;
  box-shadow:
    0 0 10px rgba(255, 79, 163, 0.25),
    inset 0 0 14px rgba(255, 79, 163, 0.12);
  animation: bp-neon-flicker 9s linear infinite;
}

/* Étoiles de recherche — Le Butin */
.wanted {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -8px 0 22px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--dim);
}

.wanted__stars {
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(242, 106, 27, 0.55);
}

.wanted__stars .off {
  color: var(--line);
  text-shadow: none;
}

/* Toast de zone — comme l'entrée dans un quartier de GTA */
.zone-toast {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 95;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
}

.zone-toast.is-on {
  animation: bp-zone 2.6s ease forwards;
}

@keyframes bp-zone {
  0% { opacity: 0; transform: translateY(14px); }
  8% { opacity: 1; transform: translateY(0); }
  82% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(0); }
}

.zone-toast__eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-shadow: 0 1px 0 #000;
  margin-bottom: 4px;
}

.zone-toast__name {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 4.5vw, 44px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  transform: skewX(-8deg);
  text-shadow:
    2px 2px 0 #000,
    0 0 24px rgba(0, 0, 0, 0.8);
}

@media (max-width: 720px) {
  .zone-toast { left: 16px; bottom: 92px; } /* au-dessus de la sticky-bar */
}

@media (prefers-reduced-motion: reduce) {
  .neon-sign { animation: none; }
  .zone-toast, .zone-toast.is-on { display: none; }
}

/* ---------- Overline SECTEUR — en-tête de mission ---------- */
.stock__title[data-sector]::before {
  content: attr(data-sector);
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 7px;
}
/* barre dégradé lumineuse sous chaque titre de rayon */
.stock__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 13px;
  border-radius: 2px;
  background: var(--grad-logo);
  box-shadow: 0 0 16px rgba(242, 106, 27, 0.55);
}

/* Étiquette manuscrite qui s'anime quand on survole le rayon */
.stock__tag {
  transition: transform 0.3s ease, color 0.3s ease;
}

.stock:hover .stock__tag {
  transform: rotate(-4deg) scale(1.05);
  color: var(--gold);
}

/* ---------- Drop « + en boutique » (Butin) ---------- */
.drop--more {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed rgba(242, 106, 27, 0.5);
  background: rgba(242, 106, 27, 0.05);
}

.drop--more .drop__name {
  color: var(--gold);
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.7;
}

/* ---------- Bande « ET BIEN PLUS EN BOUTIQUE » ---------- */
.instore {
  position: relative;
  margin: 70px auto 0;
  max-width: 1320px;
  padding: 64px 24px 60px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(-45deg, rgba(242,106,27,0.05) 0 2px, transparent 2px 12px),
    radial-gradient(60% 80% at 50% 50%, rgba(242,106,27,0.08), transparent 72%);
}

.instore__kicker {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--muted);
}

.instore__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 9vw, 116px);
  line-height: 0.92;
  margin: 14px 0 6px;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 2px #0C0C0C;
  filter: drop-shadow(3px 4px 0 rgba(0, 0, 0, 0.5));
  transform: skewX(-4deg);
}

.instore__sub {
  font-family: var(--label);
  font-size: clamp(11px, 1.8vw, 14px);
  letter-spacing: 0.16em;
  color: var(--fg);
  margin-top: 10px;
}

.instore__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.instore__tags span {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
}

/* ---------- La Cargaison — ce qu'on trouve (image + catégories) ---------- */
.cargo {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 1.4fr;
  gap: 26px;
  align-items: stretch;
}
.cargo__photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(242, 106, 27, 0.16);
  min-height: 320px;
}
.cargo__photo img,
.cargo__photo video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}
.cargo__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 8, 6, 0.6));
}
.cargo__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cargo__lead {
  font-family: var(--sans);
  font-size: clamp(15px, 2vw, 19px);
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 42ch;
}
/* Stats de bord — les chiffres qui posent la boutique */
.cargo__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin-bottom: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(115deg, rgba(242, 106, 27, 0.07), rgba(106, 90, 205, 0.06));
}
.cstat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--muted);
}
.cstat b {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--gold);
}

/* Familles de rayons — le manifeste rangé par cale */
.cargo__fam {
  margin-bottom: 16px;
}
.cargo__fam-t {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.cargo__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.ccat {
  font-family: var(--label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.ccat:hover { border-color: var(--gold); color: var(--gold); }
.ccat--18 { color: var(--danger); border-color: rgba(255, 61, 70, 0.5); }
.ccat--more { color: var(--gold); border-color: rgba(242, 106, 27, 0.5); border-style: dashed; }
.cargo__pay {
  margin-top: 22px;
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--muted);
}
@media (max-width: 720px) {
  .cargo { grid-template-columns: 1fr; }
  .cargo__photo { min-height: 220px; aspect-ratio: 16 / 10; }
}

/* Note sous NOS RAYONS — « le site n'est qu'un aperçu » */
.cats__note {
  font-family: var(--sans);
  font-size: clamp(14px, 1.9vw, 17px);
  color: var(--muted);
  line-height: 1.55;
  max-width: 64ch;
  margin: -4px 0 22px;
  text-wrap: pretty;
}
.cats__note strong { color: var(--gold); font-weight: 700; }

/* ---------- L'Arrivage — le mur d'import ---------- */
.arr__intro {
  font-family: var(--sans);
  font-size: clamp(14px, 1.9vw, 17px);
  color: var(--muted);
  line-height: 1.55;
  max-width: 64ch;
  margin: -4px 0 30px;
}
/* Bandeau défilant des vrais packshots import (les arrivages rares en images) */
.arr__reel {
  overflow: hidden;
  margin: 2px 0 30px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.arr__reel-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: bp-marq 42s linear infinite;
}
.arr__reel:hover .arr__reel-track { animation-play-state: paused; }
.arr__reel-item {
  position: relative;
  flex: none;
  width: 108px;
  height: 108px;
  border-radius: 14px 0 14px 14px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  border: 1px solid rgba(242, 106, 27, 0.18);
  background: #141018;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.arr__reel-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  z-index: 1;
  background: linear-gradient(45deg, transparent calc(50% - 1.2px), rgba(242, 106, 27, 0.5) calc(50% - 0.2px), rgba(242, 106, 27, 0.5) calc(50% + 0.2px), transparent calc(50% + 1.2px));
}
.arr__reel-item:hover { border-color: var(--gold); }
.arr__reel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .arr__reel-track { animation: none; }
}

.arr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
}
.arr__crate {
  position: relative;
  background: linear-gradient(180deg, rgba(242, 106, 27, 0.05), rgba(0, 0, 0, 0));
  border: 1px solid var(--line);
  border-radius: 14px 0 14px 14px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  padding: 20px 20px 22px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.arr__crate::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
  background: linear-gradient(45deg, transparent calc(50% - 1.5px), rgba(242, 106, 27, 0.55) calc(50% - 0.5px), rgba(242, 106, 27, 0.55) calc(50% + 0.5px), transparent calc(50% + 1.5px));
}
.arr__crate:hover {
  border-color: var(--gold-soft);
  transform: translateY(-3px);
}
.arr__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--fg);
  margin-bottom: 10px;
}
/* provenance — d'où vient le butin */
.arr__origins {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.arr__ori-lbl {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  color: var(--dim);
}
.arr__ori {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 2px 7px;
  border: 1px solid rgba(242, 106, 27, 0.35);
  border-radius: 999px;
  background: rgba(242, 106, 27, 0.06);
}
.arr__count {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.arr__count::before {
  content: "· ";
  color: var(--dim);
}
.arr__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(242, 106, 27, 0.7);
  flex: none;
}
/* Inventaire épuré — liste texte, plus un mur de pastilles */
.arr__flavs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: var(--muted);
}
.arr__flav {
  color: var(--muted);
  white-space: nowrap;
}
.arr__flav:not(:last-child)::after {
  content: "  ·  ";
  color: var(--dim);
  white-space: normal;
}
/* les pépites rares ressortent en or */
.arr__flav--rare {
  color: var(--gold);
  font-weight: 600;
}

/* ---------- LA CALE — carte-vitrine unique ---------- */
.cale-feature {
  position: relative;
  border-radius: 14px 0 14px 14px;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 2;
  max-height: 460px;
  transition: border-color 0.3s ease;
}
.cale-feature:hover { border-color: var(--gold-soft); }
.cale-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
  filter: saturate(1.05) brightness(0.98);
}
.cale-feature__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 26px 22px;
  background: linear-gradient(180deg, transparent, rgba(6, 4, 9, 0.92));
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cale-feature__kicker {
  font-family: var(--label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
}
.cale-feature__list {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg);
  line-height: 1.5;
  max-width: 62ch;
}
@media (max-width: 620px) {
  .cale-feature { aspect-ratio: 4 / 3; }
  .cale-feature__list { font-size: 11px; }
}
.cale-services {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-align: center;
}
.cale-services b {
  color: var(--danger);
  font-weight: 700;
}

/* ---------- La Cargaison — mur de marques ---------- */
.brands__wall {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(242, 106, 27, 0.04);
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.pill:hover {
  border-color: var(--gold-soft);
  color: var(--fg);
}

.pill--gold {
  color: var(--gold);
  border-color: rgba(242, 106, 27, 0.45);
  background: rgba(242, 106, 27, 0.08);
}

/* ---------- Carte au trésor — inclinaison 3D au survol ---------- */
.map3d {
  max-width: 1000px;
  margin: 46px auto 6px;
  text-align: center;
  perspective: 1200px;
}
.map3d__kicker {
  display: block;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
}
.map3d__stage {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(242, 106, 27, 0.18);
  will-change: transform;
}
.map3d__stage:hover { box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7); }
.map3d__img { display: block; width: 100%; height: auto; aspect-ratio: 1400 / 950; }
.map3d__gloss {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 0%), rgba(255, 240, 210, 0.22), transparent 46%);
  opacity: 0; transition: opacity 0.35s ease;
}
.map3d__stage:hover .map3d__gloss { opacity: 1; }
.map3d__cap {
  margin-top: 14px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
  .map3d__stage { transition: none; }
}

/* ---------- Le Capitaine ---------- */
.cap-hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 70px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.cap-hero__img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(
    135deg,
    #171221 0 2px,
    #0e0e12 2px 22px
  );
  filter: grayscale(1);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.cap-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.cap-hero__cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--fg);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

.cap-hero__title {
  font-family: "Anton", var(--sans);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.88;
  margin-top: 14px;
}

.cap-hero__body p {
  max-width: 46ch;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.75;
  color: #b8b8b8;
  text-wrap: pretty;
}

.cap-hero__body p:first-of-type {
  margin-top: 22px;
}

.chapters {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

/* cartes numérotées (style Uiverse, adapté DA Black Pearl) */
.capcard {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 100% 0, rgba(106, 90, 205, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(242, 106, 27, 0.045), rgba(0, 0, 0, 0));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.capcard:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
/* fond image tamisé derrière le texte des cartes */
.capcard__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  -webkit-mask-image: linear-gradient(200deg, #000 0%, rgba(0,0,0,0.45) 55%, transparent 92%);
  mask-image: linear-gradient(200deg, #000 0%, rgba(0,0,0,0.45) 55%, transparent 92%);
  filter: saturate(0.9);
  transition: opacity 0.35s ease;
}
.capcard:hover .capcard__bg { opacity: 0.5; }
.capcard > :not(.capcard__bg):not(.capcard__num) {
  position: relative;
  z-index: 1;
}
.capcard__num { z-index: 1; }
.capcard .capcard__text { text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8); }
.capcard__num {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--violet);
  color: var(--fg);
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 24px 26px;
  box-shadow: 0 8px 22px rgba(106, 90, 205, 0.35);
}
.capcard__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 16px;
}
.capcard__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.capcard__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.capcard__text {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 34ch;
  text-wrap: pretty;
}

/* ---------- Le Capitaine : manifeste concept ---------- */
/* ---------- Le Capitaine : le site vivant ---------- */
.living {
  max-width: 1320px;
  margin: 0 auto;
  padding: 70px 24px 0;
}

.living__head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 26px;
}

.living__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 720px) {
  .living__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.living__item {
  background: var(--bg);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.living__state {
  flex: none;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border: 1px solid #272033;
  color: var(--dim);
}

.living__state--done {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.living__item h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.living__item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 6px;
  text-wrap: pretty;
}

/* ---------- Bandeau vers la Wait Page ---------- */
.enter-wait {
  max-width: 1320px;
  margin: 70px auto 0;
  padding: 44px 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: center;
  justify-content: space-between;
  background:
    radial-gradient(120% 140% at 85% 10%, rgba(242, 106, 27, 0.08), transparent 60%),
    #0c0912;
}

.enter-wait__txt h3 {
  font-family: "Anton", var(--sans);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.02em;
}

.enter-wait__txt p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-top: 10px;
}

/* ---------- Page Infos ---------- */
.cells-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 24px 0;
}

.cells {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.cell {
  background: var(--bg);
  padding: 30px 26px;
}

.cell__k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.34em;
  color: var(--dim);
  margin-bottom: 16px;
}

.cell__v {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.cell__note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-top: 14px;
}

.cell__list {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #dcdcdc;
  line-height: 2.1;
}

.cell__list a {
  color: #dcdcdc;
  text-decoration: none;
}

.cell__list a:hover {
  color: var(--gold);
}

.map-embed--wide {
  margin-top: 16px;
  aspect-ratio: 21 / 9;
}

.map-embed--wide iframe {
  height: 100%;
}

/* ---------- FONDU D'ENTRÉE ENTRE PAGES ---------- */
.enter-veil {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0C0C0C;
  pointer-events: none;
  animation: page-enter 0.85s ease forwards;
}

@keyframes page-enter {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* ---------- MOTION PREFERENCES ---------- */
@media (prefers-reduced-motion: reduce) {
  .enter-veil { display: none; }
  .header--3d::before { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   POLISH TYPOGRAPHIQUE — passe UX (09/07/2026)
   Additif NON destructif : rythme de lecture de base + césure
   intelligente des titres/paragraphes. Ne touche ni la palette,
   ni les tailles, ni le système typo (Anton/Inter/Saira/Oswald).
   ============================================================ */

/* Rythme de base — filet de sécurité : le corps n'avait aucune
   line-height (défaut navigateur ~1.2, trop serré pour du texte). */
body {
  line-height: 1.55;
  font-optical-sizing: auto;
}

/* Grands titres poster — équilibre les retours à la ligne pour
   éviter le mot orphelin en dernière ligne (surtout sur mobile). */
.header__title,
.bigcta__title,
.buzz__title,
.stock__title,
.infos__title,
.mapembed__title,
.mission__title,
.qbtn__t,
.cat__n,
.statement {
  text-wrap: balance;
}

/* Paragraphes & descriptions — supprime les veuves/orphelines
   (dernière ligne réduite à un seul mot). */
.buzz__v,
.addr,
.services-note,
.footer__meta,
.stock__note {
  text-wrap: pretty;
}

/* Chiffres alignés — horaires, adresse, horloge : les chiffres ne
   « dansent » plus verticalement (chasse fixe). */
.hours .time,
.coords__v,
.welcome__line,
.footer__meta {
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   DYNAMISME — ambiance colorée par ZONE (passe 09/07/2026)
   Chaque grand rayon reçoit une lueur de fond propre (dans la
   palette : orange/rose/violet/rouge/cyan). Subtil (~6-12 %),
   glisse au fil du scroll → rythme sans clignoter.
   Additif : le fond noir de base et la DA restent intacts.
   ============================================================ */
.stock, .cats, .infos, .buzz { position: relative; }

/* SNACKS — chaleur orange (l'épicé) */
#stock {
  background: radial-gradient(135% 75% at 50% 0%, rgba(242, 106, 27, 0.09), transparent 60%);
}
/* SUCRÉ — rose bonbon */
[data-zone="SUCRÉ"] {
  background: radial-gradient(135% 75% at 50% 0%, rgba(255, 105, 180, 0.07), transparent 60%);
}
/* DRINKS — violet Vice City (le frais) */
[data-zone="DRINKS"] {
  background: radial-gradient(135% 75% at 50% 0%, rgba(106, 90, 205, 0.12), transparent 62%);
}
/* L'ARRIVAGE — dégradé « voyage » : violet en haut, braise en bas */
#arrivage {
  background:
    radial-gradient(130% 65% at 50% 0%, rgba(106, 90, 205, 0.12), transparent 60%),
    radial-gradient(130% 70% at 50% 100%, rgba(242, 106, 27, 0.09), transparent 60%);
}
/* LE QUOTIDIEN — terreux discret */
[data-zone="LE QUOTIDIEN"] {
  background: radial-gradient(135% 75% at 50% 0%, rgba(200, 138, 74, 0.06), transparent 60%);
}
/* GLACES — cyan glacé */
#glaces {
  background: radial-gradient(135% 75% at 50% 0%, rgba(90, 190, 235, 0.07), transparent 60%);
}
/* LA CALE (+18) — rouge sombre */
#cale {
  background: radial-gradient(135% 75% at 50% 0%, rgba(255, 61, 70, 0.08), transparent 60%);
}
/* LA CARGAISON — violet ambiant central */
#cargaison {
  background: radial-gradient(120% 75% at 50% 40%, rgba(106, 90, 205, 0.07), transparent 66%);
}
/* NOS RAYONS + INFOS — liant orange très léger */
.cats {
  background: radial-gradient(130% 70% at 50% 0%, rgba(242, 106, 27, 0.05), transparent 60%);
}
.infos {
  background: radial-gradient(120% 70% at 50% 0%, rgba(106, 90, 205, 0.06), transparent 62%);
}

/* ============================================================
   FONDS COLORÉS PAR TUILE — rotation de teintes derrière les
   packshots (intention DA « fond assorti »). Le centre porte la
   couleur, le bas retombe en sombre → l'étiquette reste lisible.
   Exclut : tuiles hero ambiance, bandes « + en boutique »,
   drops butin, et LA CALE (photos moody sombres conservées).
   ============================================================ */
.stock__grid .card:not(.card--hero):not(.card--more):not(.card--butin):nth-child(6n+1) {
  background: radial-gradient(125% 115% at 50% 34%, rgba(242, 106, 27, 0.26), #141018 68%);
}
.stock__grid .card:not(.card--hero):not(.card--more):not(.card--butin):nth-child(6n+2) {
  background: radial-gradient(125% 115% at 50% 34%, rgba(106, 90, 205, 0.30), #141018 68%);
}
.stock__grid .card:not(.card--hero):not(.card--more):not(.card--butin):nth-child(6n+3) {
  background: radial-gradient(125% 115% at 50% 34%, rgba(58, 190, 190, 0.24), #141018 68%);
}
.stock__grid .card:not(.card--hero):not(.card--more):not(.card--butin):nth-child(6n+4) {
  background: radial-gradient(125% 115% at 50% 34%, rgba(255, 105, 170, 0.22), #141018 68%);
}
.stock__grid .card:not(.card--hero):not(.card--more):not(.card--butin):nth-child(6n+5) {
  background: radial-gradient(125% 115% at 50% 34%, rgba(255, 184, 28, 0.24), #141018 68%);
}
.stock__grid .card:not(.card--hero):not(.card--more):not(.card--butin):nth-child(6n) {
  background: radial-gradient(125% 115% at 50% 34%, rgba(120, 200, 90, 0.20), #141018 68%);
}
/* LA CALE garde son ambiance sombre (pas de fond coloré) */
#cale .card { background: #141018 !important; }

/* ============================================================= */
/* RAFFINEMENTS MOBILE — polish tactile & rythme (additif, DA intacte) */
/* 2026-07 · ne touche que <=560px, override les blocs plus haut     */
/* ============================================================= */
@media (max-width: 560px) {
  /* Nav : cibles tactiles confortables (~44px) */
  .nav__link { padding-top: 13px; padding-bottom: 13px; }

  /* Hero : sous-titre plus lisible (moins d'écartement, +1px) */
  .header__sub { font-size: 11px; letter-spacing: 3px; line-height: 1.7; }

  /* Hero : moins de vide en bas, le contenu arrive plus tôt */
  .header { padding-bottom: 48px; }

  /* Rythme des rayons : intitulés un peu plus serrés */
  .stock__head { margin-bottom: 20px; }

  /* Boutons appel/itinéraire du hero : respiration tactile homogène */
  .header .actions .btn { min-height: 48px; }

  /* Hero : scrim renforcé en bas → wordmark + sous-titre + pill ressortent
     (avant, le texte se noyait dans la grille synthwave) */
  .header__scrim {
    background:
      radial-gradient(72% 44% at 50% 38%, rgba(12,10,16,0.52), transparent 74%),
      linear-gradient(to bottom, transparent 38%, rgba(12,10,16,0.78) 86%);
  }

  /* Sous-titre : léger fond pour la lisibilité, sans cartouche marqué */
  .header__sub { color: #f4ecdd; text-shadow: 0 1px 10px rgba(0,0,0,0.9); }

  /* Hero un peu moins haut (mur de 600px → plus compact) */
  .header { min-height: 540px; }
}

/* ============================================================= */
/* BARRE DE RAYONS mobile — chips horizontaux sticky + densité     */
/* 2026-07 · mobile/tablette (<=719px), DA respectée               */
/* ============================================================= */
.catbar { display: none; }
@media (max-width: 719px) {
  .catbar {
    display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch;
    position: sticky; top: 96px; z-index: 44;
    margin: 0; padding: 9px 14px;
    background: rgba(12,10,16,0.94);
    -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
    border-top: 1px solid rgba(242,106,27,0.14);
    border-bottom: 1px solid rgba(242,106,27,0.20);
    scrollbar-width: none;
  }
  .catbar::-webkit-scrollbar { display: none; }
  .catbar a {
    flex: 0 0 auto; white-space: nowrap; text-decoration: none;
    font-family: var(--label); font-weight: 600; font-size: 12px; letter-spacing: 0.1em;
    color: #f2e8d8; padding: 8px 15px; border-radius: 999px;
    border: 1px solid rgba(242,106,27,0.30); background: rgba(255,255,255,0.025);
  }
  .catbar a:active, .catbar a.is-active {
    background: #F26A1B; color: #0c0c0c; border-color: transparent;
  }
  #stock, #sucre-title, #drinks-title, #quotidien-title, #glaces, #cale, #cargaison { scroll-margin-top: 158px; }

  /* Densité mobile : moins de vide entre les sections */
  .stock { padding-top: 46px; padding-bottom: 22px; }
  .bigcta { padding-top: 74px; padding-bottom: 66px; }
  .instore { padding-top: 46px; padding-bottom: 42px; margin-top: 46px; }
  .buzz { padding-top: 46px; padding-bottom: 40px; }
}

/* ============================================================= */
/* Fond de carte plus clair pour produits SOMBRES (fini, mars)     */
/* — le produit noir/cola ressort au lieu de se fondre             */
/* ============================================================= */
.card--lift {
  background:
    radial-gradient(108% 96% at 50% 36%, rgba(255,196,74,0.30), rgba(74,60,92,0.52) 52%, #17131f 100%) !important;
}

/* ============================================================= */
/* POLISH desktop + mobile (2026-08) — additif, DA intacte        */
/* ============================================================= */
/* Hero : sous-titre lisible partout (desktop inclus, pas que mobile) */
.header__sub { color: #f4ecdd; text-shadow: 0 1px 10px rgba(0,0,0,0.85); }

/* Accessibilité : focus clavier visible (orange marque) */
a:focus-visible, button:focus-visible, .btn:focus-visible, .nav__link:focus-visible,
.catbar a:focus-visible, .qbtn:focus-visible, .buzz__card:focus-visible, .card:focus-visible {
  outline: 2px solid #F26A1B;
  outline-offset: 3px;
  border-radius: 6px;
}

/* Scroll fluide sur les sauts d'ancre (nav + barre de rayons) */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* Mobile : la barre de rayons fond légèrement à droite → signale qu'elle scrolle (GLACES, CALE…) */
@media (max-width: 719px) {
  .catbar {
    -webkit-mask-image: linear-gradient(to right, #000 92%, transparent);
    mask-image: linear-gradient(to right, #000 92%, transparent);
  }
}
