/* ═══════════════════════════════════════════════════════════════════
   LCDMH GUIDE PRATIQUE v2 — CSS MAGAZINE PREMIUM
   Inspiration: Rever Magazine, Le Monde Magazine, Moto Revue
   ═══════════════════════════════════════════════════════════════════ */

/* --- PALETTE & VARIABLES --- */
:root {
  /* Couleurs principales */
  --gp-ink: #1a1612;              /* Noir chaud, presque brun */
  --gp-ink-soft: #3d2f25;         /* Brun profond */
  --gp-paper: #faf6ec;            /* Crème chaude (fond) */
  --gp-paper-deep: #f2ead9;       /* Crème plus foncée */
  --gp-accent: #9b2d20;           /* Rouge sang motard */
  --gp-accent-dark: #6b1f15;      /* Rouge profond */
  --gp-gold: #c19845;             /* Or vieilli, pas criard */
  --gp-gold-soft: #d4b876;        /* Or clair */
  --gp-rust: #b8620d;             /* Rouille/ambre */
  --gp-stone: #8a7f6e;            /* Gris pierre chaude */
  --gp-cream: #fdf9ee;            /* Blanc cassé chaud */

  /* Typographie */
  --gp-serif: 'Playfair Display', 'Libre Caslon Text', Georgia, serif;
  --gp-body: 'Crimson Pro', 'Source Serif Pro', Georgia, serif;
  --gp-sans: 'Inter Tight', 'Source Sans 3', -apple-system, sans-serif;
  --gp-display: 'Playfair Display', Georgia, serif;
  --gp-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Espacements rythmiques */
  --gp-space-xs: 0.5rem;
  --gp-space-sm: 1rem;
  --gp-space-md: 1.75rem;
  --gp-space-lg: 3rem;
  --gp-space-xl: 5rem;
}

/* --- TYPOGRAPHIE DE BASE --- */
.mag-body {
  font-family: var(--gp-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gp-ink);
  font-weight: 400;
}

.mag-body p {
  margin: 0 0 1.2rem 0;
}

