/* ===================================================
   mairiedecourquetaine.fr — CSS statique complet
   Palette : Patrimoine médiéval Brie
   =================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;1,8..60,400&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* --- Design tokens --- */
:root {
  --bordeaux:      #5C1A1A;
  --bordeaux-80:   rgba(92, 26, 26, 0.80);
  --bordeaux-40:   rgba(92, 26, 26, 0.40);
  --bordeaux-10:   rgba(92, 26, 26, 0.10);
  --pierre:        #C5B9A8;
  --pierre-30:     rgba(197, 185, 168, 0.30);
  --or-patine:     #C9A84C;
  --or-15:         rgba(201, 168, 76, 0.15);
  --parchemin:     #FAF6EE;
  --lin:           #F0E8D8;
  --encre:         #1A1210;
  --ardoise:       #5A4E48;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Source Serif 4', Georgia, serif;
  --ff-quote:   'Cormorant Garamond', Georgia, serif;

  --radius:   6px;
  --shadow:   0 2px 12px rgba(26, 18, 16, 0.10);
  --max-w:    1200px;
  --content-w: 780px;
}

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

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

body {
  background: var(--parchemin);
  color: var(--encre);
  font-family: var(--ff-body);
  font-size: 1.05rem;
  line-height: 1.75;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bordeaux); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--or-patine); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--encre);
  line-height: 1.25;
}
h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; margin: 2.5rem 0 1rem; position: relative; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; margin: 1.8rem 0 0.75rem; }
h4 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }

h2::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--or-patine);
  margin-top: 0.5rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
h2.visible::after { transform: scaleX(1); }

p { margin-bottom: 1.25rem; }

blockquote {
  border-left: 4px solid var(--bordeaux);
  background: var(--lin);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--ff-quote);
  font-style: italic;
  font-size: 1.2em;
  color: var(--ardoise);
}

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--parchemin);
  border-bottom: 1px solid var(--pierre-30);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: var(--lin);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.logo {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bordeaux);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.logo span { color: var(--or-patine); }

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}
.nav-list a {
  display: block;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-family: var(--ff-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--encre);
  transition: background 0.2s, color 0.2s;
}
.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: var(--bordeaux-10);
  color: var(--bordeaux);
}

/* Hamburger mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--encre);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--parchemin);
    border-bottom: 1px solid var(--pierre-30);
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .nav-open .main-nav { display: block; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list a { padding: 0.75rem 1rem; }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bordeaux);
}
.hero--home { min-height: 90vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.65);
}

/* Ornement rosace watermark */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/favicon.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%;
  opacity: 0.04;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bordeaux) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or-patine);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Breadcrumb dans le hero */
.hero-breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.hero-breadcrumb a:hover { color: var(--or-patine); }
.hero-breadcrumb span { margin: 0 0.4rem; }

/* Hero article meta */
.hero-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

/* ===========================
   BOUTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(92,26,26,0.25); }

.btn-primary {
  background: var(--bordeaux);
  color: #fff;
  border-color: var(--bordeaux);
}
.btn-primary:hover { background: #7a2323; color: #fff; }

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover { border-color: var(--or-patine); color: var(--or-patine); }

.btn-outline {
  background: transparent;
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}
.btn-outline:hover { background: var(--bordeaux); color: #fff; }

/* ===========================
   HOMEPAGE — Sections
   =========================== */

/* Intro éditoriale */
.home-intro {
  padding: 4rem 0;
  background: var(--parchemin);
  text-align: center;
}
.home-intro p {
  max-width: 680px;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  color: var(--ardoise);
}

/* Grille guides piliers */
.home-guides {
  padding: 4rem 0;
  background: var(--lin);
}
.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-heading .kicker {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 0.5rem;
}
.section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0;
}
.section-heading h2::after { display: none; }

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.guide-card {
  background: var(--parchemin);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--encre);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(26,18,16,0.14); color: var(--encre); }

.guide-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--pierre-30);
}
.guide-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bordeaux-10), var(--or-15));
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-card-body { padding: 1.25rem 1.25rem 1.5rem; }
.guide-card-cat {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 0.5rem;
  font-family: var(--ff-body);
}
.guide-card-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.guide-card-desc {
  font-size: 0.88rem;
  color: var(--ardoise);
  margin: 0;
  line-height: 1.55;
}

/* Numéro en fond */
.guide-card::before {
  content: counter(guide-counter);
  counter-increment: guide-counter;
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--pierre-30);
  pointer-events: none;
  line-height: 1;
}
.guides-grid { counter-reset: guide-counter; }

/* Section articles récents */
.home-articles {
  padding: 4rem 0;
  background: var(--parchemin);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--encre);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(26,18,16,0.14); color: var(--encre); }

