@charset "UTF-8";
/* VARIABLES */
.apropos__points {
  padding: 0;
  margin: 0;
  list-style: none;
}

.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-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 500;
  color: #002569;
  line-height: 1.08;
  margin: 0 0 1.4rem;
}
.hero__titre em {
  font-style: italic;
  color: #B07A48;
}
.hero__texte {
  color: #5F6878;
  line-height: 1.7;
  margin: 0 0 2rem;
}
.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: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.hero__badge {
  position: absolute;
  right: -0.5rem;
  top: 2.5rem;
  z-index: 3;
  background: #002569;
  color: #FBFAF6;
  padding: 0.55rem 1rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0, 37, 105, 0.28);
  white-space: nowrap;
}
.hero__badge-etoile {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}
.hero__badge-note {
  color: #FBFAF6;
}
.hero__encart {
  position: absolute;
  left: -0.5rem;
  bottom: 2.5rem;
  z-index: 3;
  background: #FBFAF6;
  border: 1px solid rgba(95, 104, 120, 0.12);
  padding: 1rem 2rem;
  border-radius: 3px;
  box-shadow: 0 16px 40px rgba(95, 104, 120, 0.14);
  color: #5F6878;
  max-width: 300px;
  line-height: 1.4;
  text-align: center;
}
.hero__encart strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #002569;
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .hero__encart strong {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__encart {
    left: -1.5rem;
  }
}
.hero__encart p {
  margin: 0;
}

.chiffres {
  padding-block: 3rem;
}
.chiffres__liste {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .chiffres__liste {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.chiffre {
  flex: 1;
  background: #FBFAF6;
  border: 1px solid rgba(95, 104, 120, 0.08);
  border-radius: 4px;
  padding: 1.8rem 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.chiffre:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 37, 105, 0.1);
}
.chiffre__picto {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.1rem;
  opacity: 0.6;
}
.chiffre__valeur {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: #002569;
  line-height: 1;
  margin: 0 0 0.6rem;
}
.chiffre__label {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
  color: #B07A48;
  margin-left: 0.15rem;
  font-size: 1rem;
}
.chiffre__texte {
  color: #5F6878;
  line-height: 1.55;
  margin: 0;
}

.accompagnement__titre {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 500;
  color: #002569;
  line-height: 1.12;
  margin: 0 0 1.4rem;
}
.accompagnement__texte {
  color: #5F6878;
  line-height: 1.8;
  margin: 0 0 2rem;
}
.accompagnement__media {
  position: relative;
  padding: 0 0 1.5rem 1.5rem;
}
@media (min-width: 1024px) {
  .accompagnement__media {
    padding: 0 0 2rem 2rem;
  }
}
.accompagnement__media::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78%;
  height: 74%;
  border: 1.5px solid #B07A48;
  border-radius: 4px;
  z-index: 0;
}
.accompagnement__media .image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.accompagnement__encart {
  position: absolute;
  right: -0.5rem;
  top: 1.5rem;
  z-index: 3;
  background: #FBFAF6;
  border: 1px solid rgba(95, 104, 120, 0.12);
  padding: 0.8rem 1rem;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(95, 104, 120, 0.14);
  color: #5F6878;
  max-width: 280px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
@media (min-width: 1024px) {
  .accompagnement__encart {
    right: -1.5rem;
  }
}
.accompagnement__encart p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.35;
  color: rgba(95, 104, 120, 0.6);
}
.accompagnement__encart strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #002569;
  font-size: 1.125rem;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}
.accompagnement__encart-picto {
  width: 2.5rem;
  height: 2.5rem;
}
.accompagnement__encart-texte {
  flex: 1;
}

