/* ==========================================================================
   Festival Eglantine 2026 · morges-eglantine.ch
   Palette et esprit tirés de l'affiche : prune profond, roses tendres,
   vert olive et dégradé jaune pâle → blanc → rose.
   ========================================================================== */

/* ---------- Fontes auto-hébergées ---------- */
@font-face {
  font-family: 'Titan One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/titan-one-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/nunito-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/nunito-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/nunito-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/nunito-latin-800-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/nunito-latin-400-italic.woff2') format('woff2');
}

/* ---------- Variables ---------- */
:root {
  --plum:       #702040;
  --plum-deep:  #57132F;
  --berry:      #A8547A;
  --mauve:      #904060;
  --rose:       #E497C6;
  --pink:       #F3C4E1;
  --pink-pale:  #FBE9F5;
  --olive:      #B5C46A;
  --olive-deep: #93A548;
  --chartreuse: #F4F6D8;
  --cream:      #FDFBF7;
  --ink:        #4A1229;

  --display: 'Titan One', 'Arial Rounded MT Bold', 'Verdana', sans-serif;
  --body: 'Nunito', 'Segoe UI', 'Helvetica Neue', sans-serif;

  --rayon: 22px;
  --ombre: 0 10px 30px rgba(112, 32, 64, .12);
  --ombre-forte: 0 16px 44px rgba(112, 32, 64, .2);
  --nav-h: 76px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.06rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    linear-gradient(180deg,
      var(--chartreuse) 0%,
      var(--cream) 18%,
      #FDF6FA 46%,
      var(--pink-pale) 78%,
      var(--pink) 100%);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { line-height: 1.15; margin: 0; }

a { color: var(--plum); }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--plum);
  color: var(--cream);
  padding: .6rem 1rem;
  border-radius: 8px;
}
.skip:focus { left: 8px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: .03em;
  text-decoration: none;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--plum);
  color: #FFF2FA;
  box-shadow: 0 8px 22px rgba(112, 32, 64, .35);
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 14px 30px rgba(112, 32, 64, .42);
  background: var(--plum-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--plum);
  border: 2.5px solid var(--plum);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--plum);
  color: #FFF2FA;
  transform: translateY(-3px) rotate(1deg);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(253, 251, 247, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 18px rgba(112, 32, 64, .12);
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  gap: clamp(.6rem, 2vw, 1.8rem);
}
.nav-links a {
  font-weight: 800;
  text-decoration: none;
  color: var(--plum);
  padding: .35rem .55rem;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover,
.nav-links a.actif {
  background: var(--plum);
  color: #FFF2FA;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: var(--plum);
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: #FFF2FA;
  transition: transform .3s ease, opacity .3s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 800px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    padding: 1.2rem 0 1.6rem;
    background: rgba(253, 251, 247, .97);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 30px rgba(112, 32, 64, .18);
    transform: translateY(-130%);
    transition: transform .35s ease;
  }
  .nav-links.ouvert { transform: translateY(0); }
  .nav-links a { font-size: 1.2rem; padding: .55rem 1.4rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 1rem) 1.2rem 4.2rem;
  overflow: hidden;
}
.hero-flora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-flora svg { width: 100%; height: 100%; }

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
}
.hero-kicker {
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--mauve);
  margin: 0 0 .6rem;
}
.hero-title {
  font-family: var(--display);
  font-weight: 400;
  color: var(--plum);
  font-size: clamp(3rem, 11vw, 7.2rem);
  text-shadow: 0 4px 0 rgba(243, 196, 225, .55);
  margin: 0 0 1.1rem;
}
.hero-title .line { display: block; }
.hero-title .gl {
  display: inline-block;
  animation: lettre-entree .7s cubic-bezier(.2, 1.4, .4, 1) both;
  animation-delay: calc(var(--i) * 55ms);
  transition: transform .2s ease, color .2s ease;
}
.hero-title .line:nth-child(2) .gl { animation-delay: calc(300ms + var(--i) * 55ms); }
.hero-title .gl:nth-child(odd)  { rotate: -2.5deg; }
.hero-title .gl:nth-child(even) { rotate: 2deg; translate: 0 4px; }
.hero-title .gl:hover { transform: translateY(-8px) rotate(-6deg); color: var(--berry); }