.article-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--pierre-30);
}
.article-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.article-card-cat {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-family: var(--ff-body);
}
.article-card-date {
  font-size: 0.75rem;
  color: var(--ardoise);
}
.article-card-title {
  font-family: var(--ff-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  flex: 1;
}
.article-card-excerpt {
  font-size: 0.84rem;
  color: var(--ardoise);
  margin: 0;
  line-height: 1.55;
}

/* Section immersive CTA */
.home-immersive {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bordeaux);
  color: #fff;
}
.home-immersive-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.home-immersive-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 1.5rem;
  margin: 0 auto;
  text-align: center;
}
.home-immersive-content h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.25rem;
}
.home-immersive-content h2::after { display: none; }
.home-immersive-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ===========================
   ARTICLE BODY (PageLayout / BlogLayout)
   =========================== */
.article-summary {
  background: var(--lin);
  border-left: 4px solid var(--bordeaux);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  color: var(--ardoise);
  line-height: 1.65;
}

.toc {
  background: var(--lin);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2.5rem 0;
}
.toc-title {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 0.75rem;
}
.toc ol { padding-left: 1.25rem; }
.toc li { margin-bottom: 0.35rem; font-size: 0.9rem; }
.toc a { color: var(--encre); text-decoration: none; }
.toc a:hover { color: var(--bordeaux); }

.article-body {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* Lettrine */
.article-body > p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-size: 3.5em;
  font-weight: 800;
  color: var(--bordeaux);
  float: left;
  line-height: 0.8;
  margin-right: 0.12em;
  margin-top: 0.08em;
}

/* Images inline */
.body-img-wrap {
  margin: 2.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.body-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.body-img-caption {
  font-size: 0.8rem;
  color: var(--ardoise);
  font-style: italic;
  padding: 0.5rem 0.75rem;
  background: var(--lin);
}

/* Pull quote */
.pull-quote {
  border-left: 4px solid var(--bordeaux);
  background: var(--lin);
  padding: 1.25rem 1.75rem;
  margin: 2.5rem 0;
  font-family: var(--ff-quote);
  font-style: italic;
  font-size: 1.25em;
  color: var(--ardoise);
  line-height: 1.55;
}

/* ===========================
   FAQ ACCORDÉON
   =========================== */
.faq-section {
  max-width: var(--content-w);
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}
.faq-title {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 1.5rem;
  color: var(--encre);
}
.faq-item {
  border-bottom: 1px solid var(--pierre-30);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-family: var(--ff-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--encre);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--bordeaux); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bordeaux-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--bordeaux);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--ardoise);
  line-height: 1.7;
}

/* ===========================
   RELATED ARTICLES / PAGES
   =========================== */
.related-section {
  max-width: var(--content-w);
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
  border-top: 2px solid var(--or-15);
  padding-top: 2.5rem;
}
.related-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 1.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.related-card {
  background: var(--lin);
  border-radius: var(--radius);
  padding: 1.1rem;
  text-decoration: none;
  color: var(--encre);
  font-size: 0.9rem;
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.35;
  transition: background 0.2s, color 0.2s;
}
.related-card:hover { background: var(--bordeaux-10); color: var(--bordeaux); }

/* ===========================
   BLOG LISTING
   =========================== */
.blog-header {
  background: var(--lin);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}
.blog-header h1 { margin-bottom: 0.75rem; }
.blog-header p { color: var(--ardoise); max-width: 580px; margin: 0 auto; }

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 1.5rem;
  background: var(--parchemin);
  border-bottom: 1px solid var(--pierre-30);
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 99px;
  border: 1.5px solid var(--pierre);
  background: transparent;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ardoise);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2.5rem 1.5rem 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.blog-grid .article-card[hidden] { display: none; }

/* ===========================
   BADGE
   =========================== */
.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: var(--or-15);
  color: var(--bordeaux);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ===========================
   UTILITAIRES
   =========================== */
.page-content {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.page-content h2 { margin-top: 2.5rem; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--encre);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; font-size: 1rem; display: block; margin-bottom: 0.75rem; }
.footer-brand .logo span { color: var(--or-patine); }
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or-patine);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===========================
   PAGE 404
   =========================== */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.not-found h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--bordeaux-10);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0;
}
.not-found h2 {
  font-size: 1.5rem;
  margin: 0.5rem 0 1rem;
}
.not-found h2::after { display: none; }

/* ===========================
   PLAN DU SITE
   =========================== */
.sitemap-section h2 { font-size: 1.3rem; margin-top: 2rem; }
.sitemap-section h2::after { display: none; }
.sitemap-section ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.sitemap-section li { margin-bottom: 0.35rem; }

/* ===========================
   INTERVIEW STYLES
   =========================== */
.interview-header {
  background: var(--lin);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--or-patine);
}
.interview-expert-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--encre);
}
.interview-expert-role {
  font-size: 0.88rem;
  color: var(--ardoise);
  margin-top: 0.25rem;
}

.interview-q {
  font-weight: 700;
  color: var(--bordeaux);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.interview-a { margin-bottom: 0; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .hero--home { min-height: 70vh; }
  .guides-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-body { padding: 1.5rem 1rem 3rem; }
  .faq-section { padding: 0 1rem; }
  .related-section { padding: 2rem 1rem; }
  .page-content { padding: 2rem 1rem 4rem; }
}
