/* ============================================================
   KYOKO LAN HUA : style.css v3 : REFONTE PRO
   Palette : crème #faf7f3 · brun #2a1f14 · rose #c0445a
             orange #d4614a · violet #7b2d8b · dark #0e0b14
   ============================================================ */

/* ── 1. RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #faf7f3;
  --surface:      #ffffff;
  --surface2:     #f3ede7;
  --border:       rgba(42,31,20,0.10);
  --text:         #2a1f14;
  --muted:        #6a5a4a; /* corrigé 5.70:1 AA ✅ sur surface2 (était #7a6a5a) */
  --light:        #7a6050; /* corrigé 5.44:1 AA ✅ (était #b09a85 = 2.52 FAIL) */
  --rose:         #c0445a;
  --orange:       #d4614a;
  --violet:       #7b2d8b;
  --violet-soft:  rgba(123,45,139,0.10);
  --dark:         #0e0b14;
  --dark2:        #1a1424;
  --header-h:     70px;
  --r-sm:         8px;
  --r-md:         16px;
  --r-lg:         28px;
  --r-xl:         40px;
  --shadow:       0 4px 24px rgba(14,11,20,0.10);
  --shadow-lg:    0 16px 60px rgba(14,11,20,0.18);
  --font-display: 'Clash Display', 'Satoshi', sans-serif;
  --font-body:    'Satoshi', system-ui, sans-serif;
  --font-jp:      'Noto Serif JP', serif;
  --ease:         cubic-bezier(0.22,1,0.36,1);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }

/* ── 2. UTILITAIRES ── */
.container { width: min(1200px, 92vw); margin-inline: auto; }
.container-sm { width: min(820px, 92vw); margin-inline: auto; }
.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 0.6rem;
}
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.section-intro { font-size: 1.05rem; color: var(--muted); max-width: 600px; margin-bottom: 2.5rem; }
.center { text-align: center; margin-inline: auto; }

/* ── 3. BOUTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.7rem 1.6rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  border: none; cursor: pointer; transition: transform 0.2s var(--ease), opacity 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-primary { background: var(--rose); color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-outline { background: transparent; color: var(--rose); border: 2px solid var(--rose); }
.btn-outline:hover { background: var(--rose); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }

/* ── 4. HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  background: rgba(14,11,20,0.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; width: min(1200px, 92vw); margin-inline: auto;
}
.logo-link { display: flex; align-items: center; gap: 0.65rem; color: #fff; }
.logo-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--rose); }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fff; }
.logo-accent { color: var(--rose); }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-size: 0.87rem; font-weight: 500; padding: 0.4rem 0.8rem;
  border-radius: var(--r-sm); color: rgba(255,255,255,0.7);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.nav-active { color: var(--rose); font-weight: 600; }
.nav-cta { background: var(--rose) !important; color: #fff !important; padding: 0.4rem 1.1rem; border-radius: 999px; }
.nav-cta:hover { background: var(--orange) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }
.theme-toggle { background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: rgba(255,255,255,0.6); margin-left: 0.5rem; transition: background 0.2s; }
.theme-toggle:hover { background: rgba(255,255,255,0.08); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem; flex-direction: column; gap: 0.3rem; z-index: 850;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link { font-size: 1rem; font-weight: 500; padding: 0.6rem 0.8rem; border-radius: var(--r-sm); color: rgba(255,255,255,0.8); transition: background 0.2s; }
.mobile-nav-link:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ── 5. HERO : PLEIN ECRAN ── */
.hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; overflow: hidden;
}

/* Colonne gauche : texte sur fond sombre */
.hero-left {
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 3rem) 5vw 4rem 6vw;
  position: relative; z-index: 1; overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 60%, rgba(192,68,90,0.25) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 10%, rgba(123,45,139,0.3) 0%, transparent 60%);
  z-index: 0;
}

.hero-left > * { position: relative; z-index: 1; }

.hero-jp {
  font-family: var(--font-jp); font-size: 0.82rem;
  color: rgba(255,255,255,0.6); /* corrigé 4.6:1 AA ✅ (était 0.45 = 4.11 ⚠️) */
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: #fff; line-height: 1.05; margin-bottom: 1.2rem;
}

