/* ═══════════════════════════════════════════════════════════════
   GIGA MEGA SUPER — 2026 v2 · "Be who you want"
   DA éditoriale premium (inspiration Wolverine World Wide) :
   fond os, typo Archivo uppercase, CTA flèches, rainbow en accent.
═══════════════════════════════════════════════════════════════ */

:root {
  --bg:      #f6f4f0;
  --bg-soft: #efece6;
  --ink:     #101010;
  --mut:     #6d685f;
  --line:    #dcd7cd;
  --dark:    #0d0d0d;
  --dark-2:  #161616;
  --fh: 'Archivo', sans-serif;
  --fb: 'Inter', sans-serif;
  --pride: linear-gradient(90deg,#FF0018,#FF8C00,#FFE70F,#00C851,#00A0E8,#760089);
  --pink: #ff1a90;
  --r: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--ink); color: var(--bg); }

/* ── TYPO UTILITAIRES ── */
h1, h2, h3, .hd {
  font-family: var(--fh);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .95;
}

.eyebrow {
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mut);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: '';
  width: 34px; height: 3px;
  background: var(--pride);
}

.sec-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1.2rem;
}

.lead { font-size: 1.06rem; color: var(--mut); max-width: 56ch; }

/* Souligné rainbow discret */
.pu {
  background-image: var(--pride);
  background-repeat: no-repeat;
  background-size: 100% .12em;
  background-position: 0 96%;
  padding-bottom: .04em;
}

/* ── BOUTONS / LIENS ── */
.btn-dark, .btn-light {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border: 1px solid var(--ink);
  border-radius: var(--r);
  transition: background .25s, color .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark::after, .btn-light::after { content: '→'; font-family: var(--fb); transition: transform .25s; }
.btn-dark:hover::after, .btn-light:hover::after, .link-arrow:hover::after { transform: translateX(5px); }
.btn-dark:hover { background: transparent; color: var(--ink); }
.btn-light { background: transparent; color: var(--ink); }
.btn-light:hover { background: var(--ink); color: #fff; }
.btn-dark.on-dark { border-color: #fff; }
.btn-dark.on-dark:hover { color: #fff; }
.btn-light.on-dark { border-color: #fff; color: #fff; }
.btn-light.on-dark:hover { background: #fff; color: var(--ink); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding-bottom: .3rem;
  background-image: var(--pride);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 100%;
  transition: background-size .3s;
}
.link-arrow::after { content: '→'; transition: transform .25s; }
.link-arrow:hover { background-size: 100% 2px; }

/* ── BARRE PRIDE ── */
.pride-line { height: 4px; background: var(--pride); }
.pride-line--thin { height: 3px; }

/* ═══════════ NAV ═══════════ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(246,244,240,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2.2rem;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .4rem 0;
  background-image: var(--pride);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 100%;
  transition: background-size .3s;
}
.nav-links a:hover, .nav-links a.active { background-size: 100% 2px; }

.nav-shop {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  padding: .85rem 1.6rem;
  border-radius: var(--r);
  border: 1px solid var(--ink);
  transition: background .25s, color .25s;
}
.nav-shop:hover { background: transparent; color: var(--ink); }

.nav-cart {
  position: relative;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: .7rem .9rem;
  font-size: 1rem;
  line-height: 1;
  transition: border-color .25s;
}
.nav-cart:hover { border-color: var(--ink); }
.nav-cart-count {
  position: absolute;
  top: -7px; right: -7px;
  background: var(--pink);
  color: #fff;
  font-family: var(--fh);
  font-size: .6rem;
  font-weight: 800;
  min-width: 17px; height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.nav-cart-count.empty { display: none; }

.lang-switcher { display: flex; gap: .15rem; }
.lang-btn {
  background: none;
  border: none;
  font-family: var(--fh);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--mut);
  padding: .35rem .45rem;
  border-radius: var(--r);
}
.lang-btn.active { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
}
.nav-hamburger span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── OVERLAY PLEIN ÉCRAN (déclenché par le burger, sur tous les écrans) ── */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 895;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: .1rem;
  padding: 7rem 8vw 4rem;
  transform: translateY(-101%);
  opacity: 0;
  visibility: hidden;
  transition: transform .55s cubic-bezier(.7,0,.15,1), opacity .4s ease, visibility .4s;
  overflow-y: auto;
}
.nav-mobile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--pride);
}
.nav-mobile.open { transform: none; opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2.1rem, 7vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--ink);
  width: fit-content;
  padding: .06em 0;
  background-image: var(--pride);
  background-repeat: no-repeat;
  background-size: 0 3px;
  background-position: 0 100%;
  transition: background-size .35s, opacity .3s;
  opacity: 0;
  transform: translateY(14px);
}
.nav-mobile.open a { opacity: 1; transform: none; transition: background-size .35s, opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1); }
.nav-mobile.open a:nth-child(1) { transition-delay: .08s; }
.nav-mobile.open a:nth-child(2) { transition-delay: .13s; }
.nav-mobile.open a:nth-child(3) { transition-delay: .18s; }
.nav-mobile.open a:nth-child(4) { transition-delay: .23s; }
.nav-mobile.open a:nth-child(5) { transition-delay: .28s; }
.nav-mobile.open a:nth-child(6) { transition-delay: .33s; }
.nav-mobile a:hover { background-size: 100% 3px; }
.nav-mobile .lang-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.6rem;
  opacity: 0;
  transition: opacity .5s ease .4s;
}
.nav-mobile.open .lang-row { opacity: 1; }
.nav-mobile .lang-row .lang-btn { font-size: .8rem; padding: .4rem .5rem; }
.nav-overlay-foot {
  margin-top: 2.4rem;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .5s ease .48s;
}
.nav-mobile.open .nav-overlay-foot { opacity: 1; }
.nav-overlay-foot a { font-size: .72rem; color: var(--mut); }
.nav-overlay-foot a:hover { color: var(--ink); }

