/* ========== HERO SECTION ========== */
    .hero-histoire {
      position: relative;
      min-height: 540px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      overflow: hidden;
    }
    .hero-histoire-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, transparent 100%),
        url('https://drive.google.com/thumbnail?id=1qd_YTCxRzqc-bZtQLevilNvYOSsnbdPB&sz=w2000') center/cover no-repeat;
      z-index: 1;
    }
    .hero-histoire-content {
      position: relative;
      z-index: 10;
      max-width: 680px;
      padding: 60px 48px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .hero-histoire-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.2px;
      color: rgba(255, 255, 255, 0.8);
      text-transform: uppercase;
    }
    .hero-histoire h1 {
      font-size: 56px;
      font-weight: 900;
      line-height: 1.1;
      color: #fff;
      text-transform: uppercase;
    }
    .hero-histoire h1 span {
      color: var(--orange);
    }
    .hero-histoire-desc {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
      max-width: 550px;
    }

    /* ========== STATS BAR ========== */
    .stats-bar {
      background: var(--dark);
      padding: 60px 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .stats-bar-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 60px;
      max-width: 1200px;
      width: 100%;
    }
    .stat-bar-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      text-align: center;
    }
    .stat-number {
      font-size: 48px;
      font-weight: 900;
      color: var(--orange);
    }
    .stat-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.8px;
      color: #fff;
      text-transform: uppercase;
      line-height: 1.3;
    }

    /* ========== SECTION ORIGINS ========== */
    .section-origins {
      background: #fff;
      padding: 80px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-badge {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 8px 16px;
      border-radius: 24px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.8px;
      margin-bottom: 24px;
      text-transform: uppercase;
    }
    .section-origins h2 {
      font-size: 44px;
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 32px;
      text-transform: uppercase;
      color: var(--dark);
    }
    .section-origins p {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.8;
      color: #333;
      margin-bottom: 20px;
      max-width: 900px;
    }
    .section-origins strong {
      color: var(--orange);
      font-weight: 700;
    }

    /* ========== TIMELINE SECTION ========== */
    .timeline-section {
      background: var(--dark);
      padding: 80px 48px;
    }
    .timeline-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .timeline-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 48px;
    }
    .timeline-item {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .timeline-photo {
      width: 100%;
      aspect-ratio: 16 / 10;
      border-radius: 12px;
      overflow: hidden;
      background: url('https://drive.google.com/thumbnail?id=1CcQgEFcTsl1Swjq1YUENSBJMXLqHg007&sz=w2000') center/cover no-repeat;
    }
    .timeline-item:nth-child(2) .timeline-photo {
      background: url('https://drive.google.com/thumbnail?id=1Tq55safJImsPDrvdu8Q4d-cQoSDd37xl&sz=w2000') center/cover no-repeat;
    }
    .timeline-item:nth-child(3) .timeline-photo {
      background: url('https://drive.google.com/thumbnail?id=1QIlzK1tbv1mWwgngB-NYrQGTUXPwfXhn&sz=w2000') center/cover no-repeat;
    }
    .timeline-item:nth-child(4) .timeline-photo {
      background: url('https://drive.google.com/thumbnail?id=1qd_YTCxRzqc-bZtQLevilNvYOSsnbdPB&sz=w2000') center/cover no-repeat;
    }
    .timeline-year {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 6px 14px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      margin-bottom: 12px;
      width: fit-content;
    }
    .timeline-title {
      font-size: 18px;
      font-weight: 900;
      color: var(--orange);
      text-transform: uppercase;
      line-height: 1.3;
      margin-bottom: 12px;
    }
    .timeline-desc {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.7;
      color: #bbb;
    }

    /* ========== SCROLL ANIMATIONS ========== */
    .anim-fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .anim-fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }

    /* ========== FOOTER ========== */
    .footer {
      background: #1a1a1a;
      color: #fff;
      padding: 60px 48px 24px;
    }
    .footer-main {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 48px;
      max-width: 1200px;
      margin: 0 auto 40px;
      border-bottom: 1px solid #333;
      padding-bottom: 40px;
    }
    .footer-brand svg { margin-bottom: 20px; }
    .footer-brand p {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 24px;
      color: #bbb;
    }
    .btn-rdv-footer {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 12px 24px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.6px;
    }
    .btn-rdv-footer:hover { background: #d9551a; }
    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 14px; }
    .footer-col a {
      font-size: 13px;
      color: #bbb;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--orange); }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: #999;
    }
    .footer-bottom-links {
      display: flex;
      gap: 32px;
    }
    .footer-bottom-links a:hover { color: var(--orange); }

    /* ========== TABLET ========== */
    @media (max-width: 1100px) {
      .header { padding: 10px 32px; }
      .header-nav { gap: 20px; }
      .header-nav a { font-size: 13px; }
      .btn-find-center { font-size: 13px; }
      .btn-rdv { padding: 10px 24px; font-size: 13px; }
      .hero-histoire-content { padding: 48px 32px; }
      .hero-histoire h1 { font-size: 44px; }
      .hero-histoire-desc { font-size: 15px; }
      .stats-bar { padding: 48px 32px; }
      .stats-bar-grid { gap: 40px; }
      .stat-number { font-size: 40px; }
      .section-origins { padding: 60px 32px; }
      .section-origins h2 { font-size: 36px; }
      .section-origins p { font-size: 15px; }
      .timeline-section { padding: 60px 32px; }
      .timeline-grid { gap: 32px; }
      .timeline-title { font-size: 16px; }
      .timeline-desc { font-size: 13px; }
      .footer { padding: 48px 32px 20px; }
      .footer-main { gap: 32px; padding-bottom: 32px; }
    }

    /* ========== MOBILE ========== */
    @media (max-width: 768px) {
      .header { padding: 8px 20px; }
      .logo-wrap img { width: 90px; height: 54px; }
      .header-nav, .header-actions { display: none; }
      .burger { display: flex; }
      .hero-histoire { min-height: 420px; }
      .hero-histoire-content { padding: 48px 24px; gap: 16px; }
      .hero-histoire h1 { font-size: 32px; }
      .hero-histoire-desc { font-size: 14px; }
      .stats-bar { padding: 40px 24px; }
      .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }
      .stat-number { font-size: 32px; }
      .stat-label { font-size: 11px; }
      .section-origins { padding: 48px 24px; }
      .section-origins h2 { font-size: 28px; margin-bottom: 24px; }
      .section-origins p { font-size: 14px; }
      .timeline-section { padding: 48px 24px; }
      .timeline-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .timeline-photo { aspect-ratio: 16 / 9; }
      .timeline-title { font-size: 15px; }
      .timeline-desc { font-size: 13px; }
      .footer { padding: 40px 24px 16px; }
      .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
      }
      .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
      .footer-bottom-links { flex-direction: column; gap: 12px; }
    }

    /* ========== MOBILE SMALL ========== */
    @media (max-width: 420px) {
      .header { padding: 8px 16px; }
      .logo-wrap img { width: 80px; height: 48px; }
      .hero-histoire { min-height: 360px; }
      .hero-histoire-content { padding: 36px 18px; gap: 12px; }
      .hero-histoire-label { font-size: 11px; }
      .hero-histoire h1 { font-size: 26px; }
      .hero-histoire-desc { font-size: 13px; }
      .stats-bar { padding: 32px 18px; }
      .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
      .stat-number { font-size: 28px; }
      .stat-label { font-size: 10px; }
      .section-badge { padding: 6px 12px; font-size: 10px; }
      .section-origins { padding: 36px 18px; }
      .section-origins h2 { font-size: 22px; margin-bottom: 18px; }
      .section-origins p { font-size: 13px; }
      .timeline-section { padding: 36px 18px; }
      .timeline-photo { aspect-ratio: 16 / 9; }
      .timeline-year { padding: 4px 10px; font-size: 10px; }
      .timeline-title { font-size: 13px; }
      .timeline-desc { font-size: 12px; }
      .footer { padding: 32px 16px 12px; }
      .footer-main { gap: 20px; padding-bottom: 20px; }
      .footer-col h4 { font-size: 12px; margin-bottom: 14px; }
      .footer-col a { font-size: 12px; }
      .footer-bottom { font-size: 11px; }
      .btn-rdv-footer { padding: 10px 20px; font-size: 11px; }
    }