/* =====================================================
   LA TOURNÉE — Sports & TCG
   Esthétique : sobre, classy, un peu vintage.
   Palette uniforme : papier crème, encre, rouge du logo.
   ===================================================== */

:root{
  /* Palette — bleu du logo */
  --brand: #2F5FA5;
  --brand-deep: #264E8A;
  --brand-dark: #1C3C6C;
  --cream: #FBF6EC;
  --paper: #F5EDDD;
  --ink: #211A16;
  --ink-soft: #5C5048;
  --line: rgba(33, 26, 22, .14);

  /* Typo */
  --display: "Besley", Georgia, serif;
  --serif: "Hammersmith One", Arial, sans-serif;
  --sans: "Montserrat", Arial, sans-serif;

  /* Rythme */
  --nav-h: 76px;
  --radius: 18px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  /* Z-index : 10 nav / 20 menu mobile / 40 retour-haut */
}

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

/* L'attribut hidden doit toujours gagner, même sur les composants
   en display:flex (sinon la visionneuse invisible bloque les clics) */
[hidden]{ display:none !important; }

html{ scroll-behavior:smooth; scroll-padding-top: calc(var(--nav-h) + 16px); overflow-x: clip; }

body{
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  /* Papier crème mat, sans trame répétitive. */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection{ background: var(--brand); color: var(--cream); }

img{ display:block; max-width:100%; }
a{ color: var(--brand-deep); }

/* ===== Boutons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  font-family: var(--sans); font-weight:700; font-size:.95rem;
  letter-spacing:.02em; text-decoration:none; cursor:pointer;
  padding:.8rem 1.6rem; border-radius:4px; border:2px solid transparent;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), box-shadow .25s var(--ease),
              transform .25s var(--ease);
}
.btn--primary{
  background: var(--brand); color: var(--cream);
  box-shadow: 0 4px 0 var(--brand-dark);
}
.btn--primary:hover{ background: var(--brand-deep); transform: translateY(2px); box-shadow: 0 2px 0 var(--brand-dark); }
.btn--ghost{
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn--ghost:hover{ background: var(--ink); color: var(--cream); }
.btn--lg{ padding:1rem 2.1rem; font-size:1.02rem; }
.btn:focus-visible{ outline:3px solid var(--brand); outline-offset:3px; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav{
  position: fixed; top:0; left:0; right:0; z-index:10;
  background:var(--cream);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
  border-bottom:1px solid var(--line);
}
.nav.is-scrolled{
  background: rgba(251, 246, 236, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(33,26,22,.07);
}
.nav__inner{
  max-width: 1200px; margin:0 auto; height: var(--nav-h);
  padding: 0 24px;
  display:flex; align-items:center; gap: 1.6rem;
}
.nav__brand{
  display:flex; align-items:center; gap:.8rem; text-decoration:none; color:var(--ink);
  margin-right:auto;
}
/* Logo texte (mot-symbole), fidèle au logo officiel :
   « LA » au-dessus, « tournée » en gros serif, « sports & tcg » calé à droite */
.wordmark{
  display:inline-flex; flex-direction:column; line-height:1;
  color:var(--brand);
  transition: transform .3s var(--ease);
}
.nav__brand:hover .wordmark{ transform: scale(1.03); }
.wordmark small{
  font-family:var(--sans); font-weight:700; font-size:.6rem;
  letter-spacing:.24em; text-transform:uppercase;
  margin-bottom:.14rem;
}
.wordmark strong{
  font-family:var(--serif); font-weight:900; font-size:1.8rem;
  letter-spacing:-.015em;
}
.wordmark em{
  font-style:normal; font-family:var(--serif); font-weight:700; font-size:.78rem;
  align-self:flex-end; margin-top:.12rem;
}
/* Logo officiel — le fichier dédié est recadré pour rester lisible dans la barre. */
.wordmark--img{
  width:clamp(180px, 15vw, 224px);
  height:64px;
  justify-content:center;
}
.wordmark--img img{
  display:block; width:100%; height:100%; object-fit:contain;
  filter:drop-shadow(0 1px 0 rgba(251,246,236,.7));
}

.nav__links{ display:flex; gap: 1.8rem; }
.nav__link{
  position:relative; text-decoration:none; color:var(--ink);
  font-weight:600; font-size:.95rem; padding:.35rem 0;
  transition: color .25s var(--ease);
}
/* Soulignement animé */
.nav__link::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px;
  background: var(--brand);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav__link:hover{ color: var(--brand-deep); }
.nav__link:hover::after, .nav__link.is-active::after{ transform: scaleX(1); transform-origin:left; }
.nav__link.is-active{ color: var(--brand-deep); }

.nav__social{
  display:flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:50%; flex:none;
  color:var(--ink); border:1.5px solid var(--line);
  transition: color .25s var(--ease), border-color .25s var(--ease),
              background-color .25s var(--ease), transform .25s var(--ease);
}
.nav__social:hover{
  color:var(--cream); border-color:var(--brand); background:var(--brand);
  transform: translateY(-2px);
}

.nav__cta{ flex:none; }

/* Barre de progression de lecture */
.nav__progress{
  position:absolute; left:0; right:0; bottom:-3px; height:3px;
  pointer-events:none;
}
.nav__progress span{
  display:block; height:100%; width:100%;
  background: var(--brand);
  transform: scaleX(0); transform-origin:left;
}

/* Burger */
.nav__burger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:46px; height:46px; padding:10px;
  background:transparent; border:none; cursor:pointer;
}
.nav__burger span{
  display:block; height:2.5px; width:100%; background:var(--ink); border-radius:2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav__burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* Menu mobile — liens en cascade */
.mobile-menu{
  display:none; flex-direction:column; gap:.4rem;
  background: var(--cream); border-bottom:1px solid var(--line);
  padding: 0 24px;
  max-height:0; overflow:hidden; opacity:0;
  transition: max-height .45s var(--ease), opacity .35s var(--ease), padding .45s var(--ease);
}
.mobile-menu.is-open{ max-height: 440px; opacity:1; padding-top:1rem; padding-bottom:1.6rem; }
.mobile-menu__link{
  text-decoration:none; color:var(--ink); font-weight:600; font-size:1.05rem;
  padding:.65rem 0; border-bottom:1px dashed var(--line);
  opacity:0; transform: translateX(-14px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-menu.is-open .mobile-menu__link{ opacity:1; transform:none; }
.mobile-menu.is-open .mobile-menu__link:nth-child(1){ transition-delay:.05s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2){ transition-delay:.1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3){ transition-delay:.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4){ transition-delay:.2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5){ transition-delay:.25s; }
.mobile-menu__cta{
  margin-top:.9rem; align-self:flex-start;
  opacity:0; transform: translateY(8px);
  transition: opacity .4s var(--ease) .3s, transform .4s var(--ease) .3s,
              background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.mobile-menu.is-open .mobile-menu__cta{ opacity:1; transform:none; }

/* =====================================================
   HÉRO
   ===================================================== */
.hero{
  position:relative; min-height:100svh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding: calc(var(--nav-h) + 70px) 24px 90px;
  overflow:hidden;
  isolation:isolate;
}

/* Aplats sérigraphiés : volontairement irréguliers et cantonnés aux marges. */
.hero::before,
.hero::after{
  content:""; position:absolute; z-index:0; pointer-events:none;
  width:min(34vw, 510px); height:78%;
  background-color:var(--brand);
  background-image:linear-gradient(112deg, rgba(255,255,255,.08), transparent 42%);
  opacity:.95;
}
.hero::before{
  left:-12%; top:calc(var(--nav-h) + 42px);
  clip-path:polygon(0 0, 86% 0, 70% 12%, 91% 27%, 67% 40%, 83% 58%, 59% 69%, 72% 84%, 43% 100%, 0 100%);
  rotate:-2deg;
}
.hero::after{
  right:-13%; top:calc(var(--nav-h) + 42px);
  clip-path:polygon(18% 0, 100% 0, 100% 100%, 38% 100%, 27% 84%, 44% 70%, 21% 56%, 39% 42%, 14% 27%, 35% 13%);
  rotate:2deg;
}

/* Ticker en haut du héro */
.hero__ticker{
  position:absolute; top:var(--nav-h); left:0; right:0; z-index:3;
  border-top:1px solid var(--line); border-bottom:1px solid rgba(33,26,22,.22);
  overflow:hidden; padding:.52rem 0;
  background:var(--cream);
  box-shadow:0 5px 14px rgba(33,26,22,.045);
}
.ticker__track{
  display:flex; gap:2.1rem; width:max-content;
  animation: ticker 30s linear infinite;
  font-family:var(--sans); font-weight:700; font-size:.78rem;
  letter-spacing:.2em; text-transform:uppercase; color:var(--ink-soft);
}
.ticker-symbols{ position:absolute; overflow:hidden; pointer-events:none; }
.ticker-item{ display:inline-flex; align-items:center; gap:.58rem; white-space:nowrap; }
.ticker-item svg{
  width:19px; height:19px; flex:none;
  fill:none; stroke:var(--brand); stroke-width:1.8;
  stroke-linecap:round; stroke-linejoin:round;
}
@keyframes ticker{ to{ transform: translateX(-50%); } }

.hero__inner{ position:relative; z-index:2; max-width: 920px; }

.hero__eyebrow{
  display:inline-block;
  font-weight:700; font-size:.8rem; letter-spacing:.28em; text-transform:uppercase;
  color:#b34d24;
  border:0; border-radius:0;
  padding:.35rem .65rem; margin-bottom:1.8rem;
  background:rgba(251,246,236,.86);
}

.hero__title{
  font-family:var(--display); font-weight:600;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height:1.04; letter-spacing:-.01em;
  margin-bottom:1.6rem;
  text-shadow:0 1px 0 rgba(251,246,236,.65);
}
.hero__title .line{ display:block; overflow:hidden; }
.hero__title .word{
  display:inline-block;
  transform: translateY(110%);
  animation: riseUp 1s var(--ease) forwards;
}
.hero__title .line:nth-child(2) .word{ animation-delay:.15s; }
.hero__title .line:nth-child(3) .word{
  animation-delay:.3s;
  font-weight:600;
  letter-spacing:0;
}
.hero__title .accent{
  color:var(--brand);
  font-style:italic;
  font-weight:700;
  letter-spacing:-.035em;
}
@keyframes riseUp{ to{ transform: translateY(0); } }

.hero__sub{
  font-size:1.15rem; color:var(--ink-soft); max-width:620px; margin:0 auto 2.2rem;
}

.hero__actions{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-bottom:3.2rem; }

/* ===== Compte à rebours ===== */
.countdown__label{
  font-size:.82rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--ink-soft); margin-bottom:.9rem;
}
.countdown__label strong{ color:var(--ink); }
.countdown__digits{
  display:flex; align-items:flex-start; justify-content:center; gap:.9rem;
}
.countdown__cell{ display:flex; flex-direction:column; align-items:center; min-width:74px; }
.countdown__cell .num{
  font-family:var(--serif); font-weight:900; font-size:2.9rem; line-height:1;
  color:var(--brand-deep);
  font-variant-numeric: tabular-nums;
}
.countdown__cell .unit{
  margin-top:.45rem;
  font-size:.66rem; font-weight:700; letter-spacing:.24em; text-transform:uppercase;
  color:var(--ink-soft);
}
.countdown__sep{
  font-family:var(--serif); font-weight:900; font-size:2.4rem; line-height:1.2;
  color:rgba(47,95,165,.45);
}

/* Cartes flottantes décoratives */
.hero__cards{ position:absolute; inset:0; pointer-events:none; z-index:1; }
.float-card{
  position:absolute;
  overflow:visible;
  animation: floaty 7s ease-in-out infinite;
  transition: translate .6s var(--ease);
}
.float-card img{
  display:block; width:100%; height:auto;
  filter:drop-shadow(6px 10px 0 rgba(33,26,22,.12)) drop-shadow(0 14px 14px rgba(33,26,22,.12));
}
.float-card--1{ top:16%; left:2.5%; rotate:-13deg; width:clamp(155px, 13vw, 215px); }
.float-card--2{ top:13%; right:2%; rotate:9deg; width:clamp(170px, 14.5vw, 238px); animation-delay:1.4s; }
.float-card--3{ bottom:3%; left:10%; rotate:7deg; width:clamp(130px, 10.5vw, 176px); animation-delay:2.6s; }
.float-card--4{ bottom:2%; right:9%; rotate:-10deg; width:clamp(145px, 11.5vw, 192px); animation-delay:3.8s; }
@keyframes floaty{
  0%,100%{ margin-top:0; }
  50%{ margin-top:-18px; }
}

/* =====================================================
   BANDEAU ROUGE — prochain show
   ===================================================== */
.next-strip{
  display:block; text-decoration:none;
  background-color:var(--brand-dark);
  overflow:hidden; padding:.8rem 0;
  transition: background-color .25s var(--ease);
}
.next-strip:hover{ background: var(--brand-deep); }
.next-strip__track{
  display:flex; gap:3rem; width:max-content;
  animation: ticker 24s linear infinite;
  font-weight:800; font-size:1rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--cream); white-space:nowrap;
}
.next-strip__track i{ font-style:normal; opacity:.65; }

/* =====================================================
   SECTIONS — communs
   ===================================================== */
.section{ padding: 110px 24px; max-width:1200px; margin:0 auto; }
.section{ position:relative; }
.section::before{
  content:""; position:absolute; left:24px; right:24px; top:54px; height:1px;
  background:linear-gradient(90deg, transparent, rgba(28,60,108,.5) 15%, rgba(28,60,108,.5) 85%, transparent);
}
.section__head{ text-align:center; max-width:680px; margin:0 auto 64px; }
.section__eyebrow{
  font-weight:700; font-size:.78rem; letter-spacing:.28em; text-transform:uppercase;
  color:var(--brand-deep); margin-bottom:.9rem;
}
.section__title{
  font-family:var(--display); font-weight:600;
  font-size: clamp(2rem, 4.5vw, 3.2rem); line-height:1.1; margin-bottom:1rem;
}
.section__title em{ color:var(--brand); font-style:italic; font-weight:700; }
.section__sub{ color:var(--ink-soft); font-size:1.05rem; }

/* Apparition au défilement */
.reveal{
  opacity:0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:none; }

/* =====================================================
   CALENDRIER
   ===================================================== */
.calendar__list{ display:flex; flex-direction:column; gap:1.1rem; }

.event{
  display:grid;
  grid-template-columns: 110px 1fr auto;
  align-items:center; gap:1.6rem;
  background:rgba(251,246,236,.92);
  border:1.5px solid var(--brand-dark); border-radius:5px;
  padding:1.4rem 1.8rem;
  position:relative; overflow:hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.event::before{
  content:""; position:absolute; left:0; top:0; bottom:0; width:5px;
  background:var(--brand);
  transform: scaleY(0); transform-origin:top;
  transition: transform .35s var(--ease);
}
.event:hover{
  border-color: rgba(47,95,165,.5);
  box-shadow: 7px 7px 0 rgba(47,95,165,.12);
  transform: translateY(-3px);
}
.event:hover::before{ transform: scaleY(1); }

.event__date{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:rgba(47,95,165,.06); border:1.5px dashed rgba(28,60,108,.45);
  border-radius:3px; padding:.7rem .4rem; text-align:center;
}
.event__date .day{ font-family:var(--serif); font-weight:900; font-size:1.9rem; line-height:1; color:var(--brand-deep); }
.event__date .month{ font-weight:700; font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:var(--ink-soft); margin-top:.3rem; }

.event__body h3{
  font-family:var(--serif); font-weight:800; font-size:1.35rem; line-height:1.2; margin-bottom:.35rem;
  display:flex; align-items:center; gap:.7rem; flex-wrap:wrap;
}
.event__free{
  font-family:var(--sans);
  font-size:.62rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase;
  color:var(--brand-deep); background:rgba(47,95,165,.08);
  border:1px solid rgba(47,95,165,.45);
  padding:.22rem .65rem; border-radius:999px;
}
/* « Exposants : complet » — toutes les tables sont vendues */
.event__full{
  font-family:var(--sans);
  font-size:.62rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase;
  color:var(--cream); background:#B23A2E;
  border:1px solid #B23A2E;
  padding:.22rem .65rem; border-radius:999px;
}
.event--full .event__date{ opacity:.7; }
.event__meta{
  display:flex; flex-wrap:wrap; gap:.4rem 1.2rem;
  color:var(--ink-soft); font-size:.92rem; font-weight:500;
}
.event__meta span{ display:inline-flex; align-items:center; gap:.4rem; }
.event__meta svg{ flex:none; color:var(--brand); }

.event__side{ display:flex; flex-direction:column; align-items:flex-end; gap:.7rem; }
.event__badge{
  font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  padding:.3rem .8rem; border-radius:999px;
}
.event__badge--next{ background:var(--brand); color:var(--cream); }
.event__badge--soon{ background:rgba(47,95,165,.1); color:var(--brand-deep); border:1px solid rgba(47,95,165,.35); }
.event__badge--later{ background:rgba(33,26,22,.07); color:var(--ink-soft); }

.event__actions{ display:flex; gap:1.1rem; }
.event__action{
  display:inline-flex; align-items:center; gap:.45rem;
  background:none; border:none; cursor:pointer; text-decoration:none;
  font-family:var(--sans); font-weight:700; font-size:.85rem; color:var(--brand-deep);
  padding:.3rem 0; border-bottom:1.5px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.event__action:hover{ border-bottom-color: var(--brand-deep); }
.event__action svg{ color:var(--brand); }

.calendar__note{
  margin-top:2.6rem;
  display:flex; align-items:center; justify-content:center; gap:.7rem;
  color:var(--ink-soft); font-size:.98rem;
}
.calendar__note svg{ flex:none; color:var(--brand); }
.calendar__note a{ font-weight:700; }
.calendar__empty{ text-align:center; color:var(--ink-soft); }

/* =====================================================
   BANDE SÉPARATRICE
   ===================================================== */
.divider__band{
  background-color:var(--brand); color:var(--cream);
  overflow:hidden; padding:.9rem 0;
}
.divider__track{
  display:flex; gap:2rem; width:max-content;
  animation: ticker 26s linear infinite;
  font-family:var(--serif); font-weight:800; font-size:1.15rem; letter-spacing:.05em;
  white-space:nowrap;
}
.divider__track i{ font-style:normal; opacity:.7; }

/* =====================================================
   AFFICHES DES SHOWS PASSÉS
   Pile pêle-mêle : affiches inclinées qui se chevauchent
   légèrement ; au survol, l'affiche se redresse et passe
   à l'avant-plan. Clic = album Facebook du show.
   ===================================================== */
.posters{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:flex-start;
  padding: 1.6rem 0 .8rem;
}
.poster{
  position:relative; display:block;
  width: clamp(190px, 22vw, 250px);
  margin: 0 -16px;
  border-radius:4px;
  box-shadow: 0 4px 14px rgba(33,26,22,.2), 0 1px 3px rgba(33,26,22,.14);
  transform: rotate(var(--tilt, 0deg)) translateY(var(--lift, 0px));
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), z-index 0s .12s;
  z-index:1;
}
.poster:hover, .poster:focus-visible{
  transform: rotate(0deg) translateY(calc(var(--lift, 0px) - 14px)) scale(1.09);
  box-shadow: 0 22px 48px rgba(33,26,22,.3), 0 4px 12px rgba(33,26,22,.16);
  z-index:6;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), z-index 0s;
}
.poster:focus-visible{ outline:3px solid var(--brand); outline-offset:3px; }
.poster img{ display:block; width:100%; height:auto; border-radius:4px; }
.poster__caption{
  position:absolute; left:50%; bottom:-2px; transform:translate(-50%, 50%);
  display:inline-flex; align-items:center; gap:.35rem;
  white-space:nowrap; max-width:calc(100% + 20px);
  overflow:hidden; text-overflow:ellipsis;
  background:var(--ink); color:var(--cream);
  font-size:.72rem; font-weight:700; letter-spacing:.05em;
  padding:.32rem .75rem; border-radius:999px;
  opacity:0; transition: opacity .3s var(--ease);
  pointer-events:none;
}
.poster:hover .poster__caption, .poster:focus-visible .poster__caption{ opacity:1; }

.gallery__more{ text-align:center; margin-top:2.6rem; }

/* =====================================================
   INFOS
   ===================================================== */
.infos{ padding-top:90px; }
.infos__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.3rem; }
.infos__card{
  background:rgba(251,246,236,.92); border:1.5px solid var(--brand-dark); border-radius:5px;
  padding:2rem 1.8rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.infos__card:hover{ border-color:var(--brand); box-shadow:7px 7px 0 rgba(47,95,165,.12); transform:translateY(-3px); }
.infos__card h3{
  font-family:var(--serif); font-weight:800; font-size:1.3rem; margin-bottom:.7rem;
  color:var(--brand-deep);
}
.infos__card p{ color:var(--ink-soft); font-size:.98rem; }
.infos__links{ display:flex; flex-direction:column; gap:.45rem; margin-top:.6rem; }
.infos__mail{ font-weight:700; font-size:1.05rem; }
.infos__fb{
  display:inline-flex; align-items:center; gap:.5rem;
  font-weight:700; color:var(--ink); text-decoration:none;
  border-bottom:1.5px solid transparent; align-self:flex-start;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.infos__fb:hover{ color:var(--brand-deep); border-bottom-color: var(--brand-deep); }
.infos__fb svg{ color:var(--brand); }

/* =====================================================
   PIED DE PAGE
   ===================================================== */
.footer{
  background-color:var(--ink); color:rgba(251,246,236,.8);
  margin-top:90px;
}
.footer__inner{
  max-width:1200px; margin:0 auto; padding:64px 24px 48px;
  display:flex; flex-direction:column; gap:2rem; align-items:center; text-align:center;
}
.footer__logo{ font-family:var(--serif); font-size:1.7rem; font-weight:600; color:var(--cream); }
.footer__logo em{ font-style:normal; font-weight:900; color:var(--brand); }
.footer__brand p{ max-width:420px; font-size:.95rem; margin-top:.6rem; }
.footer__nav{ display:flex; gap:1.8rem; flex-wrap:wrap; justify-content:center; }
.footer__nav a{
  color:rgba(251,246,236,.8); text-decoration:none; font-weight:600; font-size:.92rem;
  transition: color .25s var(--ease);
}
.footer__nav a:hover{ color:var(--cream); }
.footer__bar{
  border-top:1px solid rgba(251,246,236,.14);
  text-align:center; padding:.9rem 24px;
}
.footer__bar p{
  font-size:.78rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(251,246,236,.55);
}

/* =====================================================
   RETOUR EN HAUT
   ===================================================== */
.to-top{
  position:fixed; right:22px; bottom:22px; z-index:40;
  width:52px; height:52px; border-radius:50%; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  background:rgba(251,246,236,.9); color:var(--ink);
  border:1.5px solid var(--line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(33,26,22,.14);
  opacity:0; transform: translateY(16px); pointer-events:none;
  transition: opacity .35s var(--ease), transform .35s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
}
.to-top.is-visible{ opacity:1; transform:none; pointer-events:auto; }
.to-top:hover{ background:var(--brand); border-color:var(--brand); color:var(--cream); }
.to-top:focus-visible{ outline:3px solid var(--brand); outline-offset:3px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px){
  .float-card--3, .float-card--4{ display:none; }
}

@media (max-width: 880px){
  .nav__links, .nav__cta, .nav__social{ display:none; }
  .nav__burger{ display:flex; }
  .mobile-menu{ display:flex; }

  .section{ padding:80px 20px; }
  .infos__grid{ grid-template-columns:1fr; }

  .event{ grid-template-columns: 84px 1fr; row-gap:1rem; padding:1.2rem 1.3rem; }
  .event__side{ grid-column: 1 / -1; flex-direction:row; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:.8rem; }
  .event__date .day{ font-size:1.5rem; }

  .float-card--1{ width:112px; top:14%; left:-5%; rotate:-14deg; }
  .float-card--2{ width:124px; top:auto; bottom:13%; right:-6%; rotate:11deg; }
  .hero::before, .hero::after{ width:58vw; height:58%; opacity:.72; }
  .hero::before{ left:-46%; top:13%; }
  .hero::after{ right:-46%; top:34%; }

  .countdown__cell{ min-width:58px; }
  .countdown__cell .num{ font-size:2.1rem; }
  .countdown__sep{ font-size:1.7rem; }

  .poster{ width: clamp(150px, 30vw, 210px); margin:0 -12px; }

  .to-top{ right:14px; bottom:14px; width:46px; height:46px; }
}

@media (max-width: 560px){
  .posters{ padding-top:.8rem; }
  .poster{ width: 42vw; margin:0 -10px; }
  .wordmark strong{ font-size:1.5rem; }
  .wordmark--img{ width:164px; height:54px; }
  .countdown__digits{ gap:.5rem; }
  .countdown__sep{ display:none; }
}

/* ===== Accessibilité : mouvement réduit ===== */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
  .hero__title .word{ transform:none; }
  .reveal{ opacity:1; transform:none; }
}
