@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── VARIABLES ─── */
:root {
  --navy:       #0A1B3D;
  --navy-light: #132550;
  --red:        #C8102E;
  --red-dark:   #9E0C23;
  --white:      #FFFFFF;
  --off-white:  #F2F4F8;
  --gray:       #8A94A6;
  --gray-light: #E8ECF2;
  --text:       #1A2340;
  --ease:       0.25s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── TICKER ─── */
.ticker {
  background: var(--red); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  overflow: hidden; white-space: nowrap;
  display: flex; align-items: center; height: 34px;
}
.ticker__label {
  background: var(--navy); padding: 0 18px; height: 100%;
  display: flex; align-items: center; flex-shrink: 0;
  letter-spacing: 0.15em; gap: 8px;
}
.ticker__label::after {
  content: ''; display: inline-block; width: 7px; height: 7px;
  background: var(--red); border-radius: 50%; animation: blink 1.2s infinite;
}
.ticker__track {
  display: inline-flex; animation: ticker-scroll 30s linear infinite;
  gap: 60px; padding-left: 40px;
}
.ticker__track span::before { content: '•'; margin-right: 20px; opacity: 0.5; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy); border-bottom: 3px solid var(--red);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 66px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  height: 46px;
}
.nav-logo__icon {
  width: 44px; height: 44px; background: var(--red); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo__icon svg { width: 26px; height: 26px; fill: white; }
/* Logo image uploadé — recadrage automatique */
.nav-logo__img {
  height: 46px; width: auto; max-width: 200px;
  object-fit: contain; object-position: left center; display: block;
}
.nav-logo__text {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 22px; color: var(--white); letter-spacing: 0.04em;
  text-transform: uppercase; line-height: 1.1;
}
.nav-logo__text span { color: var(--red); }
.nav-logo__sub {
  font-size: 9px; font-weight: 400; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.12em; display: block; margin-top: 1px;
}
.nav-links { display: flex; align-items: center; list-style: none; gap: 2px; }
.nav-links a {
  display: block; padding: 6px 13px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 15px;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none; border-radius: 4px;
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links .live-btn a {
  background: var(--red); color: var(--white);
  display: flex; align-items: center; gap: 7px;
}
.nav-links .live-btn a:hover { background: var(--red-dark); }
.live-dot {
  width: 7px; height: 7px; background: white; border-radius: 50%;
  display: inline-block; animation: blink 1.2s infinite; flex-shrink: 0;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; }
.mobile-menu {
  display: none; background: var(--navy-light);
  padding: 16px 24px 24px; border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0;
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ─── BOUTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 4px; transition: all var(--ease);
  cursor: pointer; border: none; text-decoration: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--gray-light); }
.btn-outline-dark:hover { border-color: var(--red); color: var(--red); }

/* ─── SECTIONS ─── */
.section { padding: 80px 24px; }
.section--dark { background: var(--navy); color: var(--white); }
.section--gray { background: var(--off-white); }
.container { max-width: 1280px; margin: 0 auto; }
.divider { height: 1px; background: var(--gray-light); }
.section--dark .divider { background: rgba(255,255,255,0.08); }

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: 52px; }
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 28px; height: 3px;
  background: var(--red); border-radius: 2px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 52px); font-weight: 800;
  text-transform: uppercase; line-height: 1; letter-spacing: 0.02em;
}
.section-subtitle {
  margin-top: 14px; font-size: 16px; line-height: 1.7;
  color: var(--gray); max-width: 560px;
}
.section--dark .section-subtitle { color: rgba(255,255,255,0.55); }
.section--dark .section-title { color: var(--white); }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy); padding: 56px 24px 48px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(200,16,46,0.08) 100%);
  pointer-events: none;
}
.page-hero__inner { max-width: 1280px; margin: 0 auto; position: relative; }
.page-hero__breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: var(--red); }
.page-hero__breadcrumb a:hover { text-decoration: underline; }
.page-hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 7vw, 80px); font-weight: 800;
  text-transform: uppercase; color: white; line-height: 0.95;
  letter-spacing: 0.02em; margin-bottom: 14px;
}
.page-hero__title em { color: var(--red); font-style: normal; }
.page-hero__sub { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.7; }
.page-hero__accent {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif; font-size: 160px;
  font-weight: 800; color: rgba(255,255,255,0.03);
  text-transform: uppercase; line-height: 1;
  pointer-events: none; user-select: none;
}

