@property --gradient_rotate {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* =============================================================================
   Circles 2 — variables, reset léger, typo
   ============================================================================= */
:root {
  --yellow: #FFF47C;
  --pink: #fe9b96;
  --green: #36fe97;
  --off-white: #fefdfc;
  --white: #ffffff;
  --black: #000000;
  --circles-black: #142027;
  --radius: 20px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Satoshi", system-ui, sans-serif;
  --nav-bar-h: 5.1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
}

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

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

/* =============================================================================
   Ticker haut (segments colorés, boucle continue)
   ============================================================================= */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
}

.top-ticker {
  overflow: hidden;
  background: linear-gradient(90deg, #FF96E8 0%, #FFA874 100%);
}

.top-ticker__track {
  display: flex;
  width: max-content;
  animation: top-ticker-scroll 45s linear infinite;
}

@keyframes top-ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.top-ticker__segment {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0.6rem 2rem;
  font-family: var(--font-display);
  font-optical-sizing: none;
  color: var(--black);
  white-space: nowrap;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}

/* "JE PRENDS MES BILLETS →" — gradient, poids 600, opsz 76, majuscules */
.top-ticker__segment--gradient {
  background: var(--yellow);
  font-weight: 600;
  font-variation-settings: 'opsz' 76;
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s ease;
}

.top-ticker__segment--gradient:hover {
  background: var(--pink);
  transition: all 0.5s ease;
}

/* Autres segments — dégradé rose/orange, poids 400, opsz 50, minuscules */
.top-ticker__segment--yellow {
  background: linear-gradient(90deg, #FF96E8, #FFA874);
  font-weight: 400;
  font-variation-settings: 'opsz' 50;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  text-transform: none;
}

/* =============================================================================
   Header / nav
   ============================================================================= */
.site-header {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(28px) saturate(1.1);
  -webkit-backdrop-filter: blur(28px) saturate(1.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-bar__left {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.nav-bar__link {
  color: var(--off-white);
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 80;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  transition: all 0.5s ease;
}

.nav-bar__link:hover {
  text-decoration: none;
  color: var(--yellow);
  transition: all 0.5s ease;
}

.nav-bar__logo {
  justify-self: center;
}

.nav-bar__logo-img {
  display: block;
  height: 4.5rem;
  width: auto;
}

.nav-bar__meta {
  margin: 0;
  justify-self: end;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 96;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--off-white);
}

.nav-gradient-placeholder {
  display: none;
}

.nav-bar__burger {
  display: none;
}

/* =============================================================================
   Menu mobile (burger)
   ============================================================================= */
.mobile-menu {
  display: none;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(28px) saturate(1.1);
  -webkit-backdrop-filter: blur(28px) saturate(1.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem 1.25rem;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 80;
  font-size: 1.15rem;
  color: var(--off-white);
  text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease;
}

.mobile-menu__link:last-child {
  border-bottom: none;
}

.mobile-menu__link:hover {
  color: var(--yellow);
}

/* =============================================================================
   Hero
   ============================================================================= */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--nav-bar-h));
  min-height: calc(90vh + var(--nav-bar-h));
  min-height: calc(90dvh + var(--nav-bar-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111 center / cover no-repeat url("graphics/placeholder_hero.png");
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.0) 40%, rgba(0, 0, 0, 0.65) 100%);
}

.hero__overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero__logo-img {
  display: block;
  width: clamp(8rem, 40vw, 40rem);
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.4));
  animation: hero-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero__cta-wrap {
  animation: hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 96;
  border-radius: 14px;
  border: none;
  cursor: pointer;
}

.btn__arrow {
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn--hero {
  position: relative;
  padding: 0.9rem 2.5rem;
  background: var(--yellow);
  border: 3px solid var(--black);
  color: var(--black);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  letter-spacing: 0.02em;
  transition: filter 0.5s ease;
}

.btn--hero::before {
  display: none;
}

@keyframes btn-gradient-rotate {
  from {
    --gradient_rotate: 0deg;
  }

  to {
    --gradient_rotate: 360deg;
  }
}

.btn--hero:hover {
  filter: brightness(1.08);
}

.btn--hero:hover .btn__arrow {
  transform: translate(3px, -3px);
}

.btn--footer {
  padding: 0.6rem 1.5rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.95rem;
  border-radius: 999px;
}

/* =============================================================================
   Sections génériques
   ============================================================================= */
.section {
  position: relative;
  z-index: 2;
}

.section--pitch {
  background: var(--off-white);
  color: var(--black);
  text-align: center;
  padding: 4rem 1.5rem 1rem;
}

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

.pitch__title {
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1rem, 4vw, 4.5rem);
  font-variation-settings: 'opsz' 96;
  color: var(--circles-black);
  line-height: 1.05;
  max-width: 65rem;
}

.pitch__text {
  margin: 0 auto 2rem;
  max-width: 52rem;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.3;
  font-weight: 400;
}

.spacing-100 {
  height: 100px;
}

.spacing-adaptive-100 {
  height: 100px;
}

.spacing-50 {
  height: 50px;
}

/* =============================================================================
   Carrousels — nav boutons verts
   ============================================================================= */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}


