/*
Theme: So Culte ! Nos Années 90
Custom stylesheet
--------------------------------------------------
Dernière consolidation : 28 août 2026
--------------------------------------------------
*/


/* ==================================================
   01. HEADER + HERO + PAGES GLOBALES
================================================== */

.l-header .w-nav-anchor {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
	text-transform : uppercase;
}


/* ==================================================
   HERO — SO CULTE
================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 0 !important;
  overflow: hidden;
  background: #120a24;
}

/* Force les conteneurs internes d'Impreza à prendre toute la hauteur */
.hero-section > .l-section-h,
.hero-section .g-cols,
.hero-section .vc_column_container,
.hero-section .vc_column-inner {
  min-height: 100vh;
}

/* Supprime les espacements éventuels de la colonne */
.hero-section .vc_column-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Scène générale */
.hero-scene {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* ==================================================
   BACKGROUND
================================================== */

.hero-bg {
  position: absolute;
  z-index: 1;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 50% 50%;

  display: block;
  user-select: none;
  pointer-events: none;
}

/* Léger voile pour renforcer la profondeur */
.hero-scene::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(18, 10, 36, 0.06) 0%,
      rgba(18, 10, 36, 0) 45%,
      rgba(18, 10, 36, 0.18) 100%
    );

  pointer-events: none;
}





/* ==================================================
   CTA DU HEADER
================================================== */

