/* Sacs de l'Avent — DA Rock/Metal alignée avec styles.css */
:root {
  --crimson: #E30613;
  --crimson-deep: #99000A;
  --crimson-dark: #0A0A0B;
  --rose: #F5F5F7;
  --rose-light: #A0A0AA;
  --cream: #121214;
  --ink: #FFFFFF;
  --muted: #A0A0AA;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--crimson-dark);
  color: var(--ink);
  overflow-x: hidden;
}

/* ═══ NAV ═══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s ease;
  background: linear-gradient(to bottom, rgba(10,10,11,0.8), transparent);
}

nav.scrolled {
  background: rgba(10,10,11,.99);
  padding: .8rem 2rem;
  border-bottom: 2px solid var(--crimson);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height .3s;
}

nav.scrolled .nav-logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--crimson);
}

.nav-cta {
  background: var(--crimson) !important;
  color: #fff !important;
  padding: .5rem 1.2rem;
  border-radius: 0px !important;
  border: 2px solid var(--crimson) !important;
  font-weight: 800;
}

.nav-cta:hover {
  background: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 101;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 0px;
  transition: all .3s;
}

/* ═══ PAGE HERO ═══ */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 2rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--crimson-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cellipse cx='20' cy='18' rx='11' ry='7' fill='%23E30613' opacity='.08' transform='rotate(-20 20 18)'/%3E%3Cellipse cx='75' cy='35' rx='13' ry='8' fill='%23E30613' opacity='.05' transform='rotate(15 75 35)'/%3E%3Cellipse cx='40' cy='70' rx='10' ry='6' fill='%23E30613' opacity='.09' transform='rotate(-30 40 70)'/%3E%3Cellipse cx='95' cy='80' rx='12' ry='7' fill='%23E30613' opacity='.06' transform='rotate(10 95 80)'/%3E%3C/svg%3E");
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .7s ease .2s forwards;
}

.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--crimson);
  flex-shrink: 0;
}

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: .9;
  letter-spacing: .02em;
  color: #fff;
  text-shadow: 4px 4px 0px rgba(0,0,0,.6);
  opacity: 0;
  animation: fadeUp .8s ease .3s forwards;
}

.page-hero-title em {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--crimson);
  font-style: normal;
  display: block;
  line-height: 1.2;
  transform: rotate(-1.5deg);
  text-shadow: 2px 2px 0px #000;
}

.page-hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin-top: 1.5rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp .8s ease .45s forwards;
}

/* ═══ BREADCRUMB ═══ */
.breadcrumb-bar {
  background: #0A0A0B;
  padding: .75rem 2rem;
  border-bottom: 1px solid rgba(227,6,19,.2);
}

.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--muted);
}

.breadcrumb-inner a {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .05em;
}

.breadcrumb-inner a:hover {
  text-decoration: underline;
}

.breadcrumb-inner span {
  color: rgba(255,255,255,.2);
}

/* ═══ CTA STRIP ═══ */
.cta-strip {
  background: #0A0A0B;
  padding: 1.8rem 2rem;
  border-bottom: 2px solid var(--crimson);
}

.strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--crimson);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .7rem 1.4rem;
  border-radius: 0px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px #000;
  transition: all .2s;
}

.cta-pill:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0px #000;
  background: var(--crimson-deep);
}

/* ═══ SECTIONS ═══ */
section {
  padding: 6rem 2rem;
  background: var(--cream);
}

section[style*="background:#fff"],
section[style*="background: #fff"] {
  background: var(--cream) !important;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.lbl {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--crimson);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .75rem;
}

.lbl::before {
  content: '';
  display: block;
  width: 24px;
  height: 4px;
  background: var(--crimson);
  flex-shrink: 0;
}

.lbl.light {
  color: #fff;
}

.lbl.light::before {
  background: var(--crimson);
}

.lbl.c {
  justify-content: center;
}

.lbl.c::before {
  display: none;
}

.ttl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: .95;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.ttl em {
  font-style: normal;
  font-family: 'Permanent Marker', cursive;
  color: var(--crimson);
  font-size: .88em;
  letter-spacing: 0;
}

.ttl.light {
  color: #fff;
}

.ttl.light em {
  color: var(--crimson);
}

.body-text {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--muted);
}

.body-text strong {
  color: #fff;
  font-weight: 700;
}

.body-text a {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 700;
}

.body-text a:hover {
  text-decoration: underline;
}

.body-text p {
  margin-bottom: 1rem;
}

.body-text ul {
  margin: .5rem 0 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

/* ═══ BOUTONS ═══ */
.btn-r {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--crimson);
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .9rem 2.2rem;
  border-radius: 0px;
  border: 2px solid var(--crimson);
  transition: all .3s;
  cursor: pointer;
  justify-content: center;
}

