:root{
  --amh-shell-bg:#eaf6fd;
  --amh-shell-line:#bed9ea;
  --amh-shell-blue:#2c7db3;
  --amh-shell-blue-dark:#153650;
  --amh-shell-navy:#061a2e;
  --amh-shell-muted:#648197;
}


/* =========================================================
   AMH — HEADER GLOBAL
   ========================================================= */

.site-header,
.site-header *,
.burger-menu,
.burger-menu *{
  box-sizing:border-box;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1200;

  background:rgba(238,248,254,.97);
  border-bottom:1px solid var(--amh-shell-line);

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  font-family:"Times New Roman",Times,serif;
  color:#183247;
}


/* =========================================================
   CONTENEUR HEADER — CENTRÉ
   ========================================================= */

.header-inner{
  width:calc(100% - 80px);
  max-width:1480px;
  min-height:80px;

  margin:0 auto;
  padding:0 20px;

  display:flex;
  align-items:center;
  gap:22px;
}


/* =========================================================
   LOGO / MARQUE
   ========================================================= */

.brand{
  display:flex;
  align-items:center;
  gap:10px;

  flex:0 0 auto;

  color:inherit;
  text-decoration:none;
}

.brand-logo{
  width:46px;
  height:46px;

  display:grid;
  place-items:center;

  border:2px solid var(--amh-shell-blue);
  border-radius:50%;

  color:var(--amh-shell-blue);

  font-size:15px;
  font-weight:700;
}

.brand-copy{
  display:flex;
  flex-direction:column;
}

.brand-copy strong{
  font-size:16px;
  letter-spacing:.01em;
}

.brand-copy small{
  margin-top:2px;

  color:var(--amh-shell-muted);

  font-size:9px;
}


/* =========================================================
   NAVIGATION DESKTOP
   ========================================================= */

.desktop-nav{
  display:flex;
  align-items:stretch;

  gap:17px;

  min-width:0;
  height:80px;

  flex:1;
}

.desktop-nav a{
  position:relative;

  display:flex;
  align-items:center;

  color:inherit;
  text-decoration:none;

  font-size:13px;
  white-space:nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.active{
  color:var(--amh-shell-blue);
}

.desktop-nav a.active:after{
  content:"";

  position:absolute;

  left:0;
  right:0;
  bottom:0;

  height:2px;

  background:var(--amh-shell-blue);
}


/* =========================================================
   RECHERCHE HEADER
   ========================================================= */

.header-search{
  width:260px;
  height:38px;

  display:flex;

  background:#fff;

  border:1px solid var(--amh-shell-line);
  border-radius:7px;

  overflow:hidden;
}

.header-search input{
  min-width:0;

  flex:1;

  padding:0 12px;

  border:0;
  outline:0;

  background:#fff;
  color:#183247;

  font:inherit;
  font-size:12px;
}

.header-search button{
  width:40px;

  border:0;

  background:#fff;
  color:var(--amh-shell-blue-dark);

  cursor:pointer;
}


/* =========================================================
   LANGUES HEADER
   ========================================================= */

.header-languages{
  display:flex;

  border:1px solid var(--amh-shell-line);
  border-radius:9px;

  overflow:hidden;
}

.header-languages a{
  padding:8px 10px;

  background:#fff;
  color:#183247;

  text-decoration:none;
  font-size:11px;
}

.header-languages a.active{
  background:var(--amh-shell-blue);
  color:#fff;
}


/* =========================================================
   BOUTON BURGER
   ========================================================= */

.nav-toggle{
  width:42px;
  height:42px;

  flex:0 0 42px;

  padding:0;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  gap:5px;

  border:0;

  background:transparent;

  cursor:pointer;
}

.nav-toggle span{
  width:22px;
  height:2px;

  display:block;

  background:var(--amh-shell-blue-dark);

  border-radius:2px;
}


/* =========================================================
   OVERLAY BURGER
   ========================================================= */

.burger-overlay{
  position:fixed;
  inset:0;

  background:rgba(6,19,34,.48);

  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:
    opacity .28s ease,
    visibility .28s ease;

  z-index:9998;
}

.burger-overlay.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}


/* =========================================================
   MENU BURGER GAUCHE
   ========================================================= */

.burger-menu{
  position:fixed;

  top:0;
  left:0;

  width:285px;
  max-width:88vw;

  height:100vh;
  height:100dvh;

  display:flex;
  flex-direction:column;

  background:var(--amh-shell-navy);
  color:#fff;

  transform:translateX(-105%);
  visibility:hidden;

  transition:
    transform .30s ease,
    visibility .30s ease;

  z-index:9999;

  overflow-y:auto;

  box-shadow:18px 0 45px rgba(0,0,0,.28);

  font-family:"Times New Roman",Times,serif;
}

.burger-menu.is-open{
  transform:translateX(0);
  visibility:visible;
}


/* =========================================================
   EN-TÊTE BURGER
   ========================================================= */

