.about-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(178, 58, 72, 0.70), rgba(67, 170, 139, 0.34)),
    url("../images/a-propos-hero.jpg") center center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 96px 0;
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
}

.about-hero::before {
  width: 260px;
  height: 260px;
  top: -70px;
  left: -60px;
}

.about-hero::after {
  width: 180px;
  height: 180px;
  bottom: -40px;
  right: 8%;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.about-hero__badge {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.34);
  font-weight: 700;
  backdrop-filter: blur(3px);
}

.about-hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin: 0 0 20px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.18);
}

.about-hero p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.14rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.14);
}

.about-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.about-story__content {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-story__content p {
  margin: 0 0 16px;
}

.about-story__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  background: #eee;
}

.mission-grid,
.values-grid,
.method-grid {
  display: grid;
  gap: 24px;
}

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

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.method-grid {
  grid-template-columns: repeat(4, 1fr);
}

.mission-card,
.value-card,
.method-card,
.faith-box,
.about-links-box {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mission-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  padding: 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-card:hover,
.value-card:hover,
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.mission-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff0bc, #ffe8f0);
  font-size: 1.7rem;
}

.mission-card h3,
.value-card h3,
.method-card h3 {
  color: var(--primary);
  margin: 0 0 12px;
}

.mission-card p,
.value-card p,
.method-card p {
  margin: 0;
}

.value-card {
  background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
  padding: 26px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.method-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 26px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faith-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px;
  text-align: center;
  background: linear-gradient(135deg, #fff6d7 0%, #fff1f5 50%, #eefbf6 100%);
}

.faith-box h2 {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 1.9rem;
}

.faith-box p {
  margin: 0 0 14px;
}

.faith-box p:last-child {
  margin-bottom: 0;
}

/* ÉQUIPE */

.team-stack {
  display: grid;
  gap: 28px;
}

.team-profile {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  border-radius: 28px;
  padding: 34px 38px;
  box-shadow: var(--shadow);
}

.team-profile--reverse {
  grid-template-columns: 1fr 260px;
}

.team-profile--reverse .team-profile__photo-wrap {
  order: 2;
}

.team-profile--reverse .team-profile__content {
  order: 1;
}

.team-profile__photo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-profile__photo-frame {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  overflow: hidden;
  background: #ececec;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  border: 8px solid rgba(255,255,255,0.95);
}

.team-profile__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-profile__content {
  min-width: 0;
}

.team-profile__role {
  margin: 0 0 10px;
  color: #686868;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.team-profile__content h3 {
  margin: 0 0 16px;
  color: #111;
  font-size: 2.2rem;
  line-height: 1.15;
}

.team-profile__content h4 {
  margin: 0 0 18px;
  color: #0f1f38;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 800;
}

.team-profile__content p {
  margin: 0 0 14px;
  font-size: 1.03rem;
  line-height: 1.9;
}

.team-profile__content p:last-child {
  margin-bottom: 0;
}

.about-links-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
  text-align: center;
  background: linear-gradient(135deg, #fffdf8 0%, #fff1df 100%);
  border: 2px dashed rgba(178, 58, 72, 0.18);
}

.about-links-box p {
  margin: 0 0 18px;
}

@media (max-width: 980px) {
  .about-story,
  .mission-grid,
  .values-grid,
  .method-grid,
  .team-profile,
  .team-profile--reverse {
    grid-template-columns: 1fr;
  }

  .team-profile,
  .team-profile--reverse {
    padding: 28px 24px;
    text-align: center;
  }

  .team-profile--reverse .team-profile__photo-wrap,
  .team-profile--reverse .team-profile__content {
    order: initial;
  }

  .about-hero h1 {
    font-size: 2.3rem;
  }

  .about-hero p {
    font-size: 1.04rem;
  }

  .team-profile__content h3 {
    font-size: 1.9rem;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 78px 0;
  }

  .about-hero h1 {
    font-size: 1.95rem;
  }

  .faith-box h2 {
    font-size: 1.55rem;
  }

  .team-profile__photo-frame {
    width: 190px;
    height: 190px;
  }

  .team-profile__content h3 {
    font-size: 1.65rem;
  }

  .team-profile__content h4 {
    font-size: 1.02rem;
  }

  .team-profile__content p {
    font-size: 0.98rem;
    line-height: 1.75;
  }
}