/* ═══════════════════════════════════════════════════════════════
   GIGA MEGA SUPER — Stylesheet 2026
   Made with love & pride · Switzerland 🇨🇭
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --cream: #fdf7f0;
  --cream2: #fff9f3;
  --cream3: #fffcf8;
  --ink: #180e08;
  --ink2: #5c3a22;
  --ink3: #a07860;
  --card: #ffffff;
  --border: rgba(24, 14, 8, .07);
  --r1: #ff1a90;
  --r2: #ff7200;
  --r3: #f5bf00;
  --r4: #00c46e;
  --r5: #009de5;
  --r6: #8500ff;
  --pR: #FF0018;
  --pO: #FF8C00;
  --pY: #FFE70F;
  --pG: #00C851;
  --pB: #00A0E8;
  --pV: #760089;
  --fh: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--fb);
  overflow-x: hidden;
  cursor: none;
}

/* ── MULTI-PAGE: no SPA page divs needed ── */

/* ── NOISE OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9800;
  opacity: .45;
}

/* ── CURSOR ── */
#cur {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6), var(--r1));
  animation: curspin 2.5s linear infinite;
  transition: width .2s, height .2s;
}
#cur-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 26, 144, .28);
  transform: translate(-50%, -50%);
}
@keyframes curspin { to { transform: translate(-50%, -50%) rotate(360deg); } }
body:has(a:hover, button:hover) #cur { width: 28px; height: 28px; }
.cspark {
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: sparkdie .55s ease forwards;
}
@keyframes sparkdie { to { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0); } }

/* ── CONFETTI ── */
#confetti-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 9500; }

/* ── RAINBOW TEXT ── */
.rc {
  background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6), var(--r1));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rshift 5s linear infinite;
}
@keyframes rshift { to { background-position: 300% center; } }

/* ── PRIDE BAR ── */
.pride-bar { height: 5px; background: linear-gradient(90deg, var(--pR), var(--pO), var(--pY), var(--pG), var(--pB), var(--pV)); }

/* ═══ NAV ═══ */
body > nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  overflow: visible;
  height: 56px;
}
.nav-stripe {
  height: 2px;
  background: linear-gradient(90deg, var(--pR), var(--pO), var(--pY), var(--pG), var(--pB), var(--pV));
  background-size: 200% auto;
  animation: rshift 3s linear infinite;
}
.nav-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 100%;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(253, 247, 240, .92);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.nav-logo { text-decoration: none; position: relative; z-index: 10; display: block; }
.nav-logo img {
  height: 105px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(255, 26, 144, .25));
  transition: filter .3s, transform .3s;
  margin-top: -3px;
  margin-bottom: -22px;
  position: relative;
  display: block;
  z-index: 501;
}
.nav-logo:hover img {
  filter: drop-shadow(0 4px 20px rgba(255, 26, 144, .35));
  transform: scale(1.05);
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink2);
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--r1), var(--r6));
  transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--r1); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-shop {
  font-family: var(--fh);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: .6rem 1.6rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(255, 26, 144, .25);
}
.nav-shop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6));
  background-size: 300% auto;
  animation: rshift 3s linear infinite;
}
.nav-shop span { position: relative; z-index: 1; }
.nav-shop:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(255, 26, 144, .38); }

/* ── HAMBURGER (mobile) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: .5rem;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink2);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  height: auto;           /* écrase body>nav { height: 56px } */
  overflow: visible;
  background: var(--cream);
  box-shadow: 0 8px 32px rgba(24, 14, 8, .12);
  border-bottom: 2px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 499;
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: var(--ink2);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--r1); }

/* ── Hamburger → X quand menu ouvert ── */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══ BUTTONS ═══ */
.btn-r {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  font-family: var(--fh);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: 1.05rem 2.8rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 8px 40px rgba(255, 26, 144, .25);
  border: none;
}
.btn-r::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6), var(--r1));
  background-size: 300% auto;
  animation: rshift 3s linear infinite;
}
.btn-r span, .btn-r .i { position: relative; z-index: 1; }
.btn-r:hover { transform: scale(1.06) translateY(-3px); box-shadow: 0 18px 55px rgba(255, 26, 144, .38); }

.btn-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--fh);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 1rem 2.2rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.btn-o::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6));
  background-size: 300% auto;
  animation: rshift 3s linear infinite;
  opacity: 0;
  transition: opacity .3s;
}
.btn-o .i { position: relative; z-index: 1; transition: color .3s; }
.btn-o:hover { border-color: transparent; }
.btn-o:hover::before { opacity: 1; }
.btn-o:hover .i { color: #fff; }

/* ── CSS ARROW ICONS — remplace les emojis ↗ et → ── */
.ic-arr, .ic-arr-r {
  display: inline-block;
  width: .42em;
  height: .42em;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ic-arr   { transform: rotate(-45deg); top: -.08em; } /* ↗ liens externes */
.ic-arr-r { transform: rotate(45deg);  top: -.12em; } /* → liens internes */
.btn-o:hover .ic-arr, .btn-o:hover .ic-arr-r { color: #fff; }

/* ═══ MARQUEE ═══ */
.mwrap {
  overflow: hidden;
  background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6));
  background-size: 300% auto;
  animation: rshift 4s linear infinite;
  padding: .68rem 0;
}
.mtrack {
  display: flex;
  width: max-content;
  animation: mscroll 28s linear infinite;
  white-space: nowrap;
}
@keyframes mscroll { to { transform: translateX(-50%); } }
.mi {
  font-family: var(--fh);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2rem;
}
.ms { padding: 0 .5rem; opacity: .7; color: #fff; font-size: .7rem; }

/* ═══ SECTION LABEL ═══ */
.sl {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink3);
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.4rem;
}
.sl::before {
  content: '';
  width: 26px;
  height: 2px;
  flex-shrink: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--r1), var(--r6));
  background-size: 200% auto;
  animation: rshift 3s linear infinite;
}