.mag-body strong {
  font-weight: 600;
  color: var(--gp-ink);
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════════
   BADGE HERO "GUIDE COMPLET"
   ═══════════════════════════════════════════════════════════════════ */
.guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gp-gold);
  color: var(--gp-ink);
  font-family: var(--gp-sans);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  margin-bottom: 1.2rem;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.15);
}
.guide-badge::before {
  content: "—";
  font-weight: 400;
  letter-spacing: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   MÉTA GUIDE (temps, chapitres, auteur)
   ═══════════════════════════════════════════════════════════════════ */
.guide-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.5rem 0 3rem;
  padding: 1.25rem 2rem;
  background: transparent;
  border-top: 1px solid var(--gp-stone);
  border-bottom: 1px solid var(--gp-stone);
  font-family: var(--gp-sans);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gp-ink-soft);
}
.guide-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.guide-meta-item strong {
  color: var(--gp-accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════════
   SOMMAIRE — style journal édition limitée
   ═══════════════════════════════════════════════════════════════════ */
.guide-toc {
  background: var(--gp-cream);
  border: 1px solid var(--gp-stone);
  padding: 2.5rem 3rem 2rem;
  margin: 3rem 0 4rem;
  position: relative;
}
.guide-toc::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--gp-gold);
  pointer-events: none;
}
.guide-toc-title {
  font-family: var(--gp-display);
  font-size: 1.9rem;
  font-weight: 900;
  font-style: italic;
  color: var(--gp-accent);
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}
.guide-toc-subtitle {
  text-align: center;
  font-family: var(--gp-sans);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gp-stone);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px double var(--gp-gold);
}
.guide-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
  columns: 2;
  column-gap: 3rem;
}
.guide-toc-list li {
  counter-increment: toc-counter;
  margin: 0;
  break-inside: avoid;
  border-bottom: 1px dotted rgba(138, 127, 110, 0.4);
}
.guide-toc-list a {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.6rem 0;
  font-family: var(--gp-body);
  font-size: 1rem;
  color: var(--gp-ink);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.guide-toc-list a:hover {
  color: var(--gp-accent);
  transform: translateX(4px);
  text-decoration: none;
}
.guide-toc-list a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--gp-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gp-gold);
}
.guide-toc-list a::after {
  content: "→";
  color: var(--gp-gold);
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.guide-toc-list a:hover::after {
  opacity: 1;
  transform: translateX(3px);
}
@media (max-width: 680px) {
  .guide-toc-list { columns: 1; }
  .guide-toc { padding: 1.5rem 1.25rem; }
  .guide-toc-title { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER DE PARTIE (grosse séparation "PARTIE 1", "PARTIE 2"...)
   ═══════════════════════════════════════════════════════════════════ */
.guide-part-header {
  text-align: center;
  margin: 5rem 0 3rem;
  padding: 2rem 0;
  position: relative;
}
.guide-part-header::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gp-gold);
  margin: 0 auto 1.5rem;
}
.guide-part-header-label {
  font-family: var(--gp-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gp-stone);
  display: block;
  margin-bottom: 0.6rem;
}
.guide-part-header-title {
  font-family: var(--gp-display);
  font-size: 2.4rem;
  font-weight: 900;
  font-style: italic;
  color: var(--gp-accent);
  margin: 0;
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════════════════════
   CHAPITRE — header avec numéro mis en scène
   ═══════════════════════════════════════════════════════════════════ */
.guide-chapter-header {
  margin: 5rem 0 2rem;
  position: relative;
}
.guide-chapter-number {
  font-family: var(--gp-display);
  font-size: 5.5rem;
  font-weight: 900;
  font-style: italic;
  color: var(--gp-gold);
  line-height: 0.8;
  margin-bottom: -0.2em;
  letter-spacing: -0.04em;
  opacity: 0.9;
}
.guide-chapter-header h2 {
  font-family: var(--gp-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gp-ink);
  line-height: 1.05;
  margin: 0 0 1.2rem 0;
  letter-spacing: -0.02em;
  max-width: 90%;
}
.guide-chapter-header::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: var(--gp-accent);
}
@media (max-width: 680px) {
  .guide-chapter-number { font-size: 4rem; }
  .guide-chapter-header h2 { font-size: 1.8rem; max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════
   CAPITALE ORNÉE (grande lettre au début du chapitre)
   ═══════════════════════════════════════════════════════════════════ */
.guide-dropcap {
  float: left;
  font-family: var(--gp-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.85;
  color: var(--gp-accent);
  margin: 0.1em 0.15em 0 0;
  padding: 0;
  font-style: italic;
}
@media (max-width: 680px) {
  .guide-dropcap { font-size: 4rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   SOUS-TITRES DE SECTION (h3)
   ═══════════════════════════════════════════════════════════════════ */
.guide-subhead {
  font-family: var(--gp-display);
  font-size: 1.55rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gp-ink-soft);
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gp-gold);
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════════════
   SÉPARATEUR TYPOGRAPHIQUE ❦
   ═══════════════════════════════════════════════════════════════════ */
.guide-divider {
  text-align: center;
  margin: 3rem 0;
  color: var(--gp-gold);
  font-size: 1.5rem;
  opacity: 0.7;
  letter-spacing: 0.5em;
}

/* ═══════════════════════════════════════════════════════════════════
   BULLE "LE CONSEIL D'YVES"
   ═══════════════════════════════════════════════════════════════════ */
.guide-tip-card {
  background: linear-gradient(135deg, var(--gp-cream) 0%, var(--gp-paper-deep) 100%);
  border-radius: 18px;
  padding: 1.75rem 2rem 1.5rem;
  margin: 2.5rem 0;
  position: relative;
  box-shadow:
    0 2px 0 rgba(0,0,0,0.04),
    0 12px 30px rgba(61, 47, 37, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.5);
  border: 1px solid rgba(193, 152, 69, 0.3);
}
.guide-tip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 4px;
  background: linear-gradient(90deg, var(--gp-accent), var(--gp-gold), var(--gp-accent));
  border-radius: 0 0 4px 4px;
}
.guide-tip-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gp-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gp-accent);
  margin-bottom: 0.75rem;
}
.guide-tip-label::before {
  content: "🏍️";
  font-size: 1rem;
}
.guide-tip-content {
  font-family: var(--gp-body);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--gp-ink-soft);
}
.guide-tips {
  counter-reset: tip-counter;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.guide-tips li {
  counter-increment: tip-counter;
  position: relative;
  padding: 1rem 1.25rem 1rem 4rem;
  margin-bottom: 1rem;
  background: var(--gp-paper);
  border-left: 3px solid var(--gp-gold);
  border-radius: 4px;
  font-size: 1.1rem;
  line-height: 1.6;
}
.guide-tips li::before {
  content: counter(tip-counter);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  background: var(--gp-accent);
  color: #fff;
  font-family: var(--gp-display);
  font-weight: 900;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════
   ENCART "À SAVOIR" (fond noir, label doré)
   ═══════════════════════════════════════════════════════════════════ */
.guide-info-card {
  background: linear-gradient(135deg, #1e1a15 0%, #2a241c 100%);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}
.guide-info-label {
  font-family: var(--gp-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gp-gold);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.guide-info-label::before {
  content: "▶";
  font-size: 0.6rem;
  color: var(--gp-gold);
}
.guide-info-content {
  font-family: var(--gp-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(250, 246, 236, 0.88);
}
.guide-info-content strong {
  color: var(--gp-gold-soft);
  font-weight: 700;
}
.guide-info-content em {
  color: var(--gp-gold-soft);
}

/* ═══════════════════════════════════════════════════════════════════
   GRANDS CHIFFRES (stats misees en scène)
   ═══════════════════════════════════════════════════════════════════ */
.guide-stat {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem 1rem;
  border-top: 2px solid var(--gp-gold);
  border-bottom: 2px solid var(--gp-gold);
  position: relative;
}
.guide-stat-number {
  font-family: var(--gp-display);
  font-size: 6rem;
  font-weight: 900;
  font-style: italic;
  color: var(--gp-accent);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.guide-stat-label {
  font-family: var(--gp-sans);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gp-stone);
  margin-top: 0.75rem;
}
@media (max-width: 680px) {
  .guide-stat-number { font-size: 4rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   PHOTO + CHIFFRE (image + stat côte à côte)
   ═══════════════════════════════════════════════════════════════════ */
.guide-photo-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
}
.guide-photo-stat-image {
  margin: 0;
}
.guide-photo-stat-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.guide-photo-stat-text {
  text-align: center;
}
.guide-photo-stat-tag {
  font-family: var(--gp-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gp-stone);
  margin-bottom: 0.5rem;
}
.guide-photo-stat-bignumber {
  font-family: var(--gp-display);
  font-size: 5rem;
  font-weight: 900;
  font-style: italic;
  color: var(--gp-accent);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.guide-photo-stat-descr {
  font-family: var(--gp-body);
  font-size: 0.95rem;
  color: var(--gp-stone);
  line-height: 1.5;
  margin-top: 0.75rem;
}
@media (max-width: 680px) {
  .guide-photo-stat { grid-template-columns: 1fr; }
  .guide-photo-stat-bignumber { font-size: 4rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   GRILLE PHOTOS DUO (2 photos côte à côte avec légendes)
   ═══════════════════════════════════════════════════════════════════ */
.guide-photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}
.guide-photo-duo figure {
  margin: 0;
}
.guide-photo-duo img {
  width: 100%;
  border-radius: 6px;
  display: block;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.guide-photo-duo figcaption {
  margin-top: 0.6rem;
  font-family: var(--gp-sans);
  font-size: 0.78rem;
  color: var(--gp-stone);
  line-height: 1.4;
}
.guide-photo-duo figcaption strong {
  display: block;
  color: var(--gp-ink-soft);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
@media (max-width: 680px) {
  .guide-photo-duo { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   PHOTO PRODUIT (image large centrée)
   ═══════════════════════════════════════════════════════════════════ */
.guide-product-photo {
  margin: 2rem 0;
  text-align: center;
}
.guide-product-photo img {
  max-width: 100%;
  max-height: 450px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  object-fit: contain;
}
.guide-product-photo figcaption {
  margin-top: 0.6rem;
  font-family: var(--gp-sans);
  font-size: 0.82rem;
  color: var(--gp-stone);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   CITATION MONUMENTALE (pull-quote)
   ═══════════════════════════════════════════════════════════════════ */
.guide-pullquote {
  margin: 3.5rem 0;
  padding: 2.5rem 3rem 2.5rem 4rem;
  position: relative;
  border-left: 4px solid var(--gp-gold);
  background: transparent;
}
.guide-pullquote::before {
  content: "\201C";
  font-family: var(--gp-display);
  font-size: 8rem;
  font-weight: 900;
  color: var(--gp-gold);
  position: absolute;
  top: -1rem;
  left: 0.5rem;
  line-height: 1;
  opacity: 0.5;
}
.guide-pullquote p {
  font-family: var(--gp-display);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gp-ink);
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}
@media (max-width: 680px) {
  .guide-pullquote { padding: 1.5rem 1.25rem 1.5rem 2rem; }
  .guide-pullquote p { font-size: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   BOUTON "RETOUR AU SOMMAIRE"
   ═══════════════════════════════════════════════════════════════════ */
.guide-back-toc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 1.5rem 0 0;
  padding: 0.5rem 1.2rem;
  font-family: var(--gp-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gp-stone);
  background: transparent;
  border: 1px solid rgba(138, 127, 110, 0.4);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.guide-back-toc:hover {
  background: var(--gp-gold);
  border-color: var(--gp-gold);
  color: var(--gp-ink);
  text-decoration: none;
}
.guide-back-toc::before {
  content: "↑";
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   ENCART "À LIRE ÉGALEMENT" (liens relatifs)
   ═══════════════════════════════════════════════════════════════════ */
.guide-related {
  background: var(--gp-paper-deep);
  border-left: 4px solid var(--gp-accent);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}
.guide-related-label {
  font-family: var(--gp-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gp-accent);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.guide-related a {
  display: block;
  color: var(--gp-ink);
  text-decoration: none;
  font-family: var(--gp-body);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}
.guide-related a:hover {
  color: var(--gp-accent);
  text-decoration: none;
}
.guide-related a::after {
  content: " →";
  color: var(--gp-gold);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   BOUTON FLOTTANT "RETOUR EN HAUT"
   ═══════════════════════════════════════════════════════════════════ */
.guide-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gp-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.guide-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.guide-scroll-top:hover {
  background: var(--gp-accent-dark);
  transform: translateY(-3px);
  text-decoration: none;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   ENCART VIDÉO YOUTUBE
   ═══════════════════════════════════════════════════════════════════ */
.guide-video-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #1e1a15 0%, #2a241c 100%);
  border: 1px solid rgba(193, 152, 69, 0.4);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.guide-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  text-decoration: none;
}
.guide-video-card-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.guide-video-card-content {
  flex: 1;
}
.guide-video-card-label {
  font-family: var(--gp-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gp-gold);
  margin-bottom: 0.4rem;
}
.guide-video-card-title {
  font-family: var(--gp-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gp-cream);
  line-height: 1.3;
}
.guide-video-card-arrow {
  font-size: 1.5rem;
  color: var(--gp-gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.guide-video-card:hover .guide-video-card-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════
   CONCLUSION (hero sombre de fin d'article)
   ═══════════════════════════════════════════════════════════════════ */
.guide-conclusion {
  margin: 4rem 0 2rem;
  padding: 3rem 2.5rem;
  background: linear-gradient(160deg, #1a1612 0%, #2d2420 100%);
  color: var(--gp-cream);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.guide-conclusion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gp-accent), var(--gp-gold), var(--gp-accent));
}
.guide-conclusion h2 {
  font-family: var(--gp-display);
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--gp-gold);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.guide-conclusion p {
  font-family: var(--gp-body);
  font-size: 1.15rem;
  color: rgba(253, 249, 238, 0.85);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 1rem;
}
.guide-conclusion-signature {
  font-family: var(--gp-display);
  font-style: italic;
  color: var(--gp-gold-soft);
  font-size: 1.15rem;
  margin-top: 2rem;
  opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO — override magazine.css (60vh → 50vh max)
   ═══════════════════════════════════════════════════════════════════ */
.mag-hero {
  height: 50vh !important;
  min-height: 300px !important;
  max-height: 520px !important;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE GLOBAL
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .guide-meta { gap: 1rem; font-size: 0.78rem; }
  .guide-part-header-title { font-size: 1.8rem; }
  .guide-toc { padding: 1.5rem 1rem; }
  .guide-toc::before { display: none; }
  .guide-pullquote { margin: 2rem 0; }
  .guide-conclusion { padding: 2rem 1.5rem; }
  .guide-conclusion h2 { font-size: 1.7rem; }
  .guide-stat-number { font-size: 4.5rem; }
  .mag-hero { height: 40vh !important; min-height: 250px !important; }
}
