/* ==========================================================================
   FLAT DESIGN PRESTIGE — Style épuré, aéré, haut-de-gamme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Palette prestige — tons neutres raffinés */
  --bg: #FAFAF9;
  --bg-warm: #F5F4F0;
  --fg: #1A1A1A;
  --fg-soft: #3D3D3D;
  --muted: #6B6B6B;
  --accent: #8B7355;
  --accent-light: #B8A88A;
  --panel: #FFFFFF;
  --border: rgba(139, 115, 85, 0.12);
  --border-strong: rgba(139, 115, 85, 0.25);
  
  /* Layout */
  --max: 1200px;
  --radius: 0;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 120px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { 
  color: inherit; 
  text-decoration: none;
  transition: color 0.3s ease;
}

img { max-width: 100%; height: auto; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .nav-wrapper {
    background: rgba(250, 250, 249, 0.98);
  }
}

.container {
  position: relative;
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 32px);
  }
}

.nav-wrapper .container {
  width: min(var(--max), calc(100% - 40px));
}

@media (max-width: 768px) {
  .nav-wrapper .container {
    width: calc(100% - 24px);
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 40px;
}

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

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand .title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand .title strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.brand .title span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 249, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    font-size: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
}

/* Menu hamburger mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav {
    padding: 12px 0;
  }
  
  .brand {
    gap: 10px;
  }
  
  .brand img {
    width: 48px;
    height: 48px;
  }
  
  .brand .title strong {
    font-size: 14px;
  }
  
  .brand .title span {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  background: transparent;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/background.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding-top: 80px;
  }
  
  .hero::before {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--bg);
  }
  
  .scroll-indicator {
    bottom: 20px;
  }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.hero-content {
  padding: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 900px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.kicker::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
}

h1 span {
  display: block;
  font-style: italic;
  color: var(--accent);
}

.lede {
  margin: var(--space-sm) 0 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--fg-soft);
  max-width: 600px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-md);
}

.chip {
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-soft);
  background: var(--panel);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ==========================================================================
   INTRO SECTION (fond blanc sous le hero)
   ========================================================================== */

.intro-section {
  background: var(--panel) !important;
  padding: var(--space-xl) 0;
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 900px;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow-x: hidden;
}