/* ═══ REVEAL ANIMATIONS ═══ */
.rv { opacity: 0; transform: translateY(36px); transition: opacity .85s ease, transform .85s ease; }
.rvl { opacity: 0; transform: translateX(-36px); transition: opacity .85s ease, transform .85s ease; }
.rvr { opacity: 0; transform: translateX(36px); transition: opacity .85s ease, transform .85s ease; }
.rv.in, .rvl.in, .rvr.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ═══ HERO ═══ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9rem 2rem 9rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ab {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .15;
  animation: abf 18s ease-in-out infinite alternate;
}
.ab:nth-child(1) { width: 800px; height: 800px; background: var(--r1); top: -300px; left: -200px; animation-delay: 0s; }
.ab:nth-child(2) { width: 650px; height: 650px; background: var(--r6); bottom: -200px; right: -150px; animation-delay: -6s; }
.ab:nth-child(3) { width: 550px; height: 550px; background: var(--r3); top: 40%; left: 55%; transform: translate(-50%, -50%); animation-delay: -12s; }
.ab:nth-child(4) { width: 380px; height: 380px; background: var(--r5); top: 10%; right: 8%; animation-delay: -3s; }
.ab:nth-child(5) { width: 300px; height: 300px; background: var(--r4); bottom: 12%; left: 6%; animation-delay: -9s; }
@keyframes abf {
  33% { transform: translate(22px, -28px) scale(1.06); }
  66% { transform: translate(-16px, 18px) scale(.95); }
  to { transform: translate(12px, -12px) scale(1.03); }
}
#hero-canvas { position: absolute; inset: 0; pointer-events: none; }
.orbit-layer { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.orb {
  position: absolute;
  top: 50%;
  left: 50%;
  animation: orbit linear infinite;
  font-size: 1.1rem;
  opacity: .5;
}
@keyframes orbit {
  from { transform: rotate(var(--s)) translateX(var(--r)) rotate(calc(-1 * var(--s))); }
  to { transform: rotate(calc(var(--s) + 360deg)) translateX(var(--r)) rotate(calc(-1 * (var(--s) + 360deg))); }
}
.hero-eyebrow {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 2;
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } }
.heart-stage { position: relative; z-index: 2; margin: 0 auto; animation: fadeUp .9s ease .1s both; }
.heart-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 26, 144, .2) 0%, transparent 70%);
  animation: glowp 4s ease-in-out infinite;
}
@keyframes glowp { 50% { transform: scale(1.22); opacity: .6; } }
.heart-ring { display: none; }
.heart-ring-inner { display: none; }
.heart-img {
  width: clamp(220px, 38vw, 480px);
  height: auto;
  display: block;
  animation: hbounce 5.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 55px rgba(255, 26, 144, .28));
  cursor: pointer;
}
@keyframes hbounce { 50% { transform: translateY(-22px) rotate(1.5deg) scale(1.04); } }
.hero-logo {
  width: clamp(130px, 20vw, 260px);
  height: auto;
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
  animation: fadeUp .9s ease .25s both;
  filter: drop-shadow(0 3px 14px rgba(255, 26, 144, .1));
}
.hero-hl {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  letter-spacing: .04em;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 1.2rem;
  animation: fadeUp .9s ease .32s both;
  line-height: 1.15;
}
.hero-sub {
  max-width: 480px;
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.85;
  position: relative;
  z-index: 2;
  animation: fadeUp .9s ease .42s both;
  margin-top: .8rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
  animation: fadeUp .9s ease .52s both;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.8rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
  animation: fadeUp .9s ease .62s both;
}
.proof-item { font-family: var(--fh); font-weight: 700; font-size: .74rem; color: var(--ink3); display: flex; align-items: center; gap: .4rem; }
.proof-sep { width: 1px; height: 14px; background: var(--ink3); opacity: .25; }
.scroll-hint {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  animation: fadeUp 1s ease .9s both;
}
.scroll-hint span { font-family: var(--fh); font-weight: 700; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink3); }
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(24, 14, 8, .3), transparent);
  animation: spulse 2.2s ease-in-out infinite;
}
@keyframes spulse { 50% { opacity: .8; transform: scaleY(1.15); } }

