﻿/* ========== Page À propos ========== */
.about-page {
  background: #ffffff;
}

.about-section-title {
  text-align: center;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-section-title.left {
  text-align: left;
  text-transform: uppercase;
}

/* Hero */
.about-hero-wrap {
  background: linear-gradient(135deg, #FFF5F0 0%, #FFF5F0 45%, #FFFFFF 100%);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.about-hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/projets/hero-seedling.jpg") center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.about-hero-wrap .container {
  position: relative;
  z-index: 1;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  padding: 1rem 0 3rem;
}

.about-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-content h1 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.about-hero-content h1 span {
  color: var(--primary);
  display: block;
}

.about-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

.about-hero-visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(14, 60, 20, 0.15);
}

.about-hero-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-hero-stats {
  background: #ffffff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(14, 60, 20, 0.06);
  position: relative;
  z-index: 2;
}

.about-hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 0;
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-stat-item > i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 69, 0, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.about-stat-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.about-stat-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Mission Vision Valeurs */
.about-mvv-section {
  padding: 5rem 0;
  background: #ffffff;
}

.about-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-mvv-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.about-mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(14, 60, 20, 0.12);
}

.about-mvv-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 69, 0, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
}

.about-mvv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text);
}

.about-mvv-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-mvv-card ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-mvv-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.about-mvv-card ul li i {
  color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Histoire */
.about-history-section {
  padding: 5rem 0;
  background: var(--bg-soft);
}

.about-history-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-history-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-history-content .btn {
  margin-top: 0.5rem;
}

/* Timeline */
.about-timeline {
  position: relative;
  padding: 1rem 0;
}

.about-timeline-line {
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #FFE4D6;
  z-index: 0;
}

.about-timeline-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.about-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.about-timeline-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.15);
}

.about-timeline-year {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.about-timeline-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 110px;
}

/* Axes d'action */
.about-axes-section {
  padding: 5rem 0;
  background: #ffffff;
}

.about-axes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.about-axis-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.1rem;
  text-align: center;
  transition: 0.3s ease;
}

.about-axis-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}

.about-axis-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 69, 0, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.about-axis-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.about-axis-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Impact */
.about-impact-section {
  padding: 5rem 0;
  background: var(--bg-soft);
}

.about-impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.about-impact-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(14, 60, 20, 0.05);
  transition: 0.3s ease;
}

.about-impact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.about-impact-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.about-impact-card strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.about-impact-card span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Partenaires */
.about-partners-section {
  padding: 4rem 0;
  background: #ffffff;
}

.about-partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.about-partner-logo {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #8a8a8a;
  opacity: 0.8;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.about-partner-logo:hover {
  opacity: 1;
  color: var(--primary-dark);
}

.about-partner-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border: 1px dashed #FFB899;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* CTA */
.about-cta-section {
  padding: 0 0 4rem;
  background: #ffffff;
}

.about-cta-box {
  background: #F7F7F7;
  border-radius: 20px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-cta-media {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 6px 20px rgba(14, 60, 20, 0.12);
}

.about-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta-content {
  flex: 1;
  min-width: 220px;
}

.about-cta-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.about-cta-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.6;
}

.about-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 200px;
}

.about-cta-actions .btn {
  width: 100%;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-visual img {
    height: 300px;
  }

  .about-hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-mvv-grid {
    grid-template-columns: 1fr;
  }

  .about-history-grid {
    grid-template-columns: 1fr;
  }

  .about-axes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-timeline-items {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }

  .about-timeline-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-axes-grid,
  .about-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-timeline-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .about-cta-content p {
    max-width: none;
  }

  .about-cta-actions {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .about-hero-stats-inner,
  .about-axes-grid,
  .about-impact-grid,
  .about-timeline-items {
    grid-template-columns: 1fr;
  }

  .about-mvv-section,
  .about-history-section,
  .about-axes-section,
  .about-impact-section {
    padding: 3.5rem 0;
  }
}
