/* ===== Ipsum Média, site vitrine ===== */

:root {
  --orange: #EA5B1C;
  --orange-dark: #C24B16;
  --orange-light: #FDECE3;
  --pink: #E7436E;
  --grad: linear-gradient(135deg, #EE802F 0%, #E7436E 100%);
  --ink: #201A17;
  --ink-soft: #5A5049;
  --cream: #FFF9F5;
  --white: #FFFFFF;
  --border: #EEE1D8;
  --radius: 14px;
  --max-w: 1120px;
  --shadow: 0 8px 24px rgba(32, 26, 23, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo-text {
  font-family: 'Bitter', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

section { padding: 88px 0; }
@media (max-width: 640px) { section { padding: 56px 0; } }

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: var(--white); box-shadow: 0 6px 16px rgba(231, 67, 110, 0.3); }
.btn-primary:hover { filter: brightness(1.06); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-light { background: var(--white); color: var(--orange); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 56px; width: auto; }
.main-nav { flex-shrink: 1; min-width: 0; }
.main-nav ul { display: flex; gap: 22px; align-items: center; flex-wrap: nowrap; }
.main-nav li { flex-shrink: 0; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a.active { color: var(--orange); font-weight: 700; }
.header-cta { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.2s;
}

@media (max-width: 1040px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav ul { flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 18px; flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .header-cta .btn-primary { padding: 10px 16px; font-size: 0.82rem; }
}

/* ---- Hero ---- */
.hero {
  padding: 100px 0 90px;
  background: linear-gradient(90deg, rgba(20,10,5,0.6) 0%, rgba(20,10,5,0.3) 55%, rgba(20,10,5,0.15) 100%), url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
.hero .wrap { max-width: 720px; margin: 0; text-align: left; }
.hero .eyebrow { color: var(--white); }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 20px; color: var(--white); }
.hero h1 em { color: var(--white); font-style: normal; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.5); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,0.92); max-width: 52ch; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
.hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.55); }
.hero .btn-outline:hover { border-color: var(--white); color: var(--white); }

/* ---- Bandeau newsletter compact (remplace le héros sur l'accueil) ---- */
.newsletter-bar { background: var(--orange-light); padding: 28px 0; }
.newsletter-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}
.newsletter-bar-inner p { font-size: 0.92rem; font-weight: 500; color: var(--ink); margin: 0; max-width: 320px; text-align: left; }
.newsletter-bar .btn-primary { padding: 9px 20px; font-size: 0.85rem; }
@media (max-width: 560px) { .newsletter-bar-inner p { text-align: center; } }

/* ---- Modale newsletter (choix de la rédaction) ---- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(32, 26, 23, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}
.modal-backdrop[hidden] { display: none; }
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  max-width: 380px;
  width: 100%;
  text-align: left;
}
.modal-box h3 { margin: 12px 0 8px; font-size: 1.3rem; }
.modal-text { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 18px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px;
}
.modal-close:hover { color: var(--ink); }
.modal-redaction-list { display: flex; flex-direction: column; gap: 10px; }
.modal-redaction-btn { width: 100%; text-align: center; }

/* ---- Hero avec vidéo en fond (bandeau, titre aligné à gauche) ---- */
.hero-video {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 0;
  background: var(--ink);
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,11,9,0.92) 0%, rgba(15,11,9,0.72) 45%, rgba(15,11,9,0.35) 100%);
}
.hero-video .hero-video-content {
  position: relative;
  z-index: 2;
  text-align: left;
}
.hero-video .eyebrow { color: var(--orange); }
.hero-video h1 { color: var(--white); max-width: 16ch; }
.hero-video p.lead { color: #E8E1DC; margin: 0 0 32px; max-width: 44ch; }
.hero-video .hero-actions { justify-content: flex-start; }
.hero-video .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.55); }
.hero-video .btn-outline:hover { border-color: var(--white); color: var(--white); }
@media (max-width: 640px) { .hero-video { min-height: 460px; } .hero-video-content { padding-left: 4px; } }

