/* ============================================================
   JEUX DE FILLE GRATUIT — CSS Gen-Z Gaming Girl
   Version 1.0 — 2026-06-17
   ============================================================ */

/* ── 1. GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Pacifico&display=swap');

/* ── 2. VARIABLES ── */
:root {
  --violet: #7C3AED;
  --rose: #EC4899;
  --mint: #2DD4BF;
  --lavender: #F5F3FF;
  --snow: #FAFAF9;
  --ink: #1E1B4B;
  --muted: #6B7280;
  --card-bg: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, #7C3AED, #EC4899);
  --gradient-accent: linear-gradient(135deg, #7C3AED, #2DD4BF);
  --radius: 12px;
  --shadow: 0 4px 20px rgba(124,58,237,0.12);
  --shadow-hover: 0 8px 32px rgba(124,58,237,0.22);
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Nunito', 'Pacifico', sans-serif;
}

/* ── 3. RESET + BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--snow);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── 4. ANTI-DISTORSION IMAGES (OBLIGATOIRE) ── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-hero     { aspect-ratio: 16/9; overflow: hidden; }
.img-card     { aspect-ratio: 3/2;  overflow: hidden; }
.img-body     { aspect-ratio: 3/2;  overflow: hidden; }
.img-portrait { aspect-ratio: 1/1;  overflow: hidden; border-radius: 50%; }

.img-hero img,
.img-card img,
.img-body img,
.img-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── 5. TYPOGRAPHIE ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p { margin-bottom: 1.2rem; }

a {
  color: var(--violet);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--rose); }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 6. LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: .5rem;
}

.section-kicker {
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ── 7. HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--snow);
  border-bottom: 1px solid rgba(124,58,237,.1);
  transition: box-shadow .3s, background .3s;
}

.site-header.scrolled {
  background: rgba(250,250,249,.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-logo:hover {
  opacity: .85;
}

/* Navigation */
.nav-main {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-main > li > a {
  display: block;
  padding: .5rem .85rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
  border-radius: 8px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.nav-main > li > a:hover {
  background: var(--lavender);
  color: var(--violet);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 220px;
  padding: .5rem;
  z-index: 200;
  border: 1px solid rgba(124,58,237,.12);
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  display: block;
  animation: fadeDown .2s ease;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown a {
  display: block;
  padding: .5rem .75rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 8px;
  transition: background .15s, color .15s;
}

.dropdown a:hover {
  background: var(--lavender);
  color: var(--violet);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── 8. HERO HOMEPAGE ── */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,.75) 0%, rgba(236,72,153,.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 3rem 1.5rem;
}

.hero-kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,.25);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
  max-width: 580px;
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* ── 9. BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  border: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.btn-violet {
  background: var(--gradient-primary);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--violet);
  border: 2px solid var(--violet);
}

.btn-outline:hover {
  background: var(--lavender);
}

/* ── 10. SECTION CATÉGORIES ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--lavender);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s, box-shadow .25s;
  border: 2px solid transparent;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity .25s;
  z-index: 0;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.category-card:hover::after {
  opacity: .08;
}

.category-card:hover .category-name {
  color: var(--violet);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.category-name {
  font-size: .92rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: color .25s;
}

/* ── 11. BLOG CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card-wrapper {
  display: flex;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s, box-shadow .25s;
  width: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--gradient-primary);
  color: #fff;
  padding: .25rem .7rem;
  border-radius: 100px;
  margin-bottom: .75rem;
  width: fit-content;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .5rem;
  flex: 1;
}

.blog-card-summary {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: .75rem;
}

.blog-card-date {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── 12. FILTER BOUTONS ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: var(--lavender);
  color: var(--violet);
  transition: background .2s, color .2s, box-shadow .2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(124,58,237,.25);
}

/* ── 13. SECTION CTA GRADIENT ── */
.cta-section {
  background: var(--gradient-primary);
  padding: 4rem 1.5rem;
  text-align: center;
  border-radius: 24px;
  margin: 2rem auto;
  max-width: 900px;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,.88);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ── 14. ARTICLE PAGE ── */
.article-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  align-items: start;
}

.article-wrapper:not(:has(.article-toc)) {
  grid-template-columns: 1fr;
}

.article-toc {
  position: sticky;
  top: 90px;
  background: var(--lavender);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-left: 3px solid var(--violet);
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.article-toc h3 {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--violet);
  margin-bottom: .75rem;
}

.article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}

.article-toc li {
  margin-bottom: .35rem;
  counter-increment: toc-counter;
}

.article-toc a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  line-height: 1.4;
}

.article-toc a::before {
  content: counter(toc-counter) '.';
  color: var(--rose);
  font-weight: 800;
  flex-shrink: 0;
  min-width: 1.2rem;
}

.article-toc a:hover { color: var(--violet); }

.article-body {
  max-width: 720px;
}

.article-body h2 {
  font-size: 1.6rem;
  padding-left: 1rem;
  border-left: 4px solid;
  border-image: var(--gradient-primary) 1;
  margin: 2rem 0 1rem;
  color: var(--ink);
}

.article-body h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 .75rem;
  color: var(--violet);
}

.article-body .pull-quote {
  border-left: 4px solid var(--violet);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--lavender);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink);
}

.article-body ul li::marker { color: var(--rose); }

/* Expert card */
.interview-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--lavender), rgba(236,72,153,.07));
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  border: 1px solid rgba(124,58,237,.15);
}

.interview-card .expert-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--violet);
}

.interview-card .expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.interview-card h3 {
  font-size: 1.1rem;
  color: var(--violet);
  margin-bottom: .25rem;
}

