/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
.l-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  min-height: fit-content;
  pointer-events: none;
  color: var(--wp--preset--color--blanc);
}
.l-site-header__backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.l-site-header__backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-site-header__backdrop[hidden] {
  display: none !important;
}
.l-site-header__bar {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  pointer-events: auto;
  transition: min-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}
@media screen and (min-width: 991px) {
  .l-site-header.is-header-compact .l-site-header__bar {
    min-height: 3.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.l-site-header__brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  max-width: 13.75rem;
}
.l-site-header__logo {
  display: block;
  width: auto;
  height: 1.75rem;
  max-width: 100%;
  object-fit: contain;
}
.l-site-header__brand-text {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--wp--preset--color--blanc);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.l-site-header__center {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.l-site-header__nav-shell {
  position: relative;
  background-color: var(--wp--preset--color--blanc);
  border-radius: 0.5rem;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.05);
  padding: 0 0.625rem;
}
.l-site-header__nav-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-site-header__nav-item {
  position: static;
}
.l-site-header__nav-trigger, .l-site-header__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  padding: 0.625rem;
  border: 0;
  background: transparent;
  color: var(--wp--preset--color--black);
  text-decoration: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.l-site-header__nav-trigger:hover, .l-site-header__nav-trigger:focus-visible, .l-site-header__nav-link:hover, .l-site-header__nav-link:focus-visible {
  opacity: 1;
  outline: none;
}
.l-site-header__nav-item.is-open .l-site-header__nav-trigger, .l-site-header__nav-item.is-current .l-site-header__nav-link, .l-site-header__nav-link.is-active {
  opacity: 1;
}
.l-site-header__nav-dot {
  display: none;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: var(--wp--preset--color--bleu-saphyr);
  flex-shrink: 0;
}
.l-site-header__nav-item.is-open .l-site-header__nav-dot {
  display: block;
}
.l-site-header__mega {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 1.875rem;
  right: 1.875rem;
  width: auto;
  color: var(--wp--preset--color--blanc);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.75rem);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}
.l-site-header__mega.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (max-width: 1280px) {
  .l-site-header__mega {
    left: calc(1.875rem / 2);
    right: calc(1.875rem / 2);
  }
}
@media screen and (max-width: 991px) {
  .l-site-header__mega {
    left: 1.25rem;
    right: 1.25rem;
  }
}
.l-site-header__mega::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 0;
  right: 0;
  height: 1.25rem;
}
.l-site-header__mega[hidden] {
  display: none !important;
}
.l-site-header__mega-bg {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--wp--preset--color--bleu-saphyr);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.18);
  pointer-events: none;
}
.l-site-header__mega-bg-shape {
  position: absolute;
  top: 48%;
  color: var(--wp--preset--color--turquoise);
  line-height: 0;
  transform: translateY(-50%);
}
.l-site-header__mega-bg-shape svg {
  display: block;
  width: 21.25rem;
  height: auto;
  overflow: visible;
}
.l-site-header__mega-bg-shape--1 {
  right: -11.25rem;
}
.l-site-header__mega-bg-shape--2 {
  right: 7.5rem;
}
.l-site-header__mega-bg-shape--3 {
  right: 26.25rem;
}
.l-site-header__mega-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem;
}
.l-site-header__mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.l-site-header__mega-title {
  margin: 0;
  font-family: "HK Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--ivory);
}
.l-site-header__mega-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--wp--preset--color--blanc);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5rem;
  white-space: nowrap;
}
.l-site-header__mega-see-all:hover, .l-site-header__mega-see-all:focus-visible {
  opacity: 0.85;
  outline: none;
}
.l-site-header__mega-see-all-icon {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
}
.l-site-header__mega-see-all-icon svg {
  width: 100%;
  height: 100%;
}
.l-site-header__mega-l1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  width: 100%;
  padding: 0.5rem 0.3125rem 0.5rem 0;
  border-bottom: 0.5px solid rgba(244, 249, 233, 0.5);
  color: var(--wp--preset--color--blanc);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5rem;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.l-site-header__mega-l1:hover, .l-site-header__mega-l1:focus-visible {
  opacity: 1;
  outline: none;
}
.l-site-header__mega-l1-arrow {
  display: inline-flex;
  flex-shrink: 0;
  width: 0.625rem;
  height: auto;
  aspect-ratio: 6/4.63;
  color: var(--wp--preset--color--blanc);
  line-height: 0;
}
.l-site-header__mega-l1-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
.l-site-header__mega-l2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}
.l-site-header__mega-l2--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 1.25rem;
}
.l-site-header__mega-l2-link {
  color: var(--wp--preset--color--blanc);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.375rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.l-site-header__mega-l2-link:hover, .l-site-header__mega-l2-link:focus-visible {
  opacity: 1;
  outline: none;
}
.l-site-header__mega-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.25rem;
}
.l-site-header__mega-col {
  min-width: 0;
}
.l-site-header__mega-media-list {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
}
.l-site-header__mega-media-list .l-site-header__mega-media {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  border-radius: 1rem;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.15);
}
.l-site-header__mega-media-list .l-site-header__mega-media-img, .l-site-header__mega-media-list .l-site-header__mega-media-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-site-header__mega-media-buttons {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
}
.l-site-header__mega-media-buttons .l-site-header__mega-media {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 14.5rem;
  align-self: stretch;
  border-radius: 1rem;
  overflow: hidden;
  background-color: transparent;
}
.l-site-header__mega-media-buttons .l-site-header__mega-media-img, .l-site-header__mega-media-buttons .l-site-header__mega-media-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.l-site-header__mega-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
}
.l-site-header__mega-list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
  row-gap: 0;
  align-content: start;
}
.l-site-header__mega-list-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.l-site-header__mega-buttons {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0.5rem;
  min-width: 0;
  max-width: 100%;
}
.l-site-header__mega-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.625rem 0.75rem 0.625rem 1.25rem;
  border-radius: 500px;
  background-color: var(--wp--preset--color--bleu-saphyr);
  color: var(--wp--preset--color--blanc);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.l-site-header__mega-btn:hover, .l-site-header__mega-btn:focus-visible {
  background-color: var(--wp--preset--color--ivory);
  color: var(--wp--preset--color--bleu-saphyr);
  outline: none;
}
.l-site-header__mega-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  border: 1.5px solid transparent;
  border-radius: 50%;
  background-color: var(--wp--preset--color--blanc);
  color: var(--wp--preset--color--bleu-saphyr);
  line-height: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.l-site-header__mega-btn-icon svg {
  display: block;
  width: 0.625rem;
  height: auto;
  aspect-ratio: 6/4.63;
}
.l-site-header__mega-btn:hover .l-site-header__mega-btn-icon, .l-site-header__mega-btn:focus-visible .l-site-header__mega-btn-icon {
  background-color: transparent;
  border-color: currentColor;
  color: inherit;
}
.l-site-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.l-site-header__search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.l-site-header__cta {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--wp--preset--color--blanc);
  text-decoration: none;
  white-space: nowrap;
}
.l-site-header__cta:hover, .l-site-header__cta:focus-visible {
  opacity: 0.85;
  outline: none;
}
.l-site-header__cta--devis {
  padding: 0.3125rem 0.9375rem;
  border-radius: 500px;
  background-color: rgba(255, 255, 255, 0.2);
}
.l-site-header__cta--client {
  padding: 0.3125rem 0.625rem;
}
.l-site-header__search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wp--preset--color--blanc);
  cursor: pointer;
}
.l-site-header__search-toggle:hover, .l-site-header__search-toggle:focus-visible {
  opacity: 0.85;
  outline: none;
}
.l-site-header__search-toggle-icon {
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
}
.l-site-header__search-toggle-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.l-site-header__search-toggle-icon svg path {
  fill: currentColor;
}
.l-site-header__search {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 30;
  width: min(26.25rem, 100vw - 2.5rem);
}
.l-site-header__search[hidden] {
  display: none !important;
}
.l-site-header__search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  background-color: var(--wp--preset--color--blanc);
  border-radius: 500px;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.05);
}
.l-site-header__search-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  cursor: text;
}
.l-site-header__search-icon {
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  color: var(--wp--preset--color--black);
  opacity: 0.35;
  flex-shrink: 0;
}
.l-site-header__search-icon svg {
  width: 100%;
  height: 100%;
}
.l-site-header__search-icon svg path {
  fill: currentColor;
}
.l-site-header__search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--wp--preset--color--black);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5rem;
  letter-spacing: -0.02em;
  outline: none;
}
.l-site-header__search-input::placeholder {
  color: var(--wp--preset--color--black);
  opacity: 0.15;
}
.l-site-header__search-submit {
  flex: 0 0 auto;
  padding: 0.375rem 1rem;
  border: 0;
  border-radius: 500px;
  background-color: var(--wp--preset--color--bleu-saphyr);
  color: var(--wp--preset--color--blanc);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5rem;
  cursor: pointer;
}
.l-site-header__search-submit:hover, .l-site-header__search-submit:focus-visible {
  opacity: 0.9;
  outline: none;
}
.l-site-header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--wp--preset--color--blanc);
  cursor: pointer;
  pointer-events: auto;
}
.l-site-header__burger:hover, .l-site-header__burger:focus-visible {
  opacity: 0.85;
  outline: none;
}
.l-site-header__burger-icon {
  display: none;
  line-height: 0;
}
.l-site-header__burger-icon svg {
  display: block;
  width: 1.25rem;
  height: auto;
}
.l-site-header__burger-icon--close svg {
  width: 0.875rem;
  height: 0.875rem;
}
.l-site-header__burger-icon--close svg path {
  stroke: currentColor;
}
.l-site-header__burger-icon--menu {
  display: inline-flex;
}
.l-site-header.is-mobile-open .l-site-header__burger-icon--menu {
  display: none;
}
.l-site-header.is-mobile-open .l-site-header__burger-icon--close {
  display: inline-flex;
}
.l-site-header__mobile {
  position: fixed;
  z-index: 25;
  display: flex;
  flex-direction: column;
  color: var(--wp--preset--color--blanc);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.75rem);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}
.l-site-header__mobile.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.l-site-header__mobile[hidden] {
  display: none !important;
}
.l-site-header__mobile-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: var(--wp--preset--color--bleu-saphyr);
  pointer-events: none;
  color: var(--wp--preset--color--turquoise);
}
.l-site-header__mobile-bg-shape {
  position: absolute;
  top: 42%;
  line-height: 0;
  transform: translateY(-50%);
}
.l-site-header__mobile-bg-shape svg {
  display: block;
  width: 21.25rem;
  height: auto;
  overflow: visible;
}
.l-site-header__mobile-bg-shape--1 {
  right: -11.25rem;
}
.l-site-header__mobile-bg-shape--2 {
  right: 7.5rem;
}
.l-site-header__mobile-bg-shape--3 {
  right: 26.25rem;
}
.l-site-header__mobile-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 1.25rem 2rem;
}
.l-site-header__mobile-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 auto;
}
.l-site-header__mobile-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
}
.l-site-header__mobile-actions > .c-btn {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  box-sizing: border-box;
}
.l-site-header__mobile-cta--client {
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.l-site-header__mobile-cta--client:hover, .l-site-header__mobile-cta--client:focus-visible {
  border-color: var(--wp--preset--color--blanc);
}
.l-site-header__mobile-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  background-color: var(--wp--preset--color--blanc);
  border-radius: 500px;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.05);
}
.l-site-header__mobile-search-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  cursor: text;
}
.l-site-header__mobile-search-icon {
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  color: var(--wp--preset--color--black);
  opacity: 0.35;
  flex-shrink: 0;
}
.l-site-header__mobile-search-icon svg {
  width: 100%;
  height: 100%;
}
.l-site-header__mobile-search-icon svg path {
  fill: currentColor;
}
.l-site-header__mobile-search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--wp--preset--color--black);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5rem;
  letter-spacing: -0.02em;
  outline: none;
}
.l-site-header__mobile-search-input::placeholder {
  color: var(--wp--preset--color--black);
  opacity: 0.15;
}
.l-site-header__mobile-search-submit {
  flex: 0 0 auto;
  padding: 0.375rem 1rem;
  border: 0;
  border-radius: 500px;
  background-color: var(--wp--preset--color--bleu-saphyr);
  color: var(--wp--preset--color--blanc);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5rem;
  cursor: pointer;
}
.l-site-header__mobile-search-submit:hover, .l-site-header__mobile-search-submit:focus-visible {
  opacity: 0.9;
  outline: none;
}
.l-site-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}
.l-site-header__mobile-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.l-site-header__mobile-section.is-open {
  gap: 0.75rem;
  padding-bottom: 0.75rem;
}
.l-site-header__mobile-panel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.l-site-header__mobile-panel[hidden] {
  display: none !important;
}
.l-site-header__mobile-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 1rem;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.15);
  margin-bottom: 0.25rem;
}
.l-site-header__mobile-media-img, .l-site-header__mobile-media-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-site-header__mobile-col-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.5rem 0.3125rem 0.5rem 0;
  border: 0;
  border-bottom: 0.5px solid rgba(244, 249, 233, 0.5);
  background: transparent;
  color: var(--wp--preset--color--blanc);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  transition: opacity 0.2s ease;
}
.l-site-header__mobile-col-title:hover, .l-site-header__mobile-col-title:focus-visible {
  opacity: 0.85;
  outline: none;
}
.l-site-header__mobile-col-title:hover .l-site-header__mobile-col-title-label, .l-site-header__mobile-col-title:focus-visible .l-site-header__mobile-col-title-label {
  text-decoration: underline;
  text-decoration-color: var(--wp--preset--color--blanc);
}
.l-site-header__mobile-section.is-open .l-site-header__mobile-col-title .l-site-header__mobile-col-title-label {
  opacity: 1;
}
.l-site-header__mobile-section.is-open .l-site-header__mobile-col-title .l-site-header__mobile-col-title-chevron {
  opacity: 1;
  transform: rotate(180deg);
}
.l-site-header__mobile-col-title-label {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5rem;
  opacity: 0.7;
  text-underline-offset: 0.125rem;
}
.l-site-header__mobile-col-title-chevron {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.625rem;
  height: 0.625rem;
  line-height: 0;
  color: var(--wp--preset--color--blanc);
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.l-site-header__mobile-col-title-chevron svg {
  display: block;
  width: 100%;
  height: auto;
}
.l-site-header__mobile-col-title-chevron svg path {
  fill: currentColor;
}
.l-site-header__mobile-col-title-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.625rem;
  height: 0.5rem;
  line-height: 0;
  color: var(--wp--preset--color--blanc);
  opacity: 0.7;
}
.l-site-header__mobile-col-title-arrow svg {
  display: block;
  width: 100%;
  height: auto;
}
.l-site-header__mobile-parent-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0 0.3125rem 0.25rem 0;
  color: var(--wp--preset--color--blanc);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.l-site-header__mobile-parent-link:hover, .l-site-header__mobile-parent-link:focus-visible {
  opacity: 0.85;
  outline: none;
}
.l-site-header__mobile-parent-link:hover .l-site-header__mobile-parent-link-label, .l-site-header__mobile-parent-link:focus-visible .l-site-header__mobile-parent-link-label {
  text-decoration: underline;
  text-decoration-color: var(--wp--preset--color--blanc);
}
.l-site-header__mobile-parent-link-label {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.375rem;
  opacity: 0.85;
  text-underline-offset: 0.125rem;
}
.l-site-header__mobile-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.l-site-header__mobile-list-item--sub {
  padding-left: 0.75rem;
}
.l-site-header__mobile-link {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.375rem;
  color: var(--wp--preset--color--blanc);
  text-decoration: none;
  text-underline-offset: 0.125rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.l-site-header__mobile-link:hover, .l-site-header__mobile-link:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: var(--wp--preset--color--blanc);
  outline: none;
}
.l-site-header__mobile-link--sub {
  font-weight: 400;
  opacity: 0.55;
}
.l-site-header__mobile-link--see-all {
  font-weight: 600;
  margin-top: 0.25rem;
}
@media (max-width: 1100px) {
  .l-site-header__mega-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .l-site-header__mega-list {
    flex: 1 1 50%;
  }
  .l-site-header__mega-media-list {
    flex-direction: column;
  }
  .l-site-header__mega-media-list .l-site-header__mega-media {
    min-height: 12.5rem;
    aspect-ratio: 16/10;
    flex: 0 0 auto;
    width: 100%;
  }
  .l-site-header__mega-media-buttons {
    flex-direction: column;
  }
  .l-site-header__mega-media-buttons .l-site-header__mega-media {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-height: 14.5rem;
    height: 14.5rem;
  }
  .l-site-header__mega-buttons {
    flex: 0 0 auto;
    align-items: stretch;
    width: 100%;
  }
  .l-site-header__mega-btn {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .l-site-header__center {
    display: none;
  }
  .l-site-header__cta, .l-site-header__search-wrap {
    display: none;
  }
  .l-site-header__burger {
    display: inline-flex;
  }
  .l-site-header__actions {
    gap: 0;
  }
  .l-site-header.is-mobile-open {
    pointer-events: auto;
  }
  .l-site-header.is-mobile-open .l-site-header__bar {
    position: relative;
    z-index: 50;
    background-color: var(--wp--preset--color--bleu-saphyr);
  }
  .l-site-header.is-mobile-open .l-site-header__burger {
    position: relative;
    z-index: 51;
  }
  .l-site-header__mobile {
    top: 5rem;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 5rem);
    z-index: 25;
  }
  .l-site-header__mobile-inner {
    padding-top: 1.5rem;
  }
  .l-site-header__mobile-bg {
    border-radius: 0;
  }
  .l-site-header__mobile-bg-shape--3 {
    display: none;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .l-site-header.is-mobile-open .l-site-header__bar {
    background-color: transparent;
  }
  .l-site-header__mobile {
    top: 4.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    left: auto;
    width: min(26.25rem, 100vw - 3rem);
    height: auto;
    max-height: calc(100dvh - 6rem);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.18);
  }
  .l-site-header__mobile-inner {
    padding-top: 1.5rem;
  }
  .l-site-header__mobile-bg {
    border-radius: 1rem;
  }
  .l-site-header__mobile-bg-shape--3 {
    display: block;
  }
}

body.is-header-mega-open,
body.is-header-mobile-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .l-site-header__bar,
  .l-site-header__backdrop,
  .l-site-header__mega,
  .l-site-header__mobile {
    transition: none;
  }
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}