/* ---- Pourquoi nous rejoindre (liste numérotée, page Nous rejoindre) ---- */
.why-join { padding: 88px 0; }
.why-join .eyebrow { display: block; margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; }
.why-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.why-item:last-child { border-bottom: 1px solid var(--border); }
.why-num {
  font-family: 'Bitter', serif;
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.why-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why-item p { color: var(--ink-soft); max-width: 60ch; }
@media (max-width: 640px) { .why-item { grid-template-columns: 1fr; gap: 8px; } .why-num { font-size: 1.8rem; } }

/* ---- Rôles (page Nous rejoindre) ---- */
.roles-section { background: var(--ink); color: var(--white); padding: 88px 0; }
.roles-section .eyebrow { display: block; text-align: center; }
.roles-section h2 { color: var(--white); text-align: center; margin-bottom: 40px; font-size: clamp(1.8rem, 3vw, 2.2rem); }
.roles-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; }
.role-item { background: var(--ink); padding: 28px; border-left: 3px solid var(--orange); }
.role-item h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.role-item p { color: #B8AFA9; font-size: 0.9rem; }
@media (max-width: 640px) { .roles-list { grid-template-columns: 1fr; } }

/* ---- CTA final plein dégradé (page Nous rejoindre) ---- */
.join-cta { background: var(--grad); padding: 80px 0; text-align: center; }
.join-cta h2 { color: var(--white); font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.join-cta p { color: rgba(255,255,255,0.9); max-width: 50ch; margin: 0 auto 28px; }

/* ---- À la une (dernier article, style page de journal) ---- */
.headline-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.headline-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
  transition: opacity 0.3s ease;
}
.headline-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,11,9,0.95) 0%, rgba(15,11,9,0.55) 55%, rgba(15,11,9,0.15) 100%);
}
.headline-content {
  position: relative;
  z-index: 2;
  padding: 56px 24px 48px;
  max-width: 820px;
}
.headline-content .eyebrow {
  color: var(--white);
  background: var(--grad);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
}
.headline-content h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  color: var(--white);
  margin: 16px 0 14px;
  line-height: 1.12;
  text-wrap: balance;
}
.headline-content .headline-excerpt {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 62ch;
  margin-bottom: 18px;
}
.headline-content .headline-meta {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 640px) { .headline-banner { min-height: 400px; } }

/* ---- Autres articles (sous le bandeau à la une) : tuiles collées, image plein cadre ---- */
.actus-secondary { padding: 0; }
.feed-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--white);
}
.feed-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid var(--white);
}
.feed-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
  transition: transform 0.3s ease;
}
.feed-tile:hover .feed-tile-bg { transform: scale(1.05); }
.feed-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,11,9,0.92) 0%, rgba(15,11,9,0.35) 60%, rgba(15,11,9,0) 100%);
}
.feed-tile-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 16px;
}
.feed-tile-date {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.feed-tile-content h3 {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 760px) {
  .feed-tile-grid { grid-template-columns: 1fr; }
  .feed-tile { aspect-ratio: 16 / 9; }
}

/* ---- Formats (reportages / newsletter / articles) ---- */
.formats { padding: 24px 0 64px; }
.formats .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.format-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.format-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.format-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.format-icon svg { width: 24px; height: 24px; }
.format-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.format-card p { color: var(--ink-soft); font-size: 0.9rem; }
@media (max-width: 760px) { .formats .wrap { grid-template-columns: 1fr; } }

/* ---- Emplacement pub ---- */
.ad-slot { padding: 24px 0; text-align: center; }
.ad-slot-inline {
  margin: 1.6em 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ad-slot-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

/* ---- Stats ---- */
.stats { background: var(--ink); color: var(--white); padding: 56px 0; }
.stats .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-num {
  font-family: 'Bitter', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 0.85rem; color: #C9C0BA; margin-top: 6px; }
@media (max-width: 640px) { .stats .wrap { grid-template-columns: 1fr; gap: 32px; } }

/* ---- About ---- */
.about .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.about h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
@media (max-width: 860px) { .about .wrap { grid-template-columns: 1fr; gap: 24px; } }

/* ---- Équipe ---- */
.team .wrap { text-align: center; }
.team h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 36px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.avatar,
.avatar-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.avatar {
  background: var(--grad);
  color: var(--white);
  font-family: 'Bitter', serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-photo { object-fit: cover; border: 2px solid var(--orange-light); }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { color: var(--orange); font-size: 0.82rem; font-weight: 600; margin-bottom: 12px; }
.team-card p:not(.role) { color: var(--ink-soft); font-size: 0.9rem; }
.team-note { color: var(--ink-soft); max-width: 70ch; margin: 32px auto 0; font-size: 0.92rem; text-align: center; }
.team-faces { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.team-faces img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange-light);
}
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr; } }

/* ---- Diversité équipe ---- */
.diversity { max-width: var(--max-w); margin: 56px auto 0; padding: 0 24px; }
.diversity-photos { display: flex; justify-content: center; gap: 20px; margin-bottom: 28px; }
.diversity-photos img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
  transition: transform 0.2s ease;
}
.diversity-photos img:nth-child(1) { transform: rotate(-3deg); }
.diversity-photos img:nth-child(2) { transform: rotate(2deg); }
.diversity-photos img:nth-child(3) { transform: rotate(-2deg); }
.diversity-photos img:hover { transform: rotate(0) scale(1.04); }
.diversity-text {
  text-align: center;
  font-family: 'Bitter', serif;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--ink);
}
.cycle-word {
  position: relative;
  display: inline-block;
  height: 1.3em;
  vertical-align: bottom;
  min-width: 15ch;
  text-align: left;
}
.cycle-word span {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  color: var(--orange);
  font-weight: 700;
  opacity: 0;
  animation: cycleWord 8s infinite;
}
.cycle-word span:nth-child(1) { animation-delay: 0s; }
.cycle-word span:nth-child(2) { animation-delay: 2s; }
.cycle-word span:nth-child(3) { animation-delay: 4s; }
.cycle-word span:nth-child(4) { animation-delay: 6s; }
@keyframes cycleWord {
  0% { opacity: 0; }
  3% { opacity: 1; }
  22% { opacity: 1; }
  25% { opacity: 0; }
  100% { opacity: 0; }
}
@media (max-width: 640px) {
  .diversity-photos { flex-wrap: wrap; }
  .diversity-photos img { width: 42%; height: 180px; }
}