.expertises {
  background: #F0ECE3;
}
.expertises__titre {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 500;
  color: #002569;
  line-height: 1.12;
  margin: 0 0 2.5rem;
  max-width: 36rem;
}
.expertises__liste {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .expertises__liste {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.expertise {
  background: #FBFAF6;
  border: 1px solid rgba(95, 104, 120, 0.08);
  border-radius: 4px;
  padding: 2rem 1.8rem 2.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
@media (min-width: 768px) {
  .expertise {
    flex: 1;
  }
}
.expertise::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: #B07A48;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.expertise:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 24px 56px rgba(95, 104, 120, 0.1);
  border-color: rgba(176, 122, 72, 0.3);
}
.expertise:hover::before {
  transform: scaleX(1);
}
.expertise__numero {
  grid-column: 2;
  grid-row: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: #B07A48;
  font-style: italic;
  align-self: start;
}
.expertise__picto {
  grid-column: 1;
  grid-row: 1;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.4rem;
  opacity: 0.65;
}
.expertise__titre {
  grid-column: 1/-1;
  font-size: 1.3rem;
  font-weight: 600;
  color: #002569;
  margin: 0 0 0.9rem;
  line-height: 1.25;
}
.expertise__texte {
  grid-column: 1/-1;
  color: #5F6878;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.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;
}

.blog__entete {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.blog .surtitre {
  margin-bottom: 0.8rem;
}
.blog__titre {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 500;
  color: #002569;
  line-height: 1.12;
  margin: 0;
}
.blog__lien-tous {
  font-weight: 500;
  color: #002569;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.blog__lien-tous:hover {
  color: #B07A48;
}
.blog__liste {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .blog__liste {
    flex-direction: row;
    gap: 2rem;
  }
}

.article {
  flex: 1;
  background: #FBFAF6;
  border: 1px solid rgba(95, 104, 120, 0.1);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 37, 105, 0.1);
}
.article__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
}
.article__categorie {
  font-weight: 700;
  color: #B07A48;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article__categorie::before {
  content: "· ";
}
.article__date {
  color: rgba(95, 104, 120, 0.5);
}
.article__titre {
  font-size: 1.15rem;
  font-weight: 600;
  color: #002569;
  line-height: 1.35;
  margin: 0 0 0.8rem;
}
.article__titre a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.article__titre a:hover {
  color: #B07A48;
}
.article__extrait {
  color: rgba(95, 104, 120, 0.65);
  line-height: 1.65;
  flex: 1;
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
}
.article__lien {
  font-weight: 500;
  color: #002569;
  text-decoration: none;
  transition: color 0.2s;
  align-self: flex-start;
  font-size: 0.9rem;
}
.article__lien::after {
  content: "";
  position: absolute;
  inset: 0;
}
.article__lien:hover {
  color: #B07A48;
}

.apropos {
  background: #F0ECE3;
}
.apropos__titre {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 500;
  color: #002569;
  line-height: 1.12;
  margin: 0 0 1.4rem;
}
.apropos__texte {
  color: #5F6878;
  line-height: 1.8;
  margin: 0 0 1.5rem;
}
.apropos__points {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.apropos__point {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #5F6878;
}
.apropos__point-picto {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  opacity: 0.65;
}
.apropos__media {
  position: relative;
  padding: 1.5rem 0 0 1.5rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .apropos__media {
    padding: 2rem 0 0 2rem;
  }
}
.apropos__media::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 78%;
  height: 74%;
  border: 1.5px solid #B07A48;
  border-radius: 4px;
  z-index: 0;
}
.apropos__media .image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.apropos__encart {
  position: absolute;
  right: -0.5rem;
  bottom: 1.5rem;
  z-index: 3;
  background: #FBFAF6;
  border: 1px solid rgba(95, 104, 120, 0.12);
  padding: 1rem 1.2rem;
  border-radius: 3px;
  box-shadow: 0 16px 40px rgba(95, 104, 120, 0.14);
  color: #5F6878;
  max-width: 300px;
  line-height: 1.4;
  text-align: center;
}
.apropos__encart strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #002569;
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .apropos__encart strong {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .apropos__encart {
    right: -1.5rem;
  }
}
.apropos__encart p {
  margin: 0;
}

.avis .ti-widget.ti-goog .ti-review-item > .ti-inner {
  background-color: #FBFAF6 !important;
  border-radius: 4px !important;
  border: 1px solid rgba(95, 104, 120, 0.1) !important;
}