/* ═══ SHOP ═══ */
#shop { padding: 9rem 4rem; background: var(--cream3); position: relative; overflow: hidden; }
.shop-inner { max-width: 1360px; margin: 0 auto; }
.shop-head { text-align: center; margin-bottom: 5rem; }
.shop-h { font-family: var(--fh); font-weight: 900; font-size: clamp(3rem, 7vw, 7rem); line-height: .92; margin-bottom: 1rem; }
.shop-sub { color: var(--ink2); font-size: .95rem; font-weight: 300; max-width: 400px; margin: 0 auto; line-height: 1.8; }
.cbar {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.6rem;
  background: rgba(255, 26, 144, .06);
  border: 1px solid rgba(255, 26, 144, .16);
  border-radius: 999px;
  padding: .5rem 1.3rem;
  font-family: var(--fh);
  font-weight: 700;
  font-size: .74rem;
  color: var(--r1);
}
.cdot { width: 7px; height: 7px; border-radius: 50%; background: var(--r1); animation: cdp 1.4s ease-in-out infinite; }
@keyframes cdp { 50% { opacity: .4; transform: scale(.7); } }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 1.8rem; margin-bottom: 3.5rem; }
.product-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s;
  box-shadow: 0 3px 16px rgba(0, 0, 0, .04);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6));
  background-size: 300% auto;
  animation: rshift 4s linear infinite;
  opacity: 0;
  transition: opacity .3s;
}
.product-card:hover { transform: translateY(-12px) scale(1.016); box-shadow: 0 28px 70px rgba(0, 0, 0, .12); }
.product-card:hover::before { opacity: 1; }
.prod-img { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--cream2); position: relative; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; display: block; }
.product-card:hover .prod-img img { transform: scale(1.08); }
.wbadge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: .25rem .7rem;
  font-family: var(--fh);
  font-weight: 700;
  font-size: .62rem;
  color: var(--r1);
  display: flex;
  align-items: center;
  gap: .28rem;
}
.wdot { width: 5px; height: 5px; border-radius: 50%; background: var(--r1); animation: cdp 1.2s ease-in-out infinite; }
.wbtn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform .2s;
}
.wbtn:hover { transform: scale(1.2); }
.prod-info { padding: 1.2rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.prod-title { font-family: var(--fh); font-weight: 700; font-size: .88rem; line-height: 1.4; color: var(--ink); margin-bottom: .5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-cause { font-family: var(--fh); font-weight: 700; font-size: .6rem; letter-spacing: .1em; color: var(--r4); margin-bottom: .7rem; }
.prod-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.prod-price { font-family: var(--fh); font-weight: 900; font-size: 1.7rem; line-height: 1; }
.prod-cur { font-family: var(--fh); font-weight: 700; font-size: .7rem; color: var(--ink3); vertical-align: super; }
.prod-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--fh);
  font-weight: 800;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform .2s;
}
.prod-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--r1), var(--r6));
  background-size: 200% auto;
  animation: rshift 2.5s linear infinite;
}
.prod-btn span { position: relative; z-index: 1; }
.prod-loading { grid-column: 1 / -1; text-align: center; padding: 5rem; }
.prod-loading-heart { width: 76px; height: auto; animation: hbounce 2s ease-in-out infinite; margin: 0 auto 1.2rem; display: block; }
.prod-loading p { font-family: var(--fh); font-weight: 700; font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink3); }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; font-family: var(--fh); font-weight: 700; font-size: .7rem; color: var(--ink3); }
.ts { opacity: .3; }

