/* =========================================================
   Feuille de style commune aux pages légales
   (mentions-legales.html, confidentialite.html, cgv.html)
   Reprend la palette et la typographie du site.
   ========================================================= */

:root{
  --white:#ffffff;
  --ink:#1b1b1a;
  --stone:#5b5f5a;
  --stone-light:#8c8f89;
  --hairline:#e5e2dc;
  --wine:#6d2a39;
  --wine-soft:#f4e9ea;
  --font:'Inter','Helvetica Neue','Segoe UI',Arial,sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  background:var(--white);
  color:var(--ink);
  font-family:var(--font);
  -webkit-font-smoothing:antialiased;
  line-height:1.7;
}

a{color:var(--wine);text-decoration:none;border-bottom:1px solid var(--wine-soft);}
a:hover{border-color:var(--wine);}

/* ---------- HEADER ---------- */
header{
  border-bottom:1px solid var(--hairline);
}

.header-inner{
  max-width:1100px;
  margin:0 auto;
  padding:22px 28px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

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

.brand img{width:28px;height:28px;flex-shrink:0;object-fit:contain;}

.brand-name{
  font-weight:700;
  font-size:19px;
  line-height:1;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--ink);
}

.back-link{
  font-size:12px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--stone);
  border:none;
}
.back-link:hover{color:var(--wine);}

/* ---------- CONTENU ---------- */
main{
  max-width:760px;
  margin:0 auto;
  padding:56px 28px 90px;
}

h1{
  font-size:clamp(26px,4vw,34px);
  font-weight:700;
  margin-bottom:8px;
}

.updated{
  font-size:13px;
  color:var(--stone-light);
  margin-bottom:40px;
}

h2{
  font-size:19px;
  font-weight:700;
  margin:40px 0 12px;
  padding-top:16px;
  border-top:1px solid var(--hairline);
}

h3{
  font-size:15px;
  font-weight:600;
  margin:22px 0 8px;
}

p{margin:0 0 14px;color:#3c3c3a;}

ul,ol{margin:0 0 14px 22px;color:#3c3c3a;}
li{margin-bottom:6px;}

strong{font-weight:600;color:var(--ink);}

table{
  width:100%;
  border-collapse:collapse;
  margin:0 0 18px;
  font-size:14px;
}
th,td{
  text-align:left;
  padding:10px 12px;
  border:1px solid var(--hairline);
  vertical-align:top;
}
th{background:var(--wine-soft);font-weight:600;}

/* Encadré « à compléter » — à retirer une fois les infos renseignées */
.todo{
  display:block;
  background:#fff8e6;
  border:1px solid #e8d48a;
  color:#6b5300;
  font-size:13px;
  padding:12px 14px;
  margin:14px 0;
  border-radius:4px;
}

.note{
  background:var(--wine-soft);
  border:1px solid var(--hairline);
  padding:16px 18px;
  font-size:14px;
  margin:24px 0;
}

/* ---------- FOOTER ---------- */
footer{
  border-top:1px solid var(--hairline);
  padding:28px;
  text-align:center;
  font-size:12px;
  color:var(--stone-light);
  letter-spacing:0.04em;
}

footer a{color:var(--stone);border:none;}
footer a:hover{color:var(--wine);}

.footer-links{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px 18px;
}

.footer-links a{border-bottom:1px solid var(--hairline);padding-bottom:1px;}
.footer-links a:hover{border-color:var(--wine);}

:focus-visible{outline:2px solid var(--wine);outline-offset:3px;}