.pitch__cta {
  display: block;
  width: fit-content;
  margin: 2.5rem auto 3rem;
}

.carousel-nav--testimonials {
  justify-content: flex-start;
  margin-bottom: 0;
}

.carousel-nav__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1.5px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 96;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav__btn svg {
  stroke-width: 2;
}

.carousel-nav__btn:hover {
  background: brightness(1.08);
  transition: background 0.5s ease;

}

.section--carousel-activities {
  background: var(--off-white);
  padding: 0 0 4rem;
}

/* --- Tab bar --- */
.activities-tab-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.activities-tab-bar__tabs {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.activities-tab-bar__indicator {
  position: absolute;
  top: -5px;
  bottom: -5px;
  border-radius: 55px;
  background: linear-gradient(90deg, #FED96B, #FFCDE7);
  border: 1.5px solid var(--black);
  z-index: 0;
  pointer-events: none;
  transition: left 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
    width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.activities-tab-bar__tab {
  position: relative;
  z-index: 1;
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 76;
  font-size: clamp(0.75rem, 1.15vw, 1rem);
  color: var(--black);
  padding: 0.5rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: none;
}

/* Mobile: dots de pagination */
.activities-tab-dots {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 6px;
  align-items: center;
}

.activities-tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--black);
  opacity: 0.2;
  transition: opacity 0.3s ease, width 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.activities-tab-dot.is-active {
  opacity: 1;
  width: 22px;
}

/* --- Cards 3-up --- */
.activities-carousel {
  position: relative;
  overflow: hidden;
  height: clamp(260px, 37vw, 450px);
  max-width: 1280px;
  margin: 0 auto;
}

/* Gradient fade sur les bords pour masquer les cards latérales progressivement */
.activities-carousel::before,
.activities-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  z-index: 10;
  pointer-events: none;
}

.activities-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white) 0%, transparent 100%);
}

.activities-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white) 0%, transparent 100%);
}

.activity-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 42%, 520px);
  aspect-ratio: 6 / 5;
  border-radius: calc(var(--radius) + 1px);
  padding: 2.5px;
  background: linear-gradient(135deg, #FFD343 0%, #FF88B4 100%);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: left 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.activity-card.is-active {
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.activity-card.is-prev {
  left: 5%;
  transform: translate(-50%, -50%) scale(0.78);
  opacity: 0.6;
  pointer-events: auto;
  cursor: pointer;
  z-index: 1;
}

.activity-card.is-next {
  left: 95%;
  transform: translate(-50%, -50%) scale(0.78);
  opacity: 0.6;
  pointer-events: auto;
  cursor: pointer;
  z-index: 1;
}

.activity-card__img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 0;
  padding: 0;
  background: none;
}

.activity-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  display: block;
}

.activity-card__caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  margin: 0;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 76;
  font-size: clamp(0.8rem, 1.3vw, 1rem);
  color: var(--black);
  line-height: 1.4;
}

/* =============================================================================
   Trailer (titre contour + cadre + badges)
   ============================================================================= */
.section--trailer {
  padding: 5rem 0rem 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 136, 180, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(254, 227, 54, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 211, 67, 0.15) 0%, transparent 45%),
    #0a0a0a;
}

.trailer__heading {
  margin: 0 0 2rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(3.5rem, 14vw, 9rem);
  padding-top: 100px;
  padding-bottom: 20px;
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 2px var(--off-white);
  text-stroke: 2px var(--off-white);
  paint-order: stroke fill;
}

.trailer__frame-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 3rem;
}