/* ── Burger désormais visible sur TOUS les écrans, liens en ligne retirés ── */
.nav-hamburger { display: flex; }
.nav-links { display: none; }
.mega { display: none !important; }
/* Pousse le cluster droit (langues, shop, panier, burger) vers la droite */
.nav-inner > .lang-switcher { margin-left: auto; }

/* État menu ouvert : scroll bloqué, logo géant masqué, burger/logo en noir */
body.menu-open { overflow: hidden; }
body.menu-open #brand-fly { opacity: 0 !important; visibility: hidden; }
body.menu-open nav.site-nav { background: transparent; border-bottom-color: transparent; }
body.menu-open nav.site-nav .nav-hamburger span { background: var(--ink); }
body.menu-open .brand-anchor .nav-word { visibility: visible; color: var(--ink); }
body.menu-open .nav-cart { border-color: var(--line); }

/* ═══════════ HERO ═══════════ */
#hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 100vh;
  padding-top: 82px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4vw 4rem calc(max((100vw - 1380px)/2, 2.2rem));
}
.hero-h1 {
  font-size: clamp(3.4rem, 8.2vw, 7.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
}
.hero-h1 .row { display: block; }
.hero-sub {
  margin: 2rem 0 2.6rem;
  font-size: 1.1rem;
  color: var(--mut);
  max-width: 46ch;
}
.hero-ctas { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.hero-proof {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 3.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  color: var(--mut);
  letter-spacing: .04em;
}
.hero-visual { position: relative; overflow: hidden; }
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: var(--pride);
}
.hero-tag {
  position: absolute;
  left: 1.6rem; bottom: 1.6rem;
  background: rgba(13,13,13,.82);
  color: #fff;
  font-family: var(--fh);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .55rem .9rem;
  border-radius: var(--r);
  z-index: 2;
}

/* ═══════════ TICKER ═══════════ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
  padding: .95rem 0;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: tick 36s linear infinite;
}
.ticker span {
  font-family: var(--fh);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
}
.ticker span.dot { color: var(--pink); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ═══════════ SECTIONS GÉNÉRIQUES ═══════════ */
.wrap { max-width: 1380px; margin: 0 auto; padding: 0 2.2rem; }
section.block { padding: 7rem 0; }
section.block--soft { background: var(--bg-soft); }
section.block--dark { background: var(--dark); color: #fff; }
section.block--dark .eyebrow { color: rgba(255,255,255,.45); }
section.block--dark .lead { color: rgba(255,255,255,.62); }

/* ═══════════ MANIFESTO / GRILLE PHOTOS ═══════════ */
.mani-head { max-width: 900px; margin-bottom: 4rem; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.4rem;
}
.ph-card { position: relative; overflow: hidden; border-radius: var(--r); }
.ph-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.ph-card:hover img { transform: scale(1.045); }
.ph-card .cap {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem;
  z-index: 2;
  color: #fff;
  font-family: var(--fh);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .5rem .85rem;
  background: rgba(13,13,13,.72);
  border-radius: var(--r);
}
.ph-a { grid-column: span 5; aspect-ratio: 3/4; }
.ph-b { grid-column: span 7; aspect-ratio: 16/10.5; }
.ph-c { grid-column: span 7; aspect-ratio: 16/10.5; }
.ph-d { grid-column: span 5; aspect-ratio: 3/4; }

/* ═══════════ BANDE STATS ═══════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.stat {
  padding: 3.6rem 2.4rem;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--fh);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  display: block;
}
.stat-num .u { background-image: var(--pride); background-size: 100% .1em; background-repeat: no-repeat; background-position: 0 95%; }
.stat-label {
  font-family: var(--fh);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: block;
  margin: 1rem 0 .5rem;
}
.stat-desc { font-size: .88rem; color: var(--mut); max-width: 34ch; }

/* ═══════════ SPLIT ÉDITORIAL ═══════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r);
}
.split-media .badge {
  position: absolute;
  top: 1.4rem; left: 1.4rem;
  background: #fff;
  color: var(--ink);
  font-family: var(--fh);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .6rem 1rem;
  border-radius: var(--r);
}
.split-copy .actions { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; margin-top: 2.2rem; }

/* ═══════════ GAYBOY (reskin monochrome premium) ═══════════ */
#game-section { position: relative; }
#game-section .game-head { text-align: center; max-width: 720px; margin: 0 auto 3.6rem; }
#game-section .game-head .eyebrow { justify-content: center; }
#game-section .game-head .eyebrow::before { background: var(--pride); }

.gayboy { max-width: 620px; margin: 0 auto; position: relative; }
.gb-body {
  background: var(--dark-2);
  border: 1px solid #262626;
  border-radius: 14px 14px 40px 14px;
  padding: 1.6rem 1.6rem 1.2rem;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
}
.gb-rainbow-stripe { height: 4px; background: var(--pride); border-radius: 2px; margin-bottom: 1rem; }
.gb-brand {
  font-family: var(--fh);
  font-weight: 800;
  font-size: .66rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  text-align: center;
  margin-bottom: 1rem;
}
.gb-hud {
  display: flex;
  justify-content: space-between;
  font-family: var(--fh);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .8rem;
}
.gb-hud .gb-score-val, .gb-hud .gb-best-val { color: #fff; }
.gb-hud .gb-lives-val { color: var(--pink); letter-spacing: .05em; }

.gb-screen-bezel {
  background: #060606;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
}
.gb-led {
  position: absolute;
  top: .65rem; left: .8rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00C851;
  box-shadow: 0 0 8px #00C851;
  animation: led 2.4s ease-in-out infinite;
}
@keyframes led { 50% { opacity: .35; } }
.gb-screen-wrap { position: relative; }
#game-canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  background: #0a0a14;
  image-rendering: pixelated;
}

.pr-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,6,6,.9);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  padding: 1rem;
  z-index: 5;
}
.pr-overlay.hidden { display: none; }
.pr-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: .04em;
}
.pr-overlay h3 .rc {
  background: var(--pride);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pr-overlay-icon { font-size: 2rem; }
.pr-keys { display: flex; flex-direction: column; gap: .3rem; margin: .6rem 0 1rem; }
.pr-key {
  font-size: .64rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.66);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: .3rem .7rem;
}
.pr-overlay .btn-r {
  display: inline-flex;
  align-items: center;
  font-family: var(--fh);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: #fff;
  color: var(--ink);
  border: none;
  border-radius: var(--r);
  padding: .8rem 1.8rem;
  transition: opacity .25s;
}
.pr-overlay .btn-r:hover { opacity: .82; }