/* ─── CARDS ─── */
.news-cat {
  display: inline-block; background: var(--red); color: white;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px; margin-bottom: 10px;
}
.emission-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 20px rgba(10,27,61,0.08);
  transition: transform var(--ease), box-shadow var(--ease); cursor: pointer;
}
.emission-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,27,61,0.14); }
.emission-thumb { aspect-ratio: 16/9; background: var(--navy); position: relative; overflow: hidden; }
.emission-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: opacity 0.3s, transform 0.4s; }
.emission-card:hover .emission-thumb img { opacity: 0.9; transform: scale(1.04); }
.emission-overlay {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; opacity: 0; transition: opacity 0.3s;
  background: rgba(10,27,61,0.4);
}
.emission-card:hover .emission-overlay { opacity: 1; }
.emission-play {
  width: 52px; height: 52px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.emission-play svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
.emission-body { padding: 20px; }
.emission-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.emission-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.03em; margin: 6px 0 8px; line-height: 1.1; }
.emission-title a { color: inherit; }
.emission-title a:hover { color: var(--red); }
.emission-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ─── PRESTATIONS ─── */
.prestations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.prestation-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--red); border-radius: 8px; padding: 28px 24px;
  transition: background var(--ease);
}
.prestation-card:hover { background: rgba(255,255,255,0.08); }
.prestation-icon {
  width: 48px; height: 48px; background: rgba(200,16,46,0.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.prestation-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.prestation-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: white; margin-bottom: 10px; }
.prestation-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.prestation-list { margin-top: 14px; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.prestation-list li { font-size: 13px; color: rgba(255,255,255,0.45); padding-left: 14px; position: relative; }
.prestation-list li::before { content: '—'; position: absolute; left: 0; color: var(--red); }

/* ─── PARTENAIRES ─── */
.partenaires-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--gray-light);
  border: 1px solid var(--gray-light); border-radius: 8px; overflow: hidden;
}
.partenaire-item {
  background: white; padding: 32px 24px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; text-align: center;
  transition: background var(--ease); cursor: pointer; min-height: 120px;
  text-decoration: none; color: inherit;
}
.partenaire-item:hover { background: var(--off-white); }
.partenaire-logo {
  width: 100%; max-width: 110px; height: 40px; background: var(--navy);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; color: white; letter-spacing: 0.05em;
}
.partenaire-name { font-size: 12px; color: var(--gray); font-weight: 500; }

/* ─── TIMELINE ─── */
.timeline { margin-top: 32px; display: flex; flex-direction: column; }
.timeline-item { display: flex; gap: 20px; padding-bottom: 24px; position: relative; }
.timeline-item:not(:last-child)::after {
  content: ''; position: absolute; left: 19px; top: 32px; bottom: 0;
  width: 2px; background: var(--gray-light);
}
.timeline-dot {
  width: 40px; height: 40px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
  color: white; flex-shrink: 0; z-index: 1;
}
.timeline-body strong { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; text-transform: uppercase; }
.timeline-body p { font-size: 13px; color: var(--gray); margin-top: 3px; line-height: 1.6; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-item__icon {
  width: 44px; height: 44px; background: rgba(200,16,46,0.12);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item__icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item__label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 3px; }
.contact-item__val { font-size: 15px; color: var(--text); line-height: 1.5; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, textarea, select {
  width: 100%; padding: 12px 16px; font-size: 14px;
  font-family: 'Inter', sans-serif; color: var(--text);
  background: var(--off-white); border: 1.5px solid var(--gray-light);
  border-radius: 6px; outline: none;
  transition: border-color var(--ease), background var(--ease);
}
input:focus, textarea:focus, select:focus { border-color: var(--red); background: white; }
textarea { resize: vertical; min-height: 120px; }

/* ─── FOOTER ─── */
footer { background: #060F20; color: rgba(255,255,255,0.55); padding: 60px 24px 28px; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px;
}
.footer-about p { font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: white;
  margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--red); display: inline-block;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--ease); }
.footer-links a:hover { color: var(--red); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.social-btn {
  padding: 0 14px; height: 36px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; display: flex; align-items: center;
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--red); }

/* ─── LIVE / DIRECT ─── */
.live-badge {
  display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: white;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; padding: 4px 12px; border-radius: 3px; margin-bottom: 14px;
}
.schedule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.schedule-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start;
}
.schedule-time { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--red); line-height: 1; flex-shrink: 0; }
.schedule-time span { display: block; font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.4); margin-top: 2px; }
.schedule-name { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.04em; }
.schedule-meta { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 3px; }

/* ─── HISTOIRE ─── */
.histoire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.histoire-img { width: 100%; aspect-ratio: 4/3; background: var(--navy); border-radius: 8px; overflow: hidden; position: relative; }
.histoire-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.histoire-visual { position: relative; }
.histoire-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 100px; height: 100px; background: var(--red); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white; font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  box-shadow: 0 8px 32px rgba(200,16,46,0.4);
}
.histoire-badge__year { font-size: 30px; line-height: 1; }
.histoire-badge__label { font-size: 11px; letter-spacing: 0.1em; opacity: 0.85; }
.histoire-text p { font-size: 15px; line-height: 1.8; color: var(--gray); margin-bottom: 16px; }

