/* VARIABLES */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -6rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(176, 122, 72, 0.1);
  z-index: 0;
}
@media (min-width: 1024px) {
  .hero::before {
    width: 28rem;
    height: 28rem;
  }
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__titre {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.08;
  margin: 0 0 1.4rem;
}
.hero__texte {
  color: #5F6878;
  line-height: 1.7;
  margin: 0 0 2rem;
}
.hero__texte p {
  margin: 0;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__media {
  position: relative;
  padding: 1.5rem 1.5rem 0 0;
}
@media (min-width: 1024px) {
  .hero__media {
    padding: 2rem 2rem 0 0;
  }
}
.hero__media::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 74%;
  border: 1.5px solid #B07A48;
  border-radius: 4px;
  z-index: 0;
}
.hero__media .image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.equipe {
  background: #F0ECE3;
}
.equipe .surtitre {
  color: #B07A48;
}
.equipe .surtitre::before {
  background: #B07A48;
}
.equipe__titre {
  margin: 0 0 3rem;
}
@media (min-width: 1024px) {
  .equipe__titre {
    margin-bottom: 4rem;
  }
}
.equipe__liste {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .equipe__liste {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem 2rem;
  }
}
@media (min-width: 1024px) {
  .equipe__liste {
    flex-wrap: nowrap;
    gap: 2.5rem;
  }
}

@media (min-width: 768px) {
  .membre {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media (min-width: 1024px) {
  .membre {
    flex: 1;
  }
}
.membre__photo {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.membre__nom {
  color: #002569;
  font-size: 1.3rem;
  margin: 0 0 0.3rem;
}
.membre__role {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B07A48;
  margin: 0 0 1rem;
}
.membre__texte {
  font-size: 0.875rem;
  line-height: 1.75;
}

.citation {
  background: #002569;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .citation {
    padding: 5.5rem 2rem;
  }
}
.citation__guillemet {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
  color: #B07A48;
  margin-bottom: 0.5rem;
}
.citation::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  border: 1.5px solid rgba(176, 122, 72, 0.28);
  top: -10rem;
  right: -8rem;
  pointer-events: none;
}
.citation::after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  border: 1.5px solid rgba(176, 122, 72, 0.22);
  bottom: -8rem;
  left: -6rem;
  pointer-events: none;
}
.citation__texte {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 500;
  color: #FBFAF6;
  line-height: 1.5;
  margin: 0 auto 1.5rem;
  max-width: 48rem;
  font-style: normal;
  border: none;
  padding: 0;
}
.citation__source {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B07A48;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.citation__source::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5px;
  background: #B07A48;
}