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

:root {
  --navy: #2B3A67;
  --navy-deep: #1C2847;
  --navy-light: #3D4F7C;
  --orange: #E07B2E;
  --orange-warm: #F29544;
  --orange-light: #FDEBD2;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --text: #2B3A67;
  --text-light: #6B7A9E;
  --text-muted: #9AA3B8;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}
nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(43,58,103,0.08);
  padding: 0.8rem 3rem;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
nav.scrolled .nav-logo { color: var(--navy); }
.nav-logo .logo-o {
  color: var(--orange);
  font-weight: inherit;
}
.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
}
nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links .cta-nav {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-links .cta-nav::after { display: none; }
.nav-links .cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,123,46,0.4);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(224,123,46,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(61,79,124,0.3) 0%, transparent 50%);
}
.echo-rings {
  position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px;
}
.echo-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(224,123,46,0.15);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: pulse-ring 6s ease-in-out infinite;
}
.echo-ring:nth-child(1) { width: 150px; height: 150px; border-color: rgba(224,123,46,0.4); animation-delay: 0s; }
.echo-ring:nth-child(2) { width: 280px; height: 280px; border-color: rgba(224,123,46,0.3); animation-delay: 0.5s; }
.echo-ring:nth-child(3) { width: 410px; height: 410px; border-color: rgba(224,123,46,0.2); animation-delay: 1s; }
.echo-ring:nth-child(4) { width: 540px; height: 540px; border-color: rgba(61,79,124,0.25); animation-delay: 1.5s; }
.echo-ring:nth-child(5) { width: 670px; height: 670px; border-color: rgba(61,79,124,0.15); animation-delay: 2s; }
.echo-ring-center {
  position: absolute; width: 50px; height: 50px;
  background: var(--orange); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  box-shadow: 0 0 40px rgba(224,123,46,0.5);
}
@keyframes pulse-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.6; }
}
.hero-content {
  position: relative; z-index: 2; max-width: 720px; padding: 0 3rem 0 8%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(224,123,46,0.15);
  border: 1px solid rgba(224,123,46,0.3);
  color: var(--orange-warm);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease both;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  color: var(--white); line-height: 1.08; margin-bottom: 0.6rem;
  animation: fadeInUp 0.8s 0.15s ease both;
}
.hero h1 .highlight { color: var(--orange); }
.hero-subtitle {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--orange-warm); font-style: italic;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; max-width: 540px; margin-bottom: 2.5rem; font-weight: 300;
  animation: fadeInUp 0.8s 0.45s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: all 0.35s ease;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 20px rgba(224,123,46,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(224,123,46,0.5); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
section { padding: 7rem 8%; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 30px; height: 2px; background: var(--orange); }
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy); line-height: 1.15; margin-bottom: 1.2rem;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-light);
  line-height: 1.7; max-width: 600px; font-weight: 300;
}

/* ===== ACTUALITÉS & AGENDA — compact duo ===== */
.actu-agenda-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 5rem 8%;
  background: var(--white);
}
.actu-agenda-row .section-label { margin-bottom: 0.6rem; }
.actu-agenda-row .section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy); line-height: 1.15; margin-bottom: 1.8rem;
}

/* Actus — visual cards inspired by chaire-pepite.org */
.actu-list { display: flex; flex-direction: column; gap: 1.2rem; }
.actu-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 1.2rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid rgba(43,58,103,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  align-items: start;
}
.actu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(43,58,103,0.08);
}
.actu-item-content { min-width: 0; }
.actu-item-thumb {
  width: 100%; aspect-ratio: 1; border-radius: 10px; overflow: hidden;
  background: var(--white); border: 1px solid rgba(43,58,103,0.06);
}
.actu-item-thumb img {
  width: 100%; height: 100%; object-fit: contain; display: block; padding: 6px;
}
.actu-item-thumb-default {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.actu-item-thumb-default svg {
  width: 36px; height: 36px; color: rgba(255,255,255,0.45);
}
.actu-item-content h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem; color: var(--navy);
  line-height: 1.3; margin-bottom: 0.4rem;
}
.actu-item-content p {
  font-size: 0.85rem; color: var(--text-light);
  line-height: 1.6; font-weight: 300; margin-bottom: 0.5rem;
}
.actu-item-meta {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
}
.actu-item-date {
  font-size: 0.72rem; color: var(--text-muted); font-weight: 500;
}
.actu-item-tag {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-light);
  padding: 0.15rem 0.5rem; border-radius: 100px;
}