.section:nth-child(even) {
  background: var(--bg-warm);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.section > .container > p {
  margin: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 650px;
}

/* ==========================================================================
   GRID & CARDS
   ========================================================================== */

.grid {
  margin-top: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.two {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .two {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--panel);
  padding: var(--space-lg);
  position: relative;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}

.card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.card:hover::before {
  height: 100%;
}

.card h3 {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.card p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.card ul li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   QUOTE / HIGHLIGHT
   ========================================================================== */

.highlight-section {
  padding: var(--space-xl) 0;
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}

.highlight-section .container {
  max-width: 800px;
}

.highlight-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.highlight-author {
  margin-top: var(--space-md);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  padding: var(--space-lg) 0;
  background: var(--fg);
  color: rgba(255, 255, 255, 0.6);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-legal {
  padding: var(--space-md) 0;
}

.footer-legal p {
  margin: 0 0 var(--space-sm);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal p:last-child {
  margin-bottom: 0;
}

.footer-legal strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hr {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: var(--space-md) 0;
}

.small {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }

/* ==========================================================================
   SCROLL INDICATOR
   ========================================================================== */

.scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-display);
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 8px 16px rgba(0, 0, 0, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
  text-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.4),
    0 8px 16px rgba(0, 0, 0, 0.3),
    0 12px 24px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.15);
}

.scroll-indicator::after {
  content: '';
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scrollPulse 2s ease infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ==========================================================================
   COLISTIERS SECTION - SYSTÈME ORBITAL
   ========================================================================== */

/* Container du système orbital */
.orbital-system {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 700px;
  margin: var(--space-lg) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .orbital-system {
    height: 450px;
    max-width: 100%;
    overflow: hidden;
  }
}

/* Raoul au centre */
.orbital-center {
  position: absolute;
  z-index: 10;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 
    0 0 0 4px var(--accent),
    0 0 0 8px rgba(139, 115, 85, 0.2),
    0 25px 80px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.orbital-center:hover {
  transform: scale(1.05);
  box-shadow: 
    0 0 0 4px var(--accent),
    0 0 0 12px rgba(139, 115, 85, 0.3),
    0 35px 100px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .orbital-center {
    width: 160px;
    height: 160px;
  }
}

.orbital-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.orbital-center-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 40px 15px 15px;
  text-align: center;
}

.orbital-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: 4px;
}

.orbital-center-info h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

/* Anneau orbital */
.orbital-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed var(--border-strong);
}

@keyframes orbital-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Satellites (colistiers) */
.orbital-satellite {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.3s ease;
  /* Positionnement initial sur l'orbite */
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  /* L'animation gère le positionnement */
  animation: satellite-orbit 60s linear infinite;
  animation-delay: var(--orbit-delay);
}

@keyframes satellite-orbit {
  from {
    transform: rotate(var(--orbit-angle)) translateX(280px) rotate(calc(-1 * var(--orbit-angle)));
  }
  to {
    transform: rotate(calc(var(--orbit-angle) + 360deg)) translateX(280px) rotate(calc(-1 * (var(--orbit-angle) + 360deg)));
  }
}

@media (max-width: 768px) {
  .orbital-satellite {
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    animation-name: satellite-orbit-mobile;
  }
  
  @keyframes satellite-orbit-mobile {
    from {
      transform: rotate(var(--orbit-angle)) translateX(160px) rotate(calc(-1 * var(--orbit-angle)));
    }
    to {
      transform: rotate(calc(var(--orbit-angle) + 360deg)) translateX(160px) rotate(calc(-1 * (var(--orbit-angle) + 360deg)));
    }
  }
}

@media (max-width: 480px) {
  .orbital-satellite {
    width: 55px;
    height: 55px;
    margin-top: -27px;
    margin-left: -27px;
    animation-name: satellite-orbit-small;
  }
  
  @keyframes satellite-orbit-small {
    from {
      transform: rotate(var(--orbit-angle)) translateX(120px) rotate(calc(-1 * var(--orbit-angle)));
    }
    to {
      transform: rotate(calc(var(--orbit-angle) + 360deg)) translateX(120px) rotate(calc(-1 * (var(--orbit-angle) + 360deg)));
    }
  }
}

.orbital-satellite::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  z-index: -1;
  opacity: 0.8;
  transition: opacity 0.3s ease, inset 0.3s ease;
}

.orbital-satellite:hover::before {
  opacity: 1;
  inset: -6px;
}

.orbital-satellite:hover {
  z-index: 20;
}

.orbital-satellite img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.orbital-satellite:hover img {
  transform: scale(1.1);
}

.satellite-info {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease, bottom 0.3s ease;
}

.orbital-satellite:hover .satellite-info {
  opacity: 1;
  bottom: -40px;
}

.satellite-info span {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  background: var(--panel);
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Description sous le système orbital */
.orbital-description {
  max-width: 800px;
  margin: var(--space-lg) auto 0;
  text-align: center;
}

.orbital-description p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.orbital-description p:last-child {
  margin-bottom: 0;
}

.orbital-description strong {
  color: var(--fg);
  font-weight: 500;
}

/* Biographies des colistiers */
.colistiers-bios {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.colistier-bio {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-lg);
  background: var(--panel);
  padding: var(--space-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: box-shadow 0.3s ease;
}

/* Animation de highlight quand on clique sur un satellite */
.colistier-bio.highlight {
  animation: bio-highlight 2s ease-out;
}

@keyframes bio-highlight {
  0% {
    box-shadow: 
      0 0 0 0 rgba(139, 115, 85, 0.4),
      0 0 30px rgba(139, 115, 85, 0.3),
      0 1px 3px rgba(0, 0, 0, 0.04);
  }
  20% {
    box-shadow: 
      0 0 0 8px rgba(139, 115, 85, 0.3),
      0 0 60px rgba(139, 115, 85, 0.4),
      0 10px 40px rgba(0, 0, 0, 0.1);
  }
  100% {
    box-shadow: 
      0 0 0 0 rgba(139, 115, 85, 0),
      0 0 0 rgba(139, 115, 85, 0),
      0 1px 3px rgba(0, 0, 0, 0.04);
  }
}

/* Bordure animée permanente pendant le highlight */
.colistier-bio.highlight::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(90deg, 
    var(--accent) 0%, 
    var(--accent-light) 25%, 
    var(--accent) 50%, 
    var(--accent-light) 75%, 
    var(--accent) 100%);
  background-size: 200% 100%;
  z-index: -1;
  border-radius: 4px;
  animation: border-shimmer 1.5s ease-in-out infinite;
  opacity: 0;
  animation: border-shimmer 1.5s ease-in-out infinite, border-fade 2s ease-out forwards;
}

@keyframes border-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes border-fade {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .colistier-bio {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.colistier-bio img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 
    0 0 0 3px var(--accent),
    0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .colistier-bio img {
    margin: 0 auto;
  }
}

.colistier-bio-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.colistier-bio-content h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--fg);
}