@keyframes lettre-entree {
  from { opacity: 0; transform: translateY(36px) scale(.6) rotate(8deg); }
  to   { opacity: 1; transform: none; }
}

.hero-date {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(1.25rem, 3.4vw, 1.9rem);
  color: var(--plum);
  background: var(--pink);
  padding: .45rem 1.6rem;
  border-radius: 999px;
  rotate: -1.5deg;
  box-shadow: var(--ombre);
  margin: 0 0 .9rem;
}
.hero-place {
  font-weight: 700;
  color: var(--mauve);
  margin: 0 0 1.6rem;
}
.hero-cta { margin-bottom: 1.1rem; }
.countdown {
  font-weight: 800;
  color: var(--berry);
  font-size: .95rem;
  letter-spacing: .06em;
  margin: 0;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  translate: -50% 0;
  width: 30px;
  height: 48px;
  border: 3px solid var(--mauve);
  border-radius: 999px;
  opacity: .7;
}
.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 6px;
  height: 6px;
  translate: -50% 0;
  border-radius: 50%;
  background: var(--mauve);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%      { transform: translateY(18px); opacity: 0; }
}

/* Flottement des motifs du hero */
.float { animation: flotte 7s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.f2 { animation-duration: 9s;  animation-delay: -2s; }
.f3 { animation-duration: 8s;  animation-delay: -4s; }
.f4 { animation-duration: 10s; animation-delay: -1s; }
.f5 { animation-duration: 7.5s;animation-delay: -3s; }
.f6 { animation-duration: 9.5s;animation-delay: -5s; }
.f7 { animation-duration: 8.5s;animation-delay: -2.5s; }
.f8 { animation-duration: 11s; animation-delay: -6s; }
@keyframes flotte {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -16px; }
}

@media (max-width: 800px) {
  .hero-flora { opacity: .55; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--plum);
  rotate: -1.2deg;
  scale: 1.02 1;
  padding: .8rem 0;
  overflow: hidden;
  box-shadow: var(--ombre);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: defile 30s linear infinite;
}
.marquee-seq { display: flex; align-items: center; }
.marquee-seq span {
  font-family: var(--display);
  font-size: 1.25rem;
  color: #FFEFF9;
  padding: 0 1.1rem;
  white-space: nowrap;
}
.marquee-seq i {
  font-style: normal;
  color: var(--olive);
  font-size: 1.1rem;
}
@keyframes defile {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.2rem, 5vw, 3rem);
  max-width: 1180px;
  margin: 0 auto;
}
.section-tint { max-width: none; }
.section-tint > * { max-width: 1180px; margin-left: auto; margin-right: auto; }

.section-head { text-align: center; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-title {
  font-family: var(--display);
  font-weight: 400;
  color: var(--plum);
  font-size: clamp(2rem, 5.4vw, 3.3rem);
  text-shadow: 0 3px 0 rgba(243, 196, 225, .5);
}
.section-title .et-pas-que {
  display: block;
  font-size: .45em;
  color: var(--berry);
}
.section-sub {
  color: var(--mauve);
  font-weight: 600;
  max-width: 620px;
  margin: .8rem auto 0;
}

/* ---------- Timeline ---------- */
.timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 108px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--olive), var(--rose) 55%, var(--plum));
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 44px;
  margin-bottom: 1.3rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: 101px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pink);
  border: 4px solid var(--plum);
  box-shadow: 0 0 0 5px rgba(253, 251, 247, .9);
}
.tl-time {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--plum);
  text-align: right;
  padding-top: .4rem;
}
.tl-time em {
  display: block;
  font-style: normal;
  font-size: .8rem;
  color: var(--berry);
}
.tl-card {
  background: rgba(255, 255, 255, .82);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 1.1rem 1.4rem 1rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tl-card:hover { transform: translateY(-4px) rotate(-.4deg); box-shadow: var(--ombre-forte); }
.tl-card h3 { font-size: 1.25rem; color: var(--plum); margin: .45rem 0 .25rem; }
.tl-card p { margin: 0 0 .4rem; }
.tl-place {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--mauve);
}
.tl-place svg { width: 17px; height: 17px; flex: none; }