/* Agenda — compact timeline */
.timeline-compact {
  position: relative;
  padding-left: 28px;
}
.timeline-compact::before {
  content: '';
  position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--navy-light), var(--text-muted));
  border-radius: 2px;
}
.tl-item {
  position: relative;
  padding: 0 0 1.8rem 1.5rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -24px; top: 5px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--cream);
  border: 2.5px solid var(--orange);
  z-index: 2;
  transition: background 0.3s, transform 0.3s;
}
.tl-item:hover .tl-dot {
  background: var(--orange); transform: scale(1.25);
}
.tl-item.past .tl-dot {
  border-color: var(--text-muted);
  background: var(--text-muted);
  width: 10px; height: 10px;
  top: 7px; left: -22px;
}
.tl-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(43,58,103,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tl-card-with-img {
  display: grid; grid-template-columns: 80px 1fr; gap: 1rem;
  align-items: start;
}
.tl-card-img {
  width: 80px; height: 80px; border-radius: 8px; overflow: hidden;
  background: var(--white); border: 1px solid rgba(43,58,103,0.06);
}
.tl-card-img img {
  width: 100%; height: 100%; object-fit: contain; display: block; padding: 4px;
}
.tl-item:hover .tl-card {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(43,58,103,0.06);
}
.tl-item.past .tl-card { opacity: 0.55; }
.tl-item.past:hover .tl-card { opacity: 0.8; }
.tl-date {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.3rem;
}
.tl-item.past .tl-date { color: var(--text-muted); }
.tl-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 0.98rem; color: var(--navy);
  margin-bottom: 0.25rem; line-height: 1.3;
}
.tl-card p {
  font-size: 0.8rem; color: var(--text-light);
  line-height: 1.5; font-weight: 300;
}
.tl-location {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: var(--text-muted);
  margin-top: 0.35rem; font-weight: 400;
}
.tl-badge {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.15rem 0.45rem; border-radius: 100px;
  margin-left: 0.4rem;
}
.badge-conf { background: rgba(224,123,46,0.12); color: var(--orange); }
.badge-seminaire { background: rgba(43,58,103,0.08); color: var(--navy); }
.badge-atelier { background: rgba(242,149,68,0.15); color: #C46A1A; }
.badge-past { background: rgba(154,163,184,0.15); color: var(--text-muted); }

/* ===== ABOUT ===== */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 3rem;
}
.about-text p {
  font-size: 1.05rem; color: var(--text-light);
  line-height: 1.8; margin-bottom: 1.5rem; font-weight: 300;
}
.echo-meaning {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem; background: var(--cream);
  border-radius: 16px; border-left: 4px solid var(--orange);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 1rem;
}
.echo-meaning:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(43,58,103,0.08);
}
.echo-prefix {
  font-family: 'DM Serif Display', serif; font-size: 1.15rem;
  color: var(--orange); white-space: nowrap; flex-shrink: 0;
}
.echo-prefix span { color: var(--navy); }
.echo-suffix { font-size: 0.9rem; color: var(--text-light); font-weight: 300; }

/* ===== MISSIONS ===== */
#missions { background: var(--cream); }
.missions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3.5rem;
}
.mission-card {
  background: var(--white); border-radius: 20px;
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(43,58,103,0.06);
}
.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(43,58,103,0.1);
}
.mission-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.mission-card:nth-child(1) .mission-icon { background: rgba(224,123,46,0.12); }
.mission-card:nth-child(2) .mission-icon { background: rgba(43,58,103,0.1); }
.mission-card:nth-child(3) .mission-icon { background: rgba(242,149,68,0.15); }
.mission-card h3 {
  font-family: 'DM Serif Display', serif; font-size: 1.3rem;
  color: var(--navy); margin-bottom: 0.8rem; line-height: 1.3;
}
.mission-card p {
  font-size: 0.95rem; color: var(--text-light);
  line-height: 1.7; font-weight: 300;
}
.mission-number {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: 'DM Serif Display', serif; font-size: 3.5rem;
  color: rgba(43,58,103,0.04); line-height: 1;
}

