/* ========================================
   PAGE A PROPOS
   ======================================== */

/* Presentation */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-intro__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
}

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

.about-intro__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: var(--space-sm);
}

.about-intro__text {
  color: var(--color-gray-700);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-intro__img {
    height: 260px;
  }
  .about-intro__title {
    font-size: var(--text-h3);
  }
  .about-intro > div .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Valeurs */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.value-card {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  color: var(--color-orange);
}

.value-card__icon svg {
  width: 30px;
  height: 30px;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}

.value-card__text {
  font-size: var(--text-small);
  color: var(--color-gray-700);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat {
  padding: var(--space-md) var(--space-sm);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: var(--text-body);
  color: var(--color-gray-300);
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}

/* Equipe */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.team-card {
  text-align: center;
  padding: var(--space-md);
}

.team-card__photo {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto var(--space-sm);
  border: 4px solid var(--color-gray-100);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-card__photo {
  border-color: var(--color-orange);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-body-lg);
  color: var(--color-orange);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: var(--text-small);
  color: var(--color-orange);
  font-weight: 600;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }
  .team-card {
    padding: var(--space-sm) 0.5rem;
  }
  .team-card__photo {
    width: 80px;
    height: 80px;
  }
  .team-card__name {
    font-size: var(--text-body);
  }
  .team-card__role {
    font-size: var(--text-xs);
  }
}
