/* Pignonweb — pages légales
   Palette : bleu pignon #243B4A · ocre #D9A455 (CTA uniquement) · crème #F4ECE0 · anthracite #221F1B
   Typo : Fraunces (titres) + Inter (corps) */

:root {
  --bleu: #243B4A;
  --ocre: #D9A455;
  --ocre-hover: #C7923D;
  --creme: #F4ECE0;
  --anthracite: #221F1B;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--anthracite);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--bleu);
  text-decoration: underline;
  text-decoration-color: rgba(36, 59, 74, 0.35);
  text-underline-offset: 2px;
}

a:hover { text-decoration-color: currentColor; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--bleu);
  outline-offset: 2px;
}

/* En-tête */

.pw-header {
  border-bottom: 1px solid rgba(36, 59, 74, 0.12);
}

.pw-header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 24px;
}

.pw-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--bleu);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.pw-wordmark:hover { text-decoration: underline; text-decoration-color: rgba(36,59,74,0.35); }

/* Contenu */

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 32px;
}

.pw-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--anthracite);
  opacity: 0.55;
  margin: 0 0 10px;
}

h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  color: var(--bleu);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.pw-updated {
  font-size: 13px;
  color: var(--anthracite);
  opacity: 0.6;
  margin: 0 0 40px;
}

.pw-intro {
  font-size: 17px;
  margin: 0 0 40px;
}

article h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--bleu);
  border-left: 2px solid var(--bleu);
  padding-left: 14px;
  margin: 44px 0 14px;
}

article p { margin: 0 0 16px; }

article ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

article li { margin-bottom: 6px; }

article strong { font-weight: 500; color: var(--bleu); }

/* Pied de page */

.pw-footer {
  border-top: 1px solid rgba(36, 59, 74, 0.12);
  margin-top: 24px;
}

.pw-footer-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pw-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
}

.pw-footer-nav a {
  color: var(--anthracite);
  opacity: 0.75;
  text-decoration: none;
}

.pw-footer-nav a:hover { opacity: 1; text-decoration: underline; }

.pw-footer-nav a[aria-current="page"] {
  color: var(--bleu);
  opacity: 1;
  font-weight: 500;
}

.pw-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  background: var(--ocre);
  color: var(--bleu);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
}

.pw-cta:hover { background: var(--ocre-hover); text-decoration: none; }

@media (max-width: 600px) {
  main { padding: 40px 18px 24px; }
  .pw-header-inner, .pw-footer-inner { padding-left: 18px; padding-right: 18px; }
  article h2 { margin-top: 36px; }
}