.interview-card .expert-bio {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
}

/* Article header */
.article-header {
  padding: 2.5rem 1.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.article-header .breadcrumb {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.article-header .breadcrumb a {
  color: var(--muted);
  font-weight: 600;
}

.article-header .breadcrumb a:hover { color: var(--violet); }

.article-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: .75rem;
}

.article-meta {
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.article-category-pill {
  background: var(--gradient-primary);
  color: #fff;
  padding: .25rem .75rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── 15. FAQ ACCORDION ── */
.faq-section {
  background: var(--lavender);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.faq-item details {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: .75rem;
  border: 1px solid rgba(124,58,237,.1);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--ink);
  transition: background .2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '▸';
  color: var(--violet);
  font-size: .9rem;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: .75rem;
}

.faq-item details[open] summary {
  background: var(--lavender);
  color: var(--violet);
}

.faq-item details[open] summary::after {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── 16. FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand-footer {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: .75rem;
}

.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li { margin-bottom: .4rem; }

.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  font-weight: 600;
}

.footer-col a:hover { color: var(--rose); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2rem;
  padding-top: 1.25rem;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ── 17. ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── 18. PAGE INTRO ── */
.page-intro {
  background: var(--lavender);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 2rem auto;
  max-width: 900px;
}

.page-intro h2 {
  font-size: 1.5rem;
  margin-bottom: .75rem;
}

/* ── 19. HERO PAGE (non-homepage) ── */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}

.page-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(124,58,237,.8) 0%, rgba(236,72,153,.65) 100%);
}

.page-hero .hero-content {
  max-width: 700px;
}

/* ── 20. BLOG LISTING PAGE ── */
.blog-listing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.blog-listing h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: .5rem;
}

.blog-listing-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ── 21. MENTIONS LÉGALES + CGU ── */
.legal-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1.5rem 4rem;
}

.legal-page h1 { margin-bottom: 2rem; }
.legal-page h2 {
  font-size: 1.3rem;
  color: var(--violet);
  margin: 2rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--lavender);
}

/* ── 22. 404 PAGE ── */
.notfound-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-primary);
}

.notfound-inner {
  color: #fff;
  max-width: 600px;
  padding: 2rem;
}

.notfound-inner h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  color: rgba(255,255,255,.15);
  letter-spacing: -.02em;
  margin-bottom: 0;
  line-height: 1;
}

.notfound-inner h2 {
  font-size: 1.8rem;
  color: #fff;
  margin: .5rem 0 1rem;
}

.notfound-inner p {
  color: rgba(255,255,255,.85);
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

.notfound-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

/* ── 23. CONTACT FORM ── */
.contact-page {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1.5rem 4rem;
}

.contact-form {
  background: var(--lavender);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: .4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid rgba(124,58,237,.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--violet);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ── 24. PLAN DU SITE ── */
.sitemap-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1.5rem 4rem;
}

.sitemap-section {
  background: var(--lavender);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.sitemap-section h2 {
  font-size: 1.1rem;
  color: var(--violet);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid rgba(124,58,237,.15);
}

.sitemap-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .75rem;
}

.sitemap-section a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}

.sitemap-section a:hover { color: var(--violet); }

/* ── 25. HOMEPAGE INTRO ── */
.homepage-intro {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(124,58,237,.1);
}

.homepage-intro h2 {
  font-size: 1.6rem;
  margin-bottom: .75rem;
}

.homepage-intro p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 650px;
  margin: 0 auto;
}

/* ── 26. À PROPOS ── */
.about-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.value-card {
  background: var(--lavender);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
}

.value-card .value-icon { font-size: 2rem; margin-bottom: .5rem; }
.value-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.value-card p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ── 27. RESPONSIVE ── */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .article-wrapper {
    grid-template-columns: 240px 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .article-wrapper {
    grid-template-columns: 1fr;
  }
  .article-toc {
    position: static;
    order: -1;
  }
  .about-values {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-main {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    gap: .25rem;
    border-bottom: 1px solid rgba(124,58,237,.1);
    box-shadow: var(--shadow);
  }

  .nav-main.nav-open {
    display: flex;
  }

  .nav-main > li > a {
    width: 100%;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--lavender);
    padding-left: 1rem;
    border-radius: var(--radius);
    margin-top: .25rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-section {
    border-radius: 0;
    margin: 2rem 0;
  }

  .faq-section {
    padding: 1.5rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* === R3 anti-distorsion images — Session N (2026-06-17) === */
.article-body img {
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  display: block;
  margin: 1.5rem auto;
}
.article-body p:has(> img:only-child) { margin: 0; }

/* === Interview blockquotes + footer brand (S3) === */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 320px;
}

blockquote.journalist-question, blockquote.expert-answer {
  font-size: 1rem !important;
  font-style: normal !important;
  font-family: 'Inter', sans-serif !important;
  line-height: 1.7 !important;
}

blockquote.journalist-question {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(236, 72, 153, 0.06));
  border-left: 4px solid var(--violet);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-weight: 600;
  color: var(--violet);
  position: relative;
}
blockquote.journalist-question::before {
  content: "❓";
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 1.25rem;
  background: white;
  padding: 0 0.4rem;
}
blockquote.journalist-question p { margin: 0; }

blockquote.expert-answer {
  background: white;
  border-left: 4px solid var(--rose);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0 2.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  position: relative;
}
blockquote.expert-answer::before {
  content: "💬";
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 1.25rem;
  background: white;
  padding: 0 0.4rem;
}
blockquote.expert-answer p { margin: 0 0 0.75rem; }
blockquote.expert-answer p:last-child { margin-bottom: 0; }