/* ─── NEWS ─── */
.news-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.news-featured { background: var(--navy); border-radius: 8px; overflow: hidden; position: relative; aspect-ratio: 16/10; }
.news-featured__img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.6; transition: opacity 0.4s; }
.news-featured:hover .news-featured__img { opacity: 0.45; }
.news-featured__content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
  background: linear-gradient(to top, rgba(10,27,61,0.98) 0%, transparent 100%);
}
.news-featured__title { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: white; line-height: 1.15; letter-spacing: 0.02em; text-transform: uppercase; }
.news-featured__title a { color: inherit; }
.news-date { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 8px; }
.news-sidebar { display: flex; flex-direction: column; gap: 14px; }
.news-small {
  display: flex; gap: 14px; align-items: flex-start; padding: 16px;
  background: var(--off-white); border-radius: 6px;
  border-left: 3px solid transparent; transition: border-color var(--ease), background var(--ease);
  text-decoration: none; color: inherit;
}
.news-small:hover { border-left-color: var(--red); background: white; }
.news-small__thumb { width: 72px; height: 54px; background: var(--navy); border-radius: 4px; flex-shrink: 0; overflow: hidden; }
.news-small__thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.news-small__title { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.2; }
.news-small__date { font-size: 11px; color: var(--gray); margin-top: 5px; }

/* ─── REPORTAGES ─── */
.reportages-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reportage-item { position: relative; border-radius: 8px; overflow: hidden; background: var(--navy); cursor: pointer; }
.reportage-item:nth-child(1) { grid-row: span 2; }
.reportage-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; transition: opacity 0.3s, transform 0.4s; display: block; min-height: 180px; }
.reportage-item:nth-child(1) img { min-height: 400px; }
.reportage-item:hover img { opacity: 0.45; transform: scale(1.04); }
.reportage-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px;
  background: linear-gradient(to top, rgba(10,27,61,0.95) 0%, transparent 100%); color: white;
}
.reportage-caption__title { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.2; }
.reportage-item:nth-child(1) .reportage-caption__title { font-size: 22px; }
.reportage-caption__meta { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ─── HOME NAV CARDS ─── */
.home-nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.home-nav-card {
  display: flex; flex-direction: column; gap: 10px; padding: 28px 24px;
  background: white; border: 1.5px solid var(--gray-light);
  border-top: 3px solid transparent; border-radius: 8px;
  text-decoration: none; color: inherit;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.home-nav-card:hover { border-top-color: var(--red); box-shadow: 0 8px 32px rgba(10,27,61,0.10); transform: translateY(-3px); }
.home-nav-card--live { border-top-color: var(--red); }
.home-nav-card__icon {
  width: 44px; height: 44px; background: rgba(200,16,46,0.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; position: relative;
}
.home-nav-card__icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.home-nav-card__titre { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); }
.home-nav-card__desc { font-size: 13px; color: var(--gray); line-height: 1.6; flex: 1; }
.home-nav-card__arrow { font-size: 18px; color: var(--red); font-weight: 700; transition: transform var(--ease); }
.home-nav-card:hover .home-nav-card__arrow { transform: translateX(4px); }

/* ─── NEWS ARCHIVE ─── */
.news-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-archive-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 16px rgba(10,27,61,0.07); }
.news-archive-card__thumb { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--navy); position: relative; }
.news-archive-card__thumb img { width:100%;height:100%;object-fit:cover;transition:transform 0.4s; }
.news-archive-card:hover .news-archive-card__thumb img { transform: scale(1.04); }
.news-archive-card__thumb .news-cat { position:absolute;top:12px;left:12px; }
.news-archive-card__body { padding: 20px; }
.news-archive-card__title { font-family:'Barlow Condensed',sans-serif;font-size:20px;font-weight:700;text-transform:uppercase;letter-spacing:0.03em;line-height:1.15;margin-bottom:8px; }
.news-archive-card__title a { color: var(--navy); text-decoration: none; }
.news-archive-card__title a:hover { color: var(--red); }
.news-archive-card__excerpt { font-size:13px;color:var(--gray);line-height:1.6;margin:8px 0 14px; }
.news-archive-card__link { font-family:'Barlow Condensed',sans-serif;font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:0.06em;color:var(--red); }

