:root{
  --ink:#0F2238;
  --ink-soft:#3D5166;
  --muted:#7C8A99;
  --paper:#FFFFFF;
  --line:#E1E6EB;
  --line-strong:#C7D0DA;
  --navy:#0F2238;
  --navy-2:#16334F;
  --gold:#AE8A3E;
  --gold-light:#D7B96A;
  --brand-blue:#005F80;
  --brand-blue-hover:#04485F;
}

*,*::before,*::after{box-sizing:border-box;}
html,body{max-width:100%;overflow-x:hidden;}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  padding-top:var(--veb-sticky-offset,116px);
}
.wrap{
  width:100%;
  max-width:1180px;
  margin-left:auto;
  margin-right:auto;
  padding-left:24px;
  padding-right:24px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:Inter,Arial,sans-serif;
  font-weight:700;
  font-size:15px;
  line-height:1.65;
  padding:14px 26px;
  border-radius:8px;
  text-decoration:none;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease,color .18s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn-brand{
  background:var(--brand-blue);
  color:#fff;
  font-family:"Public Sans",Inter,Arial,sans-serif;
  font-weight:600;
  border-radius:4px;
  box-shadow:none;
}
.btn-brand:hover{background:var(--brand-blue-hover);color:#fff;}

.veb-common-top-bar{
  background:var(--navy);
  color:#CBD6E0;
  font-size:12.5px;
  line-height:1.4;
}
.veb-common-top-bar .wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:36px;
}
.veb-common-top-bar a{
  color:#E7DCC0;
  text-decoration:none;
  font-weight:600;
}
.top-bar-links{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.veb-sticky-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  width:100%;
  background:#fff;
  box-shadow:0 10px 24px -26px rgba(15,34,56,.45);
}
.veb-common-site-header{
  position:relative;
  top:auto;
  z-index:1;
  min-height:80px;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:80px;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--ink);
  font-family:"Libre Franklin",Arial,sans-serif;
  font-size:17px;
  font-weight:800;
  letter-spacing:-.005em;
  white-space:nowrap;
  text-decoration:none;
}
.logo .mark{
  flex:none;
  width:34px;
  height:34px;
  border-radius:7px;
  background:var(--navy);
  border:1px solid var(--gold);
  color:var(--gold-light);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:800;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
}
.main-nav a{
  color:var(--ink-soft);
  text-decoration:none;
  font-size:14.5px;
  font-weight:600;
  padding:6px 0;
  border-bottom:2px solid transparent;
  transition:color .15s ease,border-color .15s ease;
  white-space:nowrap;
}
.veb-common-site-header .main-nav a:first-child{
  color:#E87500;
  font-weight:800;
  border-bottom-color:#E87500;
}
.veb-common-site-header .main-nav a:first-child:hover{
  color:#C85F00;
  border-bottom-color:#C85F00;
}
.main-nav a:hover,
.main-nav a.active{
  color:var(--ink);
  border-bottom-color:var(--gold);
}
.nav-cta{
  display:flex;
  align-items:center;
  gap:16px;
  flex:none;
}
.mobile-menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  padding:0;
  border:1px solid var(--line-strong);
  border-radius:6px;
  background:#fff;
  color:var(--ink);
  font-family:Inter,Arial,sans-serif;
  font-size:13px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
}
.mobile-menu-bars{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:4px;
  width:18px;
  height:18px;
}
.mobile-menu-bars span{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transition:transform .18s ease,opacity .18s ease;
}
.mobile-menu-label{
  display:none!important;
}
.veb-common-site-header.is-menu-open .mobile-menu-bars span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}
.veb-common-site-header.is-menu-open .mobile-menu-bars span:nth-child(2){
  opacity:0;
}
.veb-common-site-header.is-menu-open .mobile-menu-bars span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

