/* ── Les Voix de l'Héritage — Grimoire Céleste ─────────────────────────── */
/* Archetype AN — fond violet-indigo profond, Cinzel + Lato, or + améthyste */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@300;400;700&display=swap');

/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
  --lh-nuit:       #12102A;
  --lh-encre:      #0A0818;
  --lh-surface:    #1D1A38;
  --lh-voile:      #252245;
  --lh-or:         #C8A24A;
  --lh-or-deep:    #9E7B2E;
  --lh-or-tint:    #F2EAD3;
  --lh-améthyste:  #8B72A8;
  --lh-améthyste-deep: #6A5288;
  --lh-texte:      #E8DEC8;
  --lh-muted:      #9489A2;
  --lh-ligne:      #2A2750;
  --lh-hh:         72px;
  --lh-r:          8px;
}

/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--lh-nuit);
  color: var(--lh-texte);
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--lh-or); text-decoration: none; transition: color .2s; }
a:hover { color: var(--lh-or-tint); }

img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

.lh-cadre {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Bullets entry-content ─────────────────────────────────────────────── */
.entry-content ul { list-style: none; padding-left: 0; margin-bottom: 1.4em; }
.entry-content ol { list-style: decimal; padding-left: 1.5em; margin-bottom: 1.4em; }
.entry-content ul li { position: relative; padding-left: 1.5em; margin-bottom: .5em; }
.entry-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: 8px;
  height: 8px;
  background: var(--lh-or);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}
.entry-content ol li { margin-bottom: .5em; }

/* ── Boutons ───────────────────────────────────────────────────────────── */
.lh-bouton {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--lh-or);
  color: var(--lh-encre);
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--lh-r);
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
}
.lh-bouton:hover { background: var(--lh-or-tint); color: var(--lh-encre); transform: translateY(-1px); }
.lh-bouton--ligne {
  background: transparent;
  border: 1.5px solid var(--lh-or);
  color: var(--lh-or);
}
.lh-bouton--ligne:hover { background: var(--lh-or); color: var(--lh-encre); }
.lh-bouton--clair {
  background: var(--lh-or-tint);
  color: var(--lh-encre);
}

/* ── Header ────────────────────────────────────────────────────────────── */
.lh-ciel {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--lh-hh);
  background: var(--lh-encre);
  border-bottom: 1px solid var(--lh-ligne);
  display: flex;
  align-items: center;
}
.lh-ciel .lh-cadre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1220px;
}

.lh-logo { display: flex; align-items: center; text-decoration: none; }
.lh-logo svg { height: 38px; width: auto; }

.lh-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.lh-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.lh-nav ul a {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lh-muted);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.lh-nav ul a:hover { color: var(--lh-or-tint); background: rgba(200,162,74,.1); }
.lh-nav .menu-contact a {
  border: 1.5px solid var(--lh-or);
  color: var(--lh-or);
  border-radius: var(--lh-r);
}
.lh-nav .menu-contact a:hover { background: var(--lh-or); color: var(--lh-encre); }

/* Mobile nav close + mobile logo — hidden on desktop */
.lh-nav-close { display: none; }
.lh-nav-logo-mobile { display: none; }

.lh-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--lh-texte);
}

body { padding-top: var(--lh-hh); }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.lh-oracle-hero {
  background: var(--lh-nuit);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.lh-oracle-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(139,114,168,.12) 0%, transparent 70%);
  pointer-events: none;
}
.lh-hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}
.lh-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lh-or);
  margin-bottom: 22px;
}
.lh-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--lh-or);
}
.lh-oracle-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--lh-or-tint);
  margin-bottom: 22px;
  letter-spacing: .02em;
}
.lh-oracle-hero h1 em {
  color: var(--lh-or);
  font-style: normal;
}
.lh-hero-deck {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--lh-muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.lh-hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 32px;
}
.lh-hero-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lh-or);
  line-height: 1;
}
.lh-hero-stat-label {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lh-muted);
  margin-top: 4px;
}