.hero-accent {
  background: linear-gradient(90deg, #f5a3b3, #e8904a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  margin-bottom: 1.8rem; line-height: 1.65; max-width: 420px;
}

.hero-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 2.2rem; }
.tag {
  font-size: 0.75rem; font-weight: 600; padding: 0.28rem 0.75rem;
  border-radius: 999px; background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.12);
}

.hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Colonne droite : image plein format */
.hero-right {
  position: relative; overflow: hidden;
}

.hero-right img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}

.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 20%),
              linear-gradient(to top, var(--dark) 0%, transparent 25%);
}

/* ── 5b. ACTUALITÉ À LA UNE ── */
.une { padding: 3.5rem 0 1rem; }
.une-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.une-head .eyebrow { margin: 0; }
.une-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rose);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.une-all:hover { opacity: 0.7; }
.une-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.une-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(192, 68, 90, 0.16);
}
.une-media {
  background-color: var(--light);
  background-size: cover;
  background-position: center;
  min-height: 220px;
}
.une-media.no-img {
  background: linear-gradient(135deg, var(--rose), var(--violet));
}
.une-body {
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.une-cat {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(192, 68, 90, 0.1);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.une-title {
  font-family: var(--font-display, inherit);
  font-size: 1.55rem;
  line-height: 1.15;
  margin: 0 0 0.6rem;
  color: var(--text);
}
.une-note {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.1rem;
}
.une-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--rose);
}
@media (max-width: 720px) {
  .une-card { grid-template-columns: 1fr; }
  .une-media { min-height: 180px; }
  .une-body { padding: 1.5rem 1.4rem; }
  .une-title { font-size: 1.3rem; }
}

/* ── 6. À PROPOS ── */
.about { background: var(--surface); padding: 6rem 0; }

.about-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 5rem; align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4; object-fit: cover; object-position: top;
}

/* about-img-badge retiré */

.about-text .section-title { margin-bottom: 0.6rem; }

.about-text p { color: var(--muted); margin-bottom: 1rem; font-size: 1.02rem; line-height: 1.75; }
.about-text p strong { color: var(--text); }

.domains {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.8rem;
}
.domain-chip {
  font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  background: var(--violet-soft); color: var(--violet);
  border: 1px solid rgba(123,45,139,0.18);
}

/* ── 7. UNIVERS ── */
.univers { background: var(--dark); padding: 6rem 0; }
.univers .eyebrow { color: #e87a8e; /* #e87a8e = 4.6:1 AA ✅ sur dark (rose renforcé pour petits textes) */ }
.univers .section-title { color: #fff; }

.univers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}

.univers-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md); padding: 2rem 1.6rem;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.univers-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--violet));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.univers-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }
.univers-card:hover::before { transform: scaleX(1); }

.univers-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.univers-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 0.5rem; }
.univers-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── 8. OUVRAGES ── */
.ouvrages { background: var(--bg); padding: 6rem 0; }

.books-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--border); padding-bottom: 0.6rem;
  margin: 2.5rem 0 2rem;
}
.books-label:first-of-type { margin-top: 0; }

.books-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
  margin-bottom: 1rem;
}

