/* ===== SEA·LAB FESTIVAL — Design system =====
   Bleu ciel, rose fuchsia, jaune soleil, marine profond, contours BD.
*/

:root {
  /* Couleurs officielles de la charte graphique sea·lab (SEA.LAB-DA.pdf) */
  --sky: #66C8ED;
  --navy: #2B2B62;
  --yellow: #FFE500;
  --pink: #F4ADCD;
  --orange: #F9B119;
  --fuchsia: #E83B6E;
  --white: #FFFFFF;

  --font-display: 'Jost', 'Futura', sans-serif;
  --font-body: 'Jost', 'Futura', sans-serif;

  --radius: 20px;
  --stroke: 3px solid var(--navy);
  --shadow-pop: 6px 6px 0 var(--navy);
  --shadow-pop-sm: 4px 4px 0 var(--navy);

  --container-w: 1140px;
}

* { box-sizing: border-box; }
.nowrap { white-space: nowrap; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 77px; }

/* ===== Page loader ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease;
}
.page-loader.loader-hidden {
  opacity: 0;
  pointer-events: none;
}
.page-loader-mascotte {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: loader-bounce 0.9s ease-in-out infinite;
}
@keyframes loader-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

/* ===== Reveal au scroll ===== */
/* Visible par défaut : si JS échoue, rien n'est caché. */
.reveal {
  opacity: 1;
  transform: none;
}
.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.js-reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; margin: 0; color: var(--navy); }

a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: var(--stroke);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: var(--shadow-pop-sm);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--navy); }
.btn:active { transform: translate(0,0); box-shadow: 2px 2px 0 var(--navy); }

.btn-primary { background: var(--yellow); color: var(--navy); }
.btn-ghost { background: var(--white); color: var(--navy); }
.btn-large { padding: 18px 40px; font-size: 1.2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.nav-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  color: var(--navy);
  transition: transform .15s ease;
}
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.social-link:hover { transform: translateY(-2px); background: var(--navy); color: var(--white); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sky);
  border-bottom: 3px solid transparent;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 6px 12px rgba(0,0,0,.18);
}
.site-header.scrolled .nav { height: 60px; }
.brand {
  position: relative;
  display: block;
  height: 64px;
  transition: height .35s cubic-bezier(.4, 0, .2, 1);
}
.site-header.scrolled .brand { height: 48px; }
.brand-logo-filled { opacity: 0; }
.site-header.scrolled .brand-logo-outline { opacity: 0; }
.site-header.scrolled .brand-logo-filled { opacity: 1; }
.site-header.scrolled .nav-links a { color: var(--white); }
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active { color: var(--yellow); }
.site-header.scrolled .social-link { border-color: var(--white); color: var(--white); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
  transition: height .35s cubic-bezier(.4, 0, .2, 1);
}
.brand-logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 64px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  display: block;
  transition: height .2s ease, opacity .2s ease;
}
.site-header.scrolled .brand-logo { height: 48px; }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav-links-bottom-row { display: contents; }
.nav-links a {
  font-weight: 600;
  color: var(--navy);
  font-size: .98rem;
  transition: color .15s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-cta {
  background: var(--yellow);
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 8px 18px;
  box-shadow: 3px 3px 0 var(--navy);
  font-weight: 700 !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: background .2s ease;
}
.site-header.scrolled .burger span { background: var(--white); }

/* ===== Landing (hero + infobar, tient dans le viewport initial) ===== */
.landing {
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--sky);
  overflow: hidden;
  padding: 36px 0 44px;
  border-bottom: var(--stroke);
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: .95rem;
  box-shadow: 3px 3px 0 var(--navy);
}
.hero-title {
  margin: 10px 0;
  line-height: 1;
}
.hero-logo {
  width: min(560px, 82vw);
  height: auto;
}
#navBrand {
  display: block;
  height: 48px;
  width: 140px;
  transition: height .35s cubic-bezier(.4, 0, .2, 1);
}
.site-header.scrolled #navBrand { height: 36px; }
#navBrandLogo {
  height: 100%;
  width: auto;
  opacity: 0;
  transition: opacity .25s ease;
}
.site-header.scrolled #navBrandLogo { opacity: 1; }
.hero-tagline {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  max-width: 560px;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 4px 0 2px;
}
.fact-pill {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 3px 3px 0 var(--navy);
}
.hero-mascot {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 200px;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-mascot { display: none; }
}