.veb-common-footer{
  background:var(--navy);
  color:#9FB0C0;
  padding:44px 0;
}
.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  font-size:13px;
  line-height:1.5;
}
.footer-row a{
  color:#D6DEE6;
  text-decoration:none;
}
.footer-nav{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

@media (max-width:980px){
  .veb-common-site-header{
    min-height:0;
  }
  .veb-common-top-bar .wrap,
  .veb-common-site-header .wrap{
    padding-left:24px!important;
    padding-right:24px!important;
  }
  .veb-common-site-header .nav-row{
    min-height:0;
    padding-top:12px;
    padding-bottom:12px;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    gap:12px;
  }
  .veb-common-site-header .logo{
    flex:1 1 auto!important;
    min-width:0;
    font-size:15px;
    white-space:normal!important;
  }
  .veb-common-site-header .mobile-menu-toggle{
    display:inline-flex!important;
    flex:0 0 42px;
    margin-left:auto;
  }
  .veb-common-site-header .main-nav,
  .veb-common-site-header .nav-cta{
    display:none!important;
    flex:1 1 100%;
    width:100%;
  }
  .veb-common-site-header.is-menu-open .main-nav{
    display:flex!important;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding-top:10px;
    border-top:1px solid var(--line);
  }
  .veb-common-site-header.is-menu-open .main-nav a{
    display:flex;
    align-items:center;
    min-height:44px;
    padding:12px 2px;
    border-bottom:1px solid #EDF1F5;
    white-space:normal;
  }
  .veb-common-site-header.is-menu-open .main-nav a:first-child{
    color:#E87500;
    font-weight:800;
    border-bottom-color:#E87500;
  }
  .veb-common-site-header.is-menu-open .nav-cta{
    display:flex!important;
    padding-top:12px;
    padding-bottom:2px;
  }
  .veb-common-site-header.is-menu-open .nav-cta .btn{
    width:100%;
  }
}
@media (max-width:640px){
  .veb-common-top-bar .wrap,
  .veb-common-site-header .wrap{
    padding-left:22px!important;
    padding-right:22px!important;
  }
  .veb-common-top-bar .wrap{
    min-height:0;
    padding-top:10px;
    padding-bottom:10px;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
  .veb-common-site-header .nav-row{
    padding-top:12px;
    padding-bottom:12px;
    row-gap:12px;
  }
  .veb-common-site-header .logo{
    flex:1 1 0!important;
    max-width:calc(100% - 58px);
    font-size:14px;
    white-space:normal!important;
  }
  .veb-common-site-header .nav-cta{
    flex:1 1 100%;
    width:100%;
  }
  .veb-common-site-header .nav-cta .btn{
    width:100%;
  }
}

.veb-icon{
  display:inline-block;
  width:1em;
  height:1em;
  flex:none;
  vertical-align:-.14em;
}
.veb-icon path{
  vector-effect:non-scaling-stroke;
}
.top-bar-links a,
.nav-cta .btn,
.cta-actions .btn,
.contact-card .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.logo .mark{
  font-size:0;
}
.logo .mark::before,
.top-bar-links a[href="/contact/"]::after,
.nav-cta .btn-brand::before,
.cta-actions a[href^="tel"]::before,
.contact-card a[href^="tel"]::before,
.ii-icon::before{
  content:"";
  display:block;
  width:18px;
  height:18px;
  background:currentColor;
  -webkit-mask:var(--veb-mask) center / contain no-repeat;
  mask:var(--veb-mask) center / contain no-repeat;
}
.logo .mark::before{
  width:18px;
  height:18px;
  --veb-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 21V5.5C5 3.6 6.6 2 8.5 2h7C17.4 2 19 3.6 19 5.5V21h-2v-3h-3v3h-4v-3H7v3H5Zm3-13h2V6H8v2Zm6 0h2V6h-2v2Zm-6 4h2v-2H8v2Zm6 0h2v-2h-2v2Zm-6 4h2v-2H8v2Zm6 0h2v-2h-2v2Z'/%3E%3C/svg%3E");
}
.top-bar-links a[href="/contact/"]::after{
  width:14px;
  height:14px;
  --veb-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 5l7 7-7 7-1.4-1.4 4.6-4.6H3v-2h14.2l-4.6-4.6L14 5Z'/%3E%3C/svg%3E");
}
.top-bar-links a[href="/contact/"]{
  font-size:0!important;
}
.top-bar-links a[href="/contact/"]::before{
  content:"Nous contacter";
  display:inline;
  font-size:12.5px;
}
.nav-cta .btn-brand::before{
  --veb-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 3h2v9.2l3.6-3.6L18 10l-6 6-6-6 1.4-1.4 3.6 3.6V3ZM5 19h14v2H5v-2Z'/%3E%3C/svg%3E");
}
.cta-actions a[href^="tel"]::before,
.contact-card a[href^="tel"]::before,
.top-bar-links a[href^="tel"]:not(:has(.veb-icon))::before,
.info-list .info-item:nth-child(1) .ii-icon::before{
  --veb-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.8 0 1.4.6 1.4 1.4v3.5c0 .8-.6 1.4-1.4 1.4C10.3 22.3 1.7 13.7 1.7 3.4 1.7 2.6 2.3 2 3.1 2h3.5C7.4 2 8 2.6 8 3.4c0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2l-1.7 2.2Z'/%3E%3C/svg%3E");
}
.contact-card a[href^="tel"]{
  display:inline-flex!important;
  align-items:center;
  gap:7px;
  white-space:nowrap;
  vertical-align:middle;
}
.contact-card a[href^="tel"]::before{
  display:inline-block;
  flex:0 0 auto;
}
.info-list .info-item:nth-child(2) .ii-icon::before{
  --veb-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2Zm8 8 8-5V7l-8 5-8-5v1l8 5Z'/%3E%3C/svg%3E");
}
.info-list .info-item:nth-child(3) .ii-icon::before{
  --veb-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
}
.ii-icon{
  font-size:0!important;
}
.tc-note{
  display:inline-flex!important;
  align-items:center;
  gap:7px;
}
.tc-note::before{
  content:"";
  display:block;
  width:15px;
  height:15px;
  flex:none;
  background:currentColor;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a8 8 0 0 0-8 8v5a3 3 0 0 0 3 3h2v-8H6a6 6 0 0 1 12 0h-3v8h2a3 3 0 0 0 3-3v-5a8 8 0 0 0-8-8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a8 8 0 0 0-8 8v5a3 3 0 0 0 3 3h2v-8H6a6 6 0 0 1 12 0h-3v8h2a3 3 0 0 0 3-3v-5a8 8 0 0 0-8-8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