.colistier-meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}

.colistier-bio-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.colistier-bio-content p:last-child {
  margin-bottom: 0;
}

/* Anciennes classes conservées pour compatibilité */
.colistiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.colistier-card {
  background: var(--panel);
  padding: 0;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: default;
  text-decoration: none;
  display: block;
}

.colistier-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  background: var(--panel);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-md);
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  padding-right: var(--space-lg);
}

/* ==========================================================================
   PRESSE SECTION
   ========================================================================== */

.empty-state {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--panel);
  margin-top: var(--space-lg);
}

.empty-state-icon {
  font-size: 48px;
  margin-bottom: var(--space-md);
  opacity: 0.3;
}

.empty-state h3 {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--fg);
}

.empty-state p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
}

/* Articles de presse */
.press-articles {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.press-article {
  background: var(--panel);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.press-article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E30613, #FFD700);
}

.press-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.press-source {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.press-logo {
  font-size: 32px;
}

.press-source-info {
  display: flex;
  flex-direction: column;
}

.press-source-info strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}

.press-source-info span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #E30613, #c00510);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(227, 6, 19, 0.3);
}

.press-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
}

.press-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--fg);
  margin: 0;
  padding: var(--space-lg);
  padding-bottom: 0;
  line-height: 1.3;
}

.press-intro {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-soft);
  padding: var(--space-md) var(--space-lg);
  margin: 0;
  border-left: 3px solid var(--accent);
  margin: var(--space-md) var(--space-lg);
  background: var(--bg-warm);
}

.press-interview {
  padding: 0 var(--space-lg);
  padding-bottom: var(--space-lg);
}

.press-qa {
  margin-bottom: var(--space-md);
}

.press-qa:last-child {
  margin-bottom: 0;
}

.press-question {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 var(--space-sm);
  position: relative;
  padding-left: 20px;
}

.press-question::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.press-answer {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  padding-left: 20px;
}