/* Largeur pilotée par JS (50vw → 95vw), comme GSAP revealed-view */
.trailer__frame {
  position: relative;
  width: 50vw;
  max-width: 100%;
}

.trailer__youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--black);
  background: #111;
}

.trailer__youtube iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.trailer__pin {
  position: absolute;
  width: 9rem;
  height: 9rem;
  z-index: 2;
  animation: trailer-spin 10s linear infinite;
}

.trailer__pin--left {
  left: -4.5rem;
  top: 0;
}

.trailer__pin--right {
  right: -4.5rem;
  bottom: 25%;
}

@keyframes trailer-spin {
  to {
    transform: rotate(360deg);
  }
}

/* =============================================================================
   Triple marquee (mêmes keyframes que old/globals.css)
   ============================================================================= */
.triple-marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0 3rem;
  transform: rotate(1deg);
}

.triple-marquee-row {
  display: flex;
  white-space: nowrap;
}

.triple-marquee-row--reverse {
  animation: marquee-reverse 20s linear infinite;
}

.triple-marquee-row--forward {
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.triple-marquee-item {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #fff;
  margin: 0 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* =============================================================================
   Témoignages
   ============================================================================= */
.section--testimonials {
  background: linear-gradient(135deg, #FFD343 0%, #FF88B4 100%);
  color: var(--black);
  padding: 5rem 4rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 5rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.testimonials__col {
  min-width: 0;
}

.testimonials__col--visual {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  padding: 2rem 0;
}

.testimonials__photo-wrap {
  width: 90%;
  border-radius: calc(var(--radius) + 3px);
  padding: 3px;
  background: white;
  transform: rotate(3deg);
  transform-origin: center center;
}

.carousel-nav__btn-testimonial {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1.5px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 96;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials__photo {
  display: block;
  width: 520px;
  height: 680px;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  object-fit: cover;

}

.testimonials__title {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 96;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1.05;
  color: var(--black);
}

.testimonials-carousel {
  overflow-x: hidden;
  overflow-y: visible;
  margin-top: 1.5rem;
  width: 100%;
  padding: 8px 0;
}

.testimonials-carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  padding: 2rem 2.5rem;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 10rem;
  box-sizing: border-box;
}

.testimonial-card__quote {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--black);
}

.testimonial-card__author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}

/* =============================================================================
   Infos
   ============================================================================= */
.section--infos {
  background: var(--black);
  color: var(--off-white);
  padding: 10rem 1.5rem 5rem;
}

.infos__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.infos__brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.infos__brand__photo {
  display: block;
  width: clamp(100px, 20vw, 300px);
  height: clamp(100px, 20vw, 300px);
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.infos__disco {
  font-size: 2.5rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.infos__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.infos__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.infos__accordion {
  margin: 0;
}

.infos__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.infos__row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.infos__q {
  margin: 0;
  font-weight: 800;
  font-family: var(--font-display);
}

.infos__a {
  margin: 0;
  opacity: 0.92;
  font-size: 1rem;
}

/* =============================================================================
   Galerie — en-tête + zone scroll (stacking)
   ============================================================================= */
.section--gallery-head {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background: var(--black);
}

.gallery__heading {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(3rem, 12vw, 7rem);
  color: transparent;
  -webkit-text-stroke: 2px var(--off-white);
  text-stroke: 2px var(--off-white);
}

.gallery__sub {
  margin: 0.75rem auto 0;
  max-width: 52rem;
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.stacking-gallery-spacer {
  position: relative;
  height: calc(var(--gallery-scroll-mult, 12) * 50vh);
  background: var(--black);
}

.stacking-gallery-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.stacking-gallery-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

.stacking-gallery-cards {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.stack-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 640px);
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.stack-card.is-portrait {
  width: auto;
  height: min(65vh, 560px);
  aspect-ratio: 2 / 3;
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .stack-card {
    width: min(50vw, 600px);
  }

  .stack-card.is-portrait {
    width: auto;
    height: min(70vh, 620px);
  }
}

@media (min-width: 1024px) {
  .stack-card {
    width: min(38vw, 580px);
  }

  .stack-card.is-portrait {
    width: auto;
    height: min(72vh, 660px);
  }
}

/* =============================================================================
   Footer
   ============================================================================= */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4.5rem 2rem 2.5rem;
}

.site-footer__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.site-footer__logo {
  height: 3.5rem;
  width: auto;
}

.site-footer__tagline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 96;
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  color: var(--off-white);
  line-height: 1.15;
}

.site-footer__bar {
  max-width: 680px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__links {
  display: flex;
  gap: 1.5rem;
}

.site-footer__link {
  font-size: 0.9rem;
  color: rgba(251, 249, 244, 0.55);
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: var(--off-white);
}

.site-footer__legal {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(251, 249, 244, 0.35);
}

.site-footer__instagram {
  color: rgba(251, 249, 244, 0.55);
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.site-footer__instagram:hover {
  color: var(--off-white);
}

/* =============================================================================
   Animations — hero on-load + reveal au scroll
   ============================================================================= */
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {

  .hero__logo-img,
  .hero__cta-wrap {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================================================
   Responsive ≤1024px — nav bascule en mode burger
   ============================================================================= */
@media (max-width: 1024px) {
  .nav-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
  }

  .nav-bar__left {
    display: none;
  }

  .nav-bar__logo {
    order: 1;
    justify-self: auto;
    flex-shrink: 0;
  }

  .nav-bar__logo-img {
    height: 2.5rem;
  }

  .nav-bar__meta {
    order: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    justify-self: auto;
    font-family: var(--font-display);
    font-weight: 600;
    font-optical-sizing: none;
    font-variation-settings: 'opsz' 80;
    font-size: clamp(0.72rem, 1.2vw, 0.9rem);
    color: var(--off-white);
    line-height: 1.3;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu.is-open {
    max-height: 300px;
    opacity: 1;
  }

  .nav-bar__burger {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
  }

  .nav-bar__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--off-white);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
  }

  .nav-bar__burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-bar__burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-bar__burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* =============================================================================
   Responsive ≤768px
   ============================================================================= */
@media (max-width: 768px) {
  .masthead {
    position: static;
  }

  .spacing-adaptive-100 {
    height: 10px;
  }

  .stacking-gallery-cards {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
  }

  .hero__logo-img {
    width: clamp(8rem, 85vw, 50rem);
  }

  .stack-card {
    width: min(88vw, 500px);
  }

  .stack-card.is-portrait {
    width: auto;
    height: min(62vh, 480px);
  }

  .hero {
    position: relative;
    margin-top: 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
  }

  .pitch__title {
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.05;
    max-width: 18ch;
  }

  .pitch__text {
    font-size: 1.1rem;
  }

  /* Tab bar mobile : labels masqués, points visibles */
  .activities-tab-bar {
    padding: 1.25rem 1rem;
    gap: 0.75rem;
  }

  .activities-tab-bar__tabs {
    display: none;
  }

  .activities-tab-dots {
    display: flex;
  }

  /* Cards mobile */
  .activities-carousel {
    height: clamp(210px, 70vw, 380px);
  }

  .activity-card {
    width: clamp(220px, 75%, 340px);
  }

  .activity-card.is-prev {
    left: 2%;
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0.35;
  }

  .activity-card.is-next {
    left: 98%;
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0.35;
  }

  .activities-carousel::before,
  .activities-carousel::after {
    width: 15%;
  }

  .section--testimonials {
    padding: 3rem 1.25rem;
    overflow: hidden;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials__title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1.25rem;
  }

  .testimonials-carousel {
    margin-top: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }

  .testimonials__col--visual {
    padding: 0.5rem 0 0;
  }

  .testimonials__photo-wrap {
    transform: rotate(2deg);
    max-width: 82%;
    margin: 0 auto;
  }

  .testimonials__photo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }

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

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

  .trailer__frame-wrap {
    overflow: visible;
    padding-bottom: 0;
  }

  .trailer__frame {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
  }

  .trailer__youtube {
    order: -1;
    flex: 0 0 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .trailer__pin {
    position: static;
    order: 0;
    width: 6rem;
    height: 6rem;
    flex-shrink: 0;
  }

  .trailer__pin--left {
    left: auto;
    top: auto;
  }

  .trailer__pin--right {
    right: auto;
    bottom: auto;
  }

  .site-footer {
    padding: 3rem 1.25rem 2rem;
  }

  .site-footer__bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .site-footer__links {
    justify-content: center;
  }
}

/* =============================================================================
   Page Programme
   ============================================================================= */

/* --- Hero --- */
.prog-hero {
  background: var(--black) url('graphics/program_bg.png') center center / cover no-repeat;
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  overflow: hidden;
}

.prog-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.prog-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 0.3rem 1.1rem;
  border-radius: 999px;
}

.prog-hero__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(4.5rem, 16vw, 11rem);
  line-height: 0.92;
  color: transparent;
  -webkit-text-stroke: 2px var(--off-white);
}

.prog-hero__subtitle {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: rgba(251, 249, 244, 0.95);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* --- Notice 2026 --- */
.prog-notice {
  background: linear-gradient(90deg, #81EEFA, #FE8BDF);
  padding: 0.9rem 2rem;
}

.prog-notice__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.prog-notice__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.prog-notice__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  line-height: 1.5;
}

.prog-notice__link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--black);
  margin-left: 0.5rem;
  white-space: nowrap;
}

/* --- Filtre jours --- */
.prog-filter-wrap {
  position: sticky;
  z-index: 40;
  background: var(--off-white);
  border-bottom: 2px solid var(--black);
}

.prog-filter {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
}

.prog-filter__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-family: var(--font-display);
  color: rgba(0, 0, 0, 0.38);
  transition: color 0.2s ease;
  position: relative;
}

.prog-filter__btn:last-child {
  border-right: none;
}

.prog-filter__btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.prog-filter__btn.is-active {
  color: var(--black);
}

.prog-filter__btn.is-active::after {
  transform: scaleX(1);
}

.prog-filter__btn:hover:not(.is-active) {
  color: rgba(0, 0, 0, 0.65);
}

.prog-filter__day {
  font-weight: 700;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 76;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
}

.prog-filter__date {
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0.7;
}

/* --- Contenu principal --- */
.prog-main {
  background: var(--off-white);
  color: var(--black);
  min-height: 60vh;
}

.prog-day__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

/* --- Événement (timeline) --- */
.prog-event {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.prog-event:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2.5rem;
}

.prog-event__time {
  font-family: var(--font-display);
  font-weight: 800;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 76;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.03em;
  padding-top: 0.2rem;
  flex-shrink: 0;
}

.prog-event__minutes {
  font-size: 0.62em;
  opacity: 0.4;
  font-weight: 600;
  letter-spacing: 0;
}

.prog-event__card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.prog-event--highlight .prog-event__card {
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  gap: 0.5rem;
}

.prog-event__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.1rem;
}

.prog-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  color: var(--black);
}