.gb-joy-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: .9rem;
}
.gb-joy-label, .gb-joy-pct {
  font-family: var(--fh);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.gb-joy-bg {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
}
.gb-joy-fill { height: 100%; width: 0; background: var(--pride); transition: width .3s; }

.gb-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 0 .4rem;
}
.gb-dpad { position: relative; width: 88px; height: 88px; }
.gb-dpad-h, .gb-dpad-v {
  position: absolute;
  background: #060606;
  border: 1px solid #2e2e2e;
  border-radius: 6px;
}
.gb-dpad-h { top: 30px; left: 0; width: 88px; height: 28px; }
.gb-dpad-v { top: 0; left: 30px; width: 28px; height: 88px; }
.gb-dpad-center {
  position: absolute;
  top: 33px; left: 33px;
  width: 22px; height: 22px;
  background: #141414;
  border-radius: 50%;
}
.gb-center-btns { text-align: center; }
.gb-mini-btns { display: flex; gap: .9rem; justify-content: center; }
.gb-mini-btn {
  width: 42px; height: 12px;
  background: #060606;
  border: 1px solid #2e2e2e;
  border-radius: 6px;
  transition: background .2s;
}
.gb-mini-btn:hover { background: #222; }
.gb-mini-label {
  font-family: var(--fh);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: rgba(255,255,255,.3);
  margin-top: .5rem;
  text-transform: uppercase;
}
.gb-ab { display: flex; gap: .9rem; align-items: flex-end; }
.gb-btn-a, .gb-btn-b {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid #2e2e2e;
  background: #060606;
  color: rgba(255,255,255,.75);
  font-family: var(--fh);
  font-weight: 800;
  font-size: .85rem;
  transition: transform .12s, background .2s;
}
.gb-btn-a { background: linear-gradient(135deg,#1d1d1d,#060606); border-color: var(--pink); color: var(--pink); }
.gb-btn-a:active, .gb-btn-b:active { transform: scale(.92); }
.gb-speaker { display: flex; gap: 5px; }
.gb-speaker-hole { width: 4px; height: 26px; background: #060606; border-radius: 2px; transform: rotate(18deg); }
.gb-cart-slot { display: none; }

.gb-stats {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 2rem;
  font-family: var(--fh);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.gb-stats strong { color: #fff; }

#pr-unlock {
  display: none;
  max-width: 620px;
  margin: 2.4rem auto 0;
  text-align: center;
}
#pr-unlock.show { display: block; animation: pop .5s cubic-bezier(.2,1.4,.4,1); }
@keyframes pop { from { transform: scale(.9); opacity: 0; } }
.pr-unlock-box {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: 2rem;
  background: rgba(255,255,255,.04);
}

/* ═══════════ SHOP ═══════════ */
.shop-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3.2rem; flex-wrap: wrap; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.prod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(16,16,16,.09); }
.prod-thumb { aspect-ratio: 1; overflow: hidden; background: var(--bg-soft); position: relative; }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.prod-card:hover .prod-thumb img { transform: scale(1.05); }
.prod-thumb::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--pride);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.prod-card:hover .prod-thumb::after { transform: scaleX(1); }
.prod-info { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.prod-name {
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.35;
}
.prod-price { margin-top: auto; font-size: .92rem; font-weight: 600; }
.prod-price .from { font-size: .72rem; color: var(--mut); font-weight: 400; margin-right: .3rem; }

.prod-loading, .shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--mut);
}
.prod-loading-heart { width: 60px; margin: 0 auto 1.2rem; animation: beat 1.2s ease-in-out infinite; }
@keyframes beat { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }

/* ── MODALE PRODUIT ── */
.pmodal-backdrop, .cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,.55);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.pmodal-backdrop.open, .cart-backdrop.open { opacity: 1; pointer-events: auto; }
.pmodal {
  position: fixed;
  z-index: 960;
  inset: 0;
  margin: auto;
  width: min(920px, calc(100vw - 2.4rem));
  height: min(620px, calc(100vh - 3rem));
  background: var(--bg);
  border-radius: var(--r);
  display: none;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.pmodal.open { display: grid; animation: pop .35s cubic-bezier(.2,1.2,.4,1); }
.pmodal-img { background: var(--bg-soft); position: relative; }
.pmodal-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.pmodal-body { padding: 2.6rem 2.4rem; overflow-y: auto; display: flex; flex-direction: column; }
.pmodal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 5;
  background: var(--ink);
  color: #fff;
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1rem;
}
.pmodal-name { font-size: 1.5rem; margin-bottom: .6rem; }
.pmodal-price { font-size: 1.15rem; font-weight: 600; margin-bottom: 1.6rem; }
.vlabel {
  font-family: var(--fh);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mut);
  margin-bottom: .7rem;
  display: block;
}
.vgrid { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.vbtn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r);
  padding: .55rem .95rem;
  font-size: .78rem;
  font-weight: 600;
  transition: border-color .2s, background .2s, color .2s;
}
.vbtn:hover { border-color: var(--ink); }
.vbtn.sel { background: var(--ink); color: #fff; border-color: var(--ink); }
.vbtn.out { opacity: .35; text-decoration: line-through; pointer-events: none; }
.qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.8rem; }
.qty-box { display: flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r); }
.qty-box button { background: none; border: none; width: 38px; height: 42px; font-size: 1rem; }
.qty-box span { min-width: 34px; text-align: center; font-weight: 600; }
.pmodal-body .btn-dark { justify-content: center; margin-top: auto; }

