/* ============================================================
   CréaCath — Styles des pages simples (mentions légales,
   confidentialité, plan du site).
   Reprend la charte du site sans dupliquer tout son CSS.
   ============================================================ */
:root {
  --violet: #6D4FC4; --violet-dark: #4F3597; --violet-soft: #C9B6F0; --violet-bg: #F4EFFC;
  --jaune: #FFC83D; --jaune-soft: #FFE9A8; --corail: #FF8C7A; --corail-soft: #FFD4CC;
  --turquoise: #4ECDC4; --bg: #FFFEF9; --bg-cream: #FAF6EC;
  --text: #2A1F4A; --text-soft: #6A5E80; --border: rgba(42,31,74,0.08);
  --font-heading: 'Quicksand', sans-serif; --font-body: 'Poppins', sans-serif;
  --container: 820px; --gutter: clamp(20px, 6vw, 48px);
  --clay-shadow: 0 2px 0 rgba(0,0,0,0.04), 0 12px 32px rgba(42,31,74,0.10), inset 0 1px 0 rgba(255,255,255,0.85);
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0; font-family: var(--font-body); color: var(--text);
  background: var(--bg-cream); font-size: 16px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--violet-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* En-tête simple */
.page-head {
  background: rgba(255,254,249,0.92); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10; backdrop-filter: blur(12px);
}
.page-head-inner {
  max-width: 1100px; margin: 0 auto; padding: 12px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.page-head img { height: 62px; width: auto; }
.page-back {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px;
  background: var(--violet); color: #fff; padding: 11px 20px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(109,79,196,0.28); transition: transform .18s ease;
}
.page-back:hover { transform: translateY(-2px); text-decoration: none; color: #fff; }

/* Contenu */
.page-wrap { max-width: var(--container); margin: 0 auto; padding: 56px var(--gutter) 80px; }
.page-card {
  background: #fff; border: 1px solid var(--border); border-radius: 28px;
  padding: clamp(28px, 5vw, 52px); box-shadow: var(--clay-shadow);
}
.page-eyebrow {
  display: inline-block; background: var(--violet); color: #fff; padding: 7px 16px;
  border-radius: 999px; font-family: var(--font-heading); font-weight: 700;
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 18px;
}
h1 { font-family: var(--font-heading); font-weight: 700; font-size: clamp(30px, 5vw, 42px);
  line-height: 1.12; margin: 0 0 10px; letter-spacing: -0.8px; }
h2 { font-family: var(--font-heading); font-weight: 700; font-size: 21px; margin: 34px 0 10px; }
h3 { font-family: var(--font-heading); font-weight: 600; font-size: 17px; margin: 22px 0 6px; }
p, li { color: var(--text-soft); }
p { margin: 0 0 14px; }
ul { padding-left: 22px; margin: 0 0 14px; }
li { margin-bottom: 7px; }
strong { color: var(--text); }
.page-date { font-size: 14px; color: var(--text-soft); margin-bottom: 6px; }
hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* Plan du site */
.sitemap { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; margin-top: 8px; }
.sitemap h2 { margin-top: 0; }
.sitemap ul { list-style: none; padding: 0; }
.sitemap li { margin-bottom: 9px; }
.sitemap a { color: var(--text); font-weight: 500; }
.sitemap a:hover { color: var(--violet); }

/* Pied de page minimal */
.page-foot {
  text-align: center; padding: 28px var(--gutter) 40px; font-size: 14px; color: var(--text-soft);
}
.page-foot a { margin: 0 8px; }