.btn-r:hover {
  background: var(--crimson-deep);
  border-color: var(--crimson-deep);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px #fff;
}

.btn-or {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--crimson);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .9rem 2.2rem;
  border-radius: 0px;
  border: 2px solid var(--crimson);
  transition: all .3s;
  cursor: pointer;
  justify-content: center;
}

.btn-or:hover {
  background: var(--crimson);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px #fff;
}

.btn-w {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: #000;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .9rem 2.2rem;
  border-radius: 0px;
  border: 2px solid #fff;
  transition: all .3s;
  cursor: pointer;
  justify-content: center;
}

.btn-w:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px var(--crimson);
}

/* ═══ REVEAL ═══ */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.rv.ok {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ═══ KEY VISUAL ═══ */
.kv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

.kv-img {
  border-radius: 0px;
  overflow: hidden;
  border: 2px solid var(--crimson);
  box-shadow: 8px 8px 0px rgba(0,0,0,.5);
}

.kv-img img {
  width: 100%;
  display: block;
}

/* ═══ STATS BANNER ═══ */
.stats-banner {
  background: var(--crimson);
  border-radius: 0px;
  border: 2px solid #000;
  box-shadow: 8px 8px 0px rgba(0,0,0,.5);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  margin: 3.5rem 0;
}

.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cellipse cx='20' cy='18' rx='11' ry='7' fill='%2399000A' opacity='.45' transform='rotate(-20 20 18)'/%3E%3Cellipse cx='75' cy='35' rx='13' ry='8' fill='%2399000A' opacity='.4' transform='rotate(15 75 35)'/%3E%3Cellipse cx='40' cy='70' rx='10' ry='6' fill='%2399000A' opacity='.5' transform='rotate(-30 40 70)'/%3E%3C/svg%3E");
}

.stats-banner > * {
  position: relative;
  z-index: 1;
}

.stats-banner-label {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.4rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
  display: block;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-block {
  text-align: center;
}

.stat-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: #fff;
  letter-spacing: .02em;
  display: block;
  text-shadow: 3px 3px 0px rgba(0,0,0,.4);
}

.stat-txt {
  font-size: .82rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  margin-top: .4rem;
  line-height: 1.5;
}

.stat-txt strong {
  color: #fff;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.2);
}

/* ═══ CONTENU SAC ═══ */
#contenu {
  background: #0A0A0B;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

#contenu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cellipse cx='20' cy='18' rx='11' ry='7' fill='%23E30613' opacity='.05' transform='rotate(-20 20 18)'/%3E%3Cellipse cx='75' cy='35' rx='13' ry='8' fill='%23E30613' opacity='.03' transform='rotate(15 75 35)'/%3E%3Cellipse cx='40' cy='70' rx='10' ry='6' fill='%23E30613' opacity='.05' transform='rotate(-30 40 70)'/%3E%3C/svg%3E");
}

#contenu > .container {
  position: relative;
  z-index: 1;
}

.contenu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.contenu-card {
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 0px;
  padding: 2rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.contenu-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.contenu-card:hover {
  border-color: var(--crimson);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,.5);
}

.contenu-card:hover::after {
  transform: scaleX(1);
}

.contenu-icon {
  font-size: 2rem;
  margin-bottom: .85rem;
  display: block;
}

.contenu-ttl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: .5rem;
}

.contenu-body {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--muted);
}

.contenu-warning {
  background: rgba(227,6,19,.08);
  border: 1px solid rgba(227,6,19,.25);
  border-radius: 0px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.contenu-warning-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.contenu-warning p {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--muted);
}

.contenu-warning p strong {
  color: #fff;
}

/* ═══ ÉTAPES ═══ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  background: #1A1A1E;
  border-radius: 0px;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,.06);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--crimson);
  box-shadow: 0 15px 35px rgba(0,0,0,.5);
}

.step-card:hover::after {
  transform: scaleX(1);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: .85rem;
  display: block;
}

.step-ttl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .5rem;
}

.step-body {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--muted);
}

.step-body strong {
  color: #fff;
}

.step-body a {
  color: var(--crimson);
  font-weight: 700;
  text-decoration: none;
}

.step-body a:hover {
  text-decoration: underline;
}

/* ═══ DATES CLÉS ═══ */
.dates-block {
  background: #1A1A1E;
  border-radius: 0px;
  padding: 2.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(255,255,255,.06);
}

.dates-block .lbl {
  margin-bottom: 1.25rem;
}

