/* Reset minimal + base typo */
*,*::before,*::after{box-sizing:border-box;}
*{margin:0;padding:0;}
[hidden]{display:none !important;}
figure{margin:0;}
html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-h-mobile) + 8px);
  -webkit-text-size-adjust:100%;
}
@media (min-width:768px){
  html{scroll-padding-top:calc(var(--header-h) + 8px);}
}
body{
  font-family:var(--ff-body);
  font-size:var(--fs-body);
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
  overflow-x:clip;
  max-width:100vw;
  min-height:100dvh;
}
img,picture,video{display:block;max-width:100%;height:auto;}
iframe{max-width:100%;}
a{color:inherit;text-decoration:none;}
a:hover{color:var(--accent);}
button{font-family:inherit;cursor:pointer;border:0;background:transparent;color:inherit;}
ul,ol{list-style:none;}
h1,h2,h3,h4{
  font-family:var(--ff-display);
  font-weight:500;
  line-height:1.15;
  color:var(--text);
  letter-spacing:-0.01em;
}
h1{font-size:var(--fs-h1);}
h2{font-size:var(--fs-h2);}
h3{font-size:var(--fs-h3);}
p{max-width:65ch;}
strong{font-weight:600;color:var(--text);}
em{font-style:italic;}

/* Micro-details propres */
::selection{background:var(--accent);color:#fff;}
::-webkit-scrollbar{width:8px;height:8px;}
::-webkit-scrollbar-track{background:var(--bg-alt);}
::-webkit-scrollbar-thumb{background:var(--accent);border-radius:4px;}
:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
  border-radius:3px;
}
::placeholder{color:var(--text-mute);opacity:.7;}

/* Container utilitaire */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}
@media (min-width:768px){
  .container{padding:0 32px;}
}

/* Section : padding mobile-first */
section{padding:48px 0;}
@media (min-width:768px){
  section{padding:80px 0;}
}

/* Eyebrow (kicker) */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--ff-ui);
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:0.18em;
  color:var(--accent);
  font-weight:600;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:28px;
  height:1px;
  background:var(--accent);
}

/* Lien soulignement accent */
.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--accent);
  font-weight:600;
  border-bottom:1px solid var(--accent);
  padding-bottom:2px;
  transition:gap .2s var(--ease);
}
.link-arrow:hover{gap:14px;color:var(--accent);}
