/* VARIABLES */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #5F6878;
  background: #F6F4EF !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.site-content .ast-container {
  display: block;
}

.page .site-content > .ast-container,
.blog .site-content > .ast-container,
.archive .site-content > .ast-container {
  max-width: 100%;
  padding: 0;
}

#primary, #secondary {
  width: initial;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: #002569;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.3rem;
}
@media (min-width: 1024px) {
  h3 {
    font-size: 1.5rem;
  }
}

p {
  line-height: 1.7;
}

section {
  padding-block: 4rem;
  padding-inline: max(1.5rem, (100% - 1200px) / 2);
}
@media (min-width: 1024px) {
  section {
    padding-block: 6rem;
    padding-inline: max(10%, (100% - 1200px) / 2);
  }
}
@media (min-width: 1188px) {
  section {
    padding-block: 7rem;
  }
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .flex {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }
}
@media (min-width: 1188px) {
  .flex {
    gap: 7rem;
  }
}
@media (min-width: 1024px) {
  .flex > .container {
    flex: 0 0 50%;
  }
}
@media (min-width: 1024px) {
  .flex > :not(.container) {
    flex: 1;
    min-width: 0;
  }
}

@media (min-width: 1024px) {
  .flex--reverse {
    flex-direction: row-reverse;
  }
}

