/* ===================================
   charte.css – page Charte de Non-Discrimination
   =================================== */

/* ---- Hero ---- */
.ch-hero {
  background: linear-gradient(135deg, #1b2c5e 0%, #2d4080 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.ch-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.ch-hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ch-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* ---- Engagement Section ---- */
.ch-engagement {
  padding: 80px 0;
}

.ch-engagement__box {
  background: linear-gradient(135deg, #e8f5ee 0%, #f0faf8 100%);
  border-left: 5px solid #1e7a47;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.ch-engagement__icon {
  font-size: 2.8rem;
  color: #1e7a47;
  margin-bottom: 16px;
}

.ch-engagement__box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.ch-engagement__box p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ---- Principles Grid ---- */
.ch-principles {
  padding: 80px 0;
}

.ch-principles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.ch-principle-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--gray-mid);
  transition: all .3s;
}

.ch-principle-card:hover {
  box-shadow: 0 12px 40px rgba(27, 44, 94, 0.12);
  transform: translateY(-6px);
  border-color: var(--coral);
}

.ch-principle-card__icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.ch-principle-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.ch-principle-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- Commitments Sections ---- */
.ch-commitments {
  padding: 80px 0;
}

.ch-commitment-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ch-commitment-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-mid);
}

.ch-commitment-section__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--coral);
}

.ch-commitment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ch-commitment-list li {
  font-size: .93rem;
  color: var(--text-light);
  line-height: 1.65;
  padding-left: 24px;
  position: relative;
}

.ch-commitment-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1e7a47;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---- Legal Section ---- */
.ch-legal {
  padding: 80px 0;
}

.ch-legal__content {
  max-width: 900px;
  margin: 0 auto;
}

.ch-legal__content > p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.ch-legal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border-left: 4px solid var(--navy);
}

.ch-legal__list li {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.65;
  padding-left: 24px;
  position: relative;
}

.ch-legal__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ---- Signalement Section ---- */
.ch-signalement {
  padding: 80px 0;
}

.ch-signalement__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ch-signalement__content > p:first-child {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}

.ch-signalement__methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0 auto 24px;
  max-width: 450px;
}

.ch-signalement-method {
  background: var(--gray-light);
  padding: 24px;
  border-radius: var(--radius);
}

.ch-signalement-method h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.ch-signalement-method p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.65;
}

.ch-signalement-method a {
  color: var(--coral);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.ch-signalement-method a:hover {
  color: var(--coral-dark);
}

/* ---- Commitment Stamp ---- */
.ch-stamp {
  padding: 80px 0;
}

.ch-stamp__inner {
  display: flex;
  justify-content: center;
}

.ch-stamp__box {
  background: var(--white);
  border: 3px solid var(--coral);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 600px;
  text-align: center;
}

.ch-stamp__icon {
  font-size: 3.6rem;
  color: var(--coral);
  margin-bottom: 16px;
  display: block;
}

.ch-stamp__box h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.ch-stamp__box p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ---- CTA Section ---- */
.ch-cta {
  padding: 80px 0;
  text-align: center;
}

.ch-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.ch-cta__inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.ch-cta__inner p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .ch-commitment-sections {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ch-signalement__methods {
    grid-template-columns: 1fr;
  }

  .ch-engagement__box {
    padding: 28px;
  }

  .ch-stamp__box {
    padding: 32px 24px;
  }

  .ch-principle-card {
    padding: 24px;
  }

  .ch-commitment-section {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .ch-hero__title {
    font-size: 1.7rem;
  }

  .ch-engagement__box {
    padding: 20px;
  }

  .ch-principle-card,
  .ch-commitment-section {
    padding: 20px;
  }

  .ch-commitment-list li,
  .ch-legal__list li {
    padding-left: 20px;
    font-size: .88rem;
  }

  .ch-stamp__box {
    padding: 24px 20px;
  }

  .ch-stamp__icon {
    font-size: 2.8rem;
  }
}