.press-footer {
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.press-correspondent {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .press-header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .press-title {
    padding: var(--space-md);
    font-size: 22px;
  }
  
  .press-intro {
    margin: var(--space-sm) var(--space-md);
    padding: var(--space-sm) var(--space-md);
    font-size: 16px;
  }
  
  .press-interview {
    padding: 0 var(--space-md);
    padding-bottom: var(--space-md);
  }
  
  .press-question {
    font-size: 16px;
  }
  
  .press-answer {
    font-size: 14px;
  }
  
  .press-footer {
    padding: var(--space-sm) var(--space-md);
  }
  
  .press-link {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   THREE COLUMNS GRID
   ========================================================================== */

.three {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .three {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   AGRICULTURE & DYNAMISME LOCAL SECTION
   ========================================================================== */

.agriculture-section {
  background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e8 50%, #f5f9f0 100%);
  position: relative;
  overflow: hidden;
}

.agriculture-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.agriculture-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.agriculture-hero {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.agriculture-icon {
  font-size: 64px;
  margin-bottom: var(--space-sm);
  animation: gentle-bounce 3s ease-in-out infinite;
}

@keyframes gentle-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.eco-label {
  background: linear-gradient(135deg, #4CAF50, #8BC34A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.agriculture-section h2 {
  color: #2E7D32;
}

.agriculture-content {
  position: relative;
  z-index: 1;
}

.agriculture-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  border-left: 4px solid #4CAF50;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agriculture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
}

.agriculture-card.main-card {
  border-left-width: 6px;
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.agriculture-card .card-icon {
  font-size: 36px;
  margin-bottom: var(--space-sm);
}

.agriculture-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #2E7D32;
  margin: 0 0 var(--space-sm);
}

.agriculture-card p {
  margin: 0;
  color: var(--fg-soft);
  line-height: 1.8;
}

.agriculture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .agriculture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.agriculture-quote {
  background: linear-gradient(135deg, #2E7D32, #4CAF50);
  color: white;
  padding: var(--space-lg);
  margin: 0;
  position: relative;
  box-shadow: 0 10px 40px rgba(46, 125, 50, 0.3);
}

.agriculture-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 80px;
  opacity: 0.2;
  line-height: 1;
}

.agriculture-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .agriculture-quote p {
    font-size: 24px;
  }
}

/* ==========================================================================
   RESPONSIVE MOBILE GLOBAL
   ========================================================================== */

@media (max-width: 768px) {
  /* Espacements réduits */
  :root {
    --space-lg: 40px;
    --space-xl: 60px;
  }
  
  /* Sections */
  .section {
    padding: var(--space-lg) 0;
  }
  
  /* Titres */
  h1 {
    font-size: 32px !important;
  }
  
  h2 {
    font-size: 26px !important;
  }
  
  h3 {
    font-size: 20px !important;
  }
  
  /* Introduction */
  .intro-content .kicker {
    font-size: 11px;
  }
  
  .intro-content h1 span {
    font-size: 16px;
  }
  
  .lede {
    font-size: 15px;
  }
  
  /* Cards */
  .card {
    padding: var(--space-md);
  }
  
  .card h3 {
    font-size: 20px;
  }
  
  /* Section labels */
  .section-label {
    font-size: 10px;
  }
  
  /* Agriculture section */
  .agriculture-icon {
    font-size: 48px;
  }
  
  .agriculture-card.main-card {
    padding: var(--space-md);
  }
  
  .agriculture-card .card-icon {
    font-size: 28px;
  }
  
  .agriculture-card h3 {
    font-size: 18px;
  }
  
  .agriculture-quote {
    padding: var(--space-md);
  }
  
  .agriculture-quote::before {
    font-size: 50px;
    top: 5px;
    left: 10px;
  }
  
  .agriculture-quote p {
    font-size: 16px;
  }
  
  /* Highlight section */
  .highlight-section {
    padding: var(--space-lg) 0;
  }
  
  .highlight-quote {
    font-size: 20px;
  }
  
  /* Colistiers bios */
  .colistier-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .colistier-bio img {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
  }
  
  .colistier-bio-content h3 {
    font-size: 22px;
  }
  
  .colistier-meta {
    font-size: 12px;
  }
  
  /* FAQ */
  .faq-question {
    font-size: 15px;
    padding: 16px 40px 16px 16px;
  }
  
  .faq-answer {
    padding: 0 16px 16px;
  }
  
  /* Footer */
  .footer {
    text-align: center;
  }
  
  .footer-content {
    align-items: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  /* Orbital system mobile improvements */
  .orbital-description {
    padding: var(--space-md);
  }
  
  .orbital-description p {
    font-size: 14px;
  }
  
  /* Hero scroll indicator */
  .scroll-indicator {
    font-size: 18px;
    bottom: 40px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }
  
  .nav-wrapper .container {
    width: calc(100% - 16px);
  }
  
  .brand .title strong {
    font-size: 12px;
  }
  
  .brand .title span {
    font-size: 8px;
  }
  
  .brand img {
    width: 36px;
    height: 36px;
  }
  
  .brand {
    gap: 8px;
  }
  
  h1 {
    font-size: 24px !important;
  }
  
  h2 {
    font-size: 20px !important;
  }
  
  .card ul li {
    font-size: 14px;
  }
  
  /* Orbital system très petit écran */
  .orbital-system {
    height: 320px;
    max-width: 320px;
  }
  
  .orbital-center {
    width: 100px;
    height: 100px;
  }
  
  .orbital-satellite {
    width: 55px;
    height: 55px;
    margin-top: -27px;
    margin-left: -27px;
  }
  
  .satellite-info span {
    font-size: 9px;
  }
  
  /* Agriculture */
  .agriculture-icon {
    font-size: 40px;
  }
  
  .agriculture-card {
    padding: var(--space-sm);
  }
  
  .agriculture-card .card-icon {
    font-size: 24px;
  }
}