.tag {
  display: inline-block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 999px;
}
.tag-musique { background: var(--pink);       color: var(--plum-deep); }
.tag-contes  { background: var(--chartreuse); color: #5A6420; border: 1.5px solid var(--olive); }
.tag-cirque  { background: var(--olive);      color: #3F470F; }
.tag-danse   { background: var(--rose);       color: #4A1229; }
.tag-chant   { background: var(--pink-pale);  color: var(--plum-deep); border: 1.5px solid var(--rose); }
.tag-fete    { background: var(--plum);       color: #FFEFF9; }

/* Silent Party : carte de clôture */
.tl-highlight .tl-card {
  background: linear-gradient(135deg, var(--plum) 0%, #8E2F58 60%, var(--mauve) 100%);
  color: #FFE3F4;
  position: relative;
  overflow: hidden;
}
.tl-highlight .tl-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(243, 196, 225, .35) 0 6px, transparent 7px),
    radial-gradient(circle at 12% 78%, rgba(181, 196, 106, .4) 0 5px, transparent 6px),
    radial-gradient(circle at 68% 84%, rgba(255, 255, 255, .25) 0 4px, transparent 5px),
    radial-gradient(circle at 32% 14%, rgba(255, 255, 255, .2) 0 3px, transparent 4px);
  pointer-events: none;
}
.tl-highlight .tl-card h3 { color: #FFF; font-size: 1.5rem; }
.tl-highlight .tl-place { color: var(--pink); }
.tl-highlight .tl-place svg { color: var(--pink); }
.tl-highlight::before { background: var(--olive); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(253, 251, 247, .9); }
  50%      { box-shadow: 0 0 0 10px rgba(181, 196, 106, .35); }
}

.prog-actions { text-align: center; margin-top: 2.4rem; }

@media (max-width: 620px) {
  .timeline::before { left: 8px; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; padding-left: 34px; }
  .tl-item::before { left: 1px; top: 6px; width: 14px; height: 14px; }
  .tl-time { text-align: left; padding-top: 0; }
  .tl-time em { display: inline; margin-left: .5rem; }
}

/* ---------- Artistes ---------- */
.artistes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}
.carte {
  background: rgba(255, 255, 255, .86);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.carte:hover { transform: translateY(-7px) rotate(-.6deg); box-shadow: var(--ombre-forte); }
.carte:nth-child(even):hover { rotate: .6deg; }
.carte-visuel { position: relative; aspect-ratio: 4 / 3; }
.carte-visuel .vignette, .carte-visuel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carte-chip {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: var(--plum);
  color: #FFEFF9;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 999px;
  rotate: -2deg;
}
.carte-corps { padding: 1.2rem 1.3rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; }
.carte-corps h3 { color: var(--plum); font-size: 1.28rem; }
.carte-accroche { margin: 0; font-style: italic; color: var(--mauve); }
.carte-plus summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--plum);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-radius: 8px;
  padding: .15rem .3rem;
}
.carte-plus summary::-webkit-details-marker { display: none; }
.carte-plus summary::after {
  content: '↓';
  transition: transform .25s ease;
}
.carte-plus[open] summary::after { transform: rotate(180deg); }
.carte-plus summary:hover { color: var(--berry); }
.carte-plus p { margin: .6rem 0 0; font-size: .96rem; }

@media (max-width: 980px) { .artistes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .artistes { grid-template-columns: 1fr; } }

/* ---------- Animations enfants ---------- */
.animations {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 3vw, 1.8rem);
}
.anim {
  background: rgba(255, 255, 255, .82);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 1.5rem 1.4rem 1.3rem;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.anim:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--ombre-forte); }
