/* 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-switch { display: inline-flex; align-items: center; gap: 0; border: 1px solid rgba(168,124,44,0.3); border-radius: 60px; padding: 2px; }
        .lang-switch a, .lang-switch .lang-current { padding: 4px 10px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; text-decoration: none; border-radius: 60px; line-height: 1; transition: var(--transition); }
        .lang-switch .lang-current { background: rgba(168,124,44,0.18); color: var(--gold); }
        .lang-switch a { color: var(--white-muted); }
        .lang-switch a:hover { color: var(--gold); background: rgba(168,124,44,0.08); }
        .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); }
        .btn-large { padding: 16px 32px; font-size: 1rem; }

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

        .hero { padding: 120px 0 40px; }
        .breadcrumb { font-size: 0.82rem; color: var(--white-muted); margin-bottom: 20px; }
        .breadcrumb a { color: var(--gold); text-decoration: none; }
        .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(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
        .hero h1 .hl { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-desc { font-size: 1.1rem; color: var(--white-dim); max-width: 680px; line-height: 1.8; margin-bottom: 0; }

        .cta-block { background: var(--navy-card); border: 1px solid var(--gold); border-radius: var(--radius); padding: 36px; margin: 40px 0; text-align: center; }
        .cta-block h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
        .cta-block p { color: var(--white-muted); margin-bottom: 24px; }
        .cta-block .btn-row { display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap; }
        .qr-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px; background: var(--white); border-radius: var(--radius-sm); }
        .qr-wrap img { display: block; width: 140px; height: 140px; }
        .qr-wrap p { font-size: 0.75rem; color: var(--navy); margin: 0; font-weight: 500; }

        .article { padding-bottom: 60px; }
        .article h2 { font-size: 1.6rem; font-weight: 800; margin: 48px 0 16px; padding-top: 8px; border-top: 1px solid rgba(168,124,44,0.1); }
        .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; }

        .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 24px 0; }
        .feature-item { background: var(--navy-card); border: 1px solid var(--hair); border-radius: var(--radius-sm); padding: 20px; }
        .feature-item .icon { font-size: 1.4rem; margin-bottom: 8px; }
        .feature-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
        .feature-item p { font-size: 0.85rem; color: var(--white-muted); margin: 0; }

        .info-box { background: var(--glass-bg); border: 1px solid var(--hair); border-radius: var(--radius-sm); padding: 20px 24px; margin: 24px 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); }

        .pack-cta { 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; }
        .pack-cta-text h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
        .pack-cta-text p { font-size: 0.9rem; color: var(--white-muted); }

        .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) {
            .cta-block { padding: 24px; }
            .qr-wrap { display: none; }
            .nav-links a:not(.btn) { display: none; }
            .lang-switch { display: inline-flex !important; }
            .lang-switch a { display: inline-flex !important; }
        }

        /* 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; }
