/*
 * ═══════════════════════════════════════════════════════════════════
 *  ÉDITIONS LE CHARMOISET — Feuille de style principale
 *  Version : 1.0.0
 *  Auteur  : Agence Filariane / Mark Rodé
 *  Licence : Propriétaire — Tous droits réservés Le Charmoiset
 *
 *  STRUCTURE :
 *  1. Variables CSS & Reset
 *  2. Typographie & Utilitaires
 *  3. Topbar
 *  4. Header & Navigation
 *  5. Hero Slider
 *  6. Ticker
 *  7. Sections communes
 *  8. Nouveautés / Livres vedettes
 *  9. Catalogue & Filtres
 * 10. Auteurs
 * 11. Collections
 * 12. Actualités
 * 13. Newsletter
 * 14. Pages intérieures (hero, breadcrumb)
 * 15. Page À propos
 * 16. Page Contact
 * 17. Footer
 * 18. Animations & Reveal
 * 19. Responsive
 *
 *  WP : ce fichier est chargé via wp_enqueue_scripts()
 *       dans functions.php du thème enfant.
 *       GeneratePress Premium + Elementor Pro recommandés.
 * ═══════════════════════════════════════════════════════════════════
 */

/* ─────────────────────────────────────────
   1. Variables CSS & Reset
───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; text-size-adjust: 100%; }

:root {
  /* Couleurs identitaires — calées sur le logo hérisson violet */
  --lc-violet:       #3D3580;
  --lc-violet-dark:  #2e2860;
  --lc-violet-light: #5550a8;
  --lc-violet-pale:  #f0eff8;
  --lc-violet-bg:    #f7f6fb;
  --lc-violet-line:  #d8d4ee;

  --lc-white:        #ffffff;
  --lc-black:        #1a1a1a;
  --lc-grey:         #6b6b6b;
  --lc-grey-light:   #e8e6f0;
  --lc-grey-bg:      #f5f4f9;

  /* Typographies */
  --lc-serif:  'EB Garamond', Georgia, 'Times New Roman', serif;
  --lc-sans:   'Outfit', system-ui, -apple-system, sans-serif;

  /* Ombres */
  --lc-shadow:       0 2px 20px rgba(61,53,128,.10);
  --lc-shadow-heavy: 0 8px 40px rgba(61,53,128,.18);
  --lc-shadow-book:  14px 20px 50px rgba(61,53,128,.28), -4px 0 0 rgba(0,0,0,.12);

  /* Transitions */
  --lc-transition: 0.22s ease;
}

body {
  background: var(--lc-white);
  color: var(--lc-black);
  font-family: var(--lc-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a    { text-decoration: none; color: inherit; }
img  { display: block; max-width: 100%; height: auto; }
strong { font-weight: 500; }

/* ─────────────────────────────────────────
   2. Typographie & Utilitaires
───────────────────────────────────────── */
.lc-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--lc-violet); font-weight: 400;
}
.lc-eyebrow::before {
  content: ''; width: 20px; height: 1px; background: var(--lc-violet);
}

.lc-btn {
  display: inline-block; font-family: var(--lc-sans); font-weight: 400;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 13px 26px; cursor: pointer; border: none;
  transition: all var(--lc-transition);
}
.lc-btn-violet  { background: var(--lc-violet); color: #fff; }
.lc-btn-violet:hover { background: var(--lc-violet-dark); }
.lc-btn-outline { background: transparent; color: var(--lc-violet); border: 1px solid var(--lc-violet); }
.lc-btn-outline:hover { background: var(--lc-violet); color: #fff; }

.lc-voir-plus {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--lc-violet); display: flex; align-items: center; gap: 7px;
  transition: gap var(--lc-transition); white-space: nowrap; cursor: pointer;
}
.lc-voir-plus::after  { content: '→'; font-size: 13px; }
.lc-voir-plus:hover   { gap: 12px; }

/* ─────────────────────────────────────────
   3. Topbar
───────────────────────────────────────── */
.lc-topbar {
  background: var(--lc-violet); color: rgba(255,255,255,.75);
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  padding: 8px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.lc-topbar a { color: rgba(255,255,255,.75); transition: color var(--lc-transition); }
.lc-topbar a:hover { color: #fff; }
.lc-topbar-social { display: flex; gap: 22px; }
.lc-topbar-address { font-size: 10px; }

/* ─────────────────────────────────────────
   4. Header & Navigation
───────────────────────────────────────── */
/* WP: Elementor Pro Theme Builder > Template "Header" */
.lc-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--lc-white);
  border-bottom: 2px solid var(--lc-violet);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
  box-shadow: var(--lc-shadow);
  transition: box-shadow var(--lc-transition);
}
.lc-header.is-scrolled { box-shadow: var(--lc-shadow-heavy); }

.lc-header-logo {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  transition: opacity var(--lc-transition);
}
.lc-header-logo:hover { opacity: .85; }
.lc-header-logo img { height: 52px; width: auto; }
.lc-header-logo-text { display: flex; flex-direction: column; }
.lc-header-logo-name {
  font-family: var(--lc-serif); font-size: 19px; font-weight: 500;
  color: var(--lc-violet); letter-spacing: .06em; line-height: 1;
}
.lc-header-logo-tagline {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lc-grey); margin-top: 3px;
}