.anim-icone {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--pink-pale);
  border: 3px solid var(--pink);
  color: var(--plum);
  margin-bottom: .8rem;
  transition: transform .3s ease, background .3s ease;
}
.anim:nth-child(3n+2) .anim-icone { background: var(--chartreuse); border-color: var(--olive); }
.anim:nth-child(3n)   .anim-icone { background: #FDF3E9; border-color: var(--rose); }
.anim:hover .anim-icone { transform: rotate(-8deg) scale(1.08); }
.anim-icone svg { width: 42px; height: 42px; }
.anim h3 { color: var(--plum); font-size: 1.15rem; margin-bottom: .3rem; }
.anim p { margin: 0; font-size: .95rem; }

@media (max-width: 900px) { .animations { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .animations { grid-template-columns: 1fr; } }

/* ---------- Miam & Glou ---------- */
.miam-glou {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
}
.mg-col {
  background: rgba(255, 255, 255, .86);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 1.7rem 1.7rem 1.5rem;
}
.mg-titre {
  font-family: var(--display);
  font-weight: 400;
  color: var(--plum);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.mg-horaire {
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--chartreuse);
  color: #5A6420;
  border: 1.5px solid var(--olive);
  padding: .25rem .8rem;
  border-radius: 999px;
}
.mg-liste { list-style: none; margin: 0; padding: 0; }
.mg-liste li {
  padding: .85rem 0;
  border-bottom: 2px dashed var(--pink);
}
.mg-liste li:last-child { border-bottom: none; }
.mg-liste strong { color: var(--plum); font-size: 1.08rem; }
.mg-origine {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--berry);
  margin-left: .45rem;
}
.mg-liste p { margin: .15rem 0 0; font-size: .95rem; }
.mg-paiement {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 1.1rem 0 0;
  font-weight: 700;
  color: var(--mauve);
  font-size: .95rem;
}
.mg-paiement svg { width: 22px; height: 22px; flex: none; }

@media (max-width: 800px) { .miam-glou { grid-template-columns: 1fr; } }

/* ---------- Infos pratiques ---------- */
.infos {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.4rem, 4vw, 2.6rem);
  align-items: start;
}
.infos-cartes { display: grid; gap: 1.2rem; }
.info {
  background: rgba(255, 255, 255, .86);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 1.4rem 1.6rem;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: .35rem 1.1rem;
}
.info-icone {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--pink-pale);
  border: 2.5px solid var(--pink);
  color: var(--plum);
}
.info-icone svg { width: 32px; height: 32px; }
.info h3 { color: var(--plum); font-size: 1.18rem; align-self: center; }
.info ul { margin: 0; padding-left: 1.1rem; }
.info li { margin-bottom: .35rem; }
.info li::marker { color: var(--berry); }
.infos-maps { text-align: center; margin: .6rem 0 0; }

.affiche { margin: 0; text-align: center; }
.affiche a { display: inline-block; border-radius: 18px; transition: transform .35s ease, box-shadow .35s ease; box-shadow: var(--ombre-forte); rotate: 1.6deg; }
.affiche a:hover { transform: translateY(-6px) rotate(-1deg); }
.affiche img { border-radius: 18px; }
.affiche figcaption {
  margin-top: .9rem;
  font-weight: 700;
  color: var(--mauve);
  font-size: .92rem;
}

@media (max-width: 900px) {
  .infos { grid-template-columns: 1fr; }
  .affiche { max-width: 420px; margin: 0 auto; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--plum-deep);
  color: #F6D9EA;
  padding: 3.4rem 1.4rem 2.6rem;
  margin-top: clamp(2rem, 6vw, 4rem);
}
.footer-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.footer-logo {
  height: 64px;
  width: auto;
  margin: 0 auto 1.2rem;
  filter: brightness(0) saturate(100%) invert(88%) sepia(10%) saturate(1000%) hue-rotate(280deg);
}
.footer-org { margin: 0 0 1.2rem; }
.footer-liens {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .6rem 1.8rem;
  margin: 0 0 1.4rem;
}
.footer-liens a {
  color: #FFD9EF;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--berry);
  padding-bottom: 2px;
}
.footer-liens a:hover { color: #FFF; border-color: var(--pink); }
.footer-note { margin: 0; font-size: .85rem; opacity: .75; }

/* ---------- Apparitions au scroll ---------- */
.reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity .7s ease, translate .7s cubic-bezier(.2, .8, .3, 1);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.in { opacity: 1; translate: 0 0; }
/* Sans JavaScript, tout reste visible */
html:not(.js) .reveal { opacity: 1; translate: 0 0; }

/* ---------- Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; translate: 0 0; transition: none; }
  .hero-title .gl { animation: none; }
  .float, .scroll-cue span, .tl-highlight::before { animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .btn, .carte, .anim, .tl-card, .affiche a { transition: none; }
}