.prog-tag--accueil {
  background: var(--yellow);
}

.prog-tag--soiree {
  background: linear-gradient(90deg, #FF96E8, #FFA874);
}

.prog-tag--repas {
  background: #FD8C40;
  color: #fff;
}

.prog-tag--atelier {
  background: #81EEFA;
}

.prog-tag--sport {
  background: #54FA89;
}

.prog-tag--animation {
  background: #FE8BDF;
}

.prog-tag--fin {
  background: var(--black);
  color: var(--off-white);
}

.prog-event__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 76;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.2;
  color: var(--black);
}

.prog-event__desc {
  margin: 0;
  font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.6);
}

.prog-event__list {
  margin: 0.2rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.65);
}

.prog-event__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
  background: var(--yellow);
  border: 1.5px solid var(--black);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  width: fit-content;
}

/* --- Activités libres --- */
.prog-aside {
  background: var(--black);
  padding: 3.5rem 2rem;
}

.prog-aside__inner {
  max-width: 900px;
  margin: 0 auto;
}

.prog-aside__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 96;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--off-white);
}

.prog-aside__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.prog-free-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.06);
}

/* --- CTA section --- */
.prog-cta-section {
  background: linear-gradient(135deg, #FF96E8 0%, #FFA874 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.prog-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.prog-cta-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.08);
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
}

.prog-cta-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 96;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--black);
  line-height: 1.05;
}

.prog-cta-sub {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
}

/* --- Responsive programme --- */
@media (max-width: 768px) {
  .prog-hero__title {
    -webkit-text-stroke-width: 1.5px;
    font-size: clamp(2rem, 15vw, 4rem);
  }

  .prog-event {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .prog-event__time {
    font-size: 2rem;
  }

  .prog-filter__btn {
    padding: 0.8rem 0.5rem;
  }

  .prog-filter__day {
    font-size: 0.85rem;
  }

  .prog-aside {
    padding: 2.5rem 1.5rem;
  }

  .prog-event--highlight .prog-event__card {
    padding: 1rem 1.1rem;
  }
}