.l-header .w-btn {
  /*min-height: 48px;
  padding: 0 28px !important;*/

  border: 0 !important;
  border-radius: 999px !important;

  background: #ff2e8a !important;
  color: #ffffff !important;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;

  box-shadow:
    0 0 18px rgba(255, 46, 138, 0.3),
    0 8px 22px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.l-header .w-btn:hover {
  background: #ff4a9b !important;
  color: #ffffff !important;

  transform: translateY(-2px);

  box-shadow:
    0 0 25px rgba(255, 46, 138, 0.48),
    0 12px 28px rgba(0, 0, 0, 0.24);
}


/* ==================================================
   GROUPE CENTRAL
================================================== */

.hero-main {
  position: absolute;
  z-index: 5;

  left: 50%;
  top: 52.5% !important;

  width: min(39vw, 720px);

  transform: translate(-50%, -50%);
  opacity: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Images génériques du Hero */
.hero-item {
  display: block;
  height: auto;
  max-width: none;

  user-select: none;
  pointer-events: none;
}

/* Logo principal */
.hero-logo {

  position: relative;
  z-index: 5;

  width: 100%;

  opacity: 0;

  animation:
    heroLogoReveal 1.1s cubic-bezier(.22,1,.36,1) .35s forwards;

}

/* Cartouche Le Musical */
.hero-musical {
  position: relative;
  z-index: 8;

  width: 51%;
  margin-top: -14.5%;
	
 opacity:0;

  animation:
    heroMusicalReveal .65s ease-out .55s forwards;
	
}






/* ==================================================
   CTA PRINCIPAL DU HERO
================================================== */

.hero-cta {
  position: relative;
  z-index: 10;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 260px;
  min-height: 62px;
  margin-top: 28px;
  padding: 0 46px;

  border: 2px solid rgba(255, 255, 255, 0.88) !important;
  border-radius: 999px !important;

  background:
    linear-gradient(
      180deg,
      #ff4299 0%,
      #ff2e8a 100%
    );

  color: #ffffff !important;

  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-decoration: none !important;

  box-shadow:
    0 0 0 1px rgba(255, 46, 138, 0.35),
    0 0 18px rgba(255, 255, 255, 0.24),
    0 0 34px rgba(255, 46, 138, 0.72),
    0 14px 36px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  cursor: pointer;

  transition:
    transform 0.3s cubic-bezier(.22, 1, .36, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: -7px;

  border: 1px solid rgba(255, 46, 138, 0.2);
  border-radius: inherit;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: #ffffff !important;

  border-color: #ffffff !important;

  background:
    linear-gradient(
      180deg,
      #ff5aa7 0%,
      #ff358f 100%
    );

  transform: translateY(-3px) scale(1.025);

  box-shadow:
    0 0 0 1px rgba(255, 46, 138, 0.45),
    0 0 22px rgba(255, 255, 255, 0.32),
    0 0 46px rgba(255, 46, 138, 0.86),
    0 18px 42px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hero-cta:hover::before,
.hero-cta:focus-visible::before {
  opacity: 1;
  transform: scale(1.025);
}

.hero-cta:focus-visible {
  outline: 3px solid rgba(255, 213, 74, 0.85);
  outline-offset: 5px;
}



/* ==================================================
   INDICATION DE SCROLL
================================================== */

.hero-scroll {
  position: relative;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 38px;
  margin-top: 12px;

  color: #ffffff;
  text-decoration: none;

  opacity: 0.9;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.hero-scroll:hover {
  opacity: 1;
}

.hero-scroll__arrow {
  display: block;

  width: 18px;
  height: 18px;

  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;

  transform: rotate(45deg);

  filter:
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 10px rgba(255, 46, 138, 0.55));

  animation: heroScrollArrow 2s ease-in-out infinite;
}

@keyframes heroScrollArrow {
  0%,
  100% {
    opacity: 0.65;
    transform: translateY(-2px) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(6px) rotate(45deg);
  }
}

/* ==================================================
   TABLETTE
================================================== */


@media (min-width: 1500px) {

  .hero-copy {
    top: 10.5%;
  }

  .hero-main {
    top: 55%;
    width: min(39vw, 720px);
  }
}

@media (max-width: 1200px) {

  .hero-copy {
    top: 10.5%;
    width: 90%;
  }

  .hero-producers {
    margin-bottom: 14px;
  }

  .hero-main {
    top: 54%;
    width: min(46vw, 660px);
  }
}

@media (max-width: 1024px) {

  .hero-copy {
    top: 10.5%;
    width: 90%;
  }

  .hero-main {
    top: 53%;
    width: min(64vw, 620px);
  }

  .hero-musical {
    width: 50%;
    margin-top: -13%;
  }

   .hero-cta {
    min-width: 230px;
    min-height: 58px;
    margin-top: 24px;
    padding: 0 38px;
  }
	
    .hero-scroll {
    margin-top: 9px;
  }

  .hero-bg {
    object-position: 50% 50%;
  }
}


@media (max-height: 850px) and (min-width: 1025px) {

 .hero-copy {
    top: 10%;
  }

  .hero-creators {
    font-size: clamp(14px, 1vw, 19px);
  }

   .hero-main {
    top: 56%;
    width: min(35vw, 640px);
  }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

  .hero-section,
  .hero-section > .l-section-h,
  .hero-section .g-cols,
  .hero-section .vc_column_container,
  .hero-section .vc_column-inner,
  .hero-scene {
    min-height: 100svh;
  }

  .hero-main {
    top: 53%;
    width: min(86vw, 500px);
  }

  .hero-musical {
    width: 54%;
    margin-top: -12%;
  }

  .hero-cta {
    min-width: 200px;
    min-height: 54px;

    margin-top: 20px;
    padding: 0 32px;

    border-width: 1.5px !important;

    font-size: 13px;

    box-shadow:
      0 0 0 1px rgba(255, 46, 138, 0.28),
      0 0 24px rgba(255, 46, 138, 0.62),
      0 10px 26px rgba(0, 0, 0, 0.3);
  }
	
   .hero-scroll {
    width: 40px;
    height: 32px;
    margin-top: 8px;
  }
	
	.hero-scroll__arrow {
    width: 14px;
    height: 14px;
    border-width: 0 2px 2px 0;
  }

  .hero-bg {
    object-position: 50% 50%;
  }
	
  .hero-copy {
     top: 9.5%;
    width: 88%;
  }

  .hero-creators {
    font-size: clamp(12px, 3.8vw, 17px);
    line-height: 1.15;
  }
}



/* ==================================================
   OBJETS DU HERO
================================================== */

.hero-object {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  user-select: none;
  pointer-events: none;
  transform-origin: center;
  z-index: 6;
}

/* Valeurs de base : desktop standard */
.hero-skate {
  left: 31%;
  top: 50%;
  width: clamp(145px, 12vw, 235px);
  transform: translate(-50%, -50%) rotate(-10deg);
}

.hero-walkman {
  left: 35%;
  top: 64%;
  width: clamp(110px, 9vw, 175px);
  transform: translate(-50%, -50%) rotate(-4deg);
}

.hero-tamagotchi {
  left: 66%;
  top: 29%;
  width: clamp(90px, 8vw, 145px);
  transform: translate(-50%, -50%) rotate(7deg);
}

.hero-rollin {
  left: 65%;
  top: 55%;
  width: clamp(100px, 10vw, 170px);
  transform: translate(-50%, -50%) rotate(5deg);
}


.hero-light {
  position: absolute;
  z-index: 7;
  display: block;
  height: auto;
  max-width: none;
  user-select: none;
  pointer-events: none;
}

/* Jaune à gauche du skate */
.hero-light-yellow-01 {
  left: 30%;
  top: 46%;
  width: clamp(70px, 6vw, 115px);
  transform:
    translate(
      calc(-50% + var(--parallax-x)),
      calc(-50% + var(--parallax-y))
    )
    rotate(-5deg);
}

/* Jaune en haut à droite */
.hero-light-yellow-02 {
  left: 67%;
  top: 24%;
  width: clamp(65px, 5.5vw, 105px);
  transform:
    translate(
      calc(-50% + var(--parallax-x)),
      calc(-50% + var(--parallax-y))
    )
    rotate(7deg);
}

/* Rose en bas à droite */
.hero-light-pink-01 {
  left: 64%;
  top: 64%;
  width: clamp(65px, 5.5vw, 110px);
  transform:
    translate(
      calc(-50% + var(--parallax-x)),
      calc(-50% + var(--parallax-y))
    )
    rotate(5deg);
}


/* ==================================================
   GRAND DESKTOP
   Tes placements validés
================================================== */

@media (min-width: 1500px) {

  .hero-skate {
    left: 36%;
    top: 33%;
    width: clamp(170px, 13vw, 250px);
  }

  .hero-walkman {
    left: 40%;
    top: 64%;
    width: clamp(120px, 10vw, 190px);
  }

  .hero-tamagotchi {
    left: 62%;
    top: 28%;
    width: clamp(100px, 9vw, 160px);
  }

  .hero-rollin {
    left: 60%;
    top: 54%;
    width: clamp(110px, 11vw, 185px);
  }

  .hero-light-yellow-01 {
    left: 33%;
    top: 49%;
  }

  .hero-light-yellow-02 {
    left: 66%;
    top: 25%;
  }

  .hero-light-pink-01 {
    left: 60%;
    top: 68%;
  }      
}


/* ==================================================
   DESKTOP INTERMÉDIAIRE
================================================== */

@media (max-width: 1499px) {

  .hero-skate {
    left: 36%;
    top: 34%;
  }

  .hero-walkman {
    left: 40%;
    top: 65%;
  }

  .hero-tamagotchi {
    left: 61%;
    top: 30%;
  }

  .hero-rollin {
    left: 61%;
    top: 52%;
  }
    
  .hero-light-yellow-01 {
    left: 33%;
    top: 49%;
  }

  .hero-light-yellow-02 {
    left: 66%;
    top: 25%;
  }

  .hero-light-pink-01 {
    left: 60%;
    top: 68%;
  }    
}


/* ==================================================
   PETIT DESKTOP / LAPTOP
================================================== */

@media (max-width: 1200px) {

  .hero-skate {
    left: 33%;
    top: 35%;
    width: clamp(130px, 14vw, 205px);
  }

  .hero-walkman {
    left: 38%;
    top: 65%;
    width: clamp(100px, 11vw, 160px);
  }

  .hero-tamagotchi {
    left: 64%;
    top: 30%;
    width: clamp(82px, 10vw, 135px);
  }

  .hero-rollin {
    left: 62%;
    top: 55%;
    width: clamp(100px, 12vw, 165px);
  }
    
    .hero-light-yellow-01 {
    left: 28%;
    top: 48%;
  }

  .hero-light-yellow-02 {
    left: 72%;
    top: 27%;
  }

  .hero-light-pink-01 {
    left: 68%;
    top: 60%;
  }    
}


/* ==================================================
   TABLETTE
================================================== */

@media (max-width: 1024px) {

  .hero-skate {
    left: 27%;
    top: 35%;
    width: clamp(130px, 20vw, 200px);
  }

  .hero-walkman {
    left: 34%;
    top: 69%;
    width: clamp(100px, 16vw, 155px);
  }

  .hero-tamagotchi {
    left: 68%;
    top: 29%;
    width: clamp(95px, 14vw, 140px);
  }

  .hero-rollin {
    left: 67%;
    top: 58%;
    width: clamp(100px, 16vw, 150px);
  }
	
   .hero-light-yellow-01 {
    left: 23%;
    top: 48%;
  }

  .hero-light-yellow-02 {
    left: 75%;
    top: 27%;
  }

  .hero-light-pink-01 {
    left: 68%;
    top: 66%;
  }    	
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

  .hero-skate {
    left: 17%;
    top: 35%;
    width: 34vw;
  }

  .hero-walkman {
    left: 25%;
    top: 58%;
    width: 27vw;
  }

  .hero-tamagotchi {
    left: 81%;
    top: 30%;
    width: 22vw;
  }

  .hero-rollin {
    left: 74%;
    top: 51%;
    width: 25vw;
  }
 
    .hero-light-yellow-01 {
    left: 11%;
    top: 51%;
    width: 16vw;
  }

  .hero-light-yellow-02 {
    left: 89%;
    top: 32%;
    width: 16vw;
  }

  .hero-light-pink-01 {
    left: 80%;
    top: 63%;
    width: 15vw;
  }    
}



/* Header sticky après scroll */
.l-header.sticky .l-subheader.at_middle {
  background: rgba(18, 10, 36, 0.88) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}

.l-header .l-subheader.at_middle {
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}




/* ==================================================
   ANIMATIONS D’ENTRÉE
================================================== */

.hero-bg {
  animation: heroBgReveal 1.8s ease-out both;
}



@keyframes heroBgReveal {
  from {
    opacity: 0;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroLogoReveal {

  from{
    opacity:0;
    transform:scale(.985);
  }

  to{
    opacity:1;
    transform:scale(1);
  }

}

@keyframes heroMusicalReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroObjectReveal {

  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  28% {
    opacity: 0;
  }

  36% {
    opacity: 1;
  }

  44% {
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }

}

/* Respect des préférences d’accessibilité */
@media (prefers-reduced-motion: reduce) {

  .hero-bg,
  .hero-logo,
  .hero-musical,
  .hero-object,
  .hero-light,
  .hero-scroll__arrow {
    animation: none !important;
    opacity: 1;
  }

}



.hero-skate {
  opacity: 0;

  animation:
    heroObjectReveal .45s 1.05s steps(1, end) forwards,
    skateFloat 5.5s 1.5s ease-in-out infinite;
}

.hero-walkman {
  opacity: 0;

  animation:
    heroObjectReveal .45s 1.15s steps(1, end) forwards,
    walkmanFloat 6s 1.6s ease-in-out infinite;
}

.hero-tamagotchi {
  opacity: 0;

  animation:
    heroObjectReveal .45s 1.25s steps(1, end) forwards,
    tamagotchiFloat 5s 1.7s ease-in-out infinite;
}

.hero-rollin {
  opacity: 0;

  animation:
    heroObjectReveal .45s 1.35s steps(1, end) forwards,
    rollinFloat 6.5s 1.8s ease-in-out infinite;
}

/* ==================================================
   PARALLAXE SOURIS
================================================== */

.hero-object,
.hero-light {
  --parallax-x: 0px;
  --parallax-y: 0px;
}

@keyframes skateFloat {

  0%, 100% {
    transform:
      translate(
        calc(-50% + var(--parallax-x)),
        calc(-50% + var(--parallax-y))
      )
      rotate(-10deg);
  }

  25% {
    transform:
      translate(
        calc(-48% + var(--parallax-x)),
        calc(-54% + var(--parallax-y))
      )
      rotate(-7deg);
  }

  50% {
    transform:
      translate(
        calc(-52% + var(--parallax-x)),
        calc(-49% + var(--parallax-y))
      )
      rotate(-12deg);
  }

  75% {
    transform:
      translate(
        calc(-49% + var(--parallax-x)),
        calc(-53% + var(--parallax-y))
      )
      rotate(-8deg);
  }
}

@keyframes walkmanFloat {

  0%, 100% {
    transform:
      translate(
        calc(-50% + var(--parallax-x)),
        calc(-50% + var(--parallax-y))
      )
      rotate(-4deg);
  }

  50% {
    transform:
      translate(
        calc(-52% + var(--parallax-x)),
        calc(-55% + var(--parallax-y))
      )
      rotate(-8deg);
  }
}

@keyframes tamagotchiFloat {

  0%, 100% {
    transform:
      translate(
        calc(-50% + var(--parallax-x)),
        calc(-50% + var(--parallax-y))
      )
      rotate(7deg);
  }

  50% {
    transform:
      translate(
        calc(-47% + var(--parallax-x)),
        calc(-54% + var(--parallax-y))
      )
      rotate(13deg);
  }
}

@keyframes rollinFloat {

  0%, 100% {
    transform:
      translate(
        calc(-50% + var(--parallax-x)),
        calc(-50% + var(--parallax-y))
      )
      rotate(5deg);
  }

  50% {
    transform:
      translate(
        calc(-53% + var(--parallax-x)),
        calc(-54% + var(--parallax-y))
      )
      rotate(-2deg);
  }
}


@media (max-width: 767px) {

  @keyframes skateFloat {
    0%, 100% {
      transform: translate(-50%, -50%) rotate(-10deg);
    }

    50% {
      transform: translate(-50%, calc(-50% - 3px)) rotate(-9deg);
    }
  }

  @keyframes walkmanFloat {
    0%, 100% {
      transform: translate(-50%, -50%) rotate(-4deg);
    }

    50% {
      transform: translate(-50%, calc(-50% + 3px)) rotate(-5deg);
    }
  }

  @keyframes tamagotchiFloat {
    0%, 100% {
      transform: translate(-50%, -50%) rotate(7deg);
    }

    50% {
      transform: translate(-50%, calc(-50% - 3px)) rotate(8deg);
    }
  }

  @keyframes rollinFloat {
    0%, 100% {
      transform: translate(-50%, -50%) rotate(5deg);
    }

    50% {
      transform: translate(-50%, calc(-50% + 3px)) rotate(4deg);
    }
  }
}



html {
  scroll-behavior: smooth;
}

#billetterie {
  scroll-margin-top: 100px;
}


/* ==================================================
   PAGES LÉGALES
================================================== */

.sc-legal-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(255, 68, 144, 0.1),
      transparent 30%
    ),
    #100d16;
  color: rgba(255, 255, 255, 0.76);
}

.sc-legal-page,
.sc-legal-page * {
  box-sizing: border-box;
}

.sc-legal-container {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}


/* HERO
================================================== */

.sc-legal-hero {
  position: relative;
  padding: clamp(150px, 15vw, 230px) 0 clamp(80px, 9vw, 130px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sc-legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.025),
      transparent 42%
    );
}

.sc-legal-hero__glow {
  position: absolute;
  top: 5%;
  right: -8%;
  width: clamp(300px, 42vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;

  background: rgba(255, 60, 138, 0.12);
  filter: blur(100px);
}

.sc-legal-hero .sc-legal-container {
  position: relative;
  z-index: 1;
}

.sc-legal-hero h1 {
  max-width: 940px;
  margin: 22px 0 26px;

  color: #fff;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.sc-legal-hero__intro {
  max-width: 720px;
  margin: 0;

  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.65;
}

.sc-legal-hero__intro strong {
  color: #fff;
}


/* LAYOUT
================================================== */

.sc-legal-content {
  padding: clamp(80px, 10vw, 150px) 0;
}

.sc-legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.sc-legal-main {
  min-width: 0;
}


/* SOMMAIRE
================================================== */

.sc-legal-summary {
  position: sticky;
  top: 130px;
}

.sc-legal-summary__label {
  display: block;
  margin-bottom: 22px;

  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sc-legal-summary nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-legal-summary a {
  position: relative;
  display: block;
  padding: 8px 0 8px 16px;

  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.sc-legal-summary a::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease;
}

.sc-legal-summary a:hover {
  color: #fff;
  transform: translateX(3px);
}

.sc-legal-summary a:hover::before {
  background: #ff4f9a;
}


/* SECTIONS
================================================== */

.sc-legal-section {
  position: relative;
  padding: 0 0 clamp(64px, 7vw, 100px);
  margin-bottom: clamp(64px, 7vw, 100px);
  scroll-margin-top: 140px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sc-legal-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.sc-legal-section--intro {
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;

  background: rgba(255, 255, 255, 0.04);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 70px rgba(0, 0, 0, 0.18);
}

.sc-legal-section__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 42px;
  height: 27px;
  margin-bottom: 20px;
  padding: 0 12px;

  border: 1px solid rgba(255, 79, 154, 0.3);
  border-radius: 999px;

  color: #ff76b1;
  background: rgba(255, 79, 154, 0.07);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sc-legal-section h2 {
  max-width: 780px;
  margin: 0 0 30px;

  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.sc-legal-section h3 {
  margin: 0 0 12px;

  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}

.sc-legal-section .sc-legal-subtitle {
  margin-top: 35px;
  font-size: clamp(20px, 2vw, 25px);
}

.sc-legal-section p {
  max-width: 820px;
  margin: 0 0 20px;

  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.85;
}

.sc-legal-section p:last-child {
  margin-bottom: 0;
}

.sc-legal-section strong {
  color: rgba(255, 255, 255, 0.94);
}

.sc-legal-section a {
  color: #ff76b1;
  text-decoration-color: rgba(255, 118, 177, 0.35);
  text-underline-offset: 4px;
}

.sc-legal-section a:hover {
  color: #fff;
}

.sc-legal-lead {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: clamp(19px, 2vw, 24px) !important;
  line-height: 1.65 !important;
}


/* CARTES
================================================== */

.sc-legal-card {
  max-width: 820px;
  margin-top: 32px;
  padding: clamp(28px, 4vw, 44px);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 25px 60px rgba(0, 0, 0, 0.2);
}

.sc-legal-card h3 {
  margin-bottom: 16px;
  font-size: clamp(23px, 2.5vw, 32px);
}

.sc-legal-card address {
  margin: 22px 0;

  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-style: normal;
  line-height: 1.8;
}

.sc-legal-details {
  margin: 30px 0 0;
}

.sc-legal-details > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) 1fr;
  gap: 25px;
  padding: 15px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.sc-legal-details dt {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sc-legal-details dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}


/* LISTES
================================================== */

.sc-legal-list {
  display: grid;
  gap: 13px;

  max-width: 820px;
  margin: 28px 0 30px;
  padding: 0;

  list-style: none;
}

.sc-legal-list li {
  position: relative;
  padding: 17px 20px 17px 46px;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;

  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.025);

  font-size: 15px;
  line-height: 1.65;
}

.sc-legal-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 21px;

  width: 7px;
  height: 7px;
  border-radius: 50%;

  background: #ff579d;

  box-shadow: 0 0 14px rgba(255, 87, 157, 0.55);
}


/* BASES LÉGALES
================================================== */

.sc-legal-bases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;

  max-width: 900px;
  margin-top: 35px;
}

.sc-legal-basis {
  padding: 28px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.035);
}

.sc-legal-basis h3 {
  font-size: 18px;
}

.sc-legal-basis p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}