/* Médaillon photo hero */
.lh-hero-medallion {
  position: relative;
  display: flex;
  justify-content: center;
}
.lh-medallion-outer {
  position: relative;
  width: 380px;
  height: 380px;
}
.lh-medallion-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--lh-or);
  opacity: .5;
  animation: lh-rotate 30s linear infinite;
}
.lh-medallion-ring-2 {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid var(--lh-améthyste);
  opacity: .4;
}
.lh-medallion-img {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--lh-or);
}
.lh-medallion-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.lh-medallion-chip {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lh-encre);
  border: 1px solid var(--lh-or);
  padding: 7px 18px;
  border-radius: 30px;
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lh-or);
  white-space: nowrap;
}

@keyframes lh-rotate {
  to { transform: rotate(360deg); }
}

/* ── Articles ──────────────────────────────────────────────────────────── */
.lh-grimoire {
  padding: 80px 0;
}
.lh-section-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}
.lh-section-titre {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lh-or);
}
.lh-section-trait {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--lh-ligne), transparent);
}

/* À la une */
.lh-vedette {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--lh-surface);
  border: 1px solid var(--lh-ligne);
  border-top: 2.5px solid var(--lh-or);
  border-radius: var(--lh-r);
  overflow: hidden;
  margin-bottom: 40px;
}
.lh-vedette-vue {
  position: relative;
  aspect-ratio: 4/3;
}
.lh-vedette-vue img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lh-vedette-corps {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lh-vedette-kicker {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lh-améthyste);
  margin-bottom: 14px;
}
.lh-vedette h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--lh-or-tint);
  margin-bottom: 16px;
}
.lh-vedette h3 a { color: inherit; }
.lh-vedette h3 a:hover { color: var(--lh-or); }
.lh-vedette-extrait {
  font-size: .93rem;
  color: var(--lh-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.lh-meta {
  display: flex;
  gap: 14px;
  font-size: .72rem;
  color: var(--lh-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Grille parchemins */
.lh-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lh-parchemin {
  background: var(--lh-surface);
  border: 1px solid var(--lh-ligne);
  border-top: 2px solid var(--lh-or);
  border-radius: var(--lh-r);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.lh-parchemin:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(200,162,74,.3);
}
.lh-parchemin-vue {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.lh-parchemin-vue img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.lh-parchemin:hover .lh-parchemin-vue img { transform: scale(1.04); }
.lh-parchemin-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10,8,24,.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,162,74,.4);
  padding: 4px 11px;
  border-radius: 20px;
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lh-or);
}
.lh-parchemin-corps {
  padding: 22px 22px 20px;
}
.lh-parchemin h3 {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--lh-or-tint);
  margin-bottom: 10px;
}
.lh-parchemin h3 a { color: inherit; }
.lh-parchemin h3 a:hover { color: var(--lh-or); }
.lh-parchemin-extrait {
  font-size: .85rem;
  color: var(--lh-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.lh-parchemin-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  color: var(--lh-muted);
  letter-spacing: .04em;
  border-top: 1px solid var(--lh-ligne);
  padding-top: 12px;
}
.lh-parchemin-lire {
  color: var(--lh-or);
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Persona / L'Archiviste ────────────────────────────────────────────── */
.lh-archiviste {
  padding: 80px 0;
  background: var(--lh-surface);
  border-top: 1px solid var(--lh-ligne);
  border-bottom: 1px solid var(--lh-ligne);
}
.lh-archiviste-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}
.lh-archiviste-portrait-wrap {
  position: relative;
  width: 280px;
  height: 320px;
}
.lh-archiviste-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}
.lh-archiviste-cadre {
  position: absolute;
  inset: -8px -8px -8px 8px;
  border: 2px solid var(--lh-or);
  border-radius: 4px;
  pointer-events: none;
}
.lh-archiviste-cadre-2 {
  position: absolute;
  inset: -16px -16px -4px 4px;
  border: 1px solid var(--lh-améthyste);
  border-radius: 4px;
  opacity: .5;
  pointer-events: none;
}
.lh-archiviste-tag {
  position: absolute;
  bottom: -14px;
  left: 20px;
  background: var(--lh-or);
  color: var(--lh-encre);
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
}
.lh-archiviste-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lh-améthyste);
  margin-bottom: 10px;
}
.lh-archiviste-nom {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--lh-or-tint);
  margin-bottom: 6px;
}
.lh-archiviste-role {
  font-size: .85rem;
  color: var(--lh-or);
  letter-spacing: .06em;
  margin-bottom: 22px;
}
.lh-archiviste-bio {
  font-size: .95rem;
  color: var(--lh-texte);
  line-height: 1.8;
  margin-bottom: 28px;
}
.lh-archiviste-bio p { margin-bottom: 1em; }
.lh-archiviste-bio ul { padding-left: 0; list-style: none; }
.lh-archiviste-bio li {
  position: relative;
  padding-left: 1.3em;
  margin-bottom: .5em;
  font-size: .9rem;
  color: var(--lh-muted);
}
.lh-archiviste-bio li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  background: var(--lh-or);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ── Catégories / Portails ─────────────────────────────────────────────── */
.lh-portails {
  padding: 80px 0;
}
.lh-portails-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lh-portail {
  background: var(--lh-surface);
  border: 1px solid var(--lh-ligne);
  border-radius: var(--lh-r);
  padding: 32px 26px;
  transition: background .25s, border-color .25s, transform .2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.lh-portail::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lh-or), var(--lh-améthyste));
  opacity: 0;
  transition: opacity .25s;
}
.lh-portail:hover { background: var(--lh-voile); border-color: rgba(200,162,74,.4); transform: translateY(-3px); }
.lh-portail:hover::before { opacity: 1; }
.lh-portail a { display: block; text-decoration: none; }
.lh-portail-icone {
  width: 48px;
  height: 48px;
  background: rgba(200,162,74,.1);
  border: 1px solid rgba(200,162,74,.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.lh-portail-icone svg { width: 22px; height: 22px; color: var(--lh-or); }
.lh-portail-nom {
  font-family: 'Cinzel', serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lh-or-tint);
  margin-bottom: 8px;
}
.lh-portail-desc {
  font-size: .82rem;
  color: var(--lh-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.lh-portail-compteur {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--lh-améthyste);
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.lh-fondations {
  background: var(--lh-encre);
  border-top: 1px solid var(--lh-ligne);
  padding: 64px 0 32px;
}
/* Frise stellaire */
.lh-fondations::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lh-or), var(--lh-améthyste), var(--lh-or), transparent);
  margin-bottom: 64px;
  opacity: .5;
}
.lh-fondations-grille {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.lh-fondations-titre {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lh-or);
  margin-bottom: 16px;
}
.lh-fondations-desc {
  font-size: .85rem;
  color: var(--lh-muted);
  line-height: 1.7;
  margin-top: 14px;
}
.lh-fondations ul li { margin-bottom: 8px; }
.lh-fondations ul a {
  font-size: .85rem;
  color: var(--lh-muted);
  transition: color .2s;
}
.lh-fondations ul a:hover { color: var(--lh-or); }
.lh-fondations-article {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.lh-fondations-article-vue {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--lh-ligne);
}
.lh-fondations-article-vue img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lh-fondations-article-titre {
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  color: var(--lh-texte);
  line-height: 1.4;
}
.lh-fondations-article-titre a { color: inherit; }
.lh-fondations-article-titre a:hover { color: var(--lh-or); }
.lh-fondations-bas {
  border-top: 1px solid var(--lh-ligne);
  padding-top: 24px;
  text-align: center;
  font-size: .78rem;
  color: var(--lh-muted);
  letter-spacing: .05em;
}