.dates-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.date-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.date-badge {
  width: 52px;
  height: 52px;
  background: var(--crimson);
  border-radius: 0px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0px rgba(0,0,0,.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.date-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
}

.date-badge-mois {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}

.date-ttl {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .15rem;
}

.date-sub {
  font-size: .82rem;
  color: var(--muted);
}

/* ═══ CARTE ═══ */
.carte-section {
  background: var(--cream);
}

.carte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.carte-img {
  border-radius: 0px;
  overflow: hidden;
  border: 2px solid var(--crimson);
  box-shadow: 8px 8px 0px rgba(0,0,0,.5);
}

.carte-img img {
  width: 100%;
  display: block;
}

.carte-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.carte-cta-block {
  background: #1A1A1E;
  border-radius: 0px;
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,.06);
}

.carte-cta-block p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.carte-cta-block p strong {
  color: #fff;
}

.carte-cta-block a {
  font-weight: 700;
  text-decoration: none;
}

.carte-cta-block a:hover {
  text-decoration: underline;
}

/* ═══ MEDIA ═══ */
.audio-card {
  background: #1A1A1E;
  border-radius: 0px;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  gap: 2rem;
  align-items: center;
}

.audio-icon {
  width: 64px;
  height: 64px;
  background: var(--crimson);
  border-radius: 0px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.audio-info h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: .25rem;
}

.audio-info p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1rem;
}

.audio-info p strong {
  color: #fff;
}

audio {
  width: 100%;
  height: 40px;
  accent-color: var(--crimson);
}

/* ═══ ÉDITIONS ═══ */
.editions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.edition-card {
  background: #1A1A1E;
  border-radius: 0px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.06);
  text-align: center;
  transition: all .3s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.edition-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.edition-card:hover {
  border-color: var(--crimson);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,.5);
}

.edition-card:hover::after {
  transform: scaleX(1);
}

.edition-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--crimson);
  letter-spacing: .02em;
  display: block;
  margin-bottom: .25rem;
  text-shadow: 3px 3px 0px rgba(0,0,0,.5);
}

.edition-count {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.5rem;
  color: #fff;
  display: block;
  margin-bottom: .5rem;
}

.edition-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══ REJOINDRE ═══ */
.rejoin-block {
  background: var(--crimson);
  border-radius: 0px;
  border: 2px solid #000;
  box-shadow: 8px 8px 0px rgba(0,0,0,.5);
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-top: 3.5rem;
}

.rejoin-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cellipse cx='20' cy='18' rx='11' ry='7' fill='%2399000A' opacity='.4' transform='rotate(-20 20 18)'/%3E%3Cellipse cx='75' cy='35' rx='13' ry='8' fill='%2399000A' opacity='.35' transform='rotate(15 75 35)'/%3E%3Cellipse cx='40' cy='70' rx='10' ry='6' fill='%2399000A' opacity='.45' transform='rotate(-30 40 70)'/%3E%3C/svg%3E");
}

.rejoin-block > * {
  position: relative;
  z-index: 1;
}

.rejoin-block .script {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: rgba(255,255,255,.75);
  display: block;
  margin-bottom: .25rem;
}

.rejoin-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: .03em;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 4px 4px 0px rgba(0,0,0,.5);
}

.rejoin-block p {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.rejoin-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══ FOOTER ═══ */
footer {
  background: #0A0A0B;
  color: #fff;
  padding: 5rem 2rem 2.5rem;
  border-top: 2px solid var(--crimson);
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.ft-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: .4rem;
}

.ft-logo span {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.2rem;
  color: var(--crimson);
  letter-spacing: 0px;
}

.ft-brand p {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 260px;
  margin: .6rem 0 1.5rem;
}

.ft-socials {
  display: flex;
  gap: .6rem;
}

.soc {
  width: 38px;
  height: 38px;
  border-radius: 0px;
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: .85rem;
  transition: all .2s;
}

.soc:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  transform: translateY(-2px);
}

.ft-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.1rem;
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.ft-col ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}

.ft-col ul a:hover {
  color: var(--crimson);
}

.ft-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .77rem;
  color: rgba(255,255,255,.3);
}

/* ═══ NAVIGATION ÉDITIONS (pages retour) ═══ */
.editions-nav {
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,.06);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.editions-nav a {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .65rem 1.6rem;
  border: 2px solid rgba(227,6,19,.3);
  color: var(--crimson);
  transition: all .2s;
}

.editions-nav a:hover {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
  transform: translateY(-2px);
}

.editions-nav a.active {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
  box-shadow: 4px 4px 0px #000;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .kv-grid,
  .carte-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .steps-grid,
  .contenu-grid,
  .editions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }

  .audio-card {
    flex-direction: column;
    text-align: center;
  }

  .rejoin-block {
    padding: 3rem 2rem;
  }
}

@media (max-width: 660px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,10,11,.98);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }

  .nav-links.open a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

  .steps-grid,
  .contenu-grid,
  .editions-grid {
    grid-template-columns: 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 4rem 1.25rem;
  }

  .stats-banner {
    padding: 2rem 1.5rem;
  }

  .dates-row {
    flex-direction: column;
  }
}