/* ENCADRÉ COOKIES
================================================== */

.sc-legal-notice {
  max-width: 820px;
  margin: 35px 0;
  padding: clamp(26px, 4vw, 40px);

  border: 1px solid rgba(255, 191, 63, 0.25);
  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 191, 63, 0.1),
      rgba(255, 255, 255, 0.025)
    );
}

.sc-legal-notice p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.84);
}

.sc-legal-cookie-button,
.sc-cookie-settings {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 0 22px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;

  color: #fff;
  background: rgba(255, 255, 255, 0.08);

  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.sc-legal-cookie-button:hover,
.sc-cookie-settings:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

p .sc-cookie-settings {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;

  color: #ff76b1;
  background: none;

  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 118, 177, 0.35);
  text-underline-offset: 4px;
}


/* TABLEAU
================================================== */

.sc-legal-table-wrapper {
  max-width: 900px;
  margin-top: 35px;
  overflow-x: auto;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.sc-legal-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.sc-legal-table th,
.sc-legal-table td {
  padding: 20px 24px;
  text-align: left;
  vertical-align: top;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-legal-table th {
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);

  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sc-legal-table td {
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.65;
}

.sc-legal-table tbody tr:last-child td {
  border-bottom: 0;
}


/* CONTACT
================================================== */

.sc-legal-contact {
  max-width: 820px;
  margin: 32px 0;
  padding: clamp(26px, 4vw, 38px);

  border-left: 3px solid #ff579d;
  border-radius: 0 18px 18px 0;

  background: rgba(255, 255, 255, 0.04);
}

.sc-legal-contact > span {
  display: block;
  margin-bottom: 10px;

  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sc-legal-contact > a {
  display: inline-block;
  color: #fff;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 700;
}

.sc-legal-contact p {
  margin: 18px 0 0;
  font-size: 14px;
}

.sc-legal-update {
  display: inline-flex;
  margin-top: 34px;
  padding: 10px 15px;

  border-radius: 999px;

  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.045);

  font-size: 11px;
  letter-spacing: 0.04em;
}


/* RESPONSIVE
================================================== */

@media (max-width: 980px) {

  .sc-legal-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .sc-legal-summary {
    position: static;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sc-legal-summary nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 20px;
  }

}


@media (max-width: 680px) {

  .sc-legal-container {
    width: min(100% - 32px, 1240px);
  }

  .sc-legal-hero {
    padding-top: 130px;
  }

  .sc-legal-hero h1 {
    font-size: clamp(47px, 15vw, 72px);
  }

  .sc-legal-summary nav {
    grid-template-columns: 1fr;
  }

  .sc-legal-section {
    padding-bottom: 58px;
    margin-bottom: 58px;
  }

  .sc-legal-section--intro {
    padding: 25px;
  }

  .sc-legal-card {
    padding: 25px;
    border-radius: 20px;
  }

  .sc-legal-details > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .sc-legal-bases {
    grid-template-columns: 1fr;
  }

  .sc-legal-list li {
    padding-right: 16px;
  }

}


/* ==================================================
   02. SECTIONS DE LA HOMEPAGE
================================================== */

/* ==================================================
   SECTION INTRODUCTION
================================================== */

.sc-intro-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;

  background: #120a24 !important;
}


/* Conteneurs internes Impreza au-dessus des halos */
.sc-intro-section > .l-section-h,
.sc-intro-section .g-cols,
.sc-intro-section .vc_column_container,
.sc-intro-section .vc_column-inner,
.sc-intro-section .wpb_wrapper {
  position: relative;
  z-index: 2;
  background: transparent !important;
}




/* Halos */
.sc-intro-section::before,
.sc-intro-section::after {
  content: "";

  position: absolute;
  z-index: 1;

  width: 700px;
  height: 700px;

  border-radius: 50%;
  filter: blur(110px);
  -webkit-filter: blur(110px);

  opacity: 0.28;

  pointer-events: none;
}

.sc-intro-section::before {
  left: -280px;
  top: -170px;

  background: #6d48ff;
}

.sc-intro-section::after {
  right: -280px;
  bottom: -190px;

  background: #ff2e8a;
}



.sc-intro {
  position: relative;
  z-index: 3;

  max-width: 1240px;
  margin: 0 auto;
  padding: 140px 30px 150px;

  color: #ffffff;
  text-align: center;

  /* Important : ne pas recouper les halos */
  overflow: visible;
}

.sc-intro__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.sc-kicker {
  display: inline-block;
  margin-bottom: 24px;

  color: #ff2e8a;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sc-intro h2 {
  max-width: 980px;
  margin: 0 auto 34px;

  color: #ffffff;

  font-size: clamp(42px, 5vw, 76px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.sc-intro__lead {
  max-width: 800px;
  margin: 0 auto 22px;

  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}


/* ==================================================
   TEXTE INTRO EN 2 COLONNES
================================================== */

.sc-intro__text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 80px);

  max-width: 980px;
  margin: 42px auto 0;

  text-align: left;
}

.sc-intro__column {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.sc-intro__column p {
  margin: 0;
}

.sc-intro__highlight {
  position: relative;

  padding-left: 22px;

  color: rgba(255,255,255,.92);
  font-size: 20px;
  line-height: 1.65;
}

.sc-intro__highlight::before {
  content: "";

  position: absolute;

  left: 0;
  top: 4px;
  bottom: 4px;

  width: 3px;

  border-radius: 99px;

  background: linear-gradient(
    to bottom,
    #ff2e8a,
    #745bff
  );
}

.sc-intro__highlight strong {
  color: #ffffff;
}

.sc-intro p:not(.sc-intro__lead) {
  max-width: 720px;
  margin: 0 auto;

  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.sc-intro__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 44px;
}

.sc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 16px 30px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.sc-button--primary {
  color: #ffffff;
  background: #ff2e8a;
  border: 1px solid #ff2e8a;

  box-shadow:
    0 0 20px rgba(255, 46, 138, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.2);
}

.sc-button--primary:hover {
  color: #ffffff;
  background: #ff4a9b;
  border-color: #ff4a9b;

  transform: translateY(-3px);

  box-shadow:
    0 0 28px rgba(255, 46, 138, 0.55),
    0 14px 34px rgba(0, 0, 0, 0.25);
}

.sc-button--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.sc-button--ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);

  transform: translateY(-3px);
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1024px) {

  .sc-intro {
    padding: 120px 28px 130px;
  }

  .sc-intro h2 {
    max-width: 760px;
  }
}