/* ─── DIRECT PLAYER ─── */
.direct-hero {
  background: var(--navy); border-radius: 10px; overflow: hidden;
  aspect-ratio: 16/9; position: relative;
  max-width: 100%; margin: 0 auto 40px;
  display: flex; align-items: center; justify-content: center;
}
.direct-hero__bg { position:absolute;inset:0;background-image:url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=1200&q=80');background-size:cover;background-position:center;opacity:0.25; }
.direct-hero__overlay { position:relative;text-align:center;color:white; }
.play-btn {
  width:80px;height:80px;background:var(--red);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;cursor:pointer;
  transition:transform var(--ease);
  animation:pulse-ring 2s infinite;
  border: none;
}
.play-btn:hover { transform:scale(1.08); }
.play-btn svg { width:32px;height:32px;fill:white;margin-left:4px; }
.direct-info { font-family:'Barlow Condensed',sans-serif;font-size:22px;font-weight:700;text-transform:uppercase;letter-spacing:0.04em; }
.direct-subtitle { font-size:14px;opacity:0.6;margin-top:6px; }
@keyframes pulse-ring { 0%{box-shadow:0 0 0 0 rgba(200,16,46,0.5);}70%{box-shadow:0 0 0 24px rgba(200,16,46,0);}100%{box-shadow:0 0 0 0 rgba(200,16,46,0);} }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .histoire-grid { grid-template-columns: 1fr; gap: 40px; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reportages-masonry { grid-template-columns: 1fr 1fr; }
  .reportage-item:nth-child(1) { grid-column: span 2; }
  .home-nav-grid { grid-template-columns: 1fr 1fr; }
  .news-archive-grid { grid-template-columns: 1fr 1fr; }
  .histoire-badge { bottom: -12px; right: -12px; width: 80px; height: 80px; }
  .histoire-badge__year { font-size: 24px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .reportages-masonry { grid-template-columns: 1fr; }
  .reportage-item:nth-child(1) { grid-column: span 1; }
  .home-nav-grid { grid-template-columns: 1fr; }
  .news-archive-grid { grid-template-columns: 1fr; }
  .page-hero__accent { display: none; }
}
@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
  .histoire-grid { grid-template-columns: 1fr; }
}

/* ─── FOCUS / A11Y ─── */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* ─── LOGO IMAGE ─── */
.nav-logo--custom {
  display: flex;
  align-items: center;
  height: 52px;
  padding: 4px 0;
}
.nav-logo__img {
  height: 100%;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
@media (max-width: 768px) {
  .nav-logo--custom { height: 44px; }
  .nav-logo__img { max-width: 170px; }
}

/* ─── PARTENAIRES PAR GROUPE ─── */
.partenaires-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.partenaires-row .partenaire-item {
  flex: 0 0 auto;
}

/* ─── CONTENU ÉDITEUR QUILL (pages publiques) ─── */
.quill-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 28px 0 12px;
  line-height: 1.15;
}
.quill-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 24px 0 10px;
  line-height: 1.2;
  border-left: 4px solid var(--red);
  padding-left: 14px;
}
.quill-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin: 20px 0 8px;
}
.quill-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #3A4A6B;
  margin-bottom: 14px;
}
.quill-content strong { font-weight: 700; color: var(--navy); }
.quill-content em { font-style: italic; }
.quill-content u { text-decoration: underline; text-underline-offset: 3px; }
.quill-content s { text-decoration: line-through; opacity: 0.6; }
.quill-content a { color: var(--red); text-decoration: underline; }
.quill-content a:hover { opacity: 0.8; }
.quill-content ul, .quill-content ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.quill-content ul { list-style: none; }
.quill-content ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 15px;
  color: #3A4A6B;
  line-height: 1.6;
}
.quill-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
}
.quill-content ol li {
  margin-bottom: 6px;
  font-size: 15px;
  color: #3A4A6B;
  line-height: 1.6;
}
.quill-content ol li::marker { color: var(--red); font-weight: 700; }
.quill-content blockquote {
  border-left: 4px solid var(--red);
  background: rgba(200,16,46,0.04);
  margin: 20px 0;
  padding: 14px 20px;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
}
.quill-content pre {
  background: var(--navy);
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 13px;
  overflow-x: auto;
  margin-bottom: 14px;
}
.quill-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 12px 0;
  display: block;
}
.quill-content .ql-indent-1 { padding-left: 2em; }
.quill-content .ql-indent-2 { padding-left: 4em; }
.quill-content .ql-align-center { text-align: center; }
.quill-content .ql-align-right  { text-align: right; }
.quill-content .ql-align-justify { text-align: justify; }
/* Tailles Quill */
.quill-content .ql-size-small  { font-size: 12px; }
.quill-content .ql-size-large  { font-size: 18px; }
.quill-content .ql-size-huge   { font-size: 24px; }
