/* propagANews — Pages légales / policy (charte « Claude » : crème clair, accent BLEU) */

/* Polices hébergées en local (RGPD : aucun appel Google Fonts) */
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('/_font/playfair-400.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap; src: url('/_font/playfair-700.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 900; font-display: swap; src: url('/_font/playfair-900.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('/_font/dmsans-300.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('/_font/dmsans-400.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('/_font/dmsans-500.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('/_font/dmsans-700.woff2') format('woff2'); }

:root {
  --bg: #faf9f5;          /* crème principal */
  --bg-2: #f0eee6;        /* beige doux (panneaux) */
  --bg-3: #e8e5da;        /* beige soutenu */
  --surface: #ffffff;     /* cartes blanches */
  --fg: #1a1a18;          /* near-black chaud */
  --fg-mute: #5f5e57;     /* secondaire (AA sur crème) */
  --accent: #2f62a8;      /* bleu ardoise */
  --accent-strong: #244e86;
  --accent-soft: #e9eff7;
  --accent-line: #c3d2e8;
  --green: #3f7d56;
  --border: #e4e1d6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-strong); text-decoration: underline; }
code {
  font-family: 'JetBrains Mono', Menlo, monospace;
  font-size: 13px;
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--fg);
}

/* HERO — panneau beige clair (plus de bandeau noir) */
header {
  background-color: var(--bg-2);
  color: var(--fg);
  padding: 100px 60px 80px;
  position: relative;
  overflow: hidden;
  min-height: 48vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
header::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,98,168,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.header-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.header-tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-tag::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--accent);
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 900px;
  letter-spacing: -.02em;
}
h1 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
  display: block;
}
.header-intro {
  color: var(--fg-mute);
  font-size: 18px;
  max-width: 720px;
  line-height: 1.6;
}

/* SECTIONS */
section {
  padding: 70px 60px;
  border-bottom: 1px solid var(--border);
}
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent);
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 820px;
  letter-spacing: -.01em;
}
h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  line-height: 1.3;
}

p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-mute);
  max-width: 820px;
  margin-bottom: 14px;
}
ul, ol {
  margin: 12px 0 18px 22px;
  max-width: 820px;
}
li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-mute);
  margin-bottom: 6px;
}
strong { color: var(--fg); font-weight: 600; }

/* INFO BOX (responsable du traitement) */
.info-box {
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  margin: 24px 0;
  max-width: 700px;
  border-radius: 0 8px 8px 0;
}
.info-box p { margin: 0; }

/* TABLEAUX */
table.t {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  font-size: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
table.t th, table.t td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.t th {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
table.t tr:nth-child(even) td { background: var(--bg-2); }

/* GRID DROITS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 30px 0;
}
.droit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.droit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width .4s;
}
.droit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(47,98,168,.14);
  border-color: var(--accent-line);
}
.droit-card:hover::before { width: 100%; }
.droit-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
}
.droit-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-mute);
  margin: 0;
}

/* CTA */
.cta-section {
  background: var(--bg-2);
  text-align: center;
  border-bottom: none;
  padding: 90px 60px;
}
.cta-section h2 {
  margin: 0 auto 16px;
  max-width: 700px;
}
.cta-section p {
  margin: 0 auto 32px;
  max-width: 500px;
  font-size: 16px;
  color: var(--fg-mute);
}
.cta-btn {
  display: inline-block;
  padding: 18px 40px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: all .3s;
}
.cta-btn:hover {
  background: var(--accent-strong);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(47,98,168,.5);
  text-decoration: none;
}

/* FOOTER — clair, séparateur bleu discret */
footer {
  background: var(--bg-2);
  color: var(--fg);
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--accent-line);
}
.footer-titre {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
}
.footer-titre span { color: var(--accent); }
.footer-details p {
  font-size: 12px;
  color: var(--fg-mute);
  margin: 0;
  text-align: right;
}
.footer-details a { color: var(--accent); }
.footer-details a:hover { color: var(--accent-strong); }

/* RESPONSIVE */
@media (max-width: 900px) {
  header, section, footer, .cta-section { padding-left: 32px; padding-right: 32px; }
  header { padding-top: 64px; padding-bottom: 48px; min-height: auto; }
  section { padding-top: 50px; padding-bottom: 50px; }
  .cta-section { padding-top: 60px; padding-bottom: 60px; }
  .grid-2 { grid-template-columns: 1fr; }
  table.t { font-size: 13px; }
  table.t th, table.t td { padding: 9px 11px; }
}
@media (max-width: 640px) {
  header, section, footer, .cta-section { padding-left: 16px; padding-right: 16px; }
  footer { flex-direction: column; align-items: flex-start; }
  .footer-details p { text-align: left; }
}