/* ═══ HOME SECTIONS ═══ */
#who { padding: 10rem 6rem; max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
#them { padding: 10rem 6rem; max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
.sec-h { font-family: var(--fh); font-weight: 900; font-size: clamp(3rem, 5.5vw, 6rem); line-height: .95; margin-bottom: 1.5rem; }
.sec-body { color: var(--ink2); font-size: 1.02rem; line-height: 1.92; font-weight: 300; margin-bottom: 2rem; }
.photo-border {
  border-radius: 32px;
  padding: 5px;
  background: conic-gradient(from 0deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6), var(--r1));
  background-size: 300% auto;
  animation: rshift 5s linear infinite;
  box-shadow: 0 30px 90px rgba(255, 26, 144, .16);
}
.photo-border-alt {
  border-radius: 32px;
  padding: 5px;
  background: conic-gradient(from 0deg, var(--r5), var(--r4), var(--r3), var(--r2), var(--r1), var(--r6), var(--r5));
  background-size: 300% auto;
  animation: rshift 6s linear infinite;
  box-shadow: 0 28px 90px rgba(133, 0, 255, .14);
}
.photo-inner { border-radius: 28px; overflow: hidden; }
.photo-inner img { width: 100%; height: auto; display: block; transition: transform .8s; }
.photo-border:hover .photo-inner img, .photo-border-alt:hover .photo-inner img { transform: scale(1.04); }
.photo-wrap { position: relative; }
/* Photo plus petite dans la section "Behind the brand" */
#them .photo-wrap { max-width: 78%; }
.pill {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #fff;
  border-radius: 20px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  gap: .8rem;
}
.pill-num { font-family: var(--fh); font-weight: 900; font-size: 2.4rem; line-height: 1; }
.pill-label { font-family: var(--fh); font-weight: 700; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); line-height: 1.4; }
.spin-badge {
  position: absolute;
  bottom: -26px;
  right: -22px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--r1), var(--r6));
  background-size: 200% auto;
  animation: rshift 3s linear infinite, ringspin 16s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-weight: 900;
  font-size: .9rem;
  text-align: center;
  padding: .8rem;
  color: #fff;
  box-shadow: 0 8px 35px rgba(255, 26, 144, .3);
}
@keyframes ringspin { to { transform: rotate(360deg); } }
.heart-div { text-align: center; padding: 5rem 2rem; background: var(--cream2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.heart-div-img { width: clamp(150px, 24vw, 300px); height: auto; animation: hbounce 5s ease-in-out infinite; filter: drop-shadow(0 8px 35px rgba(255, 26, 144, .18)); margin: 0 auto; display: block; }
.heart-div-label { display: block; margin-top: 1rem; font-family: var(--fh); font-weight: 700; font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ink3); }

/* ═══ IMPACT ═══ */
#impact { padding: 10rem 4rem; background: var(--cream); overflow: hidden; position: relative; }
.impact-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(10rem, 28vw, 26rem);
  -webkit-text-stroke: 1px rgba(24, 14, 8, .04);
  color: transparent;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.impact-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.impact-top { text-align: center; margin-bottom: 5rem; }
.impact-h { font-family: var(--fh); font-weight: 900; font-size: clamp(3rem, 7vw, 7.5rem); line-height: .92; margin-bottom: 1rem; }
.icards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4.5rem; }
.icard {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 28px;
  padding: 2.8rem 2.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s;
  box-shadow: 0 3px 18px rgba(0, 0, 0, .04);
}
.icard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6));
  background-size: 300% auto;
  animation: rshift 4s linear infinite;
  opacity: 0;
  transition: opacity .3s;
}
.icard:hover { transform: translateY(-11px) scale(1.018); box-shadow: 0 22px 65px rgba(0, 0, 0, .1); }
.icard:hover::before { opacity: 1; }
.ic-icon { font-size: 2.2rem; display: block; margin-bottom: 1rem; }
.ic-num { font-family: var(--fh); font-weight: 900; font-size: 4.5rem; line-height: 1; display: block; margin-bottom: .3rem; }
.ic-label { font-family: var(--fh); font-weight: 700; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink3); }
.ic-desc { font-size: .88rem; color: var(--ink2); line-height: 1.72; font-weight: 300; margin-top: .8rem; }
.assoc-ring {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.assoc-ring::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6), var(--r1));
  animation: ringspin 4s linear infinite;
}
.assoc-ring::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--cream); }
.assoc-ring img { width: 66px; height: auto; position: relative; z-index: 1; }
.vtags { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-top: 1.5rem; }
.vtag {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: .48rem 1.15rem;
  font-family: var(--fh);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink2);
  transition: all .3s;
  cursor: default;
}
.vtag:hover { border-color: var(--r1); color: var(--r1); background: rgba(255, 26, 144, .05); transform: translateY(-3px); }

/* ═══ CTA ═══ */
#cta { padding: 12rem 2rem; text-align: center; position: relative; overflow: hidden; background: var(--cream3); }
.cta-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .12; animation: abf 14s ease-in-out infinite alternate; }
.cb:nth-child(1) { width: 600px; height: 600px; background: var(--r1); top: -100px; left: -100px; }
.cb:nth-child(2) { width: 500px; height: 500px; background: var(--r6); bottom: -100px; right: -100px; animation-delay: -5s; }
.cb:nth-child(3) { width: 400px; height: 400px; background: var(--r3); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: -8s; }
.cta-heart-bg { display: none; }
.cta-title { font-family: var(--fh); font-weight: 900; font-size: clamp(2rem, 8.5vw, 9rem); line-height: .85; position: relative; z-index: 2; margin-bottom: 2rem; }
.cta-sub { color: var(--ink2); font-size: 1rem; font-weight: 300; max-width: 380px; margin: 0 auto 3.5rem; line-height: 1.8; position: relative; z-index: 2; }

/* ════ TEXTE ADAPTATIF AU CONTENEUR ════
   text-wrap: balance  → répartit les mots équitablement dans la largeur du conteneur
   overflow-wrap       → évite tout débordement si un mot est trop long               */
h1, h2, h3,
.cta-title, .sec-h, .shop-h, .impact-h,
.iph-title, .contact-h, .hero-hl {
  text-wrap: balance;
  overflow-wrap: break-word;
}