/* ===== Info bar ===== */
.infobar {
  background: var(--navy);
  padding: 34px 0;
  border-bottom: var(--stroke);
}
.infobar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.infobar-item {
  background: var(--navy);
  border: 2px solid var(--sky);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}
.infobar-icon {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 6px;
}
.infobar-item h3 { color: var(--yellow); font-size: 1rem; margin-bottom: 5px; }
.infobar-item p { color: var(--white); font-size: .82rem; margin: 0; line-height: 1.35; }

/* ===== Section head ===== */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.section-badge {
  font-family: var(--font-display);
  background: var(--pink);
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 8px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--navy);
}
.section-badge.alt { background: var(--yellow); }
.section-head h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.section-head-wide { max-width: 900px; }
.section-head-wide h2 { white-space: nowrap; }
@media (max-width: 760px) {
  .section-head-wide h2 { white-space: normal; }
}
.section-head.light h2 { color: var(--white); }
.acces-text { color: var(--navy); font-size: 1.05rem; line-height: 1.5; }

/* ===== Prog / Timetable ===== */
.prog { padding: 60px 0; background: var(--white); }
.prog-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.timetable {
  background: var(--fuchsia);
  border: var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 30px;
}
.prog-artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.prog-artist-photo {
  padding: 0;
  border: 2px solid var(--navy);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  line-height: 0;
  box-shadow: var(--shadow-pop-sm);
  transition: transform .15s ease;
}
.prog-artist-photo:hover { transform: translateY(-3px); }
.prog-artist-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.timetable-open, .timetable-close {
  color: var(--white);
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
  font-size: .95rem;
}
.timetable-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tt-row {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 14px;
  padding: 12px 22px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.tt-band-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}