/* ── PANIER (drawer) ── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 970;
  width: min(430px, 92vw);
  background: var(--bg);
  border-left: 1px solid var(--line);
  transform: translateX(102%);
  transition: transform .38s cubic-bezier(.3,.9,.3,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: none; }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.6rem;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-size: 1.05rem; }
.cart-close { background: none; border: none; font-size: 1.3rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.2rem 1.6rem; display: flex; flex-direction: column; gap: 1.2rem; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 1rem; align-items: center; }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--r); background: var(--bg-soft); }
.ci-name { font-family: var(--fh); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; line-height: 1.4; }
.ci-var { font-size: .74rem; color: var(--mut); margin: .15rem 0 .4rem; }
.ci-qty { display: inline-flex; align-items: center; gap: .55rem; font-size: .8rem; }
.ci-qty button { background: none; border: 1px solid var(--line); border-radius: var(--r); width: 22px; height: 22px; line-height: 1; font-size: .75rem; }
.ci-price { font-weight: 600; font-size: .88rem; white-space: nowrap; }
.ci-remove { background: none; border: none; color: var(--mut); font-size: .7rem; text-decoration: underline; margin-top: .3rem; }
.cart-empty { text-align: center; color: var(--mut); padding: 3rem 1rem; }
.cart-foot { border-top: 1px solid var(--line); padding: 1.4rem 1.6rem 1.8rem; }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: .4rem; }
.cart-note { font-size: .72rem; color: var(--mut); margin-bottom: 1.1rem; }
.cart-foot .btn-dark { width: 100%; justify-content: center; }
.cart-foot .btn-dark:disabled { opacity: .5; pointer-events: none; }

/* ═══════════ CTA BAND ═══════════ */
#cta-band { text-align: center; }
#cta-band .giant {
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  line-height: .92;
  margin-bottom: 2.4rem;
}
#cta-band .giant .pu { padding-bottom: .06em; }