@media (max-width: 900px){

  .sc-intro__text{
    grid-template-columns:1fr;
    gap:30px;
    margin-top:34px;
  }

  .sc-intro__column{
    gap:22px;
  }

  .sc-intro__highlight{
    font-size:18px;
  }

}

@media (max-width: 767px) {

  .sc-intro {
    padding: 90px 22px 100px;
  }

  .sc-kicker {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .sc-intro h2 {
    margin-bottom: 26px;

    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.06;
  }

  .sc-intro__lead {
    font-size: 19px;
    line-height: 1.55;
  }

  .sc-intro p:not(.sc-intro__lead) {
    font-size: 16px;
    line-height: 1.7;
  }

  .sc-intro__actions {
    flex-direction: column;
    margin-top: 36px;
  }

  .sc-button {
    width: 100%;
    max-width: 320px;
  }

  .sc-intro__glow {
    width: 280px;
    height: 280px;
  }
}


/* ==================================================
   SECTION SOUVENIRS — VERSION COMPACTE
================================================== */

.sc-memories-section {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #160c2a;

  background-size: 48px 48px;
}

.sc-memories {
  position: relative;

  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 30px 120px;

  color: #ffffff;
}

/* ==================================================
   EN-TÊTE
================================================== */

.sc-memories__header {
  max-width: 760px;
  margin: 0 auto 52px;

  text-align: center;
}

.sc-memories__header h2 {
  margin: 0 0 22px;

  color: #ffffff;

  font-size: clamp(44px, 5vw, 74px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.sc-memories__header p {
  max-width: 620px;
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.7);

  font-size: 18px;
  line-height: 1.65;
}

/* ==================================================
   GRILLE
================================================== */

.sc-memories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 16px;
}

/* ==================================================
   CARTES
================================================== */

.sc-memory-card {
  position: relative;

  min-height: 245px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 50px rgba(0, 0, 0, 0.18);

  isolation: isolate;

  transition:
    transform 0.4s cubic-bezier(.22, 1, .36, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}

/* Halo coloré */

.sc-memory-card::before {
  content: "";

  position: absolute;
  z-index: -1;

  width: 220px;
  height: 220px;

  right: -100px;
  top: -110px;

  border-radius: 50%;

  opacity: 0.24;
  filter: blur(38px);

  transition:
    transform 0.5s cubic-bezier(.22, 1, .36, 1),
    opacity 0.35s ease;
}

/* Trame rétro */

.sc-memory-card::after {
  content: "";

  position: absolute;
  z-index: -1;
  inset: 0;

  opacity: 0.15;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    );

  background-size: 32px 32px;

  mask-image:
    linear-gradient(
      to bottom left,
      black,
      transparent 74%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom left,
      black,
      transparent 74%
    );
}

/* Couleurs */

.sc-memory-card--music::before {
  background: #ff2e8a;
}

.sc-memory-card--tv::before {
  background: #745bff;
}

.sc-memory-card--games::before {
  background: #00c8ff;
}

.sc-memory-card--objects::before {
  background: #ff8a3d;
}

/* ==================================================
   CONTENU
================================================== */

.sc-memory-card__number {
  align-self: flex-end;

  color: rgba(255, 255, 255, 0.16);

  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.sc-memory-card__content {
  position: relative;
  z-index: 2;
}

.sc-memory-card__label {
  display: inline-block;
  margin-bottom: 12px;

  color: #ff72b0;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sc-memory-card--tv .sc-memory-card__label {
  color: #a99aff;
}

.sc-memory-card--games .sc-memory-card__label {
  color: #5edfff;
}

.sc-memory-card--objects .sc-memory-card__label {
  color: #ffad74;
}

.sc-memory-card h3 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

/* ==================================================
   HOVER
================================================== */

@media (hover: hover) {

  .sc-memory-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.22);

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 26px 65px rgba(0, 0, 0, 0.28);
  }

  .sc-memory-card:hover::before {
    opacity: 0.38;
    transform: scale(1.14);
  }
}

/* ==================================================
   TABLETTE
================================================== */

@media (max-width: 1100px) {

  .sc-memories {
    padding: 95px 28px 110px;
  }

  .sc-memories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sc-memory-card {
    min-height: 220px;
  }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

  .sc-memories {
    padding: 80px 20px 90px;
  }

  .sc-memories__header {
    margin-bottom: 38px;
  }

  .sc-memories__header h2 {
    margin-bottom: 18px;

    font-size: clamp(40px, 12vw, 56px);
    line-height: 1;
  }

  .sc-memories__header p {
    font-size: 16px;
    line-height: 1.6;
  }

  .sc-memories__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sc-memory-card {
    min-height: 185px;
    padding: 22px;

    border-radius: 20px;
  }

  .sc-memory-card__number {
    font-size: 34px;
  }

  .sc-memory-card h3 {
    max-width: 290px;
    font-size: 25px;
  }
}

/* ==================================================
   SECTION SHOW
================================================== */

.sc-show-section {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      125deg,
      #120a24 0%,
      #120a24 46%,
      #211143 72%,
      #3b1040 100%
    );
}

.sc-show {
  max-width: 1380px;
  margin: 0 auto;
  padding: 150px 30px;

  color: #ffffff;
}

.sc-show__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);

  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}


/* ==================================================
   DISCMAN
================================================== */

.sc-show {
  position: relative;
  overflow: hidden;
}

.sc-show__grid {
  position: relative;
  z-index: 2;
}

.sc-show__discman {
  --discman-rotation: -14deg;
  --discman-rotation-float: -10deg;

  position: absolute;
  z-index: 10;

  left: 82%;
  top: 8%;

  width: clamp(160px, 16vw, 300px);
  height: auto;

  opacity: 1;

  transform:
    translate3d(0, 0, 0)
    rotate(var(--discman-rotation));

  transform-origin: center;

  pointer-events: none;
  user-select: none;

  filter:
    drop-shadow(0 24px 38px rgba(0, 0, 0, 0.28));

  animation:
    scDiscmanFloat 8s ease-in-out infinite;
}


/* ==================================================
   ANIMATION
================================================== */

@keyframes scDiscmanFloat {

  0%,
  100% {
    transform:
      translate3d(0, 0, 0)
      rotate(var(--discman-rotation));
  }

  50% {
    transform:
      translate3d(8px, -12px, 0)
      rotate(var(--discman-rotation-float));
  }

}


/* ==================================================
   TABLETTE
================================================== */