.tt-band {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.15rem;
}
.tt-platforms {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
}
.platform-link svg { width: 16px; height: 16px; fill: currentColor; }
.platform-link:hover { filter: brightness(1.1); transform: scale(1.08); }
.platform-spotify { background: #1DB954; }
.platform-youtube { background: #FF0000; }
.platform-deezer { background: #A238FF; }
.platform-soundcloud { background: #FF5500; }
.tt-time {
  font-weight: 700;
  color: var(--fuchsia);
  font-size: .95rem;
}

/* ===== Raisons (photo cards) ===== */
.raisons { position: relative; overflow: hidden; padding: 60px 0; background: var(--sky); border-top: var(--stroke); border-bottom: var(--stroke); }
.raisons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.raison-card {
  margin: 0;
  padding: 0;
  background: var(--white);
  border: var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  transition: transform .2s ease;
  cursor: pointer;
  display: block;
}
.raison-card:hover { transform: translateY(-6px); }
.raison-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* ===== Tarifs ===== */
.tarifs { position: relative; overflow: hidden; padding: 60px 0; background: var(--white); }
.tarifs-inner { text-align: center; }
.pass-culture {
  margin: 18px 0 0;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}
.pass-culture + .pass-culture { margin-top: 6px; }
.tarifs-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tarif-card {
  position: relative;
  background: var(--white);
  border: var(--stroke);
  border-radius: var(--radius);
  padding: 34px 44px;
  min-width: 220px;
  overflow: hidden;
}
.tarif-card.highlight { background: #e8e8ec; }
.tarif-card.sold-out { background: #e8e8ec; opacity: .75; }
.tarif-card.sold-out .tarif-price,
.tarif-card.sold-out .tarif-label { color: #8a8a94; }
.sold-out-badge {
  position: absolute;
  top: 18px;
  right: -34px;
  transform: rotate(45deg);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  padding: 5px 40px;
  text-transform: uppercase;
}
.tarif-label { font-weight: 600; margin: 0 0 6px; color: var(--navy); }
.tarif-price { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--fuchsia); margin: 0; }
.tarif-note { margin: 6px 0 0; font-size: .85rem; color: var(--navy); opacity: .7; }

/* ===== Galerie ===== */
.galerie { padding: 60px 0; background: var(--white); }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.galerie-item {
  padding: 0;
  border: var(--stroke);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  box-shadow: var(--shadow-pop-sm);
  transition: transform .15s ease;
  aspect-ratio: 1 / 1;
}
.galerie-item:hover { transform: translateY(-4px); }
.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 23, 63, .92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border: var(--stroke);
  border-radius: var(--radius);
  display: block;
}
.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 90vh;
}
.lightbox-content.has-info {
  gap: 24px;
}
.lightbox-content.has-info img {
  max-height: 80vh;
  max-width: 45vw;
}
.lightbox-info {
  background: var(--white);
  border: var(--stroke);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 380px;
  max-height: 80vh;
  overflow-y: auto;
  text-align: left;
}
.lightbox-info[hidden] { display: none; }
.lightbox-info h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.3rem;
}
.lightbox-info p {
  margin: 0;
  color: var(--navy);
  font-size: .92rem;
  line-height: 1.55;
  white-space: pre-line;
}
.lightbox-more {
  display: block;
  margin: 16px 0 0;
  background: none;
  border: none;
  color: var(--navy);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lightbox-more[hidden] { display: none; }
.lightbox-more:hover { color: var(--pink); }
@media (max-width: 760px) {
  .lightbox { padding: 16px; }
  .lightbox-content.has-info {
    flex-direction: column;
    overflow: hidden;
    max-height: 90vh;
    gap: 10px;
  }
  .lightbox-content.has-info img {
    max-width: 100%;
    max-height: 26vh;
    width: auto;
    margin: 0 auto;
    flex-shrink: 0;
  }
  .lightbox-info {
    max-width: 100%;
    max-height: none;
    overflow-y: auto;
    padding: 16px;
    flex: 1 1 auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
  }
  .lightbox-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .lightbox-info p {
    font-size: .85rem;
    line-height: 1.45;
  }
  .lightbox.has-info .lightbox-prev,
  .lightbox.has-info .lightbox-next {
    position: fixed;
    top: 148px;
  }
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: var(--yellow);
  border: var(--stroke);
  color: var(--navy);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-back {
  position: absolute;
  top: 24px;
  right: 90px;
  background: var(--white);
  border: var(--stroke);
  color: var(--navy);
  height: 46px;
  padding: 0 18px;
  border-radius: 23px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.lightbox-back[hidden] { display: none; }
.lightbox-back:hover { background: var(--yellow); }
@media (max-width: 760px) {
  .lightbox-back {
    top: 16px;
    right: 66px;
    height: 40px;
    padding: 0 12px;
    font-size: .8rem;
  }
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: var(--stroke);
  color: var(--navy);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--yellow); }

/* ===== Acces ===== */
.acces { padding: 60px 0; background: var(--navy); border-top: var(--stroke); }
.acces .section-head h2 { color: var(--white); }
.acces .acces-text { color: var(--white); }
.acces-map {
  max-width: 800px;
  margin: 40px auto 0;
  border: var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  height: 380px;
  position: relative;
}
.acces-map iframe {
  width: 100%;
  height: calc(100% + 68px);
  border: 0;
  display: block;
  position: absolute;
  top: -50px;
  left: 0;
}

.acces-infos {
  max-width: 900px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.acces-info-card {
  background: var(--navy);
  border: 2px solid var(--sky);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.acces-info-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.acces-info-card h3 { color: var(--yellow); font-size: 1rem; margin-bottom: 6px; }
.acces-info-card p { color: var(--white); font-size: .85rem; margin: 0; line-height: 1.4; }

/* ===== Partenaires ===== */
.partenaires { padding: 60px 0; background: var(--white); }
.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}
.partenaires-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 2px solid var(--navy);
  border-radius: 12px;
}

/* ===== Affiche ===== */
.affiche { padding: 60px 0; background: var(--sky); border-top: var(--stroke); border-bottom: var(--stroke); }
.affiche-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.affiche-embed {
  display: flex;
  justify-content: center;
}
.affiche-embed > * {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-pop) !important;
}
.affiche-embed iframe {
  border: var(--stroke) !important;
  border-radius: var(--radius) !important;
}
.affiche-recap {
  background: var(--white);
  border: var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.affiche-recap h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.2rem;
  margin: 0;
  text-transform: uppercase;
}
.affiche-recap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.affiche-recap-list li {
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.recap-icon { font-size: 1.1rem; }
.affiche-ig-link {
  color: var(--navy);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .7;
}
.affiche-ig-link:hover { opacity: 1; }

/* ===== Final CTA ===== */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: var(--fuchsia);
  text-align: center;
}
.final-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.final-cta h2 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); }
.final-cta .hero-actions { justify-content: center; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); padding: 12px 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-logo {
  height: 34px;
  width: auto;
}
.footer-links { display: flex; align-items: center; gap: 10px; }
.footer-links .social-link { border-color: var(--sky); color: var(--white); width: 28px; height: 28px; }
.footer-links .social-link svg { width: 15px; height: 15px; }
.footer-links .social-link:hover { background: var(--sky); color: var(--navy); }
.footer-ticket-link {
  color: var(--white);
  font-weight: 600;
  font-size: .82rem;
  margin-left: 4px;
}
.footer-ticket-link:hover { color: var(--yellow); }
.footer-contact {
  margin: 18px 0 0;
  text-align: center;
  font-size: .82rem;
}
.footer-contact a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.footer-contact a:hover { color: var(--yellow); }
.footer-copyright {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.15);
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
}

/* ===== Mascottes décoratives ===== */
.mascotte {
  position: absolute;
  width: auto;
  pointer-events: none;
  user-select: none;
}
.mascotte-raisons-left {
  left: 12px;
  bottom: 12px;
  height: 110px;
}
.mascotte-raisons-right {
  right: 16px;
  top: 90px;
  height: 100px;
  transform: scaleX(-1);
}
.mascotte-tarifs {
  right: 20px;
  top: 20px;
  height: 140px;
}
.mascotte-cta {
  left: -10px;
  bottom: -20px;
  height: 130px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .infobar-grid { grid-template-columns: repeat(2, 1fr); }
  .raisons-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-grid { grid-template-columns: repeat(3, 1fr); }
  .partenaires-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}

@media (max-width: 760px) {
  .burger { display: flex; }
  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--sky);
    border-bottom: var(--stroke);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    display: none;
    transition: background .35s ease, top .35s cubic-bezier(.4, 0, .2, 1);
  }
  .nav-links.open { display: flex; }
  .nav-links-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(43,43,98,.15);
  }
  .site-header.scrolled .nav-links-bottom-row { border-top-color: rgba(255,255,255,.15); }
  .nav-links-bottom-row .nav-socials { margin: 0; }
  .site-header.scrolled .nav-links {
    top: 60px;
    background: var(--navy);
    border-bottom-color: var(--white);
  }
  .site-header.scrolled .nav-links a { color: var(--white); }
  .site-header.scrolled .nav-links a:hover,
  .site-header.scrolled .nav-links a.active { color: var(--yellow); }
  .site-header.scrolled .nav-links .social-link { border-color: var(--white); color: var(--white); }
  .raisons { padding: 40px 0; }
  .raisons-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tagline-break { display: none; }
  .js-reveal-ready .reveal {
    transition: opacity .3s ease, transform .3s ease;
    transform: translateY(12px);
  }
  .infobar-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .acces-infos { grid-template-columns: 1fr; }
  .partenaires-grid { grid-template-columns: repeat(3, 1fr); }
  .tarifs-cards { gap: 14px; }
  .tarif-card { min-width: 0; flex: 1; padding: 22px 16px; }
  .tarif-price { font-size: 2.2rem; }
  .mascotte { display: none; }
  .mascotte-cta {
    display: block;
    height: 70px;
    left: -6px;
    bottom: -8px;
  }
  .prog-layout { grid-template-columns: 1fr; }
  .affiche-layout { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .footer-inner { flex-direction: column; text-align: center; }

  .timetable-list { gap: 10px; }
  .tt-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    padding: 10px 14px;
    gap: 4px 10px;
  }
  .tt-band-group {
    display: contents;
  }
  .tt-band { font-size: 1.05rem; grid-column: 1; grid-row: 1; }
  .tt-time { font-size: .85rem; grid-column: 2; grid-row: 1; white-space: nowrap; }
  .tt-platforms { grid-column: 1 / -1; grid-row: 2; }
  .platform-link { width: 24px; height: 24px; }
  .platform-link svg { width: 14px; height: 14px; }
}
