/* Styles partagés pour les pages légales (CGV, mentions, confidentialité, cookies) */
:root {
  --bg: #F1E7D2; --bg-warm: #EBDFC4; --ink: #1A1F2E; --ink-soft: #3A3F4E;
  --terracotta: #B84A2F; --terracotta-dark: #8E3620; --ochre: #D4A55A;
  --line: rgba(26, 31, 46, 0.15); --paper: #FAF4E6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, sans-serif;
  background: var(--bg); color: var(--ink); font-size: 16px; line-height: 1.7;
}
.container { max-width: 800px; margin: 0 auto; padding: 0 32px; }

nav { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px);
  background: rgba(241, 231, 210, 0.85); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px; max-width: 1280px; margin: 0 auto; }
.logo { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px;
  letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit; }
.logo svg { display: block; border-radius: 8px; }
.back-link { font-size: 14px; color: var(--ink-soft); text-decoration: none;
  font-weight: 600; transition: color 0.2s; }
.back-link:hover { color: var(--terracotta); }

main { padding: 60px 0 100px; }
h1 { font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 16px; }
.last-update { font-size: 14px; color: var(--ink-soft); font-style: italic;
  margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }

h2 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 26px;
  margin-top: 48px; margin-bottom: 16px; color: var(--ink); }
h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 19px;
  margin-top: 28px; margin-bottom: 10px; color: var(--terracotta); }
p { margin-bottom: 18px; color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }
ul, ol { margin: 0 0 24px 24px; }
li { margin-bottom: 8px; color: var(--ink-soft); }
a { color: var(--terracotta); text-decoration: underline; }
a:hover { color: var(--terracotta-dark); }

table { width: 100%; border-collapse: collapse; margin: 16px 0 28px;
  font-size: 14px; background: var(--paper); border-radius: 8px; overflow: hidden; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--bg-warm); font-weight: 600; color: var(--ink); }
td { color: var(--ink-soft); }
tr:last-child td { border-bottom: none; }

footer { background: var(--ink); color: var(--paper); padding: 40px 0; text-align: center; font-size: 13px; }
footer a { color: var(--ochre); text-decoration: none; margin: 0 8px; }
footer a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .container { padding: 0 20px; }
  main { padding: 40px 0 60px; }
}