@media (max-width: 1024px) {

  .sc-show__discman {
    left: 70%;
    top: 1%;

    width: clamp(170px, 25vw, 280px);

    opacity: .75;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

  .sc-show__discman {
    --discman-rotation: 14deg;
    --discman-rotation-float: 10deg;

    left: auto;
    right: 1%;
    top: 37%;

    width: 50vw;
    max-width: 210px;

    opacity: .45;
  }

}


/* ==================================================
   SECTION INTRO — VHS 
================================================== */

.sc-intro {
  position: relative;
  overflow: hidden;
}

.sc-intro__content {
  position: relative;
  z-index: 2;
}

.sc-intro__vhs {
  position: absolute;
  z-index: 1;

  left: 3%;
  top: 5%;

  width: clamp(200px, 18vw, 360px);
  height: auto;

  opacity: .92;

  transform:
    translate3d(0,0,0)
    rotate(-18deg);

  transform-origin: center;

  pointer-events: none;
  user-select: none;

  filter:
    drop-shadow(0 30px 55px rgba(0,0,0,.35));

  animation:
    scVhsFloat 9s ease-in-out infinite;
}

/* Animation */

@keyframes scVhsFloat {

  0%,
  100% {
    transform:
      translate3d(0,0,0)
      rotate(-18deg);
  }

  50% {
    transform:
      translate3d(10px,-10px,0)
      rotate(-14deg);
  }

}


/* ==================================================
   TABLETTE
================================================== */

@media (max-width:1024px){

  .sc-intro__vhs{

    left:auto;
    right:-8%;
    top:12.5%;

    width:clamp(180px,26vw,300px);

    opacity:.75;

  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width:767px){

  .sc-intro__vhs{

    left:auto;
    right:-18%;
    top:10%;

    width:58vw;
    max-width:240px;

    opacity:.45;

  }

}


/* ==================================================
   PHONE
================================================== */

.sc-tickets {
  position: relative;
  overflow: hidden;
}

.sc-tickets__header,
.sc-tickets__venue,
.sc-tickets__list,
.sc-tickets__footer {
  position: relative;
  z-index: 2;
}

.sc-tickets__phone {
  --phone-rotation: 16deg;
  --phone-rotation-float: 11deg;

  position: absolute;
  z-index: 1;
    top: 6%;
    left: 6%;
   right: auto;

  width: clamp(160px, 15vw, 300px);
  height: auto;

  opacity: 1;

  transform:
    translate3d(0, 0, 0)
    rotate(var(--phone-rotation));

  transform-origin: center;

  pointer-events: none;
  user-select: none;

  filter:
    drop-shadow(0 28px 44px rgba(0, 0, 0, 0.3));

  animation:
    scPhoneFloat 8.5s ease-in-out infinite;
}


/* ==================================================
   ANIMATION
================================================== */

@keyframes scPhoneFloat {

  0%,
  100% {
    transform:
      translate3d(0, 0, 0)
      rotate(var(--phone-rotation));
  }

  50% {
    transform:
      translate3d(-10px, -13px, 0)
      rotate(var(--phone-rotation-float));
  }

}


/* ==================================================
   TABLETTE
================================================== */

@media (max-width: 1024px) {

  .sc-tickets__phone {
    right: -7%;
    top: 2%;
	  left:auto;

    width: clamp(170px, 26vw, 280px);

    opacity: .72;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

  .sc-tickets__phone {
    --phone-rotation: -14deg;
    --phone-rotation-float: -9deg;

    right: -2%;
    top: 1%;
	 left:auto; 

    width: 48vw;
    max-width: 210px;

    opacity: .42;
  }

}

/* ==================================================
   RESSORT — ÉQUIPE ARTISTIQUE
================================================== */

.sc-cast {
  position: relative;
  overflow: hidden;
}

.sc-cast__header,
.sc-cast__grid,
.sc-cast__distribution,
.sc-cast__authors {
  position: relative;
  z-index: 2;
}

.sc-cast__slinky {
  --slinky-rotation: 38deg;
  --slinky-rotation-float: 35deg;

  position: absolute;
  z-index: 1;
   
  right:4%; 
  left: auto;
  top: 7%;

  width: clamp(170px, 16vw, 300px);
  height: auto;

  opacity: 1;

  transform:
    translate3d(0, 0, 0)
    rotate(var(--slinky-rotation));

  transform-origin: center;

  pointer-events: none;
  user-select: none;

  filter:
    drop-shadow(0 26px 42px rgba(0, 0, 0, 0.28));

  animation:
    scSlinkyFloat 7.5s ease-in-out infinite;
}


/* ==================================================
   ANIMATION
================================================== */

@keyframes scSlinkyFloat {

  0%,
  100% {
    transform:
      translate3d(0, 0, 0)
      rotate(var(--slinky-rotation));
  }

  50% {
    transform:
      translate3d(10px, -14px, 0)
      rotate(var(--slinky-rotation-float));
  }

}


/* ==================================================
   TABLETTE
================================================== */

@media (max-width: 1024px) {

  .sc-cast__slinky {
	left: auto;
    right: -7%;
    top: 5%;

    width: clamp(170px, 27vw, 280px);

    opacity: .72;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

  .sc-cast__slinky {
    --slinky-rotation: 16deg;
    --slinky-rotation-float: 11deg;

    left: auto;
    right: -16%;
    top: 1%;

    width: 50vw;
    max-width: 215px;

    opacity: .42;
  }

}

/* ==================================================
   VISUEL — AFFICHE DU SPECTACLE
================================================== */

.sc-show__visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
  padding: clamp(24px, 4vw, 52px);

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;

  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(255, 46, 138, 0.34),
      transparent 42%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(108, 72, 255, 0.3),
      transparent 44%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 90px rgba(0, 0, 0, 0.28);
}

/* Trame rétro en arrière-plan */

.sc-show__visual::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 0;

  opacity: 0.22;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );

  background-size: 42px 42px;

  pointer-events: none;
}

/* Affiche */

.sc-show__poster {
  position: relative;
  z-index: 2;

  display: block;

  width: 100%;
  max-width: 520px;
  height: auto;

  border-radius: 20px;

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.42),
    0 10px 24px rgba(0, 0, 0, 0.26);

  transform: rotate(-1.5deg);

  transition:
    transform 0.45s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.45s ease;
}

@media (hover: hover) {

  .sc-show__visual:hover .sc-show__poster {
    transform: rotate(0deg) translateY(-7px) scale(1.015);

    box-shadow:
      0 42px 90px rgba(0, 0, 0, 0.5),
      0 16px 32px rgba(0, 0, 0, 0.3);
  }
}



/* ==================================================
   CONTENU
================================================== */

.sc-show__content {
  max-width: 600px;
}

.sc-show__content h2 {
  margin: 0 0 30px;

  color: #ffffff;

  font-size: clamp(44px, 5vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.sc-show__lead {
  margin: 0 0 22px;

  color: rgba(255, 255, 255, 0.92);

  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.55;
}

.sc-show__content > p:not(.sc-show__lead) {
  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 17px;
  line-height: 1.75;
}

.sc-show__list {
  display: grid;
  gap: 14px;

  margin: 36px 0 42px;
  padding: 0;

  list-style: none;
}

.sc-show__list li {
  position: relative;

  padding-left: 30px;

  color: rgba(255, 255, 255, 0.84);

  font-size: 16px;
  line-height: 1.5;
}

.sc-show__list li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0.55em;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #ff2e8a;

  box-shadow:
    0 0 14px rgba(255, 46, 138, 0.7);
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1024px) {

  .sc-show {
    padding: 120px 28px;
  }

  .sc-show__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .sc-show__visual {
    padding: 42px;
  }

  .sc-show__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .sc-show__list {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }
}

@media (max-width: 767px) {

  .sc-show {
    padding: 90px 20px;
  }

  .sc-show__grid {
    gap: 52px;
  }

  .sc-show__visual {
  padding: 24px;
  border-radius: 24px;
}

.sc-show__poster {
  border-radius: 14px;
  transform: rotate(-1deg);
}


  .sc-show__content h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .sc-show__lead {
    font-size: 19px;
  }

  .sc-show__content > p:not(.sc-show__lead) {
    font-size: 16px;
  }

  .sc-show__list {
    margin-top: 30px;
    margin-bottom: 36px;
  }
}




/* ==================================================
   SECTION MÉDIAS
================================================== */

.sc-media-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(110, 72, 255, 0.14),
      transparent 38%
    ),
    #090510;
}

.sc-media {
  position: relative;

  max-width: 1380px;
  margin: 0 auto;
  padding: 130px 30px 150px;

  color: #ffffff;
}


/* ==================================================
   EN-TÊTE
================================================== */

.sc-media__header {
  max-width: 780px;
  margin: 0 auto 58px;

  text-align: center;
}

.sc-media__header h2 {
  margin: 0 0 24px;

  color: #ffffff;

  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.sc-media__header p {
  max-width: 640px;
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.7);

  font-size: 18px;
  line-height: 1.7;
}


/* ==================================================
   VIDÉO PRINCIPALE
================================================== */

.sc-media__featured {
  margin-bottom: 20px;
}

.sc-media__video {
  position: relative;

  padding: clamp(18px, 2.5vw, 34px);

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;

  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 46, 138, 0.2),
      transparent 36%
    ),
    radial-gradient(
      circle at 78% 74%,
      rgba(92, 74, 255, 0.2),
      transparent 40%
    ),
    linear-gradient(
      145deg,
      rgba(42, 20, 64, 0.85),
      rgba(18, 10, 36, 0.92)
    );

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}


/* En-tête interne de la vidéo */

.sc-media__video-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;

  padding: 10px 14px 28px;
}

.sc-media__video-label {
  display: inline-block;
  margin-bottom: 12px;

  color: #ff72b0;

  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sc-media__video-heading h3 {
  max-width: 700px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.sc-media__video-note {
  flex-shrink: 0;
  padding-bottom: 5px;

  color: rgba(255, 255, 255, 0.42);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* Lecteur YouTube */

.sc-media__video-player {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;

  background: #05030a;

  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34);
}

.sc-media__video-player iframe {
  position: absolute;
  inset: 0;

  display: block;

  width: 100%;
  height: 100%;

  border: 0;
}


/* ==================================================
   GALERIE
================================================== */

.sc-media__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;

  gap: 16px;
}

.sc-media__photo {
  position: relative;

  min-width: 0;
  margin: 0;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.04);

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.18);

  isolation: isolate;

  transition:
    transform 0.4s cubic-bezier(.22, 1, .36, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}

.sc-media__photo--large {
  grid-column: span 2;
  grid-row: span 2;
}


/* Image */

.sc-media__photo img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transform: scale(1.01);

  transition:
    transform 0.7s cubic-bezier(.22, 1, .36, 1),
    filter 0.5s ease;
}


/* Dégradé sur les images */

.sc-media__photo::after {
  content: "";

  position: absolute;
  z-index: 1;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      to top,
      rgba(5, 2, 12, 0.82) 0%,
      rgba(5, 2, 12, 0.18) 48%,
      transparent 72%
    );
}


/* Légende */

.sc-media__photo figcaption {
  position: absolute;
  z-index: 2;

  right: 24px;
  bottom: 22px;
  left: 24px;

  color: #ffffff;
}