/* ═══════════ FOOTER ═══════════ */
footer {
  background: var(--dark);
  color: #fff;
  padding: 5rem 0 2.4rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3.4rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.foot-word {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.foot-tag { color: rgba(255,255,255,.55); font-size: .9rem; max-width: 30ch; }
footer h4 {
  font-family: var(--fh);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.2rem;
}
footer ul { display: flex; flex-direction: column; gap: .7rem; }
footer ul a { color: rgba(255,255,255,.78); font-size: .88rem; transition: color .2s; }
footer ul a:hover { color: #fff; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  font-size: .76rem;
  color: rgba(255,255,255,.4);
}
.f-admin-link { opacity: .25; }

/* ═══════════ PAGES INTERNES ═══════════ */
.page-hero {
  padding: 11rem 0 4.6rem;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.8rem, 6.6vw, 5.4rem); max-width: 900px; }
.page-hero .lead { margin-top: 1.6rem; }

/* Prose (legal, about) */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.5rem; margin: 2.6rem 0 1rem; }
.prose h3 { font-size: 1.1rem; margin: 1.8rem 0 .7rem; }
.prose p, .prose li { color: #3c3a36; font-size: .95rem; margin-bottom: .9rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* Formulaires */
.form-grid { display: grid; gap: 1.2rem; max-width: 620px; }
.form-grid label {
  font-family: var(--fh);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mut);
  display: block;
  margin-bottom: .45rem;
}
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: .9rem 1rem;
  font-family: var(--fb);
  font-size: .92rem;
  transition: border-color .2s;
}
.form-grid input:focus, .form-grid textarea:focus { outline: none; border-color: var(--ink); }
.form-msg { font-size: .85rem; margin-top: .6rem; }
.form-msg.ok { color: #00843c; }
.form-msg.err { color: #c40018; }

/* ═══════════ REVEAL ═══════════ */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.rv.vis { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .12s; }
.rv.d2 { transition-delay: .24s; }
.rv.d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 52vh; order: -1; }
  .hero-copy { padding: 3rem 2.2rem 4rem; }
  .split, .split.rev { grid-template-columns: 1fr; gap: 2.4rem; }
  .split.rev .split-media { order: 0; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .ph-a, .ph-b, .ph-c, .ph-d { grid-column: span 1; aspect-ratio: 4/5; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .pmodal { grid-template-columns: 1fr; height: min(88vh, 780px); overflow-y: auto; display: none; }
  .pmodal.open { display: block; }
  .pmodal-img { aspect-ratio: 1.4; position: relative; }
  section.block { padding: 4.6rem 0; }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .photo-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 1.2rem; gap: 1rem; }
  .wrap { padding: 0 1.2rem; }
  .hero-copy { padding: 2.6rem 1.2rem 3.4rem; }
  .lang-switcher { display: none; }
  .nav-mobile .lang-row { display: flex; gap: 1rem; }
  .gb-controls { flex-wrap: wrap; gap: 1.4rem; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   V2.1 — Hero vidéo, logo volant, nav transparente, méga menu,
   collage parallaxe (inspiration Wolverine / gethapply)
═══════════════════════════════════════════════════════════════ */

/* ── WORDMARK NAV (remplace le logo image) ── */
.nav-word {
  font-family: var(--fh);
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
  transition: color .3s;
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo.brand-anchor .nav-word { visibility: hidden; } /* espace réservé, le vrai logo est #brand-fly */

/* ── LOGO VOLANT (index) ── */
#brand-fly {
  position: fixed;
  z-index: 905;
  left: 0; top: 0;
  font-family: var(--fh);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .92;
  white-space: nowrap;
  color: #fff;
  will-change: transform, font-size;
  cursor: pointer;
  text-decoration: none;
}
#brand-fly.inked { color: var(--ink); }
#brand-fly .fly-sub {
  display: block;
  font-family: var(--fb);
  font-weight: 500;
  font-size: .105em;
  letter-spacing: .34em;
  text-align: center;
  margin-top: .55em;
  opacity: 0;
  transition: opacity .4s;
}
#brand-fly.big .fly-sub { opacity: .92; }

/* ── NAV TRANSPARENTE (haut de l'index) ── */
nav.site-nav { transition: background .35s, border-color .35s, backdrop-filter .35s; }
nav.site-nav.nav-clear {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
nav.site-nav.nav-clear .nav-links a,
nav.site-nav.nav-clear .nav-word,
nav.site-nav.nav-clear .lang-btn,
nav.site-nav.nav-clear .lang-btn.active { color: #fff; }
nav.site-nav.nav-clear .nav-hamburger span { background: #fff; }
nav.site-nav.nav-clear .nav-cart { border-color: rgba(255,255,255,.4); }
nav.site-nav.nav-clear .nav-shop { background: #fff; color: var(--ink); border-color: #fff; }
nav.site-nav.nav-clear .nav-shop:hover { background: transparent; color: #fff; }
nav.site-nav.mega-open { background: rgba(246,244,240,.98); border-bottom-color: var(--line); }
nav.site-nav.mega-open .nav-links a,
nav.site-nav.mega-open .nav-word,
nav.site-nav.mega-open .lang-btn { color: var(--ink); }
nav.site-nav.mega-open .nav-hamburger span { background: var(--ink); }
nav.site-nav.mega-open .nav-shop { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── MÉGA MENU ── */
.mega {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(246,244,240,.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(16,16,16,.14);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.mega.open { opacity: 1; transform: none; pointer-events: auto; }
.mega-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 3rem 2.2rem 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.35fr;
  gap: 3rem;
}
.mega h5 {
  font-family: var(--fh);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mut);
  margin-bottom: 1.2rem;
}
.mega-col ul { display: flex; flex-direction: column; gap: .75rem; }
.mega-col a {
  font-family: var(--fh);
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--ink);
  background-image: var(--pride);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 100%;
  transition: background-size .3s;
  width: fit-content;
}
.mega-col a:hover { background-size: 100% 2px; }
.mega-feat { position: relative; border-radius: var(--r); overflow: hidden; min-height: 240px; display: block; }
.mega-feat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.mega-feat:hover img { transform: scale(1.05); }
.mega-feat .mega-feat-label {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  z-index: 2;
  background: rgba(13,13,13,.8);
  color: #fff;
  font-family: var(--fh);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .55rem .9rem;
  border-radius: var(--r);
}
@media (max-width: 1100px) { .mega { display: none; } }

/* ── HERO VIDÉO ── */
#hero-video {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--dark);
}
#hero-video video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
#hero-video .hv-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.42) 0%, rgba(10,10,10,.12) 40%, rgba(10,10,10,.55) 100%);
}
#hero-video::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: var(--pride);
  z-index: 3;
}
.hv-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 2.2rem 3rem;
  max-width: 1380px;
  margin: 0 auto;
}
.hv-sub {
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  max-width: 44ch;
  text-shadow: 0 1px 18px rgba(0,0,0,.4);
}
.hv-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hv-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.7);
  font-family: var(--fh);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  animation: hvbounce 2.2s ease-in-out infinite;
}
@keyframes hvbounce { 50% { transform: translate(-50%, 6px); } }

/* ── COLLAGE PARALLAXE ── */
#collage {
  position: relative;
  padding: 11rem 0 12rem;
  overflow: hidden;
}
.cg-stage { position: relative; max-width: 1600px; margin: 0 auto; min-height: 1400px; }
.cg {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(16,16,16,.16);
  will-change: transform;
  z-index: 1;
}
.cg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cg-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 160px;
  pointer-events: none;
}
.cg-title {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(3.2rem, 9.4vw, 9.6rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--ink);
}
.cg-title .pu { padding-bottom: .06em; }
.cg-actions { margin-top: 3rem; pointer-events: auto; }
@media (max-width: 900px) {
  .cg-stage { min-height: 760px; }
  .cg { box-shadow: 0 10px 26px rgba(16,16,16,.18); }
  .cg-copy { padding-top: 120px; }
  #collage { padding: 6rem 0 7rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cg { transform: none !important; }
  #brand-fly { transition: none; }
}

/* ── Accessibilité / SEO : titre lisible par les moteurs, masqué visuellement ── */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