/* ---- Présence régionale ---- */
.presence .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.presence h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); margin-bottom: 14px; }
.presence-text p { color: var(--ink-soft); margin-bottom: 24px; }
.presence-legend { display: flex; flex-direction: column; gap: 12px; }
.legend-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ink); }
.legend-swatch { width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0; }
.legend-swatch-tarn { background: var(--grad); }
.legend-swatch-hg { background: var(--white); border: 2px dashed var(--pink); }
.coverage-box {
  background: var(--orange-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.coverage-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 6px;
}
.coverage-cities { font-size: 0.92rem; color: var(--ink); line-height: 1.6; }
.presence-map { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.presence-map img { width: 100%; height: auto; }
@media (max-width: 860px) { .presence .wrap { grid-template-columns: 1fr; } .presence-map { order: -1; } }

/* ---- Partenaires ---- */
.partners { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.partner-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.partner-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.partner-card p { color: var(--ink-soft); font-size: 0.88rem; }
.partner-logo { display: block; max-height: 92px; width: auto; max-width: 100%; margin: 0 auto 18px; object-fit: contain; }
.partner-logo-rect { border-radius: 6px; }
@media (max-width: 860px) { .partners-grid { grid-template-columns: 1fr; } }

/* ---- Reportage vedette ---- */
.reportage { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reportage h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 32px; }
.reportage-video {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}
.reportage-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---- Actus / Substack ---- */
.actus { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.actus .wrap { text-align: center; }
.actus h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.actus p.lead { color: var(--ink-soft); max-width: 56ch; margin: 0 auto 32px; }
.actus-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.actus-feed { margin-top: 48px; text-align: left; }
.feed-loading { text-align: center; color: var(--ink-soft); }
.feed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feed-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feed-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feed-card-img { width: 100%; height: 160px; object-fit: cover; }
.feed-card-body { padding: 20px; }
.feed-card-date { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--orange); }
.feed-card-body h3 { font-size: 1.05rem; margin: 8px 0; line-height: 1.3; }
.feed-card-body p { color: var(--ink-soft); font-size: 0.88rem; }

/* ---- Soutenir ---- */
.support .wrap h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; text-align: center; }
.support .wrap > p.lead { color: var(--ink-soft); max-width: 56ch; margin: 0 auto 40px; text-align: center; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.support-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.support-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.support-card p { color: var(--ink-soft); margin-bottom: 22px; }
@media (max-width: 860px) { .support-grid { grid-template-columns: 1fr; } }

/* ---- Collectivités / établissements ---- */
.institutions { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.institutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.institution-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.institution-card h3 { font-size: 1.05rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.soon-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange-dark);
  background: var(--orange-light);
  padding: 3px 8px;
  border-radius: 100px;
}
.institution-card p { color: var(--ink-soft); font-size: 0.9rem; }

/* ---- Contact ---- */
.contact { background: var(--ink); color: var(--white); }
.contact .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.2rem); margin-bottom: 16px; }
.contact p { color: #C9C0BA; margin-bottom: 10px; }
.contact a.mail { color: var(--orange); font-weight: 600; }
.legal-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  font-size: 0.85rem;
  color: #B8AFA9;
}
.legal-box p { color: #B8AFA9; margin-bottom: 8px; font-size: 0.85rem; }

.contact-form { margin-top: 24px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #C9C0BA;
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-row textarea { resize: vertical; }
.form-row select option { background: var(--ink); color: var(--white); }
.form-status { margin-top: 12px; font-size: 0.85rem; min-height: 1.2em; }
.form-status-ok { color: #7CD992; }
.form-status-error { color: #FF9B8A; }
@media (max-width: 860px) { .contact .wrap { grid-template-columns: 1fr; } }

/* ---- Footer ---- */
footer.site-footer {
  background: #17120F;
  color: #8A7F78;
  padding: 28px 0;
  font-size: 0.82rem;
}
footer.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
footer.site-footer a:hover { color: var(--orange); }

.footer-top {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; }
.footer-brand img { height: 64px; width: auto; }
.footer-social-group { display: flex; align-items: center; gap: 14px; }
.footer-social-label { font-size: 0.78rem; color: #8A7F78; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #C9C0BA;
  transition: background 0.15s ease, color 0.15s ease;
}
.social-links a:hover,
.social-links a:hover svg,
.social-links a:hover svg * { background: transparent; color: #FFFFFF; }
.social-links a:hover { background: var(--grad); }
.social-links svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-links svg * { transition: color 0.15s ease; }
@media (max-width: 640px) { .footer-top { flex-direction: column; gap: 14px; text-align: center; } }