.sc-media__photo figcaption span {
  display: block;

  color: rgba(255, 255, 255, 0.72);

  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sc-media__photo figcaption strong {
  display: block;
  margin-top: 7px;

  color: #ffffff;

  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}


/* ==================================================
   ACTIONS
================================================== */

.sc-media__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 42px;
}


/* ==================================================
   HOVER
================================================== */

@media (hover: hover) {

  .sc-media__photo:hover {
    transform: translateY(-5px);

    border-color: rgba(255, 255, 255, 0.24);

    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.32);
  }

  .sc-media__photo:hover img {
    transform: scale(1.06);
    filter: contrast(1.04);
  }
}


/* ==================================================
   TABLETTE
================================================== */

@media (max-width: 1024px) {

  .sc-media {
    padding: 110px 28px 125px;
  }

  .sc-media__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sc-media__photo--large {
    grid-column: span 2;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

  .sc-media {
    padding: 85px 20px 95px;
  }

  .sc-media__header {
    margin-bottom: 40px;
  }

  .sc-media__header h2 {
    margin-bottom: 20px;

    font-size: clamp(40px, 12vw, 58px);
    line-height: 1;
  }

  .sc-media__header p {
    font-size: 16px;
    line-height: 1.65;
  }


  /* Vidéo */

  .sc-media__video {
    padding: 14px;

    border-radius: 22px;
  }

  .sc-media__video-heading {
    display: block;

    padding: 10px 8px 22px;
  }

  .sc-media__video-heading h3 {
    font-size: 31px;
  }

  .sc-media__video-note {
    display: block;
    margin-top: 12px;
    padding: 0;
  }

  .sc-media__video-player {
    border-radius: 15px;
  }


  /* Galerie */

  .sc-media__gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;

    gap: 14px;
  }

  .sc-media__photo--large {
    grid-column: auto;
    grid-row: span 2;
  }

  .sc-media__photo figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }


  /* Actions */

  .sc-media__actions {
    flex-direction: column;
    align-items: stretch;

    margin-top: 34px;
  }

  .sc-media__actions .sc-button {
    width: 100%;
    justify-content: center;
  }
}



/* ==================================================
   SECTION BILLETTERIE
================================================== */

.sc-tickets-section {
  position: relative;
  overflow: hidden;

    background:
    linear-gradient(
      180deg,
      #170d2b 0%,
      #23133d 50%,
      #120a24 100%
    );
}

.sc-tickets {
  position: relative;

  max-width: 1240px;
  margin: 0 auto;
  padding: 130px 30px 145px;

  color: #ffffff;
}



/* ==================================================
   ÉTAT DE CHARGEMENT / ERREUR BILLETTERIE
================================================== */

.sc-tickets__status {
  padding: 34px 24px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.035);

  color: rgba(255, 255, 255, 0.58);

  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.sc-tickets__status p {
  margin: 0 0 12px;
}

.sc-tickets__status a {
  color: #ff72b0;
  font-weight: 700;
  text-decoration: none;
}

.sc-tickets__status a:hover {
  color: #ffffff;
}

/* ==================================================
   EN-TÊTE
================================================== */

.sc-tickets__header {
  max-width: 820px;
  margin: 0 auto 60px;

  text-align: center;
}

.sc-tickets__header h2 {
  margin: 0 0 24px;

  color: #ffffff;

  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.sc-tickets__header p {
  max-width: 660px;
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.7);

  font-size: 18px;
  line-height: 1.7;
}

/* ==================================================
   BOBINO
================================================== */

.sc-tickets__venue{
    max-width:1200px;
    margin:0 auto 50px;
    padding:28px 34px;
    display:flex;
    align-items:center;
    gap:34px;

    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;

    background:rgba(255,255,255,.04);
    backdrop-filter:blur(14px);
}