/* ── Post hero (single) ────────────────────────────────────────────────── */
.lh-post-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
  overflow: hidden;
}
.lh-post-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lh-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,24,.92) 30%, rgba(10,8,24,.4) 100%);
}
.lh-post-hero-corps {
  position: relative;
  z-index: 2;
  width: 100%;
}
.lh-fil {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--lh-muted);
  margin-bottom: 14px;
}
.lh-fil a { color: var(--lh-muted); }
.lh-fil a:hover { color: var(--lh-or); }
.lh-fil span { color: var(--lh-améthyste); }
.lh-fil-sep { opacity: .4; }
.lh-post-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--lh-or-tint);
  line-height: 1.25;
  max-width: 820px;
  margin-bottom: 16px;
}
.lh-post-meta {
  display: flex;
  gap: 18px;
  font-size: .75rem;
  color: var(--lh-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── Single content ─────────────────────────────────────────────────────── */
.lh-lecture {
  padding: 56px 0 72px;
}
.lh-lecture-layout {
  max-width: 760px;
  margin: 0 auto;
}
.lh-vignette {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--lh-r);
  margin-bottom: 36px;
  max-height: 480px;
  border: 1px solid var(--lh-ligne);
}
.lh-vignette img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.entry-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--lh-texte);
}
.entry-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--lh-or-tint);
  margin: 2em 0 .7em;
}
.entry-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--lh-or);
  margin: 1.6em 0 .6em;
}
.entry-content p { margin-bottom: 1.4em; }
.entry-content strong { color: var(--lh-or-tint); }
.entry-content blockquote {
  border-left: 3px solid var(--lh-or);
  padding: 16px 24px;
  background: var(--lh-surface);
  border-radius: 0 var(--lh-r) var(--lh-r) 0;
  margin: 2em 0;
  font-style: italic;
  color: var(--lh-texte);
}

