/* .about {
    background-color: #f8f8f8;
    margin: auto;
    padding: 8rem 1rem 0 1rem;
    width: 100%;
  }

  .about .container {
    width: 1240px;
    margin: auto;
    display: flex;
  }

  .about h2 {
    font-size: 3rem;
    text-align: center;
  }

  .image{
    height: auto;
  }


  .about .col-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding: 3rem;
  }
  .about .col-md-6 p:first-of-type {
    margin: 2rem 0;
  }

  .about .col-md-6 p:nth-child(4) {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 600;
  }

  .about button {
    margin-top: 1rem;
  }

  @media screen and (max-width: 940px) {
    .about .container {
      display: grid;
      grid-template-columns: 1fr;
    }

    .about .container {
      width: 100%;
    }
    .about .container img {
      padding: 0rem;
      width: 90vw;
    }
    .about .container .col-md-6 {
      padding: 0rem;
    }

    .about button {
      margin-top: 1rem;
      width: 250px;
    }
  } */


  .about {
  background: #f4f1ec;
  padding: 6rem 1rem;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: 'À PROPOS';
  position: absolute;
  top: 2rem; right: -1rem;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(5, 84, 117, 0.05);
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
}

.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* --- Image --- */
.about__image-wrap {
  position: relative;
}

.about__image-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 60%; height: 60%;
  border: 2px solid #055475;
  z-index: 0;
}

.about__image-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 45%; height: 45%;
  background: rgba(5, 84, 117, 0.08);
  z-index: 0;
}

.about__img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  filter: grayscale(15%);
}

.about__badge {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: #055475;
  color: #fff;
  padding: 1rem 1.25rem;
  text-align: center;
  z-index: 2;
  min-width: 110px;
}

.about__badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about__badge span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* --- Texte --- */
.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #055475;
  margin-bottom: 1rem;
}

.about__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: #055475;
}

.about__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #0d1f2d;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about__heading em {
  font-style: italic;
  color: #055475;
}

.about__divider {
  width: 48px; height: 3px;
  background: #055475;
  margin-bottom: 1.75rem;
}

.about__p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__quote {
  border-left: 3px solid #055475;
  padding: 0.75rem 1.25rem;
  background: rgba(5, 84, 117, 0.05);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #0d1f2d;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.about__stat {
  text-align: center;
  padding: 1rem 0.5rem;
  border-top: 2px solid #e0d8ce;
}

.about__stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #055475;
  line-height: 1;
  margin-bottom: 4px;
}

.about__stat span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

/* Bouton */
.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 2rem;
  background: #055475;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #055475;
  text-decoration: none;
  transition: all 0.25s;
}

.about__btn::after { content: '→'; }

.about__btn:hover {
  background: transparent;
  color: #055475;
}

/* Responsive */
@media (max-width: 768px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__badge {
    right: 0.5rem;
  }

  .about__img {
    height: 320px;
  }
}