/* WP: Menu WordPress > Primary Menu */
.lc-nav { display: flex; align-items: center; gap: 4px; }
.lc-nav a {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--lc-black); padding: 8px 16px;
  transition: color var(--lc-transition); position: relative;
}
.lc-nav a::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 2px; background: var(--lc-violet);
  transform: scaleX(0); transition: transform .25s; transform-origin: left;
}
.lc-nav a:hover,
.lc-nav a.current-menu-item { color: var(--lc-violet); }
.lc-nav a:hover::after,
.lc-nav a.current-menu-item::after { transform: scaleX(1); }

.lc-nav-cta {
  background: var(--lc-violet) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  margin-left: 8px;
}
.lc-nav-cta::after  { display: none !important; }
.lc-nav-cta:hover   { background: var(--lc-violet-dark) !important; }

/* Burger mobile */
.lc-burger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 4px; flex-direction: column; gap: 5px;
}
.lc-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--lc-violet); transition: .3s;
}

/* ─────────────────────────────────────────
   5. Hero Slider
   WP: SmartSlider3 Pro ou Elementor Slides
───────────────────────────────────────── */
.lc-hero {
  position: relative; overflow: hidden;
  height: calc(100vh - 116px); min-height: 540px;
  background: var(--lc-violet-pale);
}
.lc-slides-track {
  display: flex; height: 100%;
  transition: transform .85s cubic-bezier(.76,0,.24,1);
}
.lc-slide {
  min-width: 100%; height: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
}