.lh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--lh-ligne);
}
.lh-tag {
  background: var(--lh-surface);
  border: 1px solid var(--lh-ligne);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .75rem;
  color: var(--lh-muted);
  letter-spacing: .05em;
  transition: border-color .2s, color .2s;
}
.lh-tag:hover { border-color: var(--lh-or); color: var(--lh-or); }

/* ── Bloc auteur ─────────────────────────────────────────────────────────── */
.lh-auteur {
  background: var(--lh-surface);
  border: 1px solid var(--lh-ligne);
  border-top: 2px solid var(--lh-or);
  border-radius: var(--lh-r);
  padding: 30px;
  margin-top: 48px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.lh-auteur-photo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--lh-or);
}
.lh-auteur-photo img { width: 100%; height: 100%; object-fit: cover; }
.lh-auteur-nom {
  font-family: 'Cinzel', serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--lh-or-tint);
  margin-bottom: 4px;
}
.lh-auteur-role {
  font-size: .75rem;
  color: var(--lh-or);
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.lh-auteur-bio { font-size: .88rem; color: var(--lh-muted); line-height: 1.7; }
.lh-auteur-bio p { margin-bottom: .6em; }

/* ── Articles similaires ────────────────────────────────────────────────── */
.lh-similaires { padding: 60px 0; }
.lh-similaires-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Archive ─────────────────────────────────────────────────────────────── */
.lh-arc-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}
.lh-arc-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lh-arc-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,24,.78);
}
.lh-arc-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.lh-arc-hero-inner h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--lh-or-tint);
  margin-bottom: 12px;
}
.lh-arc-hero-desc {
  font-size: .95rem;
  color: rgba(232,222,200,.75) !important;
  max-width: 540px;
  margin: 0 auto;
}
.lh-arc-hero-desc p { color: rgba(232,222,200,.75) !important; }

.lh-arc-grille {
  padding: 64px 0;
}
.lh-arc-grille-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lh-arc-h2 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lh-or);
  margin-bottom: 40px;
}

