/* Sailigo — feuille de style commune aux cinq pages.
   Mêmes couleurs et mêmes polices que l'application. */

:root {
  --encre: #10263A;
  --encre-douce: #5C7183;
  --fond: #FAFAF7;
  --surface: #FFFFFF;
  --bordure: #DEE4E8;
  --ambre: #E8A838;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--fond);
  color: var(--encre);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Bricolage Grotesque', system-ui, sans-serif; line-height: 1.15; }
h1 { font-size: 2.4rem; margin: 0 0 .6rem; }
h2 { font-size: 1.4rem; margin: 2.4rem 0 .6rem; }
h3 { font-size: 1.1rem; margin: 1.6rem 0 .4rem; }

a { color: var(--encre); }

.bandeau {
  background: var(--encre);
  padding: 1rem 1.4rem;
}
.bandeau .dedans {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.bandeau img { width: 38px; height: 38px; border-radius: 10px; }
.bandeau span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--surface);
}
.bandeau a { color: var(--surface); text-decoration: none; display: flex; align-items: center; gap: .8rem; }

main { max-width: 880px; margin: 0 auto; padding: 2.4rem 1.4rem 4rem; }

.chapeau { font-size: 1.15rem; color: var(--encre-douce); margin-bottom: 2rem; }

.carte {
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  margin: 1rem 0;
}

.atouts { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin: 2rem 0; }
.atouts h3 { margin-top: 0; }
.atouts p { margin: 0; color: var(--encre-douce); font-size: .97rem; }

.bouton {
  display: inline-block;
  background: var(--encre);
  color: var(--surface);
  text-decoration: none;
  font-weight: 600;
  padding: .85rem 1.5rem;
  border-radius: 12px;
  margin: .4rem .6rem .4rem 0;
}
.bouton.clair { background: var(--surface); color: var(--encre); border: 1px solid var(--bordure); }

.etiquette {
  display: inline-block;
  background: var(--ambre);
  color: var(--encre);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 5px;
}

ol.etapes { padding-left: 1.2rem; }
ol.etapes li { margin-bottom: .6rem; }

footer {
  border-top: 1px solid var(--bordure);
  margin-top: 3rem;
  padding: 1.6rem 1.4rem 3rem;
  color: var(--encre-douce);
  font-size: .92rem;
}
footer .dedans { max-width: 880px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
footer a { color: var(--encre-douce); }