/* Visuel couverture */
.lc-slide-visual {
  display: flex; align-items: center; justify-content: center;
  background: var(--lc-violet-pale); padding: 60px;
  position: relative; overflow: hidden;
}
.lc-slide-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(61,53,128,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* WP: remplacer .lc-book-mock par <img src="<?php the_post_thumbnail_url('large'); ?>"> */
.lc-book-mock {
  position: relative; z-index: 1;
  width: clamp(160px,22vw,230px); aspect-ratio: 3/4;
  box-shadow: var(--lc-shadow-book);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px 18px; cursor: default;
  transition: transform .5s ease, box-shadow .5s;
}
.lc-book-mock:hover {
  transform: translateY(-8px) rotate(.8deg);
  box-shadow: 20px 30px 65px rgba(61,53,128,.35), -4px 0 0 rgba(0,0,0,.15);
}
.lc-book-publisher { font-size: 7px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.lc-book-title     { font-family: var(--lc-serif); font-size: 16px; color: #fff; line-height: 1.3; flex: 1; display: flex; align-items: center; margin: 12px 0; }
.lc-book-rule      { width: 18px; height: 1px; background: rgba(255,255,255,.35); margin-bottom: 8px; }
.lc-book-author    { font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* Palettes de couvertures */
.lc-cv-1 { background: linear-gradient(150deg,#2e2060,#1a1240); }
.lc-cv-2 { background: linear-gradient(150deg,#3d2060,#200a40); }
.lc-cv-3 { background: linear-gradient(150deg,#1e3460,#0e1e40); }
.lc-cv-4 { background: linear-gradient(150deg,#3a2010,#1e0e06); }
.lc-cv-5 { background: linear-gradient(150deg,#1e3820,#0a1e0c); }
.lc-cv-6 { background: linear-gradient(150deg,#382020,#1e0a0a); }

/* Texte du slide */
.lc-slide-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px 60px; background: var(--lc-white);
  border-left: 1px solid var(--lc-grey-light);
}
.lc-slide-tag     { margin-bottom: 20px; }
.lc-slide-h1 {
  font-family: var(--lc-serif);
  font-size: clamp(28px,3.5vw,50px); font-weight: 400;
  line-height: 1.1; color: var(--lc-black); margin-bottom: 6px;
}
.lc-slide-subtitle { font-family: var(--lc-serif); font-size: 18px; font-style: italic; color: var(--lc-grey); margin-bottom: 14px; }
.lc-slide-author   { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--lc-violet); margin-bottom: 22px; }
.lc-slide-desc     { font-size: 14px; line-height: 1.82; color: #555; max-width: 400px; margin-bottom: 34px; }
.lc-slide-actions  { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contrôles */
.lc-hero-arrows { position: absolute; bottom: 28px; left: 48px; display: flex; gap: 6px; z-index: 10; }
.lc-hero-arrow {
  width: 38px; height: 38px; border: 1px solid var(--lc-violet);
  background: var(--lc-white); display: flex; align-items: center;
  justify-content: center; cursor: pointer; color: var(--lc-violet);
  font-size: 14px; transition: all var(--lc-transition); user-select: none;
}
.lc-hero-arrow:hover { background: var(--lc-violet); color: #fff; }
.lc-hero-dots   { position: absolute; bottom: 40px; right: 48px; display: flex; gap: 6px; z-index: 10; }
.lc-hero-dot    { height: 2px; width: 16px; background: var(--lc-grey-light); cursor: pointer; transition: all .3s; }
.lc-hero-dot.is-active { background: var(--lc-violet); width: 32px; }
.lc-hero-count  { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: .18em; color: var(--lc-grey); z-index: 10; }
.lc-hero-count strong { color: var(--lc-violet); font-weight: 400; }

/* ─────────────────────────────────────────
   6. Ticker
   WP: widget HTML Elementor ou plugin Ticker
───────────────────────────────────────── */
.lc-ticker {
  background: var(--lc-violet); overflow: hidden;
  white-space: nowrap; padding: 10px 0;
  border-top: 1px solid var(--lc-violet-dark);
}
.lc-ticker-inner { display: inline-flex; animation: lc-marquee 35s linear infinite; }
.lc-ticker-item  { display: inline-flex; align-items: center; gap: 18px; padding: 0 30px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.lc-ticker-item strong { color: #fff; font-weight: 400; }
.lc-ticker-sep   { width: 3px; height: 3px; background: rgba(255,255,255,.3); border-radius: 50%; flex-shrink: 0; }
@keyframes lc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .lc-ticker-inner { animation-play-state: paused; } }

/* ─────────────────────────────────────────
   7. Sections communes
───────────────────────────────────────── */
.lc-section      { padding: 72px 48px; }
.lc-section--bg  { background: var(--lc-grey-bg); }

.lc-section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 2px solid var(--lc-violet);
  padding-bottom: 14px; margin-bottom: 44px;
}
.lc-section-h2 {
  font-family: var(--lc-serif); font-size: clamp(24px,3vw,38px);
  font-weight: 400; letter-spacing: .02em; color: var(--lc-black);
}
.lc-section-h2 em { font-style: italic; color: var(--lc-violet); }

/* ─────────────────────────────────────────
   8. Livres vedettes / Nouveautés
   WP: CPT "livre" + Elementor Loop Grid
───────────────────────────────────────── */
.lc-featured-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--lc-grey-light);
}
.lc-featured-book {
  display: grid; grid-template-columns: 170px 1fr;
  border-right: 1px solid var(--lc-grey-light);
  background: var(--lc-white); cursor: pointer;
  transition: background var(--lc-transition);
}
.lc-featured-book:last-child { border-right: none; }
.lc-featured-book:hover { background: var(--lc-violet-bg); }

.lc-fb-cover {
  background: var(--lc-grey-bg);
  display: flex; align-items: center; justify-content: center;
  padding: 28px 16px; border-right: 1px solid var(--lc-grey-light);
}
.lc-fb-thumb {
  width: 100%; aspect-ratio: 3/4;
  box-shadow: 5px 7px 22px rgba(61,53,128,.2);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 12px 10px; transition: transform .4s;
}
.lc-featured-book:hover .lc-fb-thumb { transform: translateY(-4px); }
.lc-fb-thumb .t  { font-family: var(--lc-serif); font-size: 11px; color: #fff; line-height: 1.3; }
.lc-fb-thumb .r  { width: 14px; height: 1px; background: rgba(255,255,255,.3); margin: 7px 0; }
.lc-fb-thumb .a  { font-size: 7px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }

.lc-fb-info     { padding: 28px 24px; display: flex; flex-direction: column; justify-content: space-between; }
.lc-fb-coll     { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--lc-violet); margin-bottom: 7px; }
.lc-fb-title    { font-family: var(--lc-serif); font-size: 20px; font-weight: 400; line-height: 1.2; margin-bottom: 5px; }
.lc-fb-subtitle { font-family: var(--lc-serif); font-size: 14px; font-style: italic; color: var(--lc-grey); margin-bottom: 8px; }
.lc-fb-author   { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--lc-violet); margin-bottom: 12px; }
.lc-fb-excerpt  {
  font-size: 13px; line-height: 1.75; color: #555;
  border-left: 2px solid var(--lc-violet); padding-left: 12px;
  font-style: italic; margin-bottom: 18px;
}
.lc-fb-footer   { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--lc-grey-light); }
.lc-fb-date     { font-size: 10px; color: var(--lc-grey); letter-spacing: .1em; }
.lc-fb-link     {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--lc-violet); display: flex; align-items: center; gap: 6px;
  transition: gap var(--lc-transition);
}
.lc-fb-link::after { content: '→'; }
.lc-fb-link:hover  { gap: 10px; }

/* ─────────────────────────────────────────
   9. Catalogue & Filtres
   WP: CPT "livre" + Taxonomie "collection"
       Filtres : FacetWP ou plugin natif
───────────────────────────────────────── */
.lc-filters {
  display: flex; gap: 0; margin-bottom: 40px;
  border: 1px solid var(--lc-grey-light); width: fit-content; flex-wrap: wrap;
}
.lc-filter {
  padding: 9px 18px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  cursor: pointer; background: none; border: none;
  border-right: 1px solid var(--lc-grey-light);
  font-family: var(--lc-sans); color: var(--lc-grey);
  transition: all var(--lc-transition); white-space: nowrap;
}
.lc-filter:last-child { border-right: none; }
.lc-filter.is-active, .lc-filter:hover { background: var(--lc-violet); color: #fff; }

/* WP: Elementor Loop Grid > Template "Livre Card" */
.lc-books-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  border: 1px solid var(--lc-grey-light);
}
.lc-book-card {
  border-right: 1px solid var(--lc-grey-light);
  border-bottom: 1px solid var(--lc-grey-light);
  background: var(--lc-white); cursor: pointer;
  transition: background var(--lc-transition); display: block;
}
.lc-book-card:nth-child(5n) { border-right: none; }
.lc-book-card:hover { background: var(--lc-violet-bg); }
.lc-bc-cover {
  aspect-ratio: 3/4; background: var(--lc-grey-bg);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; overflow: hidden;
}
.lc-bc-thumb {
  width: 64%; aspect-ratio: 3/4;
  box-shadow: 4px 6px 18px rgba(61,53,128,.2);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 10px 8px; transition: transform .4s, box-shadow .4s;
}
.lc-book-card:hover .lc-bc-thumb { transform: translateY(-6px) scale(1.04); box-shadow: 8px 12px 30px rgba(61,53,128,.28); }
.lc-bc-thumb .t { font-family: var(--lc-serif); font-size: 9px; color: #fff; line-height: 1.3; }
.lc-bc-thumb .r { width: 11px; height: 1px; background: rgba(255,255,255,.3); margin: 5px 0; }
.lc-bc-thumb .a { font-size: 6px; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.lc-bc-info  { padding: 12px 14px 16px; border-top: 1px solid var(--lc-grey-light); }
.lc-bc-coll  { font-size: 8px; letter-spacing: .18em; text-transform: uppercase; color: var(--lc-violet); margin-bottom: 4px; }
.lc-bc-title { font-family: var(--lc-serif); font-size: 14px; font-weight: 400; line-height: 1.25; margin-bottom: 3px; }
.lc-bc-author{ font-size: 11px; color: var(--lc-grey); }

/* ─────────────────────────────────────────
   10. Auteurs
   WP: CPT "auteur" avec ACF (photo, bio, spécialité, livres liés)
───────────────────────────────────────── */
.lc-authors-preview {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  border: 1px solid var(--lc-grey-light);
}
.lc-author-preview {
  padding: 28px 20px; background: var(--lc-white);
  border-right: 1px solid var(--lc-grey-light); border-bottom: 1px solid var(--lc-grey-light);
  cursor: pointer; transition: all var(--lc-transition);
}
.lc-author-preview:nth-child(5n) { border-right: none; }
.lc-author-preview:hover         { background: var(--lc-violet); color: #fff; }
.lc-author-preview:hover .lc-ap-meta,
.lc-author-preview:hover .lc-ap-initial { color: rgba(255,255,255,.3); }

.lc-ap-initial {
  font-family: var(--lc-serif); font-size: 44px; font-weight: 400;
  line-height: 1; color: var(--lc-grey-light); margin-bottom: 12px;
  transition: color var(--lc-transition);
}
.lc-ap-name { font-family: var(--lc-serif); font-size: 18px; font-weight: 400; margin-bottom: 3px; }
.lc-ap-meta { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--lc-grey); transition: color var(--lc-transition); }

/* Grille complète auteurs */
.lc-authors-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  border: 1px solid var(--lc-grey-light);
}
.lc-author-card {
  padding: 36px 28px; background: var(--lc-white);
  border-right: 1px solid var(--lc-grey-light); border-bottom: 1px solid var(--lc-grey-light);
  transition: background var(--lc-transition); cursor: pointer;
}
.lc-author-card:nth-child(4n) { border-right: none; }
.lc-author-card:hover { background: var(--lc-violet-bg); }
.lc-ac-initial { font-family: var(--lc-serif); font-size: 52px; font-weight: 400; color: var(--lc-grey-light); line-height: 1; margin-bottom: 16px; }
.lc-ac-name    { font-family: var(--lc-serif); font-size: 21px; font-weight: 400; color: var(--lc-violet); margin-bottom: 4px; }
.lc-ac-title   { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--lc-grey); margin-bottom: 14px; }
.lc-ac-bio     { font-size: 13px; line-height: 1.72; color: #555; }

/* ─────────────────────────────────────────
   11. Collections
   WP: Taxonomie "collection" > page archive
───────────────────────────────────────── */
.lc-collections-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  border: 1px solid var(--lc-grey-light);
}
.lc-coll-tile {
  padding: 28px 20px; border-right: 1px solid var(--lc-grey-light);
  cursor: pointer; transition: all var(--lc-transition); display: block;
}
.lc-coll-tile:last-child { border-right: none; }
.lc-coll-tile:hover { background: var(--lc-violet); color: #fff; }
.lc-coll-tile:hover .lc-ct-desc,
.lc-coll-tile:hover .lc-ct-count,
.lc-coll-tile:hover .lc-ct-num { color: rgba(255,255,255,.3); }

.lc-ct-num   { font-family: var(--lc-serif); font-size: 42px; font-weight: 400; color: var(--lc-grey-light); line-height: 1; margin-bottom: 14px; transition: color var(--lc-transition); }
.lc-ct-name  { font-family: var(--lc-serif); font-size: 18px; font-weight: 400; margin-bottom: 8px; line-height: 1.2; }
.lc-ct-desc  { font-size: 12px; line-height: 1.65; color: var(--lc-grey); margin-bottom: 12px; transition: color var(--lc-transition); }
.lc-ct-count { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--lc-violet); transition: color var(--lc-transition); }
.lc-coll-tile:hover .lc-ct-count { color: rgba(255,255,255,.6); }

/* ─────────────────────────────────────────
   12. Actualités
   WP: Posts WordPress > catégories Exposition / Parution / Presse
───────────────────────────────────────── */
.lc-news-grid {
  display: grid; grid-template-columns: 5fr 3fr 3fr; gap: 0;
  border: 1px solid var(--lc-grey-light);
}
.lc-news-card {
  background: var(--lc-white); display: block;
  border-right: 1px solid var(--lc-grey-light);
  transition: background var(--lc-transition); cursor: pointer;
}
.lc-news-card:last-child { border-right: none; }
.lc-news-card:hover { background: var(--lc-violet-bg); }
.lc-news-image {
  width: 100%; background: var(--lc-violet-pale);
  border-bottom: 1px solid var(--lc-grey-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--lc-serif); font-size: 13px; color: var(--lc-grey); font-style: italic;
  overflow: hidden;
}
.lc-news-card--main .lc-news-image { aspect-ratio: 16/8; }
.lc-news-card--sm   .lc-news-image { aspect-ratio: 4/3; }
.lc-news-body   { padding: 20px 18px 24px; }
.lc-news-cat    { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--lc-violet); margin-bottom: 8px; }
.lc-news-title  { font-family: var(--lc-serif); font-size: 19px; font-weight: 400; line-height: 1.25; margin-bottom: 8px; }
.lc-news-card--sm .lc-news-title { font-size: 15px; }
.lc-news-excerpt{ font-size: 13px; line-height: 1.7; color: #555; }
.lc-news-date   { font-size: 10px; color: var(--lc-grey); margin-top: 12px; letter-spacing: .1em; }

/* ─────────────────────────────────────────
   13. Newsletter
   WP: MailPoet ou Newsletter plugin
───────────────────────────────────────── */
.lc-newsletter {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 2px solid var(--lc-violet);
}
.lc-nl-left    { padding: 52px 52px; border-right: 1px solid var(--lc-grey-light); }
.lc-nl-eyebrow { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--lc-violet); margin-bottom: 12px; }
.lc-nl-heading { font-family: var(--lc-serif); font-size: clamp(24px,3vw,38px); font-weight: 400; line-height: 1.1; margin-bottom: 10px; }
.lc-nl-sub     { font-size: 14px; color: #555; line-height: 1.7; }
.lc-nl-right   { padding: 52px 52px; display: flex; align-items: center; background: var(--lc-violet-bg); }
.lc-nl-form    { width: 100%; display: flex; border: 1px solid var(--lc-violet); }
/* WP: [mailpoet_form id="1"] ou [newsletter_form] */
.lc-nl-input   { flex: 1; padding: 14px 16px; border: none; outline: none; font-family: var(--lc-sans); font-size: 13px; color: var(--lc-black); background: transparent; }
.lc-nl-input::placeholder { color: var(--lc-grey); }
.lc-nl-submit  { padding: 14px 24px; background: var(--lc-violet); color: #fff; border: none; cursor: pointer; font-family: var(--lc-sans); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; transition: background var(--lc-transition); }
.lc-nl-submit:hover { background: var(--lc-violet-dark); }

/* ─────────────────────────────────────────
   14. Pages intérieures
───────────────────────────────────────── */
.lc-page-hero {
  background: var(--lc-violet); color: #fff;
  padding: 60px 48px 50px;
}
.lc-page-hero h1 {
  font-family: var(--lc-serif); font-size: clamp(36px,5vw,64px);
  font-weight: 400; line-height: 1.05; margin-bottom: 10px;
}
.lc-page-hero h1 em { font-style: italic; color: rgba(255,255,255,.7); }
.lc-page-hero p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.75); max-width: 600px; margin-top: 16px; }

.lc-breadcrumb {
  padding: 14px 48px; font-size: 11px; letter-spacing: .14em;
  color: var(--lc-grey); border-bottom: 1px solid var(--lc-grey-light);
  background: var(--lc-white);
}
.lc-breadcrumb a            { color: var(--lc-violet); }
.lc-breadcrumb a:hover      { text-decoration: underline; }
.lc-breadcrumb span::before { content: ' › '; color: var(--lc-grey-light); }

/* ─────────────────────────────────────────
   15. Page À propos
───────────────────────────────────────── */
.lc-about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--lc-grey-light);
}
.lc-about-col           { padding: 60px 52px; border-right: 1px solid var(--lc-grey-light); }
.lc-about-col:last-child{ border-right: none; background: var(--lc-grey-bg); }
.lc-about-intro         { font-family: var(--lc-serif); font-size: 19px; font-style: italic; line-height: 1.55; color: var(--lc-violet); margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--lc-grey-light); }
.lc-about-body          { font-size: 14px; line-height: 1.85; color: #444; margin-bottom: 16px; }
.lc-about-body strong   { color: var(--lc-violet); }

.lc-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--lc-grey-light); margin-top: 36px; }
.lc-value       { padding: 18px 16px; border-right: 1px solid var(--lc-grey-light); border-bottom: 1px solid var(--lc-grey-light); }
.lc-value:nth-child(2n)    { border-right: none; }
.lc-value:nth-child(3),
.lc-value:nth-child(4)     { border-bottom: none; }
.lc-value h4   { font-family: var(--lc-serif); font-size: 15px; color: var(--lc-violet); margin-bottom: 4px; }
.lc-value p    { font-size: 12px; color: var(--lc-grey); line-height: 1.6; }

.lc-director-block { background: var(--lc-white); border: 1px solid var(--lc-grey-light); padding: 28px 24px; margin-bottom: 28px; }
.lc-director-name  { font-family: var(--lc-serif); font-size: 22px; font-weight: 400; color: var(--lc-violet); margin-bottom: 2px; }
.lc-director-title { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--lc-grey); margin-bottom: 14px; }
.lc-director-bio   { font-size: 13px; line-height: 1.78; color: #555; margin-bottom: 10px; }

.lc-partners-list { border: 1px solid var(--lc-grey-light); }
.lc-partner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--lc-grey-light);
  font-family: var(--lc-serif); font-size: 16px; transition: background var(--lc-transition);
}
.lc-partner:last-child  { border-bottom: none; }
.lc-partner:hover       { background: var(--lc-violet-bg); }
.lc-partner-type { font-family: var(--lc-sans); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--lc-grey); }

/* ─────────────────────────────────────────
   16. Page Contact
───────────────────────────────────────── */
.lc-contact-grid            { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--lc-grey-light); }
.lc-contact-col             { padding: 52px 48px; border-right: 1px solid var(--lc-grey-light); }
.lc-contact-col:last-child  { border-right: none; background: var(--lc-grey-bg); }
.lc-contact-h               { font-family: var(--lc-serif); font-size: 22px; color: var(--lc-violet); margin-bottom: 20px; }
.lc-contact-item            { display: flex; gap: 14px; margin-bottom: 18px; font-size: 14px; color: #444; line-height: 1.6; }
.lc-contact-item-icon       { color: var(--lc-violet); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.lc-contact-item a          { color: var(--lc-violet); }
.lc-contact-item a:hover    { text-decoration: underline; }
.lc-contact-note            { margin-top: 32px; padding: 20px; background: var(--lc-violet-pale); border-left: 3px solid var(--lc-violet); font-size: 13px; color: #444; line-height: 1.7; }

.lc-form-row      { margin-bottom: 16px; }
.lc-form-label    { display: block; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--lc-grey); margin-bottom: 6px; }
.lc-form-input,
.lc-form-textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--lc-grey-light); background: var(--lc-white);
  font-family: var(--lc-sans); font-size: 13px; color: var(--lc-black);
  outline: none; transition: border-color var(--lc-transition);
}
.lc-form-input:focus,
.lc-form-textarea:focus { border-color: var(--lc-violet); }
.lc-form-textarea { height: 120px; resize: vertical; }

/* ─────────────────────────────────────────
   17. Footer
   WP: Theme Builder Elementor > Footer
───────────────────────────────────────── */
.lc-footer        { background: var(--lc-violet-dark); color: rgba(255,255,255,.5); }
.lc-footer-top    { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.lc-footer-col    { padding: 44px 36px; border-right: 1px solid rgba(255,255,255,.08); }
.lc-footer-col:last-child  { border-right: none; }

.lc-footer-brand  { font-family: var(--lc-serif); font-size: 17px; color: rgba(255,255,255,.9); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.lc-footer-tagline{ font-size: 8px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.lc-footer-address{ font-size: 12px; line-height: 1.9; color: rgba(255,255,255,.4); font-style: normal; }
.lc-footer-address a { color: rgba(255,255,255,.6); transition: color var(--lc-transition); }
.lc-footer-address a:hover { color: #fff; }
.lc-footer-social { display: flex; gap: 16px; margin-top: 20px; }
.lc-footer-social a { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.38); transition: color var(--lc-transition); }
.lc-footer-social a:hover { color: #fff; }

.lc-footer-col-heading { font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.lc-footer-col ul       { list-style: none; }
.lc-footer-col ul li    { margin-bottom: 9px; }
.lc-footer-col ul li a  { font-size: 13px; color: rgba(255,255,255,.38); transition: color var(--lc-transition); }
.lc-footer-col ul li a:hover { color: rgba(255,255,255,.88); }

.lc-footer-bottom { padding: 16px 36px; display: flex; justify-content: space-between; align-items: center; font-size: 10px; letter-spacing: .12em; color: rgba(255,255,255,.22); border-top: 1px solid rgba(255,255,255,.05); }
.lc-footer-bottom a { color: rgba(255,255,255,.22); transition: color var(--lc-transition); }
.lc-footer-bottom a:hover { color: rgba(255,255,255,.6); }
.lc-footer-legal  { display: flex; gap: 18px; }

/* ─────────────────────────────────────────
   18. Animations & Reveal
───────────────────────────────────────── */
.lc-reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.lc-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .lc-reveal { transition: none; opacity: 1; transform: none; } }

/* Mobile nav overlay */
.lc-mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--lc-white);
  z-index: 500; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.lc-mobile-nav.is-open   { display: flex; }
.lc-mobile-nav a         { font-family: var(--lc-serif); font-size: 30px; color: var(--lc-violet); }
.lc-mobile-close         { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 32px; color: var(--lc-violet); cursor: pointer; }

/* ─────────────────────────────────────────
   19. Responsive
───────────────────────────────────────── */
@media (max-width: 1200px) {
  .lc-books-grid { grid-template-columns: repeat(4,1fr); }
  .lc-books-grid .lc-book-card:nth-child(5n) { border-right: 1px solid var(--lc-grey-light); }
  .lc-books-grid .lc-book-card:nth-child(4n) { border-right: none; }
  .lc-collections-grid { grid-template-columns: repeat(3,1fr); }
  .lc-authors-preview  { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 1024px) {
  .lc-footer-top { grid-template-columns: 1fr 1fr; }
  .lc-footer-col:nth-child(2) { border-right: none; }
  .lc-footer-col:nth-child(1),
  .lc-footer-col:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 900px) {
  .lc-topbar { display: none; }
  .lc-header { padding: 0 20px; }
  nav.lc-nav { display: none; }
  .lc-burger { display: flex; }
  .lc-slide  { grid-template-columns: 1fr; }
  .lc-slide-visual { min-height: 260px; padding: 36px; }
  .lc-slide-content { padding: 36px 24px; border-left: none; border-top: 1px solid var(--lc-grey-light); }
  .lc-hero   { height: auto; min-height: unset; }
  .lc-section { padding: 48px 20px; }
  .lc-breadcrumb  { padding: 12px 20px; }
  .lc-page-hero   { padding: 40px 20px 36px; }
  .lc-featured-grid, .lc-about-grid, .lc-contact-grid, .lc-newsletter { grid-template-columns: 1fr; }
  .lc-about-col, .lc-contact-col, .lc-nl-left, .lc-nl-right { padding: 36px 20px; border-right: none; }
  .lc-about-col:last-child, .lc-contact-col:last-child { border-top: 1px solid var(--lc-grey-light); }
  .lc-featured-book { grid-template-columns: 120px 1fr; }
  .lc-featured-book:first-child { border-right: none; border-bottom: 1px solid var(--lc-grey-light); }
  .lc-books-grid { grid-template-columns: repeat(2,1fr); }
  .lc-book-card:nth-child(4n) { border-right: 1px solid var(--lc-grey-light); }
  .lc-book-card:nth-child(2n) { border-right: none; }
  .lc-authors-preview, .lc-authors-grid { grid-template-columns: repeat(2,1fr); }
  .lc-author-preview:nth-child(5n), .lc-author-card:nth-child(4n) { border-right: 1px solid var(--lc-grey-light); }
  .lc-author-preview:nth-child(2n), .lc-author-card:nth-child(2n) { border-right: none; }
  .lc-collections-grid { grid-template-columns: repeat(2,1fr); }
  .lc-coll-tile:nth-child(3n) { border-right: 1px solid var(--lc-grey-light); }
  .lc-coll-tile:nth-child(2n) { border-right: none; }
  .lc-coll-tile { border-bottom: 1px solid var(--lc-grey-light); }
  .lc-news-grid { grid-template-columns: 1fr; }
  .lc-news-card { border-right: none; border-bottom: 1px solid var(--lc-grey-light); }
  .lc-footer-top  { grid-template-columns: 1fr; }
  .lc-footer-col  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .lc-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .lc-hero-dots, .lc-hero-count { display: none; }
}
