:root {
  --acid: #efff00;
  --ink: #090909;
  --paper: #f7f7f2;
  --blue: #003cff;
  --pink: #ff4fa0;
  --line: rgba(9, 9, 9, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: #fff; padding: .7rem 1rem; }
.skip:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 104px;
  background: var(--acid);
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.header-inner {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  text-decoration: none;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.14);
}
.brand img { width: 55px; height: 55px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: clamp(1.4rem, 3.5vw, 4rem); }
.nav a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .03em;
  padding: .6rem 0 .42rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { border-color: currentColor; }
.menu-button { display: none; border: 0; background: transparent; font: inherit; font-weight: 700; text-transform: uppercase; }

.display {
  margin: 0;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.045em;
  line-height: .82;
}
.eyebrow { margin: 0 0 1rem; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: .8rem;
}
.button:hover { background: var(--blue); border-color: var(--blue); }
.button-outline { background: transparent; color: var(--ink); }

.hero {
  background: var(--acid);
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  border-bottom: 1px solid var(--ink);
}
.hero-copy {
  padding: clamp(3rem, 7vw, 7.5rem) clamp(2rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero .display { font-size: clamp(5.2rem, 13.5vw, 13rem); max-width: 7ch; line-height: .98; }
.hero-meta { display: flex; align-items: end; gap: 2rem; margin-top: 4rem; }
.hero-date { font-size: clamp(2rem, 4vw, 4.8rem); line-height: .95; font-weight: 800; letter-spacing: -.04em; }
.hero-date span { display: block; font-size: .95rem; letter-spacing: 0; text-transform: uppercase; margin-bottom: .5rem; }
.hero-art { position: relative; overflow: hidden; min-height: 640px; background: #fff; border-left: 1px solid var(--ink); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.03); }
.hero-art::after { content: "PROCHAINE SÉANCE"; position: absolute; right: 0; top: 0; padding: .75rem 1rem; background: var(--blue); color: white; font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.ticker { overflow: hidden; background: var(--ink); color: white; white-space: nowrap; padding: 1rem 0; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.ticker div { width: max-content; animation: ticker 28s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { width: min(1320px, calc(100% - 64px)); margin: 0 auto; padding: clamp(5rem, 10vw, 10rem) 0; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 4rem; }
.section-head .display { font-size: clamp(4rem, 8vw, 8rem); }
.section-head p { max-width: 36rem; margin: 0; font-size: clamp(1.15rem, 1.8vw, 1.6rem); }
.event-grid { display: grid; grid-template-columns: .8fr 1.2fr; border: 1px solid var(--ink); background: #fff; }
.event-poster { padding: 2rem; border-right: 1px solid var(--ink); background: #eee; }
.event-poster img { width: 100%; height: 520px; object-fit: contain; }
.event-info { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(2rem, 5vw, 5rem); }
.event-info h2 { margin: 0; max-width: 11ch; font-size: clamp(2.4rem, 5vw, 5.8rem); line-height: .95; letter-spacing: -.045em; }
.event-info strong { color: var(--blue); }
.event-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; }
.venue-strip { background: var(--acid); border-block: 1px solid var(--ink); }
.venue-inner { width: min(1320px, calc(100% - 64px)); margin: auto; padding: 2.5rem 0; display: grid; grid-template-columns: 240px 1fr auto; gap: 3rem; align-items: center; }
.venue-inner img { max-height: 76px; width: auto; }
.venue-inner p { margin: 0; font-size: 1.15rem; }
.venue-inner strong { font-size: 1.25rem; }
.manifesto { display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; align-items: start; }
.manifesto .display { font-size: clamp(4rem, 8vw, 8.5rem); position: sticky; top: 140px; }
.manifesto-copy { font-size: clamp(1.35rem, 2.6vw, 2.5rem); line-height: 1.2; letter-spacing: -.025em; }
.manifesto-copy p:first-child::first-letter { font-size: 4em; float: left; line-height: .72; margin: .08em .12em 0 0; font-family: Georgia, serif; color: var(--blue); }
.manifesto-copy a { color: var(--blue); font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: .2em; }

.page-hero { background: var(--acid); padding: clamp(4rem, 10vw, 10rem) max(32px, calc((100% - 1320px)/2)); border-bottom: 1px solid var(--ink); }
.page-hero .display { font-size: clamp(5rem, 13vw, 12rem); max-width: 9ch; }
.page-hero p { margin: 2rem 0 0; max-width: 50rem; font-size: clamp(1.25rem, 2.5vw, 2rem); }
.approach-lead { max-width: 1050px; font-size: clamp(1.6rem, 3vw, 3.2rem); line-height: 1.18; letter-spacing: -.03em; margin: 0 0 6rem; }
.photo-pair { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1rem; }
.photo-pair img { width: 100%; height: 500px; object-fit: cover; }
.quote { margin: 0; padding: clamp(4rem, 9vw, 8rem) max(32px, calc((100% - 1050px)/2)); background: var(--blue); color: white; font-size: clamp(2rem, 5vw, 5.5rem); line-height: 1.03; letter-spacing: -.04em; }

.archive-intro { width: min(1320px, calc(100% - 64px)); margin: 0 auto; padding: 5rem 0 2rem; display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.archive-intro .display { font-size: clamp(6rem, 15vw, 14rem); }
.archive-intro p { margin: 0 0 1rem; font-weight: 800; text-transform: uppercase; }
.film-list { width: min(1320px, calc(100% - 64px)); margin: 0 auto; padding-bottom: 8rem; }
.film {
  display: grid;
  grid-template-columns: 72px 1fr 220px;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: 3rem 0;
  border-top: 1px solid var(--ink);
}
.film-no { font-family: Impact, sans-serif; font-size: 3rem; color: var(--blue); }
.film h2 { margin: 0 0 .45rem; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; letter-spacing: -.03em; }
.film-meta { margin: 0 0 1.5rem; text-transform: uppercase; font-size: .75rem; font-weight: 800; letter-spacing: .08em; }
.film p { max-width: 700px; }
.film a { color: var(--blue); font-weight: 800; }
.film img { width: 220px; height: 300px; object-fit: contain; background: #e8e8e1; }

.contact-wrap { min-height: calc(100vh - 250px); display: grid; grid-template-columns: 1fr 1fr; }
.contact-social { background: var(--blue); color: white; padding: clamp(3rem, 8vw, 8rem); display: flex; flex-direction: column; justify-content: space-between; }
.contact-social .display, .contact-details .display { font-size: clamp(4rem, 8vw, 8rem); }
.social-links { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 4rem; }
.social-links a { border: 1px solid white; padding: .8rem 1rem; text-decoration: none; font-weight: 800; text-transform: uppercase; }
.contact-details { padding: clamp(3rem, 8vw, 8rem); background: var(--paper); }
.contact-line { display: block; padding: 1.5rem 0; border-top: 1px solid var(--ink); text-decoration: none; font-size: clamp(1.1rem, 2vw, 1.5rem); }
.contact-line:last-child { border-bottom: 1px solid var(--ink); }

.site-footer { background: var(--ink); color: white; }
.footer-inner { width: min(1320px, calc(100% - 64px)); margin: auto; padding: 2.2rem 0; display: flex; justify-content: space-between; gap: 2rem; font-size: .8rem; }
.footer-inner nav { display: flex; gap: 1.2rem; }

@media (max-width: 820px) {
  .header-inner { width: calc(100% - 32px); min-height: 82px; }
  .site-header { min-height: 82px; }
  .brand { width: 54px; height: 54px; border-radius: 14px; }
  .brand img { width: 46px; height: 46px; }
  .menu-button { display: block; }
  .nav { display: none; position: absolute; inset: 82px 0 auto; background: var(--acid); border-bottom: 1px solid; padding: 1.5rem; flex-direction: column; align-items: flex-start; gap: .7rem; }
  .nav.open { display: flex; }
  .nav a { font-size: 1.2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: 590px; padding: 3rem 1.25rem; }
  .hero .display { font-size: clamp(5rem, 24vw, 8rem); }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .hero-art { border-left: 0; border-top: 1px solid; min-height: 560px; }
  .section, .archive-intro, .film-list, .venue-inner, .footer-inner { width: calc(100% - 32px); }
  .section-head, .event-grid, .manifesto, .contact-wrap { grid-template-columns: 1fr; }
  .section-head { gap: 1.5rem; }
  .section-head .display { font-size: 4.2rem; }
  .event-poster { border-right: 0; border-bottom: 1px solid; padding: 1rem; }
  .event-poster img { height: 440px; }
  .venue-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .manifesto .display { position: static; }
  .photo-pair { grid-template-columns: 1fr; }
  .photo-pair img { height: 320px; }
  .archive-intro { align-items: start; flex-direction: column; padding-top: 3rem; }
  .film { grid-template-columns: 52px 1fr; }
  .film img { grid-column: 2; width: 160px; height: 225px; }
  .contact-wrap { min-height: auto; }
  .contact-social, .contact-details { padding: 4rem 1.25rem; }
  .footer-inner { flex-direction: column; }
  .footer-inner nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .ticker div { animation: none; } }

.legal-hero .display { font-size: clamp(2.5rem, 7vw, 7rem); max-width: 18ch; line-height: 1; overflow-wrap: anywhere; }
.legal-content { width: min(780px, calc(100% - 40px)); margin: 0 auto; padding: 3rem 0 5rem; line-height: 1.7; font-size: 1rem; }
.legal-section { padding: 1.5rem 0; border-bottom: 1px solid var(--ink); }
.legal-section h2 { font-size: 1.4rem; line-height: 1.25; }
.legal-content a { overflow-wrap: anywhere; }