.book-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.book-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Couverture stylisée */
.book-cover {
  aspect-ratio: 3/4; display: flex; align-items: flex-end;
  padding: 1.4rem; position: relative; overflow: hidden; min-height: 240px;
}
.book-cover-inner {
  position: relative; z-index: 1; width: 100%;
}
.book-cover-cat {
  display: block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7); margin-bottom: 0.4rem;
}
.book-cover-title { font-size: 1.5rem; color: #fff; line-height: 1.1; margin-bottom: 0.2rem; }
.book-cover-sub { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.book-cover-deco {
  position: absolute; top: -3rem; right: -0.5rem;
  font-size: 5rem; opacity: 0.18; line-height: 1;
}

.book-cover--splatoon  { background: linear-gradient(160deg, #0a1628 0%, #1a3a6e 50%, #c0445a 100%); }
.book-cover--100choses { background: linear-gradient(160deg, #1a0a28 0%, #3d2060 50%, #7b2d8b 100%); }
.book-cover--isekai    { background: linear-gradient(160deg, #0d1f1a 0%, #1a4a38 50%, #2d7a5a 100%); }
.book-cover--bl        { background: linear-gradient(160deg, #2d0d3a 0%, #7b2d8b 60%, #c0445a 100%); }
.book-cover--jeunesse  { background: linear-gradient(160deg, #1a0a0a 0%, #8b2d2d 50%, #d4614a 100%); }
.book-cover--90s       { background: linear-gradient(160deg, #0a1a2d 0%, #2d5a8b 50%, #4a90d4 100%); }
.book-cover--folklore  { background: linear-gradient(160deg, #0d1a0d 0%, #2d5a2d 50%, #5a8b3a 100%); }
.book-cover--webtoon   { background: linear-gradient(160deg, #1a0a1a 0%, #4a2d6b 50%, #7b2d8b 100%); }

.book-info { padding: 1.4rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }

.book-status {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.22rem 0.65rem; border-radius: 999px;
  background: rgba(45,122,79,0.12); color: #2d7a4f; width: fit-content;
}
.book-status.status-projet { background: rgba(123,45,139,0.12); color: var(--violet); }

.book-title { font-size: 1rem; line-height: 1.3; }
.book-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; flex: 1; }
.book-links { margin-top: auto; padding-top: 0.8rem; }

.books-grid--future { grid-template-columns: repeat(4, 1fr); }

/* ── 9. ANALYSES / ARTICLES ── */
.analyses { background: var(--surface); padding: 6rem 0; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem; margin-bottom: 2.5rem;
}

.article-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 0;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  overflow: hidden;
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.article-thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}
.article-card--featured .article-thumb { border-bottom: none; }
.article-card-body {
  padding: 1.4rem 1.8rem 1.8rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  flex: 1;
}

.article-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--dark) 0%, #2d1255 100%);
  border: none; color: #fff;
}
.article-card--featured .article-cat { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.article-card--featured .article-title { color: #fff; font-size: 1.2rem; }
.article-card--featured .article-excerpt { color: rgba(255,255,255,0.65); }
.article-card--featured .article-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.article-card--featured .article-read-more { color: #f5a3b3; }

.article-cat {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--rose); background: rgba(192,68,90,0.1);
  display: inline-block; padding: 0.2rem 0.65rem; border-radius: 999px; width: fit-content;
}
.article-title { font-size: 1.05rem; line-height: 1.35; }
.article-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.6; flex: 1; }
.article-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; }
.article-tag { font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.55rem; border-radius: 999px; background: var(--violet-soft); color: var(--violet); }
.article-read-more { font-size: 0.86rem; font-weight: 700; color: var(--rose); margin-top: 0.4rem; display: inline-block; }
.article-read-more:hover { text-decoration: underline; }
.analyses-cta { text-align: center; margin-top: 0.5rem; }

/* ── 10. PARTENARIATS ── */
.partenariats { background: var(--surface2); padding: 6rem 0; }

.partenariats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-bottom: 2.5rem;
}

.partenariat-type {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.8rem 1.4rem; text-align: center;
  transition: transform 0.3s var(--ease);
}
.partenariat-type:hover { transform: translateY(-4px); }
.partenariat-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.partenariat-type h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.partenariat-type p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
.partenariats-cta { text-align: center; }

/* ── 11. CONTACT ── */
.contact { background: var(--dark); padding: 7rem 0; overflow: hidden; position: relative; }
.contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(192,68,90,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(123,45,139,0.2) 0%, transparent 55%);
}

.contact-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}

.contact-visual { position: relative; }
.contact-visual img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: 0 24px 80px rgba(192,68,90,0.3);
  aspect-ratio: 3/4; object-fit: cover; object-position: top;
}
.contact-visual::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: calc(var(--r-lg) + 4px);
  background: linear-gradient(135deg, var(--rose), var(--violet));
  z-index: -1;
}

.contact-text .eyebrow { color: #e87a8e; /* rose renforcé 4.6:1 AA ✅ sur dark */ }
.contact-text .section-title { color: #fff; margin-bottom: 1rem; }
.contact-text p { color: rgba(255,255,255,0.62); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.5rem; }

.contact-info-row {
  display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem;
}
.contact-info-item {
  display: flex; align-items: center; gap: 0.8rem;
  color: rgba(255,255,255,0.7); font-size: 0.95rem;
}
.contact-info-icon { font-size: 1.2rem; }
.contact-info-item strong { color: #fff; }

.contact-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ── 12. FOOTER ── */
.footer { background: #080610; color: rgba(255,255,255,0.5); padding: 2.5rem 0; }
.footer-inner {
  width: min(1200px, 92vw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--rose); }
.footer-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; }
.footer-tagline { font-size: 0.75rem; color: #858585; /* corrigé 5.45:1 AA ✅ (était 0.40 = trop faible) */ font-family: var(--font-jp); }
.footer-nav { display: flex; gap: 1.2rem; }
.footer-nav a { font-size: 0.85rem; color: #999999; /* corrigé 7.06:1 AAA ✅ (était 0.45 = 4.24 ⚠️) */ transition: color 0.2s; }
.footer-nav a:hover { color: var(--rose); }
.footer-copy { font-size: 0.78rem; color: #909090; /* corrigé 6.30:1 AA ✅ (était 0.28 = 2.17 FAIL ❌) */ }

/* ── 13. ARTICLES PAGE ── */
.articles-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1255 60%, var(--violet) 100%);
  color: #fff; padding: calc(var(--header-h) + 3.5rem) 0 3.5rem; text-align: center;
}
.articles-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 0.6rem; }
.articles-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 520px; margin-inline: auto; }

.articles-filter {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 2.5rem auto 3rem;
}
.filter-btn {
  font-size: 0.82rem; font-weight: 600; padding: 0.4rem 1rem; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--surface); color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--rose); color: #fff; border-color: var(--rose); }

.articles-list { display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 5rem; }

.article-card-full {
  display: grid; grid-template-columns: 200px 1fr;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.article-card-full:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-cover { width: 200px; height: 100%; min-height: 170px; object-fit: cover; }
.card-cover-placeholder {
  width: 200px; min-height: 170px;
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.card-cover-placeholder.manga    { background: linear-gradient(135deg,#1a0830,#2d1255); }
.card-cover-placeholder.analyses { background: linear-gradient(135deg,#0d2b1a,#2d6a2d); }
.card-cover-placeholder.folklore { background: linear-gradient(135deg,#1a2b0d,#4a7a1e); }
.card-cover-placeholder.bl       { background: linear-gradient(135deg,#2d0d3a,#7b2d8b); }
.card-cover-placeholder.emissions{ background: linear-gradient(135deg,#2b1a0d,#c0445a); }
.card-cover-placeholder.series   { background: linear-gradient(135deg,#0d1a2b,#1e5a8b); }
.card-cover-placeholder.bd       { background: linear-gradient(135deg,#2b1a1a,#d4614a); }

.card-body { padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; }
.card-cat { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rose); }
.card-title { font-size: 1.1rem; line-height: 1.3; }
.card-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.55; flex: 1; }
.card-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.card-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.card-tag { font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.55rem; border-radius: 999px; background: var(--violet-soft); color: var(--violet); }
.card-read-link { font-size: 0.86rem; font-weight: 700; color: var(--rose); white-space: nowrap; }
.card-read-link:hover { text-decoration: underline; }
.card-coming { opacity: 0.55; pointer-events: none; }
.badge-coming { font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 999px; background: var(--surface2); color: var(--muted); }

/* ── 14. ARTICLE INTÉRIEUR ── */
.article-hero {
  position: relative; padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  overflow: hidden; color: #fff;
}
.article-hero-content { position: relative; z-index: 1; width: min(820px, 92vw); margin-inline: auto; }
.article-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 0.3rem 0.8rem; border-radius: 999px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: #fff; margin-bottom: 1rem;
}
.article-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 1rem; }
.article-meta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.article-author { font-weight: 600; color: rgba(255,255,255,0.9); }
.ink-splash { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }

.article-body { padding: 3rem 0 5rem; }
.article-layout {
  width: min(1100px, 94vw); margin-inline: auto;
  display: grid; grid-template-columns: 220px 1fr; gap: 3.5rem; align-items: start;
}
.article-toc { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.toc-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.8rem; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.toc-link { font-size: 0.83rem; color: var(--muted); display: block; padding: 0.25rem 0.5rem; border-left: 2px solid var(--border); transition: color 0.2s, border-color 0.2s; line-height: 1.4; }
.toc-link:hover, .toc-link.active { color: var(--rose); border-color: var(--rose); }
.article-content { min-width: 0; }
.article-section { margin-bottom: 2.5rem; scroll-margin-top: calc(var(--header-h) + 1rem); }
.section-heading { font-size: 1.45rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.article-content p { font-size: 1rem; line-height: 1.85; color: var(--text); margin-bottom: 1rem; }
.article-content strong { color: var(--rose); font-weight: 700; }
.article-blockquote {
  border-left: 4px solid var(--rose); margin: 1.8rem 0; padding: 1rem 1.5rem;
  background: var(--surface2); border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.article-blockquote p { font-size: 1.08rem; font-style: italic; margin: 0 0 0.4rem; }
.article-blockquote cite { font-size: 0.8rem; color: var(--muted); font-style: normal; font-weight: 600; }
.article-infobox {
  background: var(--violet-soft); border: 1px solid rgba(123,45,139,0.18);
  border-radius: var(--r-md); padding: 1.2rem 1.4rem; margin: 1.5rem 0;
}
.infobox-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--violet); margin-bottom: 0.6rem; }
.article-infobox p, .article-infobox ul { font-size: 0.9rem; color: var(--text); line-height: 1.6; }
.article-infobox ul { list-style: disc; padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.3rem; }
.article-highlight {
  background: linear-gradient(135deg, rgba(192,68,90,0.07), rgba(123,45,139,0.07));
  border-radius: var(--r-md); padding: 1.3rem 1.5rem; margin: 1.5rem 0;
  border: 1px solid rgba(192,68,90,0.12);
}
.article-highlight p { font-size: 0.95rem; margin: 0; }
.article-conclusion {
  background: var(--surface2); border-radius: var(--r-lg); padding: 2rem;
  margin-top: 2rem; text-align: center; border: 1px solid var(--border);
}
.article-conclusion p { font-size: 1rem; color: var(--muted); margin-bottom: 1rem; }
.article-sources { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.sources-title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.8rem; }
.sources-list { font-size: 0.78rem !important; color: var(--muted); display: flex; flex-direction: column; gap: 0.3rem; padding-left: 1.2rem; }
.sources-list li { line-height: 1.5; }
.sources-list a { color: var(--rose); text-decoration: underline; word-break: break-all; }

/* Share buttons */
.article-share { margin: 2.5rem 0 1rem; padding: 1.5rem; border-radius: var(--r-md); background: var(--surface2); border: 1px solid var(--border); }
.share-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin: 0 0 0.9rem; }
.share-buttons { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: opacity 0.2s, transform 0.15s; cursor: pointer; border: none; }
.share-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.share-btn-linkedin { background: #0A66C2; color: #fff; }
.share-btn-instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.share-btn-tiktok { background: #010101; color: #fff; border: 1px solid #333; }
.share-btn-copy { background: var(--surface2); color: var(--text); }
.share-btn-copy.copied { background: #2d7a4f; color: #fff; }

/* ── 15. RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: calc(var(--header-h) + 2.5rem) 6vw 3rem; }
  .hero-right { height: 55vw; max-height: 500px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 360px; }
  .univers-grid { grid-template-columns: repeat(2, 1fr); }
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .books-grid--future { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-visual { max-width: 320px; margin-inline: auto; }
  .partenariats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-right { height: 70vw; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card--featured { grid-column: span 1; }
  .univers-grid { grid-template-columns: 1fr; }
  .books-grid, .books-grid--future { grid-template-columns: 1fr; }
  .partenariats-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { display: none; }
  .article-card-full { grid-template-columns: 1fr; }
  .card-cover, .card-cover-placeholder { width: 100%; height: 160px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .partenariats-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE ACTUALITÉS
   ============================================================ */
.actu-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 2.5rem;
  background: linear-gradient(180deg, var(--surface2), var(--bg));
  border-bottom: 1px solid var(--border);
}
.actu-hero .container { text-align: center; }
.actu-hero .eyebrow { color: var(--rose); }
.actu-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin-bottom: 0.8rem; }
.actu-hero .actu-lead { font-size: 1.08rem; color: var(--muted); max-width: 640px; margin: 0 auto; }

.actu-section { padding: 3rem 0; }
.actu-section.alt { background: var(--surface2); }
.actu-section .eyebrow { color: var(--rose); }

/* Coups de projecteur */
.spotlight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; margin-top: 1.8rem; }
.spotlight-card {
  position: relative; background: var(--dark); color: #fff;
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; min-height: 260px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.spotlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.spotlight-media { position: relative; height: 150px; overflow: hidden; }
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(14,11,20,0) 40%, rgba(14,11,20,0.85)); }
.spotlight-body { padding: 1.3rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.spotlight-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #f5a3b3; margin-bottom: 0.5rem; }
.spotlight-card h3 { font-size: 1.25rem; color: #fff; margin-bottom: 0.55rem; line-height: 1.25; }
.spotlight-take { font-size: 0.96rem; color: rgba(255,255,255,0.82); line-height: 1.6; flex: 1; }
.spotlight-take .signature { color: #f5a3b3; font-weight: 600; }
.spotlight-foot { display: flex; align-items: center; gap: 0.8rem; margin-top: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.spotlight-date { font-family: var(--font-jp); }

/* Filtres */
.actu-filters { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.8rem 0 2rem; }
.actu-filter {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  padding: 0.45rem 1rem; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--muted); border: 1.5px solid var(--border);
  transition: all 0.2s var(--ease);
}
.actu-filter:hover { border-color: var(--rose); color: var(--rose); }
.actu-filter.is-active { background: var(--rose); border-color: var(--rose); color: #fff; }

/* Grille de brèves */
.breve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.breve-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s, border-color 0.28s;
}
.breve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(192,68,90,0.35); }
.breve-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--violet-soft); }
.breve-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.breve-card:hover .breve-media img { transform: scale(1.04); }
.breve-body { padding: 1.25rem 1.35rem 1.35rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.breve-top { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.breve-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.22rem 0.6rem; border-radius: 999px; }
.breve-cat[data-cat="Manga"] { background: var(--violet-soft); color: var(--violet); }
.breve-cat[data-cat="Jeu vidéo"] { background: rgba(45,122,79,0.12); color: #2d7a4f; }
.breve-cat[data-cat="Anime"] { background: rgba(212,97,74,0.14); color: var(--orange); }
.breve-cat[data-cat="Série"] { background: rgba(123,45,139,0.12); color: var(--violet); }
.breve-cat[data-cat="Film"] { background: rgba(192,68,90,0.12); color: var(--rose); }
.breve-cat[data-cat="Culture"] { background: rgba(42,31,20,0.07); color: var(--muted); }
.breve-date { font-size: 0.76rem; color: var(--light); font-family: var(--font-jp); white-space: nowrap; }
.breve-card h3 { font-size: 1.02rem; line-height: 1.3; margin: 0.1rem 0; }
.breve-note { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.breve-note .signature { color: var(--rose); font-weight: 600; }
.breve-action {
  align-self: flex-start; margin-top: 0.35rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.82rem; font-weight: 700; color: var(--rose);
  padding: 0.42rem 0.85rem; border: 1px solid rgba(192,68,90,0.4); border-radius: 999px;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s;
}
.breve-action span { transition: transform 0.2s var(--ease); }
.breve-action:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.breve-action:hover span { transform: translateX(3px); }
.breve-source { font-size: 0.76rem; color: var(--light); margin-top: auto; padding-top: 0.5rem; }
.breve-source a { color: var(--rose); font-weight: 600; }
.breve-empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 2rem 0; }

/* Partage réseaux sociaux (brèves + coups de projecteur) */
.breve-share {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 0.85rem; padding-top: 0.75rem;
  border-top: 1px solid rgba(192,68,90,0.12);
}
.breve-share .share-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin-right: 0.15rem;
}
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  font-size: 0.72rem; font-weight: 700; line-height: 1;
  border: 1px solid rgba(192,68,90,0.3); background: #fff; color: var(--rose);
  cursor: pointer; text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.share-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); transform: translateY(-2px); }
.share-btn.is-copied { background: #2e7d4f; border-color: #2e7d4f; color: #fff; }

/* Variante sur fond sombre (coups de projecteur) */
.spotlight-card .breve-share { border-top-color: rgba(255,255,255,0.14); }
.spotlight-card .breve-share .share-label { color: rgba(255,255,255,0.55); }
.spotlight-card .share-btn {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); color: #fff;
}
.spotlight-card .share-btn:hover { background: var(--rose); border-color: var(--rose); color: #fff; }

/* Newsletter / abonnement léger */
.actu-follow { text-align: center; padding: 2.5rem 0 3rem; }
.actu-follow p { color: var(--muted); max-width: 520px; margin: 0.6rem auto 1.4rem; }
.actu-follow .actu-social { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* Bouton "Lire la chronique" dans la carte coup de projecteur */
.chronique-open {
  align-self: flex-start;
  margin-top: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.85rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: var(--rose); color: #fff; border: none; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.chronique-open span { transition: transform 0.2s var(--ease); }
.chronique-open:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192,68,90,0.4); }
.chronique-open:hover span { transform: translateX(3px); }
.chronique-open:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Modale de chronique */
body.chronique-lock { overflow: hidden; }
.chronique-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.chronique-modal.is-open { display: block; }
.chronique-overlay {
  position: absolute; inset: 0;
  background: rgba(14,11,20,0.66); backdrop-filter: blur(3px);
  animation: chroFade 0.25s var(--ease);
}
.chronique-dialog {
  position: relative; z-index: 1;
  max-width: 720px; width: calc(100% - 2.4rem);
  max-height: 88vh; overflow-y: auto;
  margin: 6vh auto; padding: 2.6rem 2.4rem 2.2rem;
  background: var(--creme, #faf7f3); color: var(--encre, #2b2028);
  border-radius: 20px; box-shadow: var(--shadow-lg);
  animation: chroRise 0.32s var(--ease);
}
.chronique-close {
  position: absolute; top: 1rem; right: 1.1rem;
  width: 38px; height: 38px; border-radius: 50%;
  border: none; cursor: pointer; font-size: 1.4rem; line-height: 1;
  background: rgba(192,68,90,0.10); color: var(--rose);
  transition: background 0.2s, transform 0.2s var(--ease);
}
.chronique-close:hover { background: var(--rose); color: #fff; transform: rotate(90deg); }
.chronique-close:focus-visible { outline: 2px solid var(--rose); outline-offset: 2px; }
.chronique-kicker {
  display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 0.5rem;
}
.chronique-cat {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: #fff; background: var(--rose);
  padding: 0.2rem 0.7rem; border-radius: 999px; margin-bottom: 0.8rem;
}
.chronique-dialog h2 {
  font-family: var(--font-display); font-size: 1.9rem; line-height: 1.15;
  margin-bottom: 1.3rem; color: var(--encre, #2b2028);
}
.chronique-body p {
  font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.1rem; color: #443a40;
}
.chronique-body p:first-child::first-letter {
  font-family: var(--font-display); font-size: 3.1rem; font-weight: 700;
  float: left; line-height: 0.82; padding: 0.1rem 0.5rem 0 0; color: var(--rose);
}
.chronique-foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid rgba(192,68,90,0.18);
}
.chronique-foot .breve-source { margin-top: 0; padding-top: 0; }
@keyframes chroFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes chroRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .chronique-overlay, .chronique-dialog { animation: none; }
  .chronique-close:hover { transform: none; }
}

@media (max-width: 860px) {
  .spotlight-grid { grid-template-columns: 1fr; }
  .breve-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .chronique-dialog { padding: 2.2rem 1.5rem 1.8rem; margin: 4vh auto; max-height: 92vh; }
  .chronique-dialog h2 { font-size: 1.5rem; }
}
