.about-hero {
  background:
    linear-gradient(rgba(0, 0, 0, .42), rgba(0, 0, 0, .78)),
    url("../images/a-propos.jpg") center/cover no-repeat;
}

.about-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 5% 90px;
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.about-photo {
  position: relative;
  width: 100%;
  margin-top: -34px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-copy .eyebrow {
  margin-bottom: 14px;
}

.about-copy h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(2.1rem, 4.2vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.about-copy p {
  max-width: 740px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.about-copy strong {
  color: white;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 72px;
}

.about-value {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
}

.about-value svg {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: #9fd18b;
}

.about-value h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.about-value p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.6;
}

.about-cta {
  max-width: 900px;
  margin: 0 auto 90px;
  padding: 54px 6%;
  text-align: center;
}

.about-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.about-cta p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .about-section {
    padding-top: 56px;
  }

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

  .about-photo {
    width: min(100%, 620px);
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }

  .about-values {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
}