.sc-tickets__venue-logo{
    flex:0 0 170px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.sc-tickets__venue-logo img{
    width:100%;
    max-width:150px;
    height:auto;
    display:block;
}

.sc-tickets__venue-content{
    flex:1;
}

.sc-tickets__venue-label{
    display:inline-block;
    margin-bottom:10px;

    font-size:.72rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;

    color:#f7d46a;
}

.sc-tickets__venue-content h3{
    margin:0 0 8px;

    font-size:2rem;
    line-height:1.1;
    font-weight:700;
}

.sc-tickets__venue-content p{
    margin:0;

    font-size:1.05rem;
    color:rgba(255,255,255,.88);
}

.sc-tickets__venue-address{
    display:block;
    margin-top:12px;

    font-size:.9rem;
    color:rgba(255,255,255,.55);
}



/* ==================================================
   LISTE
================================================== */

.sc-tickets__list {
  display: grid;
  gap: 14px;
}

.sc-ticket {
  position: relative;

  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;

  min-height: 142px;
  padding: 24px 28px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 44px rgba(0, 0, 0, 0.16);

  transition:
    transform 0.4s cubic-bezier(.22, 1, .36, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}

.sc-ticket::before {
  content: "";

  position: absolute;
  inset: 0 auto 0 0;

  width: 4px;

  background:
    linear-gradient(
      to bottom,
      #ff2e8a,
      #785bff
    );

  opacity: 0.8;
}

/* ==================================================
   DATE
================================================== */

.sc-ticket__date {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: end;
  justify-content: start;

  column-gap: 10px;
}

.sc-ticket__day {
  grid-row: span 2;

  color: #ffffff;

  font-size: 66px;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.sc-ticket__month {
  color: #ff72b0;

  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.sc-ticket__year {
  color: rgba(255, 255, 255, 0.42);

  font-size: 13px;
  line-height: 1;
}

/* ==================================================
   INFOS
================================================== */

.sc-ticket__infos {
  min-width: 0;
}

.sc-ticket__city {
  display: inline-block;
  margin-bottom: 8px;

  color: #a99aff;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sc-ticket__infos h3 {
  margin: 0 0 9px;

  color: #ffffff;

  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.sc-ticket__time {
  color: rgba(255, 255, 255, 0.58);

  font-size: 15px;
  line-height: 1;
}

/* ==================================================
   BOUTONS
================================================== */

.sc-ticket__action {
  display: flex;
  justify-content: flex-end;
}

.sc-ticket__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 138px;
  min-height: 50px;
  padding: 14px 24px;

  border: 1px solid #ff2e8a;
  border-radius: 999px;

  background: #ff2e8a;
  color: #ffffff;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;

  box-shadow:
    0 0 18px rgba(255, 46, 138, 0.3),
    0 10px 24px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.sc-ticket__button:hover {
  color: #ffffff;
  background: #ff4a9b;
  border-color: #ff4a9b;

  transform: translateY(-2px);

  box-shadow:
    0 0 26px rgba(255, 46, 138, 0.52),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

.sc-ticket__button--soon {
  cursor: default;

  border-color: rgba(255, 255, 255, 0.16);

  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.46);

  box-shadow: none;
}

/* ==================================================
   BAS DE SECTION
================================================== */

.sc-tickets__footer {
  margin-top: 44px;

  text-align: center;
}

.sc-tickets__footer p {
  margin: 0 0 22px;

  color: rgba(255, 255, 255, 0.56);

  font-size: 15px;
  line-height: 1.6;
}

/* ==================================================
   HOVER
================================================== */

@media (hover: hover) {

  .sc-ticket:hover {
    transform: translateY(-4px);

    border-color: rgba(255, 255, 255, 0.22);

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 24px 60px rgba(0, 0, 0, 0.28);
  }
}

/* ==================================================
   TABLETTE
================================================== */

@media (max-width: 900px) {

  .sc-tickets {
    padding: 110px 28px 125px;
  }

  .sc-ticket {
    grid-template-columns: 140px minmax(0, 1fr) auto;
    gap: 24px;
  }

  .sc-ticket__day {
    font-size: 56px;
  }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

  .sc-tickets {
    padding: 85px 20px 95px;
  }

  .sc-tickets__header {
    margin-bottom: 42px;
  }

  .sc-tickets__header h2 {
    margin-bottom: 20px;

    font-size: clamp(40px, 12vw, 58px);
    line-height: 1;
  }

  .sc-tickets__header p {
    font-size: 16px;
    line-height: 1.65;
  }

  .sc-ticket {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 20px;

    min-height: 0;
    padding: 24px 22px;
  }

  .sc-ticket__day {
    font-size: 48px;
  }

  .sc-ticket__month {
    font-size: 13px;
  }

  .sc-ticket__infos h3 {
    font-size: 25px;
  }

  .sc-ticket__action {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .sc-ticket__button {
    width: 100%;
  }

  .sc-tickets__footer {
    margin-top: 36px;
  }
	
	 .sc-tickets__venue{
        flex-direction:column;
        text-align:center;
        padding:32px 24px;
        gap:22px;
    }

    .sc-tickets__venue-logo{
        flex:none;
    }

    .sc-tickets__venue-logo img{
        max-width:120px;
    }

    .sc-tickets__venue-content h3{
        font-size:1.7rem;
    }
}



/* ==================================================
   SECTION CONTACT
================================================== */

.sc-contact-section {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #120a24 0%,
      #190f2f 50%,
      #120a24 100%
    );
}

.sc-contact {
  position: relative;

  max-width: 1240px;
  margin: 0 auto;
  padding: 130px 30px 145px;

  color: #ffffff;
}

/* ==================================================
   EN-TÊTE
================================================== */

.sc-contact__header {
  max-width: 760px;
  margin: 0 auto 56px;

  text-align: center;
}

.sc-contact__header h2 {
  margin: 0 0 22px;

  color: #ffffff;

  font-size: clamp(46px, 5vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.sc-contact__header p {
  max-width: 640px;
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.7);

  font-size: 18px;
  line-height: 1.7;
}

/* ==================================================
   GRILLE
================================================== */

.sc-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;
}

/* ==================================================
   CARTES
================================================== */

.sc-contact-card {
  position: relative;

  min-height: 360px;
  padding: 38px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 20px 60px rgba(0, 0, 0, 0.2);

  isolation: isolate;

  transition:
    transform 0.4s cubic-bezier(.22, 1, .36, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}

.sc-contact-card::before {
  content: "";

  position: absolute;
  z-index: -1;

  width: 300px;
  height: 300px;

  right: -130px;
  top: -130px;

  border-radius: 50%;

  background: #ff2e8a;

  opacity: 0.2;
  filter: blur(45px);
}

.sc-contact-card:nth-child(2)::before {
  background: #745bff;
}

/* ==================================================
   CONTENU
================================================== */

.sc-contact-card__label {
  display: inline-block;
  margin-bottom: 18px;

  color: #ff72b0;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sc-contact-card:nth-child(2) .sc-contact-card__label {
  color: #a99aff;
}

.sc-contact-card h3 {
  margin: 0 0 18px;

  color: #ffffff;

  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.sc-contact-card > p {
  max-width: 470px;
  margin: 0 0 34px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 16px;
  line-height: 1.7;
}

.sc-contact-card__links {
  display: grid;
  gap: 10px;

  margin-top: auto;
}

.sc-contact-card__links a {
  width: fit-content;

  color: #ffffff;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.sc-contact-card__links a:hover {
  color: #ff72b0;
  transform: translateX(4px);
}

.sc-contact-card:nth-child(2) .sc-contact-card__links a:hover {
  color: #a99aff;
}


.sc-contact-person {
  display: grid;
  gap: 10px;
}

.sc-contact-person__separator {
  display: block;
  margin: 5px 0 2px;

  color: rgba(255, 255, 255, 0.28);

  font-size: 18px;
  line-height: 1;
}

.sc-contact-person__name {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.sc-contact-person__name:hover {
  color: #a99aff !important;
}

/* ==================================================
   HOVER
================================================== */

@media (hover: hover) {

  .sc-contact-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.22);

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 28px 72px rgba(0, 0, 0, 0.3);
  }
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 900px) {

  .sc-contact {
    padding: 110px 28px 125px;
  }

  .sc-contact__grid {
    grid-template-columns: 1fr;
  }

  .sc-contact-card {
    min-height: 320px;
  }
}

@media (max-width: 767px) {

  .sc-contact {
    padding: 85px 20px 95px;
  }

  .sc-contact__header {
    margin-bottom: 40px;
  }

  .sc-contact__header h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .sc-contact__header p {
    font-size: 16px;
    line-height: 1.65;
  }

  .sc-contact-card {
    min-height: 0;
    padding: 28px;

    border-radius: 22px;
  }

  .sc-contact-card h3 {
    font-size: 30px;
  }
}




/* ==================================================
   FORMULAIRE DE CONTACT
================================================== */

.sc-contact-form {
  position: relative;
  margin-top: 22px;
  padding: clamp(34px, 5vw, 60px);

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 20px 60px rgba(0, 0, 0, 0.2);
}

.sc-contact-form::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -200px;
  bottom: -220px;

  border-radius: 50%;
  background: #00c8ff;
  opacity: 0.12;
  filter: blur(70px);

  pointer-events: none;
}

.sc-contact-form__header {
  position: relative;
  z-index: 2;

  max-width: 700px;
  margin-bottom: 38px;
}

.sc-contact-form__header h3 {
  margin: 0 0 16px;

  color: #ffffff;

  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.sc-contact-form__header p {
  max-width: 620px;
  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 16px;
  line-height: 1.7;
}

.sc-contact-form__body {
  position: relative;
  z-index: 2;
}

.sc-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sc-contact-form__field--full {
  grid-column: 1 / -1;
}

.sc-contact-form label {
  display: block;
  margin-bottom: 9px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.sc-contact-form input[type="text"],
.sc-contact-form input[type="email"],
.sc-contact-form select,
.sc-contact-form textarea {
  width: 100%;
  margin: 0;
  padding: 15px 17px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;

  font: inherit;

  outline: none;

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sc-contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.sc-contact-form input:focus,
.sc-contact-form select:focus,
.sc-contact-form textarea:focus {
  border-color: rgba(255, 46, 138, 0.75);
  background: rgba(255, 255, 255, 0.075);

  box-shadow:
    0 0 0 3px rgba(255, 46, 138, 0.12);
}

.sc-contact-form select option {
  color: #120a24;
}

.sc-contact-form__consent {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.55;
}

.sc-contact-form__consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin: 0;
  font-weight: 400;
}

.sc-contact-form__consent input {
  flex: 0 0 auto;
  margin-top: 4px;
}

.sc-contact-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 16px 32px;

  border: 1px solid #ff2e8a;
  border-radius: 999px;

  background: #ff2e8a;
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  cursor: pointer;

  box-shadow:
    0 0 20px rgba(255, 46, 138, 0.34),
    0 10px 26px rgba(0, 0, 0, 0.2);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.sc-contact-form input[type="submit"]:hover {
  transform: translateY(-2px);
  background: #ff4a9b;

  box-shadow:
    0 0 28px rgba(255, 46, 138, 0.52),
    0 14px 32px rgba(0, 0, 0, 0.24);
}

.sc-contact-form__privacy {
  margin: 18px 0 0;

  color: rgba(255, 255, 255, 0.48);

  font-size: 12px;
  line-height: 1.6;
}

.sc-contact-form__privacy a {
  color: rgba(255, 255, 255, 0.76);
}

/* Messages CF7 */

.sc-contact-form .wpcf7-response-output {
  margin: 22px 0 0 !important;
  padding: 14px 16px !important;

  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 12px;

  color: #ffffff;
}

.sc-contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;

  color: #ff8dbb;

  font-size: 12px;
}

@media (max-width: 767px) {

  .sc-contact-form {
    margin-top: 16px;
    padding: 28px 22px;

    border-radius: 22px;
  }

  .sc-contact-form__header {
    margin-bottom: 30px;
  }

  .sc-contact-form__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sc-contact-form__field--full {
    grid-column: auto;
  }

  .sc-contact-form input[type="submit"] {
    width: 100%;
  }
}



/* ==================================================
   INFOS BOBINO
================================================== */

.sc-show-info{

    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:32px;

    max-width:980px;
    margin:54px auto 0;
    padding:34px 38px;

    border:1px solid rgba(255,255,255,.12);
    border-radius:26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 18px 50px rgba(0,0,0,.20);
}


.sc-show-info__label{

    display:block;
    margin-bottom:8px;

    color:#ff72b0;

    font-size:12px;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.sc-show-info h3{

    margin:0 0 10px;

    color:#fff;

    font-size:clamp(28px,3vw,40px);
    line-height:1.1;
}

.sc-show-info p{

    margin:0;

    color:rgba(255,255,255,.72);

    font-size:16px;
    line-height:1.7;
}

.sc-show-info strong{
    color:#fff;
}

.sc-show-info__action{

    display:flex;
    justify-content:flex-end;
}


@media (max-width:900px){

.sc-show-info{

    grid-template-columns:1fr;

    text-align:center;

    gap:24px;

    padding:30px;
}


.sc-show-info__action{

    justify-content:center;
}

}



/* ==================================================
   SECTION ÉQUIPE ARTISTIQUE
================================================== */

.sc-cast-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 46, 138, 0.13),
      transparent 34%
    ),
    radial-gradient(
      circle at 90% 75%,
      rgba(116, 91, 255, 0.15),
      transparent 38%
    ),
    #0d0718;
}

.sc-cast {
  position: relative;

  max-width: 1240px;
  margin: 0 auto;
  padding: 130px 30px 145px;

  color: #ffffff;
}


/* ==================================================
   EN-TÊTE
================================================== */

.sc-cast__header {
  max-width: 820px;
  margin: 0 auto 58px;

  text-align: center;
}

.sc-cast__header h2 {
  margin: 0 0 24px;

  color: #ffffff;

  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.sc-cast__header p {
  max-width: 660px;
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.7);

  font-size: 18px;
  line-height: 1.7;
}


/* ==================================================
   GRILLE DES ARTISTES
================================================== */

.sc-cast__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;
}


/* ==================================================
   CARTE ARTISTE
================================================== */

.sc-artist-card {
  position: relative;

  min-height: 480px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;

  background: #211143;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 60px rgba(0, 0, 0, 0.24);

  isolation: isolate;

  transition:
    transform 0.4s cubic-bezier(.22, 1, .36, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}

.sc-artist-card__image {
  position: absolute;
  inset: 0;
}

.sc-artist-card__image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(7, 3, 15, 0.94) 0%,
      rgba(7, 3, 15, 0.48) 38%,
      rgba(7, 3, 15, 0.04) 72%
    );

  pointer-events: none;
}

.sc-artist-card__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  transition:
    transform 0.6s cubic-bezier(.22, 1, .36, 1);
}


/* ==================================================
   NOM ET PERSONNAGE
================================================== */

.sc-artist-card__content {
  position: absolute;
  z-index: 2;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 34px;
}

.sc-artist-card__content h3 {
  margin: 0 0 7px;

  color: #ffffff;

  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.sc-artist-card__content p {
  margin: 0;

  color: #ff72b0;

  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ==================================================
   HOVER
================================================== */

@media (hover: hover) {

  .sc-artist-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.25);

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.09),
      0 30px 75px rgba(0, 0, 0, 0.34);
  }

  .sc-artist-card:hover .sc-artist-card__image img {
    transform: scale(1.035);
  }
}


