/* ============================================================
   PAGE.CSS — Pages statiques institutionnelles
   ============================================================ */

/* ── HERO DE PAGE ─────────────────────────────────────────── */
.page-hero {
  background: var(--green-900);
  padding: var(--s12) 0 var(--s10);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -8%;
  top: -50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 60px solid rgba(201,168,76,.06);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 5%;
  top: -20%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.1);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2 }

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--s4);
}

.page-hero-eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: rgba(255,255,255,.3);
}

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  max-width: 740px;
}

.page-hero-sub {
  display: block;
  font-family: var(--sans);
  font-size: var(--t-md);
  font-weight: 300;
  color: var(--gold-400);
  margin-top: var(--s3);
  font-style: normal;
}

/* ── CORPS DES PAGES STATIQUES ────────────────────────────── */
.static-body {
  font-size: var(--t-base);
  color: var(--ink);
  line-height: 1.8;
}

.static-body h2 {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--ink);
  margin: var(--s10) 0 var(--s4);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--slate-200);
  position: relative;
}

.static-body h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-500);
}

.static-body h3 {
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--ink);
  margin: var(--s6) 0 var(--s3);
}

.static-body p    { margin-bottom: var(--s4) }
.static-body p:last-child { margin-bottom: 0 }
.static-body strong { color: var(--ink) }

.static-body a {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(45,90,61,.3);
}

.static-body a:hover {
  color: var(--gold-600);
  text-decoration-color: var(--gold-400);
}

.static-body ul {
  list-style: none;
  margin: var(--s2) 0 var(--s5);
}

.static-body ul li {
  display: flex;
  gap: var(--s3);
  margin-bottom: var(--s3);
  align-items: flex-start;
  font-size: var(--t-base);
}

.static-body ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
  margin-top: 9px;
}

/* Bloc highlight (fond sombre) */
.page-highlight {
  background: var(--ink);
  border-radius: var(--r);
  padding: var(--s8) var(--s10);
  margin: var(--s8) 0;
  position: relative;
  overflow: hidden;
}

.page-highlight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold-500);
}

.page-highlight h3 {
  font-family: var(--serif);
  font-size: var(--t-lg);
  color: var(--parchment);
  margin-bottom: var(--s4);
}

.page-highlight ul li { font-size: var(--t-sm); color: rgba(255,255,255,.65) }
.page-highlight ul li::before { background: var(--gold-500); margin-top: 8px }

/* Tableau de données */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s6) 0;
  font-size: var(--t-sm);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.data-table thead th {
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: var(--s3) var(--s5);
  text-align: left;
}

.data-table tbody tr:nth-child(even) { background: var(--slate-100) }
.data-table tbody tr:hover { background: var(--gold-50) }

.data-table td {
  padding: var(--s3) var(--s5);
  border-bottom: 1px solid var(--slate-200);
  color: var(--slate-700);
}

.data-table td strong { color: var(--ink) }
.data-table tbody tr:last-child td { border-bottom: none }

/* Image dans le contenu */
.static-body figure {
  margin: var(--s8) 0;
  text-align: center;
}

.static-body figure img {
  max-width: 100%;
  border-radius: var(--r);
  border: 1px solid var(--slate-200);
  box-shadow: var(--sh-md);
  margin: 0 auto;
}

.static-body figcaption {
  font-size: var(--t-xs);
  color: var(--slate-400);
  font-style: italic;
  margin-top: var(--s3);
}