/* ===== RESEARCH ===== */
#research {
  background: var(--navy-deep); color: var(--white);
  position: relative; overflow: hidden;
}
#research .section-label { color: var(--orange-warm); }
#research .section-label::before { background: var(--orange-warm); }
#research .section-title { color: var(--white); }
#research .section-desc { color: rgba(255,255,255,0.6); }
.research-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 3.5rem;
}
.research-block {
  padding: 2.5rem; border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px); transition: border-color 0.3s;
}
.research-block:hover { border-color: rgba(224,123,46,0.4); }
.research-block h3 {
  font-family: 'DM Serif Display', serif; font-size: 1.4rem;
  margin-bottom: 0.5rem; color: var(--orange-warm);
}
.research-block .subtitle {
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
  font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.research-block p {
  font-size: 0.95rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; font-weight: 300;
}
.research-items { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1rem; }
.research-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.92rem; color: rgba(255,255,255,0.7); font-weight: 300;
}
.research-item::before {
  content: '\2192'; color: var(--orange); font-weight: 600;
  flex-shrink: 0; margin-top: 1px;
}
.research-bg-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(224,123,46,0.08); pointer-events: none;
}
.research-bg-ring:nth-child(1) { width: 500px; height: 500px; top: -200px; right: -150px; }
.research-bg-ring:nth-child(2) { width: 350px; height: 350px; bottom: -100px; left: -100px; }

/* ===== TEAM ===== */
#team { background: var(--white); }
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 3.5rem; max-width: 900px;
}
.team-card {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 2rem; border-radius: 20px; background: var(--cream);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(43,58,103,0.08); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; flex-shrink: 0;
}
.team-info h3 {
  font-family: 'DM Serif Display', serif; font-size: 1.2rem;
  color: var(--navy); margin-bottom: 0.3rem;
}
.team-role { font-size: 0.85rem; color: var(--orange); font-weight: 600; margin-bottom: 0.6rem; }
.team-details { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; font-weight: 300; }

/* ===== GOVERNANCE ===== */
#governance { background: var(--cream); }
.gov-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; margin-top: 3.5rem;
}
.gov-card {
  padding: 2.5rem; border-radius: 20px;
  background: var(--white); border: 1px solid rgba(43,58,103,0.06);
}
.gov-card h3 {
  font-family: 'DM Serif Display', serif; font-size: 1.3rem;
  color: var(--navy); margin-bottom: 0.6rem;
}
.gov-card .gov-role {
  font-size: 0.82rem; color: var(--orange); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem;
}
.gov-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; font-weight: 300; }

/* ===== PARTNERS ===== */
#partners { background: var(--white); }
.partners-types {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3.5rem;
}
.partner-type {
  text-align: center; padding: 2.5rem 2rem; border-radius: 20px;
  background: var(--cream); border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.partner-type:hover { border-color: var(--orange); transform: translateY(-4px); }
.partner-type-icon {
  width: 60px; height: 60px; border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.partner-type:nth-child(1) .partner-type-icon { background: rgba(43,58,103,0.1); }
.partner-type:nth-child(2) .partner-type-icon { background: rgba(224,123,46,0.12); }
.partner-type:nth-child(3) .partner-type-icon { background: rgba(43,58,103,0.08); }
.partner-type h3 {
  font-family: 'DM Serif Display', serif; font-size: 1.15rem;
  color: var(--navy); margin-bottom: 0.6rem;
}
.partner-type p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; font-weight: 300; }
.partner-modalities {
  margin-top: 3.5rem; padding: 2.5rem 3rem;
  background: var(--navy-deep); border-radius: 24px; color: var(--white);
}
.partner-modalities h3 {
  font-family: 'DM Serif Display', serif; font-size: 1.4rem; margin-bottom: 1.5rem;
}
.modalities-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.modality { display: flex; flex-direction: column; gap: 0.4rem; }
.modality-num {
  font-family: 'DM Serif Display', serif; font-size: 2.5rem;
  color: var(--orange); line-height: 1;
}
.modality h4 { font-size: 0.95rem; font-weight: 600; }
.modality p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; font-weight: 300; }