/* ==================================================
   DISTRIBUTION
================================================== */

.sc-cast__distribution {
  display: grid;
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(40px, 6vw, 80px);

  margin-top: 22px;
  padding: clamp(36px, 5vw, 58px);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.02)
    );
}

.sc-cast__label {
  display: inline-block;
  margin-bottom: 13px;

  color: #a99aff;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sc-cast__distribution-header h3 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.sc-cast__list {
  display: grid;
  gap: 15px;
}

.sc-cast__person {
  display: grid;
  grid-template-columns: auto minmax(30px, 1fr) auto;
  align-items: baseline;
  gap: 14px;

  font-size: 16px;
  line-height: 1.4;
}

.sc-cast__person span {
  color: rgba(255, 255, 255, 0.86);

  font-weight: 600;
}

.sc-cast__person i {
  min-width: 30px;

  border-bottom: 1px dotted rgba(255, 255, 255, 0.22);
}

.sc-cast__person strong {
  color: rgba(255, 255, 255, 0.48);

  font-size: 14px;
  font-weight: 500;
}


/* ==================================================
   AUTEURS
================================================== */

.sc-cast__authors {
  margin-top: 22px;
  padding: 32px;

  border-left: 3px solid #ff2e8a;
  border-radius: 0 18px 18px 0;

  background: rgba(255, 255, 255, 0.04);
}

.sc-cast__authors span {
  display: block;
  margin-bottom: 8px;

  color: rgba(255, 255, 255, 0.5);

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.sc-cast__authors strong {
  color: #ffffff;

  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.25;
}


/* ==================================================
   TABLETTE
================================================== */

@media (max-width: 900px) {

  .sc-cast {
    padding: 110px 28px 125px;
  }

  .sc-artist-card {
    min-height: 420px;
  }

  .sc-cast__distribution {
    grid-template-columns: 1fr;
    gap: 30px;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

  .sc-cast {
    padding: 85px 20px 95px;
  }

  .sc-cast__header {
    margin-bottom: 40px;
  }

  .sc-cast__header h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .sc-cast__header p {
    font-size: 16px;
    line-height: 1.65;
  }

  .sc-cast__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sc-artist-card {
    min-height: 420px;

    border-radius: 22px;
  }

  .sc-artist-card__content {
    padding: 26px 24px;
  }

  .sc-artist-card__content h3 {
    font-size: 30px;
  }

  .sc-cast__distribution {
    margin-top: 14px;
    padding: 30px 24px;

    border-radius: 22px;
  }

  .sc-cast__person {
    grid-template-columns: 1fr;
    gap: 4px;

    padding-bottom: 14px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .sc-cast__person:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .sc-cast__person i {
    display: none;
  }

  .sc-cast__authors {
    margin-top: 14px;
    padding: 26px 24px;
  }

}



/* ==================================================
   APPARITION AU SCROLL DES OBJETS DÉCORATIFS
================================================== */

.sc-intro__vhs.sc-reveal,
.sc-show__discman.sc-reveal,
.sc-tickets__phone.sc-reveal,
.sc-cast__slinky.sc-reveal {
  opacity: 0;
  transition: opacity 1s ease;
}

.sc-intro__vhs.sc-reveal.is-visible {
  opacity: .92;
}

.sc-show__discman.sc-reveal.is-visible {
  opacity: 1;
}

.sc-tickets__phone.sc-reveal.is-visible {
  opacity: 1;
}

.sc-cast__slinky.sc-reveal.is-visible {
  opacity: 1;
}


/* ==================================================
   03. AJOUTS GLOBAUX, COMPLIANZ, REVEALS & RESPONSIVE
================================================== */

/* ==================================================
   HEADER — RÉSEAUX SOCIAUX
================================================== */

.l-header .w-socials {
  margin-right: 18px;
}

.l-header .w-socials-item-link {
  margin-left: 10px;
  color: #ffffff;
  font-size: 17px;
  opacity: 1;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.l-header .w-socials-item-link:hover {
  color: #ff2e8a;
  opacity: 1;
  transform: translateY(-2px);
}


/* ==================================================
   HEADER — LOGO STICKY
================================================== */

.soculte-header-logo img {
  transition: transform 0.3s ease;
  transform-origin: left center;
}

.l-header.sticky .soculte-header-logo img {
  transform: scale(0.82);
  padding-top: 5px;
}


/* ==================================================
   COMPLIANZ — COOKIE BANNER
================================================== */

.cmplz-cookiebanner {
  max-width: 390px !important;
  width: calc(100% - 24px) !important;
  padding: 12px 14px !important;

  right: 20px !important;
  bottom: 20px !important;

  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 14px !important;

  background: rgba(18, 18, 22, 0.84) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  color: #ffffff !important;
}

.cmplz-cookiebanner .cmplz-title {
  margin: 0 30px 8px 0 !important;

  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.cmplz-cookiebanner p,
.cmplz-cookiebanner .cmplz-message {
  margin: 0 !important;

  color: rgba(255, 255, 255, 0.78) !important;

  font-size: 10.5px !important;
  line-height: 1.4 !important;
}

.cmplz-cookiebanner .cmplz-links {
  margin-top: 5px !important;
}

.cmplz-cookiebanner .cmplz-links a {
  color: rgba(255, 255, 255, 0.70) !important;

  font-size: 10px !important;
  text-decoration: none;
}

.cmplz-cookiebanner .cmplz-links a:hover {
  color: #ffffff !important;
}

.cmplz-cookiebanner .cmplz-buttons {
  gap: 6px !important;
  margin-top: 8px !important;
}

.cmplz-cookiebanner .cmplz-btn {
  min-height: 30px !important;
  height: 30px !important;
  padding: 0 10px !important;

  border-radius: 999px !important;

  font-size: 9.5px !important;
  font-weight: 600;

  transition: 0.25s;
}

.cmplz-cookiebanner .cmplz-btn.cmplz-accept {
  border: none !important;

  background: linear-gradient(135deg, #7b49ff, #5538ff) !important;
  color: #ffffff !important;

  box-shadow: 0 8px 20px rgba(97, 72, 255, 0.30);
}

.cmplz-cookiebanner .cmplz-btn.cmplz-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(97, 72, 255, 0.40);
}

.cmplz-cookiebanner .cmplz-btn.cmplz-deny,
.cmplz-cookiebanner .cmplz-btn.cmplz-view-preferences {
  border: 1px solid rgba(255, 255, 255, 0.10) !important;

  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
}

.cmplz-cookiebanner .cmplz-btn.cmplz-deny:hover,
.cmplz-cookiebanner .cmplz-btn.cmplz-view-preferences:hover {
  background: rgba(255, 255, 255, 0.10) !important;
}

.cmplz-cookiebanner .cmplz-close {
  width: 20px !important;
  height: 20px !important;

  top: 12px !important;
  right: 12px !important;

  opacity: 0.65;
}

.cmplz-cookiebanner .cmplz-close:hover {
  opacity: 1;
}


/* ==================================================
   SCROLL REVEAL
================================================== */

.sc-reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.22, 1, .36, 1);

  will-change: opacity, transform;
}

.sc-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.sc-reveal--soft {
  transform: translate3d(0, 18px, 0);
}

.sc-reveal--left {
  transform: translate3d(-36px, 0, 0);
}

.sc-reveal--left.is-visible {
  transform: translate3d(0, 0, 0);
}

.sc-reveal--right {
  transform: translate3d(36px, 0, 0);
}

.sc-reveal--right.is-visible {
  transform: translate3d(0, 0, 0);
}

.sc-delay-1 {
  transition-delay: 0.1s;
}

.sc-delay-2 {
  transition-delay: 0.2s;
}

.sc-delay-3 {
  transition-delay: 0.3s;
}

.sc-delay-4 {
  transition-delay: 0.4s;
}


/* ==================================================
   RESPONSIVE — AJUSTEMENTS GLOBAUX
================================================== */

@media (max-width: 1024px) {
  .l-header .w-socials {
    display: none;
  }

  .sc-intro__vhs.sc-reveal.is-visible {
    opacity: 0.75;
  }

  .sc-show__discman.sc-reveal.is-visible {
    opacity: 0.75;
  }

  .sc-tickets__phone.sc-reveal.is-visible {
    opacity: 0.72;
  }

  .sc-cast__slinky.sc-reveal.is-visible {
    opacity: 0.72;
  }
}

@media (max-width: 768px) {
  .cmplz-cookiebanner {
    max-width: none !important;
    width: calc(100% - 20px) !important;
    right: 10px !important;
    bottom: 10px !important;
    padding: 15px !important;
  }

  .cmplz-cookiebanner .cmplz-title {
    font-size: 17px !important;
  }

  .cmplz-cookiebanner p,
  .cmplz-cookiebanner .cmplz-message {
    font-size: 12px !important;
  }

  .cmplz-cookiebanner .cmplz-btn {
    height: 34px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 767px) {
  .sc-intro__vhs.sc-reveal.is-visible {
    opacity: 0.45;
  }

  .sc-show__discman.sc-reveal.is-visible {
    opacity: 0.45;
  }

  .sc-tickets__phone.sc-reveal.is-visible {
    opacity: 0.42;
  }

  .sc-cast__slinky.sc-reveal.is-visible {
    opacity: 0.42;
  }
}


/* ==================================================
   ACCESSIBILITÉ — MOUVEMENTS RÉDUITS
================================================== */

@media (prefers-reduced-motion: reduce) {
  .sc-reveal,
  .sc-reveal--soft,
  .sc-reveal--left,
  .sc-reveal--right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