/* ═══ INNER PAGES ═══ */
.iph { padding: 10rem 6rem 5rem; position: relative; overflow: hidden; background: var(--cream); }
.iph-c { position: relative; z-index: 2; max-width: 860px; }
.iph-title { font-family: var(--fh); font-weight: 900; font-size: clamp(4rem, 9vw, 9rem); line-height: .88; margin-bottom: 2rem; }
.iph-lead { font-size: 1.1rem; line-height: 1.92; color: var(--ink2); font-weight: 300; max-width: 660px; }
.about-grid { padding: 8rem 6rem; max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: start; }
.about-sticky { position: sticky; top: 7rem; }
.about-body { color: var(--ink2); font-size: 1.05rem; line-height: 1.95; font-weight: 300; }
.about-body p { margin-bottom: 1.5rem; }
.about-body strong { color: var(--ink); font-weight: 700; }
.about-quote {
  margin: 2.5rem 0;
  padding: 1.8rem 2.2rem;
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 6px 32px rgba(0, 0, 0, .05);
  position: relative;
  overflow: hidden;
}
.about-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--r1), var(--r6));
  border-radius: 4px 0 0 4px;
}
.about-quote p { font-family: var(--fh); font-weight: 700; font-size: 1.05rem; line-height: 1.8; margin: 0; color: var(--ink); }
.about-printful {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  background: linear-gradient(90deg, rgba(255, 26, 144, .07), rgba(133, 0, 255, .07));
  border: 1px solid rgba(255, 26, 144, .18);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-family: var(--fh);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--r6);
}
.about-h3 { font-family: var(--fh); font-weight: 900; font-size: 1.9rem; margin-bottom: .8rem; color: var(--ink); }
.impact-photo-full { width: 100%; height: clamp(260px, 40vw, 500px); overflow: hidden; position: relative; }
.impact-photo-full img { width: 100%; height: 100%; object-fit: cover; }
.impact-photo-full::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, var(--cream), transparent); }
.impact-page-content { padding: 6rem 6rem 8rem; }
.impact-sec { margin-bottom: 5rem; }
.impact-sec:has(> .impact-sec-body) { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.impact-sec-h { font-family: var(--fh); font-weight: 900; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; margin-bottom: 1.5rem; }
.impact-sec:has(> .impact-sec-body) .impact-sec-h { margin-bottom: 0; }
.impact-sec-body { color: var(--ink2); font-size: 1.02rem; line-height: 1.95; font-weight: 300; }
.impact-sec-body ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.impact-sec-body li { position: relative; padding-left: 1.4rem; }
.impact-sec-body li::before { content: '✦'; color: var(--r1); font-size: .75rem; position: absolute; left: 0; top: .35rem; }
.impact-sec-body strong { color: var(--ink); font-weight: 700; }
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.val-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.val-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6));
  background-size: 300% auto;
  animation: rshift 4s linear infinite;
}
.val-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0, 0, 0, .08); }
.val-icon { font-size: 1.8rem; margin-bottom: .8rem; display: block; }
.val-title { font-family: var(--fh); font-weight: 800; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: .5rem; }
.val-desc { font-size: .88rem; color: var(--ink2); line-height: 1.72; font-weight: 300; }

/* ═══ CONTACT ═══ */
.contact-wrap { padding: 8rem 6rem; max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-sticky { position: sticky; top: 7rem; }
.contact-h { font-family: var(--fh); font-weight: 900; font-size: clamp(3rem, 6vw, 6rem); line-height: .92; margin-bottom: 1.5rem; }
.contact-sub { color: var(--ink2); font-size: 1rem; line-height: 1.88; font-weight: 300; margin-bottom: 2.5rem; }
.clinks { display: flex; flex-direction: column; gap: 1rem; }
.clink { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--ink); font-family: var(--fh); font-weight: 700; font-size: .82rem; transition: color .25s; }
.clink:hover { color: var(--r1); }
.clink-icon { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: border-color .25s; }
.clink:hover .clink-icon { border-color: var(--r1); }
.contact-heart { width: 80px; height: auto; margin-top: 2.5rem; animation: hbounce 4s ease-in-out infinite; }
.cform { display: flex; flex-direction: column; gap: 1.4rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .5rem; }
.flabel { font-family: var(--fh); font-weight: 700; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink3); }
.finput, .ftextarea {
  width: 100%;
  padding: .9rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  color: var(--ink);
  font-family: var(--fb);
  font-size: .95rem;
  font-weight: 300;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  cursor: auto;
}
.finput:focus, .ftextarea:focus { border-color: var(--r1); box-shadow: 0 0 0 3px rgba(255, 26, 144, .1); }
.ftextarea { min-height: 150px; resize: vertical; }
.fsubmit {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--fh);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  padding: 1.1rem 2.8rem;
  border-radius: 999px;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 8px 35px rgba(255, 26, 144, .22);
  align-self: flex-start;
}
.fsubmit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6), var(--r1));
  background-size: 300% auto;
  animation: rshift 3s linear infinite;
}
.fsubmit span { position: relative; z-index: 1; }
.fsubmit:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 16px 50px rgba(255, 26, 144, .35); }
.fnote { font-size: .78rem; color: var(--ink3); font-weight: 300; }
.fsuccess { display: none; text-align: center; padding: 3rem 2rem; background: var(--card); border-radius: 24px; border: 1.5px solid var(--border); }
.fsuccess.show { display: block; }
.fsuccess .sicon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.fsuccess h3 { font-family: var(--fh); font-weight: 900; font-size: 2rem; margin-bottom: .8rem; }
.fsuccess p { color: var(--ink2); font-weight: 300; line-height: 1.8; }

/* ═══ FOOTER ═══ */
footer {
  background: #0d0814;
  border-top: none;
  padding: 5rem 5rem 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem 7rem;
  align-items: start;
}
.f-tagline { font-size: .88rem; color: rgba(255,255,255,.5); font-weight: 300; line-height: 1.85; }
.f-heart { width: 38px; height: auto; margin-top: 1.4rem; display: block; animation: hbounce 4s ease-in-out infinite; }
.f-social { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.f-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--fh);
  font-weight: 700;
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .58rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.18);
}
.f-btn:hover { background: var(--r1); border-color: var(--r1); color: #fff; }
.f-btn--ghost { background: transparent; color: rgba(255,255,255,.38); border-color: rgba(255,255,255,.1); font-size: .52rem; }
.f-btn--ghost:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.2); }
.fnav h4 { font-family: var(--fh); font-weight: 700; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.4rem; }
.fnav ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.fnav a { text-decoration: none; color: rgba(255,255,255,.55); font-size: .88rem; font-weight: 300; transition: color .2s; }
.fnav a:hover { color: var(--r1); }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.28);
  font-size: .75rem;
}