/* ── SEO block ──────────────────────────────────────────────────────────── */
.lh-encart {
  padding: 56px 0;
  background: var(--lh-surface);
  border-top: 1px solid var(--lh-ligne);
}
.lh-encart-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
}
.lh-encart h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lh-or-tint);
  margin-bottom: 18px;
}
.lh-encart-texte { font-size: .92rem; color: var(--lh-muted); line-height: 1.8; }
.lh-encart-texte p { margin-bottom: 1em; }
.lh-encart-texte ul { padding-left: 0; list-style: none; }
.lh-encart-texte li { position: relative; padding-left: 1.3em; margin-bottom: .5em; color: var(--lh-muted); }
.lh-encart-texte li::before {
  content: '';
  position: absolute;
  left: 0; top: .6em;
  width: 7px; height: 7px;
  background: var(--lh-or);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.lh-encart-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--lh-r);
  border: 1px solid var(--lh-ligne);
  transition: transform .3s;
}
.lh-encart-image:hover { transform: scale(1.02); }
.lh-encart-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Pages hero ─────────────────────────────────────────────────────────── */
.lh-page-hero {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lh-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lh-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,24,.8);
}
.lh-page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.lh-page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--lh-or-tint);
  margin-bottom: 10px;
}
.lh-page-fil {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .72rem;
  color: var(--lh-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.lh-page-fil a { color: var(--lh-muted); }
.lh-page-fil a:hover { color: var(--lh-or); }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.lh-contact-section {
  padding: 72px 0;
}
.lh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.lh-contact-titre {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--lh-or-tint);
  margin-bottom: 20px;
}
.lh-contact-intro {
  font-size: .95rem;
  color: var(--lh-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.lh-contact-panneau {
  background: var(--lh-surface);
  border: 1px solid var(--lh-ligne);
  border-top: 2.5px solid var(--lh-or);
  border-radius: var(--lh-r);
  padding: 36px;
}
.wpcf7-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lh-muted);
  margin-bottom: 16px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  background: var(--lh-nuit);
  border: 1px solid var(--lh-ligne);
  border-radius: var(--lh-r);
  padding: 11px 16px;
  color: var(--lh-texte);
  font-family: 'Lato', sans-serif;
  font-size: .92rem;
  transition: border-color .2s;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--lh-or);
}
.wpcf7-form textarea { min-height: 140px; resize: vertical; }
.wpcf7-form br { display: none; }
.wpcf7-submit {
  width: 100%;
  padding: 13px;
  background: var(--lh-or);
  color: var(--lh-encre);
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--lh-r);
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.wpcf7-submit:hover { background: var(--lh-or-tint); }

/* ── Mentions légales ────────────────────────────────────────────────────── */
.lh-mentions {
  padding: 72px 0;
  max-width: 760px;
  margin: 0 auto;
}
.lh-mentions h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--lh-or-tint);
  margin: 2.5em 0 .8em;
}
.lh-mentions p, .lh-mentions li { font-size: .92rem; color: var(--lh-muted); line-height: 1.8; margin-bottom: .8em; }

/* ── Plan du site ────────────────────────────────────────────────────────── */
.lh-plan { padding: 72px 0; }
.lh-plan h2 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lh-or);
  margin: 2em 0 .8em;
}
.lh-plan ul { padding-left: 0; list-style: none; }
.lh-plan li { margin-bottom: 6px; }
.lh-plan a { font-size: .9rem; color: var(--lh-muted); }
.lh-plan a:hover { color: var(--lh-or); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lh-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .lh-medallion-outer { width: 300px; height: 300px; margin: 0 auto; }
  .lh-archiviste-inner { grid-template-columns: 1fr; gap: 48px; }
  .lh-archiviste-portrait-wrap { margin: 0 auto; }
  .lh-fondations-grille { grid-template-columns: 1fr 1fr; }
  .lh-encart-inner { grid-template-columns: 1fr; }
  .lh-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .lh-nav ul { display: none; }
  .lh-burger { display: flex; }
  .lh-grille { grid-template-columns: 1fr; }
  .lh-portails-grille { grid-template-columns: 1fr 1fr; }
  .lh-vedette { grid-template-columns: 1fr; }
  .lh-similaires-grille { grid-template-columns: 1fr; }
  .lh-arc-grille-inner { grid-template-columns: 1fr; }
  .lh-fondations-grille { grid-template-columns: 1fr; }
  .lh-hero-stats { flex-wrap: wrap; gap: 20px; }

  /* Mobile nav */
  .lh-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 200;
    background: var(--lh-encre);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .lh-nav--open { transform: translateX(0); }
  .lh-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .lh-nav ul a { font-size: .9rem; padding: 12px 24px; }
  .lh-nav-close {
    display: flex;
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    cursor: pointer;
    color: var(--lh-texte);
  }
  .lh-nav-logo-mobile {
    display: block;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .lh-portails-grille { grid-template-columns: 1fr; }
  .lh-medallion-outer { width: 240px; height: 240px; }
}

/* ── Accessibility ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--lh-or);
  outline-offset: 3px;
}
