:root {
  --bg: #070912;
  --bg-soft: #0b0d19;
  --text: #f3f1f5;
  --muted: #b8b5c1;
  --accent: #f04b9a;
  --accent-2: #5b8cff;
  --line: rgba(255,255,255,.15);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 34px;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.menu-toggle {
  width: 60px;
  height: 60px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 34px;
  height: 1px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}
.menu-toggle small {
  margin-top: 3px;
  font-size: 8px;
  letter-spacing: .22em;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.brand {
  display: flex;
  align-items: center;
}

.header-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-logo,
.instagram-logo,
.youtube-logo {
  height: 20px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.instagram-link:hover .instagram-logo,
.youtube-link:hover .youtube-logo {
  opacity: 0.7;
}

.menu-overlay {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgba(3,4,10,.72);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-panel {
  min-height: 100%;
  width: min(430px, 88vw);
  padding: 130px 48px 50px;
  background: rgba(8,10,20,.96);
  border-right: 1px solid var(--line);
  transform: translateX(-30px);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.menu-overlay.open .menu-panel { transform: none; }
.menu-kicker, .kicker {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.pitch-quote {
  margin: 30px 0;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

.pitch-quote p {
  font-style: italic;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

/* Supprime la marge du dernier paragraphe à l'intérieur de la citation */
.pitch-quote p:last-child {
  margin-bottom: 0;
}
.menu-panel a {
  display: block;
  margin: 22px 0;
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 300;
  letter-spacing: -.02em;
  transition: color .2s, transform .2s;
}
.menu-panel a:hover { color: var(--accent); transform: translateX(5px); }

.section { position: relative; }
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: center;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, transparent 10%, rgba(4,5,12,.15) 50%, rgba(4,5,12,.75) 100%),
    linear-gradient(to bottom, rgba(2,3,8,.45), transparent 30%, rgba(2,3,8,.65));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px 50px;

  box-sizing: border-box;
  height: 100svh;          
  display: flex;           
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-logo {
  width: 30vw;       
  max-width: 400px;   
  height: auto;      
  margin-top: auto;  
}
.hero h1 {
  margin: 0;
  font-size: clamp(60px, 11vw, 170px);
  line-height: .85;
  font-weight: 300;
  letter-spacing: .08em;
}
.eyebrow {
  margin: 0 0 28px;
  font-size: clamp(10px, 1.3vw, 14px);
  letter-spacing: .48em;
}
.scroll-cue {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: clamp(70px, 13vh, 130px);
  font-size: 9px;
  letter-spacing: .28em;
  margin-top: auto;
}
.scroll-cue i {
  width: 10px;
  height: 10px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transform: rotate(45deg);
}

.section-inner {
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
  padding: 130px 0;
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 140px);
}
.copy h2, .team h2, .contact h2, .awards h2 {
  margin: 12px 0 28px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.copy p { color: var(--muted); max-width: 650px; }
.copy .lead { color: var(--text); font-size: 18px; }
.button {
  display: inline-block;
  margin-top: 28px;
  padding: 13px 25px;
  border: 1px solid rgba(240,75,154,.7);
  color: #fff;
  font-size: 10px;
  letter-spacing: .2em;
  transition: background .25s, border-color .25s, transform .25s;
}
.button:hover {
  background: rgba(240,75,154,.13);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.button-small { margin: 0; white-space: nowrap; padding: 11px 16px; }

.project {
  background:
    radial-gradient(circle at 80% 20%, rgba(91,140,255,.10), transparent 35%),
    radial-gradient(circle at 15% 70%, rgba(240,75,154,.08), transparent 35%),
    var(--bg-soft);
}
.dates { border-left: 1px solid var(--line); padding-left: clamp(30px, 5vw, 80px); }
.event {
  min-height: 120px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.event time {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: .08em;
  line-height: 1.1;
}
.event strong {
  display: block;
  margin-top: 5px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .2em;
}
.event span { color: var(--muted); font-size: 13px; }
.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .2em;
}
.text-link span { margin-left: 15px; font-size: 18px; }

.visual-section { background: #05060c; }
.section-image {
  height: min(72vh, 760px);
  overflow: hidden;
}
.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .82;
}
.narrow { max-width: 850px; }

.split-dark {
  background:
    radial-gradient(circle at 15% 30%, rgba(91,140,255,.13), transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(240,75,154,.11), transparent 35%);
}
.placeholder-panel {
  min-height: 420px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.35);
  letter-spacing: .2em;
  font-size: 10px;
  background: linear-gradient(135deg, rgba(91,140,255,.08), rgba(240,75,154,.08));
}
.team { background: var(--bg-soft); text-align: center; }
.credits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  text-align: center; /* AJOUT : Centre tout le texte (postes et noms) */
}

.credits div {
  padding: 30px 20px; /* MODIFICATION : Aligne le padding à gauche et à droite équitablement (30px 20px 30px 0 avant) */
  border-bottom: 1px solid var(--line);
}

.credits span, .credits strong { display: block; }

.credits span { 
  color: var(--muted); 
  font-size: 11px; 
  text-transform: uppercase; 
  letter-spacing: .15em; 
}

.credits strong { 
  margin-top: 8px; 
  font-weight: 400; 
}

.contact {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(240,75,154,.16), transparent 40%),
    var(--bg);
}
.contact .section-inner { padding: 100px 0; }
.contact p { color: var(--muted); }

.site-footer {
  padding: 28px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #888592;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* ==========================================================================
   AWARDS SECTION
   ========================================================================== */
.awards {
  background: #05060c;
  text-align: center;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 60px);          
  margin-top: 50px;
  justify-items: center;               
  align-items: center;                 
}

.award-item {
  max-width: 220px;                    
  width: 100%;
}

.award-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1) brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Effet discret au survol */
.award-item:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.03);
}

@media (max-width: 700px) {
  .site-header { height: 76px; padding: 12px 17px; }
  .menu-toggle { width: 54px; height: 54px; }
  .menu-toggle span { width: 29px; }
  .brand { font-size: 8px; }
  .brand-mark { font-size: 22px; }

  .hero-media img { object-position: center center; }
  .hero-content { padding-top: 70px; }
  .hero h1 { font-size: clamp(52px, 16vw, 90px); letter-spacing: .04em; }
  .eyebrow { letter-spacing: .35em; }
  .scroll-cue { margin-top: 85px; }

  .section-inner {
    width: min(calc(100% - 42px), var(--max));
    padding: 85px 0;
  }
  .two-columns { grid-template-columns: 1fr; gap: 75px; }
  .copy h2, .team h2, .contact h2, .awards h2 { font-size: clamp(35px, 11vw, 56px); }
  .copy .lead { font-size: 16px; }
  .dates { border-left: 0; border-top: 1px solid var(--line); padding: 45px 0 0; }
  .event { align-items: flex-end; }
  .event time { font-size: 27px; }
  .button-small { font-size: 8px; padding: 10px 11px; }
  .section-image { height: 58vh; }
  .placeholder-panel { min-height: 280px; }
  .credits { grid-template-columns: 1fr; }
  .credits div { padding: 22px 20px; }
  .site-footer { padding: 24px 21px; flex-direction: column; }
  .menu-panel { padding: 115px 30px 40px; }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