/* ===== CONTACT / CTA ===== */
#contact {
  background: var(--navy-deep); text-align: center;
  position: relative; overflow: hidden;
}
#contact .section-title { color: var(--white); }
#contact .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto 2.5rem; }
#contact .section-label { color: var(--orange-warm); }
#contact .section-label::before { background: var(--orange-warm); display: none; }
.contact-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 8%;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.35); font-size: 0.85rem; font-weight: 300;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
}
.footer-logo .dot { color: var(--orange); }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .research-cols, .team-grid, .gov-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .missions-grid, .partners-types { grid-template-columns: 1fr 1fr; }
  .modalities-list { grid-template-columns: 1fr; gap: 1.5rem; }
  .echo-rings { width: 400px; height: 400px; right: -10%; }
  .hero-content { max-width: 100%; padding: 0 2rem; }
  nav { padding: 1rem 2rem; }
  section { padding: 5rem 5%; }
  .actu-agenda-row { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 5%; }
  .echo-meaning { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .echo-prefix { white-space: normal; }
}
@media (max-width: 640px) {
  .missions-grid, .partners-types { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .echo-rings { display: none; }
  .nav-links { display: none; }
  nav { padding: 1rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .partner-modalities { padding: 2rem 1.5rem; }
  .actu-agenda-row { padding: 3rem 1.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ===== DYNAMIC TEAM ===== */
.team-photo {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  background: var(--navy);
}
.team-grid-dynamic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* ===== PARTNER LOGOS ===== */
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 2rem 0;
}
.partner-logo-item {
  display: flex; align-items: center; justify-content: center;
  height: 60px;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0.7;
}
.partner-logo-item:hover { opacity: 1; transform: scale(1.08); }
.partner-logo-item img {
  max-height: 55px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s;
}
.partner-logo-item:hover img { filter: grayscale(0%); }
.partner-logo-item span {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--navy);
}

/* ===== ARTICLE PAGE ===== */
.page-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}
.page-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; color: var(--orange);
  font-weight: 600; text-decoration: none;
  margin-bottom: 2rem; transition: gap 0.3s;
}
.page-back:hover { gap: 0.7rem; }
.page-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-light);
  padding: 0.2rem 0.6rem; border-radius: 100px;
  margin-bottom: 0.8rem;
}
.page-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy); line-height: 1.2; margin-bottom: 0.6rem;
}
.page-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.page-content {
  font-size: 1.05rem; color: var(--text-light);
  line-height: 1.85; font-weight: 300;
}
.page-content p { margin-bottom: 1.3rem; }

/* ===== ARCHIVE PAGES ===== */
.archive-list { margin-top: 2rem; }
.archive-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(43,58,103,0.08);
  transition: padding-left 0.3s;
}
.archive-item:hover { padding-left: 0.5rem; }
.archive-item-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; margin-top: 9px;
}
.archive-item h3 a {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: var(--navy);
  text-decoration: none; line-height: 1.3;
}
.archive-item h3 a:hover { color: var(--orange); }
.archive-item p {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.55; font-weight: 300; margin-top: 0.25rem;
}
.archive-item-meta {
  display: flex; align-items: center; gap: 0.6rem; margin-top: 0.3rem;
}

/* ===== VOIR PLUS LINK ===== */
.voir-plus {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; color: var(--orange);
  font-weight: 600; text-decoration: none;
  margin-top: 1.2rem; transition: gap 0.3s;
}
.voir-plus:hover { gap: 0.7rem; }

@media (max-width: 640px) {
  .team-grid-dynamic { grid-template-columns: 1fr; }
  .actu-item { grid-template-columns: 90px 1fr; gap: 0.8rem; }
  .tl-card-with-img { grid-template-columns: 60px 1fr; gap: 0.8rem; }
  .tl-card-img { width: 60px; height: 60px; }
}
