/* Feuille partagee : extraite de 2 pages le 2026-07-25.
   Modifier ICI, plus dans chaque page. */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        /* tokens : voir assets/tokens.css */
        html { scroll-behavior: smooth; }
        body { font-family: var(--f-body); background: var(--paper); color: var(--white); line-height: 1.8; overflow-x: hidden; }

        .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 14px 0; background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(20px); border-bottom: 1px solid var(--hair); }
        .nav-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
        .nav-logo { font-size: 1.2rem; font-weight: 800; text-decoration: none; color: var(--white); }
        .nav-logo .accent { color: var(--gold); }
        .nav-links { display: flex; gap: 16px; align-items: center; }
        .nav-links a { text-decoration: none; color: var(--white-dim); font-size: 0.85rem; font-weight: 500; transition: var(--transition); }
        .nav-links a:hover { color: var(--gold); }
        .lang-switcher { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; font-weight: 600; background: rgba(168,124,44, 0.08); border: 1px solid rgba(168,124,44, 0.2); border-radius: 60px; padding: 4px 8px; }
        .lang-switcher a { text-decoration: none; color: var(--white-muted); transition: var(--transition); padding: 2px 6px; border-radius: 60px; }
        .lang-switcher a.active { color: var(--gold); background: rgba(168,124,44, 0.15); }
        .lang-switcher a:hover { color: var(--gold); }
        .lang-sep { color: var(--white-muted); opacity: 0.4; }
        .btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 60px; font-family: inherit; font-size: 0.88rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); color: var(--gold); text-decoration: none; }
        .btn-primary { background: var(--gradient-gold); color: #241905; box-shadow: 0 4px 20px rgba(168,124,44,0.3); }
        .btn-primary:hover { transform: translateY(-2px); }
        /* Le CTA de nav : forcer le texte foncé (sinon .nav-links a, plus specifique, le passe en gris clair illisible sur le gold) */
        .nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #241905; font-weight: 700; }

        .container { max-width: 820px; margin: 0 auto; padding: 0 24px; }

        .hero { padding: 116px 0 30px; }
        .breadcrumb { font-size: 0.82rem; color: var(--white-muted); margin-bottom: 20px; }
        .breadcrumb a { color: var(--gold); text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(168,124,44,0.1); border: 1px solid rgba(168,124,44,0.25); border-radius: 60px; padding: 6px 16px; font-size: 0.8rem; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
        .hero h1 { font-size: clamp(2rem, 4.6vw, 2.9rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.01em; margin-bottom: 20px; text-wrap: balance; }
        .hero h1 .hl { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-meta { display: flex; gap: 24px; flex-wrap: wrap; font-size: 0.85rem; color: var(--white-muted); margin-bottom: 32px; }
        .hero-desc { font-size: 1.1rem; color: var(--white-dim); max-width: 680px; line-height: 1.8; margin-bottom: 32px; }

        /* Video embed */
        .video-block { margin: 20px 0 44px; }
        .video-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hair); background: var(--navy-card); }
        .video-wrap iframe, .video-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
        .video-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white-muted); text-align: center; padding: 24px; gap: 14px; }
        .video-placeholder .play { width: 64px; height: 64px; border-radius: 50%; background: rgba(168,124,44,0.18); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--gold); }
        .video-placeholder .label { font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
        .video-placeholder .title { font-size: 1.1rem; font-weight: 700; color: var(--white); max-width: 480px; }
        .video-placeholder .sub { font-size: 0.88rem; color: var(--white-muted); max-width: 520px; }
        .video-caption { font-size: 0.82rem; color: var(--white-muted); text-align: center; margin-top: 12px; }
        .video-caption a { color: var(--gold); text-decoration: none; }

        /* Facade video cliquable : charge l'iframe seulement au clic */
        .video-facade { position: absolute; top: 0; left: 0; width: 100%; height: 100%; cursor: pointer; background: #000; }
        .video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease, opacity .4s ease; }
        .video-facade:hover img, .video-facade:focus-visible img { transform: scale(1.04); opacity: .82; }
        .video-play { position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(214,40,40,0.95); box-shadow: 0 10px 34px rgba(0,0,0,.55); transition: transform .25s ease; }
        .video-facade:hover .video-play, .video-facade:focus-visible .video-play { transform: scale(1.09); }
        .video-play svg { width: 32px; height: 32px; margin-left: 4px; }
        .video-duration { position: absolute; bottom: 12px; right: 12px; z-index: 2; background: rgba(0,0,0,.8); color: #fff; font-size: .78rem; font-weight: 600; padding: 3px 8px; border-radius: 6px; }

        /* Cartes verdict : pour qui / pas pour qui */
        .verdict-grid { display: grid; gap: 16px; margin: 24px 0; }
        @media (min-width: 720px) { .verdict-grid { grid-template-columns: 1fr 1fr; } }
        .verdict-card { border-radius: var(--radius); padding: 24px 26px; border: 1px solid var(--hair); background: var(--navy-card); }
        .verdict-card.yes { background: rgba(74,222,128,0.06); border-color: rgba(74,222,128,0.28); }
        .verdict-card.no { background: rgba(248,113,113,0.06); border-color: rgba(248,113,113,0.28); }
        .verdict-card .head { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
        .verdict-card.yes .head { color: var(--green); }
        .verdict-card.no .head { color: var(--red); }
        .verdict-card ul { list-style: none; padding: 0; margin: 0; }
        .verdict-card li { position: relative; padding: 9px 0 9px 26px; font-size: 0.94rem; color: var(--white-dim); line-height: 1.6; }
        .verdict-card.yes li::before { content: '✓'; position: absolute; left: 0; top: 9px; color: var(--green); font-weight: 800; }
        .verdict-card.no li::before { content: '✕'; position: absolute; left: 0; top: 9px; color: var(--red); font-weight: 800; }

        /* Etapes numerotees */
        .step-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(168,124,44,0.1); }
        .step-row:last-child { border-bottom: 0; }
        .step-num { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--gradient-gold); color: var(--navy); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
        .step-row h4 { font-size: 1.02rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
        .step-row p { font-size: 0.93rem; color: var(--white-muted); margin: 0; }

        /* TL;DR box */
        .tldr { background: var(--glass-bg); border: 1px solid var(--hair); border-radius: var(--radius); padding: 28px 32px; margin: 40px 0; }
        .tldr .label { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
        .tldr ul { list-style: none; padding: 0; }
        .tldr li { padding: 8px 0; padding-left: 28px; position: relative; color: var(--white-dim); font-size: 0.95rem; line-height: 1.6; }
        .tldr li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--gold); font-weight: 800; }

        /* CTA Box */
        .cta-box { background: rgba(168,124,44,0.07); border: 1px solid rgba(168,124,44,0.25); border-radius: var(--radius); padding: 28px 32px; margin: 40px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
        .cta-box-text h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
        .cta-box-text p { font-size: 0.9rem; color: var(--white-muted); }

        /* Article body */
        .article { padding-bottom: 60px; }
        .article h2 { font-size: 1.6rem; font-weight: 800; margin: 56px 0 16px; padding-top: 12px; border-top: 1px solid rgba(168,124,44,0.1); color: var(--white); }
        .article h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 12px; color: var(--gold-light); }
        .article p { color: var(--white-dim); margin-bottom: 16px; font-size: 0.98rem; }
        .article ul, .article ol { color: var(--white-dim); padding-left: 24px; margin-bottom: 16px; }
        .article li { margin-bottom: 8px; font-size: 0.98rem; }
        .article strong { color: var(--white); font-weight: 600; }
        .article a:not(.btn) { color: var(--gold); text-decoration: underline; }
        .article a.btn { text-decoration: none; }
        .article a.btn-primary { color: #241905; }

        .info-box { background: var(--glass-bg); border: 1px solid var(--hair); border-radius: var(--radius-sm); padding: 20px 24px; margin: 20px 0; }
        .info-box .label { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
        .info-box p { margin: 0; font-size: 0.92rem; color: var(--white-muted); }
        .info-box.warn { background: rgba(248,113,113,0.06); border-color: rgba(248,113,113,0.25); }
        .info-box.warn .label { color: var(--red); }

        /* Advantage card */
        .adv-card { background: var(--navy-card); border: 1px solid var(--hair); border-radius: var(--radius); padding: 28px 32px; margin: 24px 0; }
        .adv-card .num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--gradient-gold); color: var(--navy); font-weight: 800; font-size: 0.95rem; margin-bottom: 12px; }
        .adv-card h3 { color: var(--white); font-size: 1.2rem; margin: 0 0 10px; }
        .adv-card p { font-size: 0.96rem; }

        /* Profile cards */
        .profile-grid { display: grid; gap: 16px; margin: 24px 0; }
        .profile-card { background: var(--navy-card); border: 1px solid var(--hair); border-radius: var(--radius-sm); padding: 22px 26px; }
        .profile-card .who { font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
        .profile-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
        .profile-card p { font-size: 0.92rem; color: var(--white-muted); margin: 0; }

        .footer { border-top: 1px solid rgba(168,124,44,0.1); padding: 32px 0; text-align: center; }
        .footer p { font-size: 0.82rem; color: var(--white-muted); }
        .footer a { color: var(--gold); text-decoration: none; }

        @media (max-width: 600px) {
            .hero { padding-top: 100px; }
            .cta-box { flex-direction: column; align-items: flex-start; }
        }

        /* Liens de contenu hors .article (encadre transparence, CTA, listes de
           synthese) : sans regle de couleur ils tombaient sur le bleu par defaut
           du navigateur, illisible sur le fond navy. Constate le 2026-09-06 sur
           l'encadre transparence des guides. Le soulignement reste reserve aux
           encadres et aux CTA : le fil d'Ariane et les menus gardent leur rendu. */
        .container a:not(.btn) { color: var(--gold); }
        .container a:not(.btn):hover { color: var(--gold-light); }
        .info-box a:not(.btn), .cta-box a:not(.btn) { text-decoration: underline; }