/* ── ADMIN LINK (footer discret) ── */
.f-admin-link {
  color: rgba(255,255,255,.12);
  font-size: .65rem;
  text-decoration: none;
  transition: color .3s, opacity .3s;
  cursor: default;
  user-select: none;
}
.f-admin-link:hover { color: var(--r1); cursor: pointer; }

/* ═══ GAYBOY CONSOLE ═══ */
#game-section {
  padding: 5rem 2rem 6rem;
  background: linear-gradient(135deg, #0d0020 0%, #1a0035 40%, #0d0020 100%);
  border-top: 2px solid rgba(255, 26, 144, .25);
  border-bottom: 2px solid rgba(255, 26, 144, .25);
  overflow: hidden;
  position: relative;
}
#game-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(133, 0, 255, .12) 0%, transparent 70%);
  pointer-events: none;
}
.gb-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.gb-intro { margin-bottom: 2.5rem; }
.gb-intro h2 { font-family: var(--fh); font-weight: 900; font-size: clamp(2.5rem, 6vw, 4.5rem); color: #fff; line-height: 1; margin-bottom: .5rem; }
.gb-intro p { color: rgba(255, 255, 255, .5); font-size: .88rem; font-weight: 300; }
.gayboy {
  position: relative;
  width: 700px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 80px rgba(133, 0, 255, .4)) drop-shadow(0 0 40px rgba(255, 26, 144, .2));
}
.gb-body {
  background: linear-gradient(160deg, #f0e8ff 0%, #e0d0ff 30%, #c8a8ff 60%, #b890ff 100%);
  border-radius: 28px 28px 60px 60px;
  padding: 22px 24px 40px;
  position: relative;
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, .6), inset 0 -4px 12px rgba(100, 0, 200, .3), 0 8px 0 #8a50d0, 0 12px 0 #6a30b0;
}
.gb-rainbow-stripe { height: 6px; border-radius: 3px; background: linear-gradient(90deg, #ff1a90, #ff7200, #f5bf00, #00c46e, #009de5, #8500ff); margin-bottom: 14px; }
.gb-brand {
  font-family: var(--fh);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff1a90, #ff7200, #f5bf00, #00c46e, #009de5, #8500ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 10px;
}
.gb-screen-bezel {
  background: #1a0a30;
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 22px;
  box-shadow: inset 0 4px 16px rgba(0, 0, 0, .8), inset 0 0 0 2px rgba(255, 255, 255, .08), 0 2px 4px rgba(100, 0, 200, .4);
  position: relative;
}
.gb-screen-bezel::before {
  content: '◉ GAYBOY COLOR';
  font-family: var(--fh);
  font-weight: 700;
  font-size: .52rem;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .25);
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.gb-led {
  position: absolute;
  top: 8px;
  right: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88, 0 0 16px #00ff8844;
  animation: ledpulse 2s ease-in-out infinite;
}
@keyframes ledpulse { 50% { opacity: .5; box-shadow: 0 0 4px #00ff88; } }
#game-canvas { display: block; width: 100%; border-radius: 8px; image-rendering: pixelated; cursor: none; min-height: 220px; }
/* Désactive le double-tap zoom iOS sur la console de jeu */
#game-section, #game-canvas, .gb-btn-a, .gb-btn-b, .gb-mini-btn, .gb-dpad, .gayboy { touch-action: manipulation; }
.gb-screen-wrap { position: relative; border-radius: 8px; overflow: hidden; }
.pr-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(5, 0, 15, .95);
  text-align: center;
  padding: 1.5rem;
  z-index: 10;
  border-radius: 8px;
}
.pr-overlay.hidden { display: none; }
.pr-overlay-icon { font-size: 2.5rem; margin-bottom: .6rem; animation: hbounce 2s ease-in-out infinite; }
.pr-overlay h3 { font-family: var(--fh); font-weight: 900; font-size: clamp(1.4rem, 4vw, 2rem); color: #fff; margin-bottom: .5rem; line-height: 1; }
.pr-overlay p { color: rgba(255, 255, 255, .6); font-size: .75rem; font-weight: 300; line-height: 1.7; max-width: 280px; margin-bottom: 1rem; }
.pr-keys { display: flex; gap: .5rem; justify-content: center; margin-bottom: 1rem; flex-wrap: wrap; }
.pr-key { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .2); border-radius: 6px; padding: .3rem .7rem; font-family: var(--fh); font-weight: 700; font-size: .65rem; color: rgba(255, 255, 255, .7); }
.gb-hud { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; padding: 0 2px; font-family: var(--fh); font-weight: 700; font-size: .62rem; color: rgba(255, 255, 255, .5); text-transform: uppercase; letter-spacing: .08em; }
.gb-score-val { color: #f5bf00; font-size: .78rem; }
.gb-lives-val { color: #ff1a90; }
.gb-best-val { color: rgba(255, 255, 255, .35); }
.gb-joy-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.gb-joy-label { font-family: var(--fh); font-weight: 700; font-size: .6rem; color: rgba(255, 255, 255, .4); white-space: nowrap; text-transform: uppercase; letter-spacing: .1em; }
.gb-joy-bg { flex: 1; height: 6px; background: rgba(255, 255, 255, .1); border-radius: 3px; overflow: hidden; }
.gb-joy-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #ff1a90, #f5bf00, #00c46e); width: 0%; transition: width .4s ease; }
.gb-joy-pct { font-family: var(--fh); font-weight: 700; font-size: .6rem; color: rgba(255, 255, 255, .4); min-width: 28px; text-align: right; }
.gb-controls { display: flex; align-items: center; justify-content: space-between; padding: 0 8px; margin-top: 4px; }
.gb-dpad { position: relative; width: 72px; height: 72px; }
.gb-dpad-h, .gb-dpad-v { position: absolute; background: #2a1050; border-radius: 4px; box-shadow: inset 0 2px 4px rgba(0, 0, 0, .5), 0 2px 0 #1a0030; }
.gb-dpad-h { width: 72px; height: 24px; top: 24px; left: 0; }
.gb-dpad-v { width: 24px; height: 72px; top: 0; left: 24px; }
.gb-dpad-center { position: absolute; top: 24px; left: 24px; width: 24px; height: 24px; background: #1a0830; border-radius: 3px; z-index: 1; }
.gb-dpad-h::before, .gb-dpad-h::after, .gb-dpad-v::before, .gb-dpad-v::after { content: ''; position: absolute; border: 5px solid transparent; }
.gb-dpad-h::before { border-right-color: rgba(255, 255, 255, .2); top: 7px; left: 5px; }
.gb-dpad-h::after { border-left-color: rgba(255, 255, 255, .2); top: 7px; right: 5px; }
.gb-dpad-v::before { border-bottom-color: rgba(255, 255, 255, .2); left: 7px; top: 5px; }
.gb-dpad-v::after { border-top-color: rgba(255, 255, 255, .2); left: 7px; bottom: 5px; }
.gb-center-btns { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.gb-mini-btns { display: flex; gap: 10px; }
.gb-mini-btn { width: 42px; height: 14px; border-radius: 7px; background: #b080e8; box-shadow: inset 0 1px 3px rgba(0, 0, 0, .4), 0 3px 0 #7040b0; cursor: none; transition: transform .1s; }
.gb-mini-btn:active, .gb-mini-btn.pressed { transform: translateY(1px); box-shadow: inset 0 1px 3px rgba(0, 0, 0, .4); }
.gb-mini-label { font-family: var(--fh); font-weight: 700; font-size: .5rem; color: rgba(255, 255, 255, .3); letter-spacing: .12em; text-transform: uppercase; text-align: center; }
.gb-ab { display: flex; gap: 12px; align-items: center; }
.gb-btn-a, .gb-btn-b {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-weight: 900;
  font-size: .85rem;
  color: #fff;
  cursor: none;
  transition: transform .08s, box-shadow .08s;
  user-select: none;
}
.gb-btn-a { background: radial-gradient(circle at 35% 35%, #ff4db0, #ff1a90); box-shadow: 0 4px 0 #aa0060, 0 6px 12px rgba(255, 26, 144, .4); }
.gb-btn-b { background: radial-gradient(circle at 35% 35%, #4da8ff, #009de5); box-shadow: 0 4px 0 #006099, 0 6px 12px rgba(0, 157, 229, .4); }
.gb-btn-a:active, .gb-btn-a.pressed { transform: translateY(3px); box-shadow: 0 1px 0 #aa0060; }
.gb-btn-b:active, .gb-btn-b.pressed { transform: translateY(3px); box-shadow: 0 1px 0 #006099; }
.gb-speaker { display: flex; gap: 4px; align-items: flex-end; position: absolute; bottom: 20px; right: 28px; }
.gb-speaker-hole { width: 3px; border-radius: 2px; background: rgba(0, 0, 0, .35); box-shadow: inset 0 1px 2px rgba(0, 0, 0, .5); }
.gb-speaker-hole:nth-child(1) { height: 10px; }
.gb-speaker-hole:nth-child(2) { height: 16px; }
.gb-speaker-hole:nth-child(3) { height: 20px; }
.gb-speaker-hole:nth-child(4) { height: 16px; }
.gb-speaker-hole:nth-child(5) { height: 10px; }
.gb-cart-slot { width: 60px; height: 6px; background: #1a0830; border-radius: 0 0 3px 3px; margin: 0 auto; box-shadow: inset 0 2px 4px rgba(0, 0, 0, .8); }
.pr-wave-toast {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%) translateY(-40px);
  background: linear-gradient(90deg, #ff1a90, #8500ff);
  color: #fff;
  font-family: var(--fh);
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .1em;
  padding: .3rem 1rem;
  border-radius: 999px;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
}
.pr-wave-toast.show { transform: translateX(-50%) translateY(0); }
#pr-unlock { display: none; margin-top: 2.5rem; text-align: center; }
#pr-unlock.show { display: block; }
.pr-unlock-box { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 26, 144, .3); border-radius: 20px; padding: 1.5rem 2rem; display: inline-block; backdrop-filter: blur(12px); }
.pr-code { font-family: var(--fh); font-weight: 900; font-size: 2.4rem; letter-spacing: .14em; border: 1.5px dashed rgba(133, 0, 255, .4); border-radius: 12px; padding: .4rem 1.8rem; color: #d4a0ff; display: inline-block; margin: .4rem 0; }
.gb-stats { margin-top: 2rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; font-family: var(--fh); font-weight: 700; font-size: .7rem; color: rgba(255, 255, 255, .3); }
.gb-stats strong { color: rgba(255, 255, 255, .6); }

/* ═══ MENTIONS LÉGALES PAGE ═══ */
.legal-page { padding: 4rem 6rem 8rem; }
.legal-lang-block { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start; }
.legal-lang-block .legal-toc { position: sticky; top: 8rem; }
.legal-content { min-width: 0; }
.legal-section { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-family: var(--fh); font-weight: 800; font-size: 1.3rem; margin-bottom: 1rem; color: var(--ink); }
.legal-section h3 { font-family: var(--fh); font-weight: 700; font-size: 1rem; margin-top: 1.2rem; margin-bottom: .6rem; color: var(--ink2); }
.legal-section p, .legal-section li { font-size: .95rem; line-height: 1.9; color: var(--ink2); font-weight: 300; }
.legal-section ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; padding-left: 0; }
.legal-section li::before { content: '✦ '; color: var(--r1); font-size: .75rem; }
.legal-section a { color: var(--r1); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-updated { font-size: .78rem; color: var(--ink3); margin-top: .5rem; font-weight: 300; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1000px) {
  .nav-body { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-shop  { display: none; }  /* lien Etsy déjà dans nav-mobile */
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 72px; margin-bottom: -12px; } /* logo plus compact sur mobile */
  #who, #them { grid-template-columns: 1fr; gap: 3rem; padding: 6rem 1.5rem; }
  #impact { padding: 6rem 1.5rem; }
  .icards { grid-template-columns: 1fr; }
  #shop { padding: 6rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; padding: 6rem 1.5rem; }
  .about-sticky { position: static; }
  .val-grid { grid-template-columns: 1fr; }
  .impact-page-content { padding: 4rem 1.5rem 5rem; }
  .impact-sec:has(> .impact-sec-body) { grid-template-columns: 1fr; gap: 1rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; padding: 8rem 1.5rem 5rem; }
  .contact-sticky { position: static; }
  .frow { grid-template-columns: 1fr; }
  .iph { padding: 8rem 1.5rem 4rem; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem 2rem; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
  #cta { padding: 8rem 1.5rem; }
  #game-section { padding: 2rem 0 3rem; }
  .gayboy { width: 100%; max-width: none; }
  .legal-page { padding: 6rem 1.5rem 5rem; }
  .legal-lang-block { grid-template-columns: 1fr; gap: 2rem; }
  .legal-lang-block .legal-toc { position: static; }
}

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-proof { flex-direction: column; gap: .8rem; }
  .proof-sep { display: none; }

  /* Headings trop larges sur petits écrans */
  .impact-h  { font-size: clamp(1.5rem, 8vw,  3rem); }
  .sec-h     { font-size: clamp(2rem,   9vw,  4rem); }
  .iph-title { font-size: clamp(3rem,   14vw, 5rem); }

  /* Révélations horizontales → verticales sur mobile (évite le débordement) */
  .rvl, .rvr { transform: translateY(36px); }

  /* Empêche les grid items de déborder si leur contenu est non-sécable (URL longue) */
  #them > * { min-width: 0; }
  .btn-r, .btn-o { font-size: .76rem; padding: .9rem 1.6rem; white-space: normal; text-align: center; max-width: 100%; box-sizing: border-box; }

  /* Game Boy — maximise la taille de l'écran de jeu sur mobile */
  #game-section { padding: 1rem 0 2rem; }
  .gayboy { max-width: none; width: 100%; }
  .gb-body { padding: 8px 0 14px; border-radius: 16px 16px 40px 40px; }
  .gb-rainbow-stripe { margin-bottom: 6px; }
  .gb-brand { font-size: 1rem; margin-bottom: 4px; }
  .gb-screen-bezel { padding: 4px; border-radius: 10px; margin-bottom: 10px; }

  /* D-pad — encore plus grand */
  .gb-dpad { width: 114px; height: 114px; }
  .gb-dpad-h { width: 114px; height: 38px; top: 38px; }
  .gb-dpad-v { width: 38px; height: 114px; left: 38px; }
  .gb-dpad-center { top: 38px; left: 38px; width: 38px; height: 38px; }
  .gb-dpad-h::before { top: 14px; }
  .gb-dpad-h::after  { top: 14px; }
  .gb-dpad-v::before { left: 14px; }
  .gb-dpad-v::after  { left: 14px; }
  /* Boutons A/B proportionnels */
  .gb-btn-a, .gb-btn-b { width: 68px; height: 68px; font-size: 1rem; }
}

/* ═══ LANGUAGE SWITCHER — segmented pill control ═══ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(253,247,240,.6);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lang-btn {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  border-radius: 999px;
  color: var(--ink3);
  padding: .3rem .68rem;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  line-height: 1;
  white-space: nowrap;
}
.lang-btn:hover { color: var(--r1); }
.lang-btn.active {
  background: var(--r1);
  color: #fff;
  box-shadow: 0 1px 6px rgba(255,26,144,.35);
}
/* Lang-switcher de la nav desktop masqué sur mobile — doit être APRÈS les styles de base */
@media (max-width: 1000px) {
  .nav-body .lang-switcher { display: none; }
}
/* (lang-switcher retiré du menu mobile — voir nav-body desktop uniquement) */

/* ── Supprimé : doublon de .iph — définition canonique à la ligne 843 ── */

