:root {
  --page-gutter: clamp(2rem, 5.5vw, 4rem);
}

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

html,
body {
  height: 100%;
  margin: 0;
  background-color: #000;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  font-family: "Instrument Sans", system-ui, sans-serif;
  letter-spacing: -0.04em;
  letter-spacing: -4%;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.985);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-on-scroll[data-reveal-direction="left"] {
  transform: translate3d(-32px, 0, 0) scale(0.985);
}

.reveal-on-scroll[data-reveal-direction="right"] {
  transform: translate3d(32px, 0, 0) scale(0.985);
}

.reveal-on-scroll.is-visible[data-reveal-direction="left"],
.reveal-on-scroll.is-visible[data-reveal-direction="right"] {
  transform: translate3d(0, 0, 0) scale(1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  isolation: isolate;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    backdrop-filter 220ms ease,
    -webkit-backdrop-filter 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.site-header .nav {
  position: relative;
  z-index: 1;
}

#programmation,
#faq,
#newsletter,
#contact {
  scroll-margin-top: clamp(5rem, 14vw, 7.5rem);
}

.site-header.is-scrolled {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  padding: 1.75rem var(--page-gutter) 1.5rem;
  gap: 1rem;
}

.nav__primary {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
  flex-wrap: wrap;
}

.nav__logo {
  display: block;
  line-height: 0;
  flex-shrink: 0;
}

.nav__logo img {
  display: block;
  height: 22px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__menu a {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  opacity: 0.5;
  transform: translateY(0);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.nav__menu a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.nav__menu a:focus-visible {
  opacity: 1;
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.nav__menu-close-item {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible,
  .reveal-on-scroll[data-reveal-direction="left"],
  .reveal-on-scroll[data-reveal-direction="right"] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav__menu a {
    transition: opacity 0.15s ease;
  }

  .nav__menu a:hover {
    transform: none;
  }
}

.nav__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  padding: 1.1rem 2.35rem 1.1rem 1.95rem;
  min-height: 58px;
  border-radius: 9999px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Glass texture: plus-lighter adds light on top of the hero (see-through).
   Opacity drops the milky gray from the opaque PNG so the photo reads through. */
.nav__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  clip-path: inset(0 round 9999px);
  background-color: transparent;
  background-image: url("../assets/glass-button-hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.48;
  mix-blend-mode: screen;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    filter 0.28s ease;
}

.nav__cta > * {
  position: relative;
  z-index: 1;
}

.nav__cta:hover::before {
  opacity: 0.68;
  filter: brightness(1.06);
}

@supports (mix-blend-mode: plus-lighter) {
  .nav__cta::before {
    mix-blend-mode: plus-lighter;
    opacity: 0.52;
  }

  .nav__cta:hover::before {
    opacity: 0.72;
  }
}

.nav__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.nav__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__cta-icon img {
  display: block;
  width: 20px;
  height: 20px;
}

.nav__cta-sep {
  align-self: stretch;
  width: 1px;
  min-height: 1.35rem;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.nav__cta-label {
  line-height: 1.2;
}

.nav__more {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.15rem;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav__more span {
  position: relative;
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0.55rem 0 0 0 currentColor,
    0 0.55rem 0 0 currentColor,
    0.55rem 0.55rem 0 0 currentColor;
  opacity: 0.9;
}

.nav__more:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.hero {
  --hero-caption-font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  --marquee-logo-height: 44px;
  --marquee-logo-sciencespo: calc(var(--marquee-logo-height) * 0.5);
  --marquee-logo-cnrs: calc(var(--marquee-logo-height) * 1.5);
  --marquee-logo-elysee: calc(var(--marquee-logo-height) * 1.5);
  --marquee-row-height: max(
    var(--marquee-logo-height),
    var(--marquee-logo-cnrs),
    var(--marquee-logo-elysee),
    var(--marquee-logo-sciencespo)
  );
  --hero-marquee-offset: calc(1.25rem + 1.75rem + var(--marquee-row-height));
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  width: 100%;
  background-color: #000;
  background-image: url("../assets/hero-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.hero__video.is-ready {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    opacity: 1;
    transition: none;
  }
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: var(--hero-marquee-offset);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0,
    rgba(0, 0, 0, 0) 20vh,
    rgba(0, 0, 0, 0) calc(100% - 20vh),
    rgba(0, 0, 0, 1) 100%
  );
}

.hero__inner {
  margin-top: auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 2rem var(--page-gutter) 2.75rem;
}

.hero__column--main {
  min-width: 0;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: var(--hero-caption-font-size);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  opacity: 0.5;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

.hero__title {
  margin: 0 0 1.75rem;
  color: #fff;
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero__title-line {
  display: block;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.15rem;
  min-height: 52px;
  border: none;
  border-radius: 9999px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  transform: translateY(0);
  transition: transform 0.28s ease;
}

.hero__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  clip-path: inset(0 round 9999px);
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.48;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__btn--solid::before {
  background-image: url("../assets/glass-button-hero.png");
}

.hero__btn--outline::before {
  background-image: url("../assets/glass-button-hero.png");
}

.hero__btn > * {
  position: relative;
  z-index: 1;
}

.hero__btn:hover::before {
  opacity: 0.68;
  filter: brightness(1.06);
}

.hero__btn:hover {
  transform: translateY(-2px);
}

@supports (mix-blend-mode: plus-lighter) {
  .hero__btn::before {
    mix-blend-mode: plus-lighter;
    opacity: 0.52;
  }

  .hero__btn:hover::before {
    opacity: 0.72;
  }
}

.hero__btn-icon {
  display: block;
  height: 1em;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.hero__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__btn {
    transition: none;
  }

  .hero__btn:hover {
    transform: none;
  }
}

.hero__column--aside {
  text-align: right;
  align-self: center;
}

.hero__aside-line {
  margin: 0;
  color: #fff;
  font-size: var(--hero-caption-font-size);
  font-weight: 600;
  line-height: 1.28;
  text-transform: uppercase;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

.hero__aside-muted {
  font-weight: inherit;
  opacity: 0.5;
}

.hero__marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.25rem 0 1.75rem;
  overflow: hidden;
  background-color: #000;
  border-block: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__marquee-track {
  display: flex;
  width: max-content;
  background-color: #000;
  animation: hero-marquee 55s linear infinite;
  will-change: transform;
}

.hero__marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  min-height: var(--marquee-row-height);
}

.hero__marquee-logo {
  display: block;
  height: var(--marquee-logo-height);
  width: auto;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  opacity: 0.5;
}

.hero__marquee-logo--sciencespo {
  height: var(--marquee-logo-sciencespo);
}

.hero__marquee-logo--cnrs {
  height: var(--marquee-logo-cnrs);
}

.hero__marquee-logo--elysee {
  height: var(--marquee-logo-elysee);
}

@keyframes hero-marquee {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero__marquee-track {
    animation: none;
  }
}

@media (max-width: 1200px) {
  .hero__inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 2rem;
  }

  .hero__column--aside {
    text-align: left;
    justify-self: start;
  }

  .hero__title {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 1200px) {
  /* Aligne les marges latérales du site sur celles du hero (1rem ≈ eyebrow / colonne droite). */
  :root {
    --page-gutter: 1rem;
  }

  .site-header {
    z-index: 20;
  }

  .nav {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: max(0.95rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px)) 0.75rem
      max(1rem, env(safe-area-inset-left, 0px));
  }

  .nav__primary {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 42;
  }

  .nav__logo img {
    height: 18px;
  }

  .nav__logo {
    position: relative;
    z-index: 45;
    display: block;
    line-height: 0;
  }

  .nav__menu {
    display: none !important;
  }

  .nav__cta {
    position: relative;
    flex: 0 0 auto;
    z-index: 50;
    margin-left: 0;
    align-self: center;
    min-height: 36px;
    padding: 0.42rem 0.72rem;
    font-size: 0.72rem;
  }

  .nav__cta-icon img {
    width: 14px;
    height: 14px;
  }

  .nav__cta-sep {
    display: none;
  }

  .nav__more {
    display: none !important;
  }

  .hero {
    min-height: 100svh;
    background-position: 39% center;
  }

  .hero__video {
    object-position: 39% center;
  }

  .hero::after {
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.28) 28%,
      rgba(0, 0, 0, 0.38) 58%,
      rgba(0, 0, 0, 0.98) 100%
    );
  }

  .hero__inner {
    margin-top: 0;
    align-items: end;
    min-height: 100svh;
    padding: 5.9rem var(--page-gutter) 1.9rem;
  }

  .hero__column--main {
    position: relative;
    width: 100%;
    padding-top: clamp(11rem, 39vh, 17.5rem);
  }

  .hero__eyebrow {
    position: absolute;
    top: 4.65rem;
    left: 0;
    max-width: 11rem;
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.15;
    opacity: 0.88;
  }

  .hero__column--aside {
    position: absolute;
    top: 11.85rem;
    right: var(--page-gutter);
    text-align: right;
    justify-self: auto;
  }

  .hero__aside-line {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.1;
  }

  .hero__title {
    margin-bottom: 1rem;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    font-size: clamp(1.72rem, 7.6vw, 2.3rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-align: center;
  }

  .hero__title-line {
    white-space: nowrap;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding-top: 0.35rem;
    padding-bottom: 0.45rem;
  }

  .hero__btn {
    width: min(100%, 17.25rem);
    margin-inline: auto;
    justify-content: center;
    min-height: 44px;
    padding: 0.68rem 0.95rem;
    font-size: 0.88rem;
    border-radius: 9999px;
  }

  .hero__btn::before {
    border: 0;
    border-radius: inherit;
    clip-path: inset(0 round 9999px);
    background-color: transparent;
    background-image: url("../assets/glass-button-hero.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.48;
    mix-blend-mode: screen;
    filter: none;
  }

  .hero__btn--solid {
    color: rgba(255, 255, 255, 0.98);
  }

  .hero__btn--outline {
    color: rgba(255, 255, 255, 0.84);
  }

  .hero__btn--solid::before {
    opacity: 0.58;
  }

  .hero__btn--outline::before {
    opacity: 0.42;
  }

  .hero__marquee {
    display: block;
    margin-top: 0.65rem;
    padding: 0.9rem 0 1.15rem;
  }

  .hero__marquee-group {
    padding-inline: var(--page-gutter);
  }

  .newsletter__panel {
    padding-block: clamp(1.5rem, 4vw, 2.5rem);
    padding-inline: 0;
  }
}

@media (max-width: 520px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__btn {
    justify-content: center;
  }
}

.concept {
  background-color: #000;
  color: #fff;
  padding-top: clamp(3rem, 8vw, 5.5rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow-x: clip;
}

.concept__inner,
.programmation__inner {
  max-width: 72rem;
  padding-inline: var(--page-gutter);
}

.concept__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.4;
}

.concept__title {
  margin: 0 0 2rem;
  max-width: 55rem;
  font-size: clamp(1.25rem, 2.65vw, 2.1rem);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  color: #fff;
}

.concept__title-strong {
  color: #fff;
}

.concept__title-soft {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

.concept__cta {
  display: inline-flex;
  margin-bottom: 2.5rem;
}

.concept-slider {
  --concept-card-w: calc(613px * 0.84);
  --concept-card-h: calc(634px * 0.84);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: none;
  padding-inline: var(--page-gutter);
  padding-block: 2.5rem 1rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.concept-slider::-webkit-scrollbar {
  display: none;
}

.concept-slider:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

.concept-slider--dragging {
  cursor: grabbing;
  user-select: none;
}

.concept-slider__list {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  margin: 0;
  padding: 0;
  padding-inline-end: var(--page-gutter);
  list-style: none;
}

.concept-slider__slide {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 var(--concept-card-w);
  align-items: center;
  justify-content: center;
  width: var(--concept-card-w);
  min-width: var(--concept-card-w);
  max-width: var(--concept-card-w);
  height: var(--concept-card-h);
  min-height: var(--concept-card-h);
  max-height: var(--concept-card-h);
  box-sizing: border-box;
  cursor: pointer;
}

.concept-slider__slide.is-active {
  z-index: 2;
}

.concept-card {
  position: relative;
  flex: none;
  width: var(--concept-card-w);
  min-width: var(--concept-card-w);
  max-width: var(--concept-card-w);
  height: var(--concept-card-h);
  min-height: var(--concept-card-h);
  max-height: var(--concept-card-h);
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
  transform-origin: center center;
  transform: scale(0.94);
  opacity: 0.45;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.9, 0.35, 1),
    opacity 0.4s ease;
}

.concept-slider__slide.is-active .concept-card {
  transform: scale(1.04);
  opacity: 1;
}

.concept-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.concept-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  padding: 1.35rem 1.25rem 1.5rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0,
    rgba(0, 0, 0, 0.12) 42%,
    transparent 72%
  );
}

.concept-card__title {
  margin: 0;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
}

.concept-card__title-muted {
  font-weight: 700;
  opacity: 0.5;
}

.concept-card__title-strong {
  font-weight: 700;
}

.concept-card__text {
  margin: 1.25rem 0 0;
  margin-left: auto;
  max-width: 22rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: right;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
}

.programmation {
  background-color: #000;
  color: #fff;
  padding-top: clamp(3rem, 8vw, 5.5rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow-x: clip;
}

.programmation__title-line {
  display: block;
}

.programmation__title-line--muted {
  color: #fff;
  opacity: 0.5;
  text-transform: none;
}

.programmation__title-line--full {
  color: #fff;
}

.programmation__grid-wrap {
  padding-inline: var(--page-gutter);
  padding-top: 2.5rem;
  overflow-x: clip;
}

.programmation__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.event-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.event-card__poster {
  position: relative;
  width: 100%;
  margin: 0 0 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 810 / 1024;
  background: #141414;
}

.event-card__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event-card--sold-out .event-card__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  pointer-events: none;
}

.event-card__soldout-badge {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4b87a;
  text-align: center;
  pointer-events: none;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}

.event-card__meta {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.event-card__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.05rem, 1.65vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.event-card__desc {
  margin: 0 0 1.35rem;
  flex: 1 1 auto;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
}

.event-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
}

.event-card__actions--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.event-card__actions--full .event-btn {
  width: 100%;
  justify-content: center;
}

.event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  min-height: 46px;
  border: none;
  border-radius: 18px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: inherit;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.event-btn--reserve:hover {
  background: transparent;
}

.event-btn--reserve:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

.event-btn--reserve img {
  display: block;
  flex-shrink: 0;
  opacity: 0.9;
}

.event-btn--reserve {
  position: relative;
  border-radius: 9999px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.event-btn--reserve::before {
  --event-glass-cap: 49;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: solid transparent;
  border-width: 24px;
  border-radius: inherit;
  background-color: transparent;
  border-image-source: url("../assets/glass-button-hero.png");
  border-image-slice: var(--event-glass-cap) fill;
  border-image-width: 24px;
  border-image-outset: 0;
  border-image-repeat: stretch;
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    filter 0.28s ease;
}

.event-btn--reserve > * {
  position: relative;
  z-index: 1;
}

.event-btn--reserve:hover::before {
  opacity: 0.7;
  filter: brightness(1.06);
}

@supports (mix-blend-mode: plus-lighter) {
  .event-btn--reserve::before {
    mix-blend-mode: plus-lighter;
    opacity: 0.54;
  }

  .event-btn--reserve:hover::before {
    opacity: 0.74;
  }
}

.event-btn--disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

.event-btn--soldout {
  background: rgba(30, 28, 22, 0.95);
  color: #d4b87a;
  font-weight: 600;
  cursor: not-allowed;
}

.event-btn--soldout.event-btn--disabled {
  opacity: 1;
}

@media (max-width: 960px) {
  .programmation__grid {
    grid-template-columns: 1fr;
  }

  .event-card__poster {
    width: min(100%, 30rem);
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .event-card__actions--split {
    grid-template-columns: 1fr;
  }
}

.newsletter {
  background-color: #000;
  color: #fff;
  padding-block: clamp(2rem, 6vw, 4rem);
  overflow-x: clip;
}

.newsletter__inner {
  padding-inline: var(--page-gutter);
}

.newsletter__panel {
  position: relative;
  width: 100%;
  border-radius: clamp(12px, 1.25vw, 20px);
  overflow: hidden;
  padding: clamp(1.75rem, 4.5vw, 2.75rem) clamp(1.25rem, 3vw, 2.25rem);
  text-align: center;
  background-color: #141414;
  background-image: url("../assets/newsletter-bg.png");
  background-size: cover;
  background-position: center;
}

.newsletter__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.newsletter__title {
  margin: 0 auto;
  max-width: 46rem;
  font-size: clamp(1.05rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
}

.newsletter__title-line {
  display: block;
}

.newsletter__title-line--soft {
  margin-top: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.65rem;
  max-width: 52rem;
  margin: clamp(1.35rem, 3.5vw, 1.85rem) auto 0;
}

.newsletter__field {
  --newsletter-glass-cap: 87;
  --newsletter-glass-edge: 86;
  position: relative;
  z-index: 0;
  flex: 1 1 16rem;
  min-width: 0;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0;
  border-radius: 9999px;
  overflow: hidden;
  background: transparent;
}

.newsletter__field::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border: solid transparent;
  border-width: 24px;
  border-image-source: url("../assets/newsletter-glass.png");
  border-image-slice: var(--newsletter-glass-edge) var(--newsletter-glass-cap) var(--newsletter-glass-edge)
    var(--newsletter-glass-cap) fill;
  border-image-width: 24px;
  border-image-outset: 0;
  border-image-repeat: stretch;
}

.newsletter__input {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: none;
  margin: 0;
  padding: 0.55rem 1.25rem;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: inherit;
  outline: none;
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.newsletter__submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  min-height: 0;
  border: none;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: inherit;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.newsletter__submit:hover {
  background: #f0f0f0;
}

.newsletter__submit:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.newsletter__submit-icon {
  display: block;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
}

.newsletter__honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter__feedback {
  max-width: 34rem;
  margin: clamp(1.1rem, 3vw, 1.45rem) auto 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.newsletter__feedback--success {
  color: #d4b87a;
}

.newsletter__feedback--error {
  color: #ff8a8a;
}

.newsletter__panel.is-subscribed .newsletter__legal {
  margin-top: clamp(0.85rem, 2.5vw, 1.15rem);
}

.newsletter__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.newsletter__legal {
  margin: clamp(1.25rem, 3vw, 1.65rem) auto 0;
  max-width: 34rem;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.newsletter__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 560px) {
  .newsletter__form {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .newsletter__field {
    flex: 1 1 auto;
    min-height: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .newsletter__field::before {
    display: none;
  }

  .newsletter__input {
    min-height: 50px;
    height: 50px;
    padding: 0 1rem;
    box-sizing: border-box;
    font-size: 0.875rem;
  }

  .newsletter__submit {
    width: 100%;
    min-height: 50px;
    height: 50px;
    padding: 0 1.25rem;
    box-sizing: border-box;
  }
}

.newsletter-page {
  min-height: 100dvh;
  background-color: #000;
}

.newsletter-page__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 1rem var(--page-gutter);
}

.newsletter-page__logo {
  display: inline-flex;
  line-height: 0;
}

.newsletter-page__logo img {
  display: block;
  height: clamp(16px, 3.2vw, 19px);
  width: auto;
}

.newsletter-page__main {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 3.25rem;
  padding-bottom: 4.5rem;
}

.newsletter-page__footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 0 var(--page-gutter) clamp(1.15rem, 4vw, 1.65rem);
  text-align: center;
}

.newsletter-page__back {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.newsletter-page__back:hover {
  color: #fff;
}

.newsletter-page__back:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .newsletter-page .newsletter__field {
    border-radius: 9999px;
    background: transparent;
    border: none;
    min-height: 48px;
    height: auto;
  }

  .newsletter-page .newsletter__field::before {
    display: block;
  }

  .newsletter-page .newsletter__input {
    min-height: 48px;
    height: auto;
    padding: 0.55rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .concept {
    overflow-x: clip;
  }

  .concept__title {
    font-size: clamp(1.05rem, 4.6vw, 1.42rem);
    margin-bottom: 1.35rem;
  }

  .concept__cta {
    width: auto;
    max-width: 100%;
    justify-content: center;
    padding-inline: 2.15rem;
  }

  .concept__inner {
    padding-inline: var(--page-gutter);
  }

  .concept-slider {
    overflow-x: visible;
    overflow-y: visible;
    width: 100%;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-inline: var(--page-gutter);
    padding-block: 1.5rem 0.35rem;
    cursor: default;
    -webkit-overflow-scrolling: auto;
  }

  .concept-slider__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    gap: 0.85rem;
    padding: 0;
  }

  .concept-slider__slide {
    flex: 0 0 auto;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .concept-slider__slide.reveal-on-scroll {
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translate3d(0, 28px, 0) scale(0.93);
    opacity: 0;
    will-change: opacity, transform;
  }

  .concept-slider__slide.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .concept-card {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 515 / 533;
    min-height: 0;
    max-height: none;
    border-radius: 12px;
    transform: none;
    opacity: 1;
  }

  .concept-slider__slide.is-active .concept-card {
    transform: none;
    opacity: 1;
  }
}

.faq {
  background-color: #000;
  color: #fff;
  padding-top: clamp(3rem, 8vw, 5.5rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow-x: clip;
}

.faq__inner {
  width: 100%;
  padding-inline: var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, min(30rem, 38vw)) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}

.faq__intro {
  min-width: 0;
}

.faq__title-part--full {
  color: #fff;
}

.faq__title-part--muted {
  color: #fff;
  opacity: 0.5;
}

.faq__panel {
  min-width: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.faq-item {
  display: grid;
  grid-template-rows: auto 0fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: grid-template-rows 0.45s cubic-bezier(0.25, 0.9, 0.35, 1);
}

.faq-item[open] {
  grid-template-rows: auto 1fr;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__body {
  min-height: 0;
  overflow: hidden;
}

.faq-item__summary {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__summary::marker {
  content: "";
}

.faq-item__summary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: -2px;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 1.25rem;
  margin-top: 0.1em;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.faq-item__icon::before {
  content: "+";
  display: block;
}

.faq-item[open] .faq-item__icon {
  color: #fff;
}

.faq-item[open] .faq-item__icon::before {
  content: "−";
}

.faq-item__question {
  flex: 1;
  min-width: 0;
}

.faq-item__answer {
  padding: 0.15rem 1.35rem 1.2rem calc(1.35rem + 1.25rem + 0.85rem);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  opacity: 0;
  transform: translateY(-0.35rem);
  transition:
    opacity 0.35s ease 0.06s,
    transform 0.45s cubic-bezier(0.25, 0.9, 0.35, 1) 0.04s;
}

.faq-item[open] .faq-item__answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-item__answer p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item {
    transition: none;
  }

  .faq-item__answer,
  .faq-item__icon,
  .faq-item__icon::before {
    transition: none;
  }

  .faq-item__answer {
    transform: none;
  }

  .faq-item[open] .faq-item__answer {
    opacity: 1;
  }
}

@media (max-width: 880px) {
  .faq__inner {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #000;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8125rem;
  padding: 1.75rem var(--page-gutter) 2.25rem;
  overflow-x: clip;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 72rem;
  margin-inline: auto;
  text-align: center;
}

.site-footer__logo {
  display: block;
  line-height: 0;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.site-footer__logo img {
  display: block;
  height: 18px;
  width: auto;
}

.site-footer__logo:hover {
  opacity: 1;
}

.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: #fff;
}

.site-footer__nav a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 4px;
}

.site-footer__newsletter-link {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
  text-decoration: none;
}

.site-footer__newsletter-link:hover {
  color: #fff;
}

.site-footer__newsletter-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 4px;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.32);
}
