:root {
  --bg: #050505;
  --panel: #0a0a0a;
  --panel-2: #111;
  --text: #f6f6f6;
  --muted: #c8c8c8;
  --line: #2c2c2c;
  --gold: #d4a13a;
  --gold-2: #efc45f;
  --max: 1420px;
  --header-h: 76px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}
main { flex: 1 0 auto; width: 100%; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 10px; top: 10px; z-index: 99; background: #fff; color: #000; padding: 8px; }

/* En-tête compact : le logo fourni reste un PNG transparent. */
.site-header {
  height: var(--header-h);
  flex: 0 0 var(--header-h);
  background: #030303;
  border-bottom: 1px solid #171717;
  position: sticky;
  top: 0;
  z-index: 30;
}
.header-inner {
  max-width: var(--max);
  height: 100%;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 205px 1fr 105px;
  align-items: center;
  gap: 26px;
}
.brand {
  width: 190px;
  height: 72px;
  display: grid;
  grid-template-rows: 54px 14px;
  justify-items: center;
  align-items: center;
  overflow: hidden;
}
.brand img {
  width: 174px;
  height: 54px;
  object-fit: contain;
  object-position: center;
}
.brand span {
  color: var(--gold);
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  white-space: nowrap;
}
.main-nav { display: flex; justify-content: center; gap: 34px; height: 100%; }
.main-nav a {
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: .2s;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.socials { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.socials a { display: grid; place-items: center; width: 22px; height: 22px; font-size: 17px; font-weight: 700; }
.nav-toggle { display: none; background: transparent; color: #fff; border: 1px solid var(--line); padding: 8px 12px; }

/* Bannières à hauteur maîtrisée : les photos originales ne sont pas régénérées. */
.hero {
  max-width: var(--max);
  margin: auto;
  display: grid;
  overflow: hidden;
  background: #060606;
  border-bottom: 1px solid var(--line);
}
.hero-home { height: 350px; grid-template-columns: 48% 52%; }
.hero-page { height: 278px; grid-template-columns: 46% 54%; }
.hero-podcast,
.hero-events,
.hero-contact { grid-template-columns: 51% 49%; }
.hero-photo { position: relative; height: 100%; overflow: hidden; background: #090909; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-home .hero-photo img { object-position: center 48%; }
.hero-about .hero-photo img { object-position: center 34%; }
.hero-podcast .hero-photo img { object-position: center 48%; }
.hero-events .hero-photo img { object-position: center 53%; }
.hero-contact .hero-photo img { object-position: center 52%; }
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 58%, rgba(5,5,5,.78) 100%);
}
.hero-podcast .hero-photo::after,
.hero-events .hero-photo::after,
.hero-contact .hero-photo::after {
  background: linear-gradient(270deg, transparent 62%, rgba(5,5,5,.82) 100%);
}
.hero-copy { padding: 34px 7%; align-self: center; min-width: 0; }
.hero h1 { margin: 0; font-size: clamp(42px, 4.35vw, 72px); line-height: .98; text-transform: uppercase; letter-spacing: .5px; }
.hero h2 { margin: 16px 0; color: var(--gold); text-transform: uppercase; font-size: clamp(24px, 2vw, 34px); }
.eyebrow { margin: 0 0 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 3px; font-weight: 700; font-size: 12px; }
.hero-lead { max-width: 680px; margin: 0; color: #e5e5e5; font-size: clamp(15px, 1.12vw, 18px); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.actions-small { margin-top: 15px; }
.button {
  min-height: 42px;
  padding: 9px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #666;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  transition: .2s;
}
.button:hover { transform: translateY(-1px); filter: brightness(1.1); }
.button-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #111; border-color: var(--gold); }
.button-outline { background: transparent; color: #fff; }
.gold-border { border-color: var(--gold); color: var(--gold-2); }
.gold-line { display: block; width: 30px; height: 2px; background: var(--gold); margin-bottom: 9px; }

/* Accueil compact : visible en entier sur un écran desktop standard. */
.home-grid {
  max-width: var(--max);
  min-height: 350px;
  margin: auto;
  display: grid;
  grid-template-columns: 43% 57%;
}
.content-panel { padding: 22px 30px 20px; border-right: 1px solid var(--line); min-width: 0; }
.content-panel:last-child { border-right: 0; }
.content-panel h2,
.split-section h2,
.archive-section h2,
.event-types h2,
.form-panel h2 { margin: 0 0 13px; text-transform: uppercase; font-size: 24px; }
.content-panel p { max-width: 610px; margin: 0 0 10px; color: #d2d2d2; }
.stats { display: grid; gap: 14px; margin: 18px 0; }
.stats-three { grid-template-columns: repeat(3, 1fr); }
.stats-four { grid-template-columns: repeat(4, 1fr); }
.stats > div { min-height: 58px; }
.stats b { display: block; margin-bottom: 3px; color: var(--gold); text-transform: uppercase; font-size: 12px; }
.stats span { color: #d1d1d1; font-size: 12px; }
.stats em { color: var(--gold-2); font-style: normal; font-size: 22px; }
.mix-card { display: grid; grid-template-columns: 165px 1fr; gap: 22px; align-items: center; }
.mix-card img { width: 165px; height: 165px; object-fit: cover; border: 1px solid #333; }
.mix-meta h3,
.podcast-feature h2 { margin: 0 0 4px; color: var(--gold); text-transform: uppercase; font-size: 23px; }
.byline { margin: 0 0 12px !important; color: #fff !important; font-size: 15px; }
dl { margin: 0; }
dl > div { display: grid; grid-template-columns: 78px 1fr; margin: 5px 0; }
dt, dd { margin: 0; color: #ddd; }
.audio-player { width: 100%; height: 38px; margin-top: 12px; accent-color: var(--gold); }

/* À propos */
.split-section {
  max-width: var(--max);
  min-height: 424px;
  margin: auto;
  display: grid;
  grid-template-columns: 48% 52%;
}
.story, .quote-and-stats { padding: 22px 30px; min-width: 0; }
.story { border-right: 1px solid var(--line); }
.story p { margin: 0 0 9px; color: #ddd; }
.story strong { color: var(--gold-2); }
.quote-and-stats blockquote {
  margin: 0 0 18px;
  padding: 18px;
  text-align: center;
  border: 1px solid #73551d;
  color: #f2f2f2;
  font-size: 17px;
  font-style: italic;
}
.quote-and-stats .stats { margin: 12px 0 20px; text-align: center; }
.quote-and-stats .stats > div { padding: 10px 6px; border: 1px solid #444; }

/* Podcast */
.podcast-feature {
  max-width: 1120px;
  min-height: 290px;
  margin: 0 auto;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}
.podcast-feature > img { width: 220px; height: 220px; object-fit: cover; border: 1px solid #3a3a3a; }
.podcast-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 15px 0 8px; color: #ddd; }
.archive-section { max-width: 1120px; min-height: 220px; margin: auto; padding: 16px 26px 18px; border-top: 1px solid var(--line); }
.future-row { display: grid; grid-template-columns: 45px 1fr 70px; gap: 14px; align-items: center; border-bottom: 1px solid #292929; padding: 8px 0; }
.future-row h3 { margin: 0; color: var(--gold); text-transform: uppercase; font-size: 13px; }
.future-row p { margin: 2px 0 0; color: #aaa; font-size: 12px; }
.wave-icon { color: #555; font-size: 28px; }

/* Événements */
.events-callouts { max-width: 1240px; margin: auto; padding: 18px 24px 8px; display: grid; grid-template-columns: 1fr 1.15fr; gap: 16px; }
.notice-card { min-height: 148px; padding: 18px; display: grid; grid-template-columns: 58px 1fr; gap: 13px; border: 1px solid #4b4b4b; }
.notice-card h2 { margin: 0 0 6px; color: var(--gold); text-transform: uppercase; font-size: 18px; }
.notice-card p { margin: 0 0 8px; color: #d0d0d0; }
.big-icon { color: var(--gold); font-size: 42px; }
.event-types { max-width: 1240px; margin: auto; padding: 12px 24px 20px; }
.card-grid { display: grid; gap: 14px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid article { min-height: 188px; padding: 17px 15px; border: 1px solid #4a4a4a; background: linear-gradient(180deg, #151515, #080808); }
.card-grid article b { color: var(--gold); font-size: 29px; }
.card-grid h3 { margin: 7px 0; text-transform: uppercase; font-size: 15px; }
.card-grid p { margin: 0; color: #d3d3d3; font-size: 12px; }

/* Contact */
.contact-layout { max-width: 1240px; width: 100%; margin: auto; padding: 18px 24px 22px; display: grid; grid-template-columns: minmax(0, 34fr) minmax(0, 66fr); gap: 18px; }
.contact-info, .form-panel { min-width: 0; max-width: 100%; padding: 20px; border: 1px solid #444; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 15px; }
.service-list article { padding: 8px 0; border-bottom: 1px dashed #4c3a19; }
.service-list b { display: block; color: var(--gold); text-transform: uppercase; font-size: 12px; }
.service-list span { color: #d1d1d1; font-size: 11px; }
.contact-info h2 { margin: 14px 0 6px; color: var(--gold); text-transform: uppercase; font-size: 15px; }
.contact-info p { margin: 6px 0; color: #ddd; }
.social-links-text { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.social-links-text a { padding: 6px 9px; border: 1px solid #555; font-size: 11px; }
form { display: grid; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: grid; gap: 4px; color: #eee; font-size: 12px; }
input, textarea { width: 100%; padding: 9px; color: #fff; background: #181818; border: 1px solid #555; }
textarea { min-height: 88px; resize: vertical; }
.consent { display: flex; gap: 8px; align-items: flex-start; color: #bbb; font-size: 11px; }
.consent input { width: 16px; margin-top: 2px; }
.captcha-box { width: 100%; min-width: 0; max-width: 100%; min-height: 55px; padding: 9px 12px; display: flex; gap: 10px; align-items: center; overflow: hidden; border: 1px solid #555; background: #151515; }
.cf-turnstile { width: 100%; min-width: 0; max-width: 100%; }
.form-panel form, .form-row, .form-panel label { min-width: 0; max-width: 100%; }
.contact-info a { overflow-wrap: anywhere; word-break: break-word; }
.captcha-box span { font-size: 22px; }
.captcha-box small { display: block; color: #999; font-size: 10px; }
.submit { width: 100%; border: 0; cursor: pointer; }

/* Pied de page */
.site-footer { min-height: 54px; flex: 0 0 auto; border-top: 1px solid #292929; background: #030303; }
.footer-inner { max-width: var(--max); min-height: 54px; margin: auto; padding: 10px 30px; display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; color: #aaa; font-size: 11px; }
.footer-inner nav { display: flex; gap: 22px; }
.footer-socials a { font-size: 14px; }
.legal-page { max-width: 1000px; min-height: calc(100vh - 130px); margin: auto; padding: 45px 5%; }
.legal-page h1 { font-size: 44px; text-transform: uppercase; }

/* Écrans de hauteur réduite, comme la capture fournie. */
@media (min-width: 1101px) and (max-height: 950px) {
  :root { --header-h: 68px; }
  .header-inner { grid-template-columns: 190px 1fr 100px; }
  .brand { width: 176px; height: 66px; grid-template-rows: 49px 12px; }
  .brand img { width: 158px; height: 49px; }
  .hero-home { height: 330px; }
  .hero-page { height: 248px; }
  .hero-copy { padding-top: 25px; padding-bottom: 25px; }
  .home-grid { min-height: 330px; }
  .content-panel { padding-top: 18px; padding-bottom: 16px; }
  .split-section { min-height: 390px; }
  .story, .quote-and-stats { padding-top: 18px; padding-bottom: 16px; }
  .podcast-feature { min-height: 268px; padding-top: 18px; padding-bottom: 18px; }
  .archive-section { min-height: 195px; padding-top: 12px; padding-bottom: 12px; }
  .contact-layout { padding-top: 13px; padding-bottom: 14px; }
}

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 190px 1fr auto; padding: 0 20px; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 11px; }
  .hero h1 { font-size: 48px; }
  .hero h2 { font-size: 26px; }
  .home-grid, .split-section { grid-template-columns: 1fr; }
  .content-panel, .story { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats-four { grid-template-columns: repeat(2, 1fr); }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 14px; }
  .site-header { height: auto; min-height: 78px; position: static; }
  .header-inner { min-height: 78px; height: auto; grid-template-columns: 1fr auto; padding: 0 16px; }
  .brand { width: 165px; height: 72px; grid-template-rows: 54px 12px; justify-items: start; }
  .brand img { width: 155px; height: 54px; }
  .brand span { font-size: 8px; }
  .nav-toggle { display: block; }
  .main-nav { display: none; grid-column: 1 / -1; height: auto; flex-direction: column; gap: 0; padding: 0 0 14px; }
  .main-nav.open { display: flex; }
  .main-nav a { height: auto; padding: 11px 0; }
  .main-nav a::after { bottom: 4px; }
  .socials { display: none; }
  .hero,
  .hero-home,
  .hero-page,
  .hero-about,
  .hero-podcast,
  .hero-events,
  .hero-contact { height: auto; grid-template-columns: 1fr; }
  .hero-photo { min-height: 285px; order: 1; }
  .hero-copy { order: 2; padding: 32px 6%; }
  .hero h1 { font-size: 42px; }
  .hero h2 { font-size: 23px; }
  .hero-lead { font-size: 15px; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .content-panel, .story, .quote-and-stats { padding: 28px 6%; }
  .stats-three, .stats-four { grid-template-columns: 1fr 1fr; }
  .mix-card { grid-template-columns: 105px 1fr; gap: 14px; }
  .mix-card img { width: 105px; height: 105px; }
  .mix-meta h3 { font-size: 19px; }
  dl > div { grid-template-columns: 70px 1fr; font-size: 12px; }
  .podcast-feature { grid-template-columns: 1fr; padding: 28px 6%; }
  .podcast-feature > img { width: 100%; height: auto; }
  .podcast-facts { grid-template-columns: 1fr; }
  .archive-section { padding: 28px 6%; }
  .future-row { grid-template-columns: 38px 1fr; }
  .future-row > span:last-child { grid-column: 2; }
  .events-callouts { grid-template-columns: 1fr; padding: 22px 6%; }
  .notice-card { grid-template-columns: 48px 1fr; padding: 18px; }
  .event-types { padding: 20px 6% 35px; }
  .card-grid.four { grid-template-columns: 1fr; }
  .contact-layout { width: 100%; max-width: 100%; padding: 22px 12px 35px; overflow: hidden; }
  .contact-info, .form-panel { width: 100%; max-width: 100%; padding: 14px; }
  .service-list, .form-row { grid-template-columns: minmax(0, 1fr); }
  input, textarea, .captcha-box, .cf-turnstile { width: 100%; max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner nav { justify-content: center; flex-wrap: wrap; }
}

/* Ajustements finaux après contrôle aux dimensions de la capture (1680 × 929). */
@media (min-width: 1101px) and (max-height: 950px) {
  .page-about .hero-page { height: 272px; }
  .page-about .hero-about .hero-photo img { object-position: center 20%; }
  .page-contact .hero-page { height: 232px; }
  .page-contact .contact-layout { padding-top: 10px; padding-bottom: 10px; }
  .page-contact textarea { min-height: 76px; }
}

@media (max-width: 360px) {
  .contact-layout { padding-left: 6px; padding-right: 6px; }
  .contact-info, .form-panel { padding-left: 8px; padding-right: 8px; }
}

/* Pages juridiques */
.legal-page {
  max-width: 1000px;
  min-height: calc(100vh - 130px);
  margin: auto;
  padding: 48px 5% 64px;
}
.legal-header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.legal-header h1 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
}
.legal-header > p:last-child { margin: 0; color: var(--muted); }
.legal-content { display: grid; gap: 18px; }
.legal-content section {
  padding: 22px 24px;
  border: 1px solid #343434;
  background: linear-gradient(180deg, #101010, #080808);
}
.legal-content h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 20px;
  text-transform: uppercase;
}
.legal-content p { margin: 0 0 12px; color: #d7d7d7; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { margin: 0 0 12px; padding-left: 22px; color: #d7d7d7; }
.legal-content li { margin: 5px 0; }
.legal-content a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.legal-content address { margin: 0 0 12px; color: #d7d7d7; font-style: normal; }

@media (max-width: 760px) {
  .legal-page { padding: 32px 12px 48px; overflow-wrap: anywhere; }
  .legal-content { gap: 12px; }
  .legal-content section { padding: 18px 14px; }
  .legal-content h2 { font-size: 17px; }
}

.consent a,
.form-privacy-note a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.form-privacy-note { margin: 0; color: #9e9e9e; font-size: 10px; line-height: 1.45; }