.btn,
.btn--cuivre,
.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn .btn__fleche,
.btn--cuivre .btn__fleche,
.btn--outline .btn__fleche {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn {
  background: #002569;
  color: #FBFAF6;
  border-color: #002569;
}
.btn:hover {
  background: rgb(0, 22.6228571429, 64.2);
  border-color: rgb(0, 22.6228571429, 64.2);
  box-shadow: 0 8px 24px rgba(0, 37, 105, 0.22);
  color: #FBFAF6;
}
.btn:hover .btn__fleche {
  transform: translateX(3px);
}

.btn--cuivre {
  background: #B07A48;
  color: #FBFAF6;
  border-color: #B07A48;
  color: #FBFAF6;
}
.btn--cuivre:hover {
  background: rgb(147.0451612903, 101.9290322581, 60.1548387097);
  border-color: rgb(147.0451612903, 101.9290322581, 60.1548387097);
  box-shadow: 0 8px 24px rgba(176, 122, 72, 0.28);
  color: #FBFAF6;
}
.btn--cuivre:hover .btn__fleche {
  transform: translateX(3px);
}

.btn--outline {
  background: transparent;
  color: #FBFAF6;
  border-color: #FBFAF6;
}
.btn--outline:hover {
  background: #FBFAF6;
  color: #002569;
  border-color: #FBFAF6;
}

.btn--lien {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #B07A48;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 122, 72, 0.5);
  cursor: pointer;
  background: none;
  padding: 0 0 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.btn--lien .btn__fleche {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn--lien:hover {
  color: rgb(139.8064516129, 96.9112903226, 57.1935483871);
  border-bottom-color: rgb(139.8064516129, 96.9112903226, 57.1935483871);
}
.btn--lien:hover .btn__fleche {
  transform: translateX(4px);
}

.surtitre {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B07A48;
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.surtitre::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: #B07A48;
  flex-shrink: 0;
}

.image {
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;
}
.header-wrapper .custom-logo-link img {
  max-height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

body:has(.main-header-menu-toggle[aria-expanded=true]) {
  overflow: hidden;
}
body:has(.main-header-menu-toggle[aria-expanded=true]) #ast-mobile-header {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 9999;
  background: #F6F4EF;
}
body:has(.main-header-menu-toggle[aria-expanded=true]) #ast-mobile-header .ast-primary-header-bar {
  position: sticky;
  top: 0;
  background: #F6F4EF;
  z-index: 1;
}
body:has(.main-header-menu-toggle[aria-expanded=true]) #ast-mobile-header .menu-link {
  display: flex;
}

.bandeau-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding-block: 0.5rem;
  padding-inline: max(1rem, (100% - 1200px) / 2);
  background: #002569;
  color: #FBFAF6;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
@media (min-width: 1188px) {
  .bandeau-header {
    justify-content: space-between;
    flex-wrap: nowrap;
    padding-block: 0.6rem;
    font-size: 1rem;
  }
}
.bandeau-header__gauche {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1188px) {
  .bandeau-header__gauche {
    justify-content: flex-start;
  }
}
.bandeau-header__horaires {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1188px) {
  .bandeau-header__horaires {
    padding-right: 1.25rem;
    margin-right: 1.25rem;
    border-right: 1px solid rgba(251, 250, 246, 0.2);
  }
}
.bandeau-header__horaires img {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
.bandeau-header__tel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FBFAF6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.bandeau-header__tel img {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
.bandeau-header__tel strong {
  font-weight: 600;
}
.bandeau-header__droite {
  display: none;
}
@media (min-width: 1188px) {
  .bandeau-header__droite {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}
.bandeau-header__reseaux {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-right: 1.25rem;
  border-right: 1px solid rgba(251, 250, 246, 0.2);
}
.bandeau-header__reseaux a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  width: 1.5rem;
  height: 1.5rem;
  transition: opacity 0.2s ease;
}
.bandeau-header__reseaux a:hover {
  opacity: 0.8;
}
.bandeau-header__reseaux a img {
  width: 100%;
  height: 100%;
}
.bandeau-header__devis {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #FBFAF6;
  opacity: 1;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.bandeau-header__devis img {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
.bandeau-header__devis:hover {
  opacity: 0.8;
  color: #FBFAF6;
}

.contact-cta {
  background: #F0ECE3;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) {
  .contact-cta {
    padding-inline: 2.5rem;
  }
}
.contact-cta__boite {
  background: #002569;
  border-radius: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .contact-cta__boite {
    padding: 5rem 4rem;
  }
}
@media (min-width: 1188px) {
  .contact-cta__boite {
    padding: 5.5rem 6rem;
  }
}
.contact-cta__boite::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;
}
.contact-cta__boite::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;
}
.contact-cta .surtitre {
  justify-content: center;
}
.contact-cta .surtitre::before {
  height: 1.5px;
}
.contact-cta__titre {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 500;
  color: #FBFAF6;
  line-height: 1.12;
  margin: 0 auto 1.2rem;
  max-width: 36rem;
}
.contact-cta__texte {
  color: rgba(251, 250, 246, 0.75);
  margin: 0 auto 2rem;
  max-width: 30rem;
  line-height: 1.6;
}
.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.footer {
  background-color: #002569;
  color: #FBFAF6;
}
.footer a {
  color: #FBFAF6;
  text-decoration: none;
}
.footer a:hover {
  color: #B07A48;
}
.footer__corps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-block: 3rem 2rem;
  padding-inline: max(1.5rem, (100% - 1200px) / 2);
}
@media (min-width: 1024px) {
  .footer__corps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem 4rem;
    padding-block: 4rem 3rem;
  }
}
@media (min-width: 1188px) {
  .footer__corps {
    flex-wrap: nowrap;
    padding-block: 5rem 4rem;
  }
}
.footer__identite {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .footer__identite {
    width: 100%;
  }
}
@media (min-width: 1188px) {
  .footer__identite {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
.footer__logo img {
  height: 3rem;
  width: auto;
}
.footer__description {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.85;
}
.footer__reseaux {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.footer__reseau {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  transition: opacity 0.2s ease;
}
.footer__reseau:hover {
  opacity: 0.8;
}
.footer__reseau img {
  width: 100%;
  height: 100%;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .footer__nav {
    flex: 1;
  }
}
.footer__titre-nav {
  font-size: 1rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FBFAF6;
  margin-bottom: 0.25rem;
}
.footer__liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__liste li a {
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.footer__liste li a:hover {
  opacity: 1;
  color: #FBFAF6;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .footer__contact {
    flex: 1;
  }
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer__contact-item img {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.footer__contact-item address,
.footer__contact-item a,
.footer__contact-item span {
  font-size: 0.9rem;
  font-style: normal;
  opacity: 0.85;
  line-height: 1.6;
  margin: 0;
}
.footer__contact-item a:hover {
  opacity: 1;
}
.footer__bas {
  border-top: 1px solid rgba(251, 250, 246, 0.1);
  padding-block: 1.25rem;
  padding-inline: max(1.5rem, (100% - 1200px) / 2);
  text-align: center;
}
.footer__copyright {
  font-size: 0.75rem;
  opacity: 0.5;
  margin: 0;
}