.burger-head{
  min-height:82px;

  padding:14px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  border-bottom:1px solid rgba(255,255,255,.09);
}

.burger-brand{
  display:flex;
  align-items:center;

  gap:11px;

  color:#fff;
  text-decoration:none;
}

.burger-logo{
  width:40px;
  height:40px;

  flex:0 0 40px;

  display:grid;
  place-items:center;

  border-radius:8px;

  background:#020a12;

  font-size:10px;
  font-weight:700;
}

.burger-brand-copy{
  display:flex;
  flex-direction:column;
}

.burger-brand-copy strong{
  font-size:17px;
}

.burger-brand-copy small{
  max-width:150px;

  margin-top:4px;

  color:rgba(255,255,255,.72);

  font-size:8px;
  line-height:1.2;
  letter-spacing:.09em;
}


/* =========================================================
   BOUTON FERMER
   ========================================================= */

.burger-close{
  width:34px;
  height:34px;

  padding:0;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(255,255,255,.20);
  border-radius:9px;

  background:rgba(255,255,255,.05);
  color:#fff;

  font-size:25px;
  line-height:1;

  cursor:pointer;
}

.burger-close:hover{
  background:rgba(255,255,255,.11);
}


/* =========================================================
   LIENS BURGER
   ========================================================= */

.burger-links{
  padding:10px 0;
}

.burger-links a{
  min-height:46px;

  padding:0 16px;

  display:grid;

  grid-template-columns:
    24px
    minmax(0,1fr)
    12px;

  align-items:center;

  gap:10px;

  border-left:3px solid transparent;

  color:rgba(255,255,255,.90);

  text-decoration:none;

  transition:
    background .18s ease,
    color .18s ease,
    border-color .18s ease;
}

.burger-links a:hover,
.burger-links a.active{
  background:rgba(255,255,255,.065);

  border-left-color:#60aee8;

  color:#fff;
}

.burger-links a > span{
  color:#7bb9e6;

  text-align:center;
}

.burger-links strong{
  overflow:hidden;

  font-size:12px;

  white-space:nowrap;
  text-overflow:ellipsis;
}

.burger-links b{
  color:rgba(255,255,255,.30);

  font-size:17px;
  font-weight:400;

  text-align:right;
}


/* =========================================================
   BAS DU MENU BURGER
   ========================================================= */

.burger-bottom{
  margin-top:auto;

  padding:14px 11px 18px;

  border-top:1px solid rgba(255,255,255,.08);
}


/* =========================================================
   RECHERCHE BURGER
   ========================================================= */

.burger-search{
  display:grid;

  grid-template-columns:
    minmax(0,1fr)
    40px;

  gap:7px;
}

.burger-search input{
  min-width:0;
  height:40px;

  padding:0 12px;

  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;

  background:rgba(255,255,255,.055);
  color:#fff;

  outline:0;

  font-family:"Times New Roman",Times,serif;
}

.burger-search input::placeholder{
  color:rgba(255,255,255,.58);
}

.burger-search input:focus{
  border-color:rgba(96,174,232,.65);
}

.burger-search button{
  height:40px;

  border:1px solid rgba(111,181,231,.32);
  border-radius:11px;

  background:rgba(111,181,231,.09);
  color:#fff;

  cursor:pointer;
}


/* =========================================================
   LANGUES BURGER
   ========================================================= */

.burger-languages{
  margin-top:11px;

  display:flex;
  justify-content:center;

  gap:8px;
}

.burger-languages a{
  min-width:39px;
  height:29px;

  padding:0 10px;

  display:grid;
  place-items:center;

  border:1px solid rgba(255,255,255,.13);
  border-radius:20px;

  color:rgba(255,255,255,.70);

  text-decoration:none;

  font-size:11px;
}

.burger-languages a.active{
  background:#3c8cc2;

  border-color:#3c8cc2;

  color:#fff;
}


/* =========================================================
   BLOQUER LE SCROLL QUAND BURGER OUVERT
   ========================================================= */

body.burger-open{
  overflow:hidden;
}


/* =========================================================
   RESPONSIVE — ÉCRANS INTERMÉDIAIRES
   ========================================================= */

@media(max-width:1350px){

  .desktop-nav{
    gap:11px;
  }

  .header-search{
    width:190px;
  }

}


/* =========================================================
   RESPONSIVE — TABLETTE
   ========================================================= */

@media(max-width:1200px){

  .header-inner{
    width:calc(100% - 32px);

    padding-left:8px;
    padding-right:8px;
  }

}


@media(max-width:1080px){

  .desktop-nav,
  .header-search,
  .header-languages{
    display:none!important;
  }

  .header-inner{
    min-height:70px;
  }

  .nav-toggle{
    margin-left:auto;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media(max-width:768px){

  .header-inner{
    width:100%;

    padding-left:16px;
    padding-right:16px;
  }

}


@media(max-width:720px){

  .brand-copy strong{
    font-size:13px;
  }

  .brand-copy small{
    font-size:8px;
  }

  .burger-menu{
    width:285px;
  }

}