/* ==========================================================================
   Variables et Reset
   ========================================================================== */
:root {
    --primary: #0F172A;
    --primary-light: #1E293B;
    --secondary: #F59E0B;
    --secondary-light: #FBBF24;
    --tertiary: #6366F1;
    --accent: #EC4899;
    --dark: #1E293B;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container: 1200px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Container
   ========================================================================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Skip Link
   ========================================================================== */
.skip-link {
    position: absolute;
    top: -9999px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-logo {
    max-height: 45px;
    width: auto;
}

.site-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.site-title a {
    color: var(--primary);
    text-decoration: none;
}

.site-description {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    background: rgba(15, 23, 42, 0.05);
    color: var(--primary);
}

.nav-menu .current-menu-item a {
    font-weight: 600;
}

/* Dropdowns */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    min-width: 200px;
    border: 1px solid rgba(0,0,0,0.05);
}

.nav-menu li:hover > .sub-menu {
    display: block;
}

.nav-menu .sub-menu a {
    padding: 8px 20px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-login {
    color: var(--dark);
    background: transparent;
}

.btn-login:hover {
    background: rgba(0,0,0,0.05);
}

.btn-register {
    background: var(--primary);
    color: var(--white);
}

.btn-register:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-dashboard {
    background: var(--secondary);
    color: var(--primary);
}

.btn-dashboard:hover {
    background: var(--secondary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-logout {
    color: var(--gray);
    background: transparent;
    padding: 8px 12px;
}

.btn-logout:hover {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
}

.user-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    margin-left: 8px;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Hero Section (Homepage)
   ========================================================================== */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern-dots.svg') repeat;
    opacity: 0.1;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-description {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--secondary);
    color: var(--primary);
    padding: 14px 32px;
    font-size: 16px;
}

.btn-hero-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 32px;
    font-size: 16px;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

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

.card-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-text {
    color: var(--gray);
}

/* ==========================================================================
   Posts Grid (Blog)
   ========================================================================== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.post-card .post-thumbnail {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.post-card .post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-card .post-content {
    padding: 24px;
}

.post-card .post-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.post-card .post-title a {
    color: var(--primary);
    text-decoration: none;
}

.post-card .post-meta {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}

.post-card .post-excerpt {
    color: var(--gray);
    margin-bottom: 16px;
}

.post-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.post-card .read-more::after {
    content: '→';
    transition: var(--transition);
}

.post-card .read-more:hover::after {
    transform: translateX(4px);
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    margin-top: 60px;
}

.footer-widgets {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col .widget-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
}

.footer-copyright a {
    color: var(--white);
    text-decoration: none;
}

.footer-nav {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 64px;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu a {
        padding: 12px 16px;
    }
    
    .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 16px;
        border: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .grid-2,
    .grid-3,
    .grid-4,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .header-actions .btn-text {
        display: none;
    }
    
    .header-actions .btn-login,
    .header-actions .btn-register {
        padding: 8px 12px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   Nous Pas Bouger - Professional organization layer
   ========================================================= */
:root {
  --npb-primary: #123B6D;
  --npb-primary-dark: #0A2444;
  --npb-secondary: #F4B000;
  --npb-success: #159A75;
  --npb-text: #172033;
  --npb-muted: #667085;
  --npb-light: #F6F8FB;
  --npb-white: #FFFFFF;
  --npb-border: #E6EAF0;
  --npb-radius: 22px;
  --npb-shadow: 0 20px 55px rgba(18, 59, 109, .12);
}
body { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--npb-text); background: var(--npb-white); }
a { color: var(--npb-primary); }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow-container { width: min(850px, calc(100% - 40px)); }
.text-center { text-align: center; }
.top-bar { background: var(--npb-primary-dark); color: rgba(255,255,255,.88); font-size: 13px; }
.top-bar-inner { display:flex; justify-content:space-between; gap:18px; padding:8px 0; flex-wrap:wrap; }
.professional-header { background: rgba(255,255,255,.96); border-bottom:1px solid var(--npb-border); position: sticky; top:0; z-index:1000; backdrop-filter: blur(12px); }
.header-inner { min-height: 82px; display:flex; align-items:center; justify-content:space-between; gap:28px; }
.site-branding { display:flex; align-items:center; gap:14px; min-width:220px; }
.site-logo-fallback { width:54px; height:54px; border-radius:16px; display:grid; place-items:center; background:linear-gradient(135deg, var(--npb-primary), var(--npb-success)); color:#fff; font-weight:900; letter-spacing:.04em; }
.site-title { margin:0; font-size:20px; font-weight:900; line-height:1.1; }
.site-title a { color:var(--npb-text); text-decoration:none; }
.site-description { margin:4px 0 0; color:var(--npb-muted); font-size:13px; }
.nav-menu { display:flex; list-style:none; gap:8px; margin:0; padding:0; align-items:center; }
.nav-menu a { display:block; padding:11px 13px; border-radius:999px; text-decoration:none; color:var(--npb-text); font-weight:700; font-size:14px; }
.nav-menu a:hover, .nav-menu .current-menu-item > a { background:var(--npb-light); color:var(--npb-primary); }
.header-actions { display:flex; align-items:center; gap:12px; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:44px; padding:12px 18px; border-radius:999px; border:1px solid transparent; font-weight:800; text-decoration:none; line-height:1; cursor:pointer; transition: .2s ease; }
.btn-primary { background:var(--npb-primary); color:#fff !important; box-shadow:0 12px 30px rgba(18,59,109,.22); }
.btn-primary:hover { transform:translateY(-1px); background:var(--npb-primary-dark); }
.btn-outline { border-color:rgba(18,59,109,.22); color:var(--npb-primary); background:#fff; }
.btn-light { background:#fff; color:var(--npb-primary) !important; }
.menu-toggle { display:none; background:transparent; border:0; padding:8px; }
.menu-toggle .bar { display:block; width:26px; height:3px; background:var(--npb-text); margin:5px 0; border-radius:999px; }
.org-hero { position:relative; overflow:hidden; padding:88px 0; background: radial-gradient(circle at top right, rgba(244,176,0,.20), transparent 34%), linear-gradient(135deg, #F8FBFF 0%, #EEF5FF 100%); }
.org-hero::after { content:''; position:absolute; width:480px; height:480px; border-radius:50%; right:-170px; bottom:-210px; background:rgba(21,154,117,.14); }
.org-hero-grid { position:relative; z-index:1; display:grid; grid-template-columns:1.15fr .85fr; gap:48px; align-items:center; }
.eyebrow { display:inline-flex; color:var(--npb-success); font-weight:900; letter-spacing:.08em; text-transform:uppercase; font-size:12px; margin-bottom:12px; }
.org-hero h1, .page-hero h1 { color:var(--npb-primary-dark); font-weight:900; letter-spacing:-.04em; line-height:.98; margin:0; }
.org-hero h1 { font-size:clamp(44px, 7vw, 82px); }
.org-hero p { font-size:20px; color:#40516A; max-width:660px; line-height:1.65; margin:22px 0 0; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:32px; }
.org-hero-card { background:#fff; border:1px solid rgba(18,59,109,.08); border-radius:var(--npb-radius); padding:34px; box-shadow:var(--npb-shadow); }
.org-hero-card h2 { margin-top:0; color:var(--npb-primary); }
.org-hero-card ul { margin:24px 0 0; padding:0; list-style:none; display:grid; gap:12px; }
.org-hero-card li { display:flex; gap:10px; align-items:center; color:var(--npb-text); font-weight:700; }
.org-hero-card i { color:var(--npb-success); }
.section { padding:76px 0; }
.section-light { background:var(--npb-light); }
.section-heading { max-width:760px; margin:0 auto 36px; text-align:center; }
.section-heading h2 { margin:0; font-size:clamp(30px, 4vw, 48px); letter-spacing:-.03em; color:var(--npb-primary-dark); }
.section-heading p { color:var(--npb-muted); font-size:18px; line-height:1.7; }
.split-heading { max-width:none; text-align:left; display:flex; justify-content:space-between; gap:24px; align-items:end; }
.feature-grid, .cards-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.feature-card, .content-card, .notice-card, .contact-card, .contact-form-placeholder { background:#fff; border:1px solid var(--npb-border); border-radius:var(--npb-radius); padding:28px; box-shadow:0 10px 30px rgba(18,59,109,.06); }
.feature-card i { width:54px; height:54px; display:grid; place-items:center; border-radius:16px; background:rgba(18,59,109,.08); color:var(--npb-primary); font-size:22px; margin-bottom:18px; }
.feature-card h3, .content-card h3 { margin:0 0 10px; color:var(--npb-primary-dark); }
.feature-card p, .content-card p { color:var(--npb-muted); line-height:1.65; }
.content-card { overflow:hidden; padding:0; }
.card-image { display:block; aspect-ratio: 16/10; overflow:hidden; background:var(--npb-light); }
.card-image img { width:100%; height:100%; object-fit:cover; display:block; transition:.25s ease; }
.card-image:hover img { transform:scale(1.04); }
.card-body { padding:26px; }
.card-label { color:var(--npb-success); font-weight:900; font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.content-card h3 a { color:var(--npb-primary-dark); text-decoration:none; }
.text-link { display:inline-flex; align-items:center; gap:8px; font-weight:900; text-decoration:none; }
.cta-section { background:linear-gradient(135deg, var(--npb-primary), var(--npb-primary-dark)); color:#fff; padding:68px 0; }
.cta-inner { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.cta-inner h2 { margin:0; color:#fff; font-size:clamp(30px, 4vw, 46px); letter-spacing:-.03em; }
.cta-inner p { max-width:700px; color:rgba(255,255,255,.82); font-size:18px; line-height:1.7; }
.cta-inner .eyebrow { color:var(--npb-secondary); }
.page-hero { padding:70px 0; background:linear-gradient(135deg, #F8FBFF, #EFF6FF); border-bottom:1px solid var(--npb-border); }
.compact-hero h1 { font-size:clamp(36px, 5vw, 62px); }
.compact-hero p, .archive-description { color:var(--npb-muted); max-width:760px; font-size:18px; line-height:1.7; }
.entry-content { font-size:18px; line-height:1.8; color:#2D3748; }
.entry-content h2, .entry-content h3 { color:var(--npb-primary-dark); letter-spacing:-.02em; }
.entry-featured { margin-bottom:32px; border-radius:var(--npb-radius); overflow:hidden; }
.entry-featured img { width:100%; height:auto; display:block; }
.entry-meta { margin-top:16px; color:var(--npb-muted); font-weight:700; }
.contact-grid { display:grid; grid-template-columns:360px 1fr; gap:34px; align-items:start; }
.contact-card { position:sticky; top:130px; }
.contact-card p { display:flex; gap:12px; align-items:flex-start; color:var(--npb-muted); line-height:1.6; }
.contact-card i { color:var(--npb-primary); margin-top:4px; }
.professional-footer { background:#0A2444; color:rgba(255,255,255,.82); }
.footer-main { padding:58px 0; }
.footer-grid { display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:34px; }
.footer-col h3 { color:#fff; margin-top:0; }
.footer-col a { color:rgba(255,255,255,.86); text-decoration:none; }
.footer-nav, .footer-list { list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.footer-social { display:flex; gap:10px; margin-top:16px; }
.footer-social a { width:38px; height:38px; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.10); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); padding:18px 0; font-size:14px; }
.footer-bottom-inner { display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.pagination, .nav-links { margin-top:34px; display:flex; justify-content:center; gap:8px; }
.page-numbers { padding:10px 14px; border:1px solid var(--npb-border); border-radius:12px; text-decoration:none; font-weight:800; }
.page-numbers.current { background:var(--npb-primary); color:#fff; }
@media (max-width: 960px) {
  .org-hero-grid, .contact-grid, .footer-grid { grid-template-columns:1fr; }
  .feature-grid, .cards-grid { grid-template-columns:1fr 1fr; }
  .main-navigation { display:none; position:absolute; left:20px; right:20px; top:118px; background:#fff; border:1px solid var(--npb-border); border-radius:20px; padding:14px; box-shadow:var(--npb-shadow); }
  .main-navigation.toggled, .main-navigation.is-open { display:block; }
  .nav-menu { flex-direction:column; align-items:stretch; }
  .menu-toggle { display:block; }
  .header-cta { display:none; }
  .split-heading, .cta-inner { flex-direction:column; align-items:flex-start; }
  .contact-card { position:static; }
}
@media (max-width: 640px) {
  .container, .narrow-container { width:min(100% - 28px, 1180px); }
  .top-bar-inner { justify-content:center; text-align:center; }
  .org-hero { padding:56px 0; }
  .section { padding:52px 0; }
  .feature-grid, .cards-grid { grid-template-columns:1fr; }
  .site-branding { min-width:0; }
  .site-description { display:none; }
}

/* =========================================================
   Nous Pas Bouger - Palette officielle vert, jaune, rouge
   Version 2.1.0
   ========================================================= */
:root {
  --primary: #0B7A3B;
  --primary-light: #119A4D;
  --secondary: #F6C600;
  --secondary-light: #FFE066;
  --tertiary: #CE1126;
  --accent: #CE1126;
  --dark: #0B2D1A;
  --gray: #5D6B60;
  --light: #F7FAF5;
  --npb-primary: #0B7A3B;
  --npb-primary-dark: #0B2D1A;
  --npb-secondary: #F6C600;
  --npb-red: #CE1126;
  --npb-success: #0B7A3B;
  --npb-text: #0F2418;
  --npb-muted: #5F6F63;
  --npb-light: #F7FAF5;
  --npb-white: #FFFFFF;
  --npb-border: #E2EBDD;
  --npb-shadow: 0 22px 58px rgba(11, 122, 59, .13);
}
body { background: var(--npb-white); color: var(--npb-text); }
a { color: var(--npb-primary); }
.professional-header { border-bottom: 1px solid var(--npb-border); }
.professional-header::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #0B7A3B 0 33.33%, #F6C600 33.33% 66.66%, #CE1126 66.66% 100%);
}
.top-bar {
  background: linear-gradient(90deg, #0B2D1A 0%, #0B7A3B 52%, #68111B 100%);
  color: rgba(255,255,255,.92);
}
.npb-brand-logo { display:inline-flex; align-items:center; min-width: 278px; text-decoration:none; }
.npb-brand-logo img { display:block; width: min(320px, 31vw); height:auto; max-height:72px; }
.custom-logo { max-height: 64px; width:auto; }
.site-title a { color: var(--npb-primary-dark); }
.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  background: rgba(11, 122, 59, .09);
  color: var(--npb-primary);
}
.nav-menu a::after {
  content:'';
  display:block;
  height:3px;
  width:0;
  margin:7px auto 0;
  border-radius:99px;
  background: linear-gradient(90deg, #0B7A3B, #F6C600, #CE1126);
  transition: width .2s ease;
}
.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after { width: 60%; }
.btn-primary {
  background: linear-gradient(135deg, var(--npb-primary), #087238);
  color:#fff !important;
  box-shadow: 0 14px 32px rgba(11,122,59,.24);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #087238, var(--npb-red));
  transform: translateY(-1px);
}
.btn-outline {
  border-color: rgba(11,122,59,.24);
  color: var(--npb-primary);
  background: #fff;
}
.btn-outline:hover {
  border-color: var(--npb-secondary);
  box-shadow: 0 10px 26px rgba(246,198,0,.18);
}
.btn-light {
  color: var(--npb-primary-dark) !important;
  border: 2px solid rgba(246,198,0,.6);
}
.org-hero {
  background:
    radial-gradient(circle at 92% 12%, rgba(246,198,0,.34), transparent 28%),
    radial-gradient(circle at 95% 95%, rgba(206,17,38,.16), transparent 28%),
    radial-gradient(circle at 5% 15%, rgba(11,122,59,.16), transparent 25%),
    linear-gradient(135deg, #FFFFFF 0%, #F7FAF5 100%);
}
.org-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(11,122,59,.05), rgba(246,198,0,.05), rgba(206,17,38,.04));
  pointer-events:none;
}
.org-hero::after { background: rgba(11,122,59,.12); }
.eyebrow { color: var(--npb-primary); }
.org-hero h1, .page-hero h1,
.section-heading h2, .feature-card h3, .content-card h3,
.entry-content h2, .entry-content h3 { color: var(--npb-primary-dark); }
.org-hero-card {
  border-top: 7px solid transparent;
  border-image: linear-gradient(90deg, #0B7A3B, #F6C600, #CE1126) 1;
}
.org-hero-card h2 { color: var(--npb-primary-dark); }
.org-hero-card i { color: var(--npb-primary); }
.feature-card i {
  background: linear-gradient(135deg, rgba(11,122,59,.12), rgba(246,198,0,.18));
  color: var(--npb-primary);
}
.feature-card:nth-child(2) i { color:#8A6A00; background: rgba(246,198,0,.2); }
.feature-card:nth-child(3) i { color:var(--npb-red); background: rgba(206,17,38,.09); }
.feature-card, .content-card, .notice-card, .contact-card, .contact-form-placeholder {
  box-shadow: 0 12px 34px rgba(11,45,26,.07);
}
.card-label { color: var(--npb-primary); }
.text-link { color: var(--npb-primary-dark); }
.text-link:hover { color: var(--npb-red); }
.section-light { background: linear-gradient(180deg, #F7FAF5 0%, #FFFFFF 100%); }
.cta-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(246,198,0,.25), transparent 28%),
    radial-gradient(circle at 96% 80%, rgba(206,17,38,.18), transparent 32%),
    linear-gradient(135deg, #0B7A3B, #0B2D1A 74%);
}
.cta-inner .eyebrow { color: var(--npb-secondary); }
.page-hero {
  background: linear-gradient(135deg, rgba(11,122,59,.10), rgba(246,198,0,.12), rgba(206,17,38,.06));
}
.contact-card i { color: var(--npb-primary); }
.professional-footer {
  background: linear-gradient(135deg, #082516 0%, #0B2D1A 64%, #4E1018 100%);
  color: rgba(255,255,255,.84);
  position: relative;
}
.professional-footer::before {
  content:'';
  display:block;
  height:6px;
  background: linear-gradient(90deg, #0B7A3B 0 33.33%, #F6C600 33.33% 66.66%, #CE1126 66.66% 100%);
}
.footer-social a:hover { background: var(--npb-secondary); color: #0B2D1A; }
.page-numbers.current { background: var(--npb-primary); color:#fff; }
.menu-toggle .bar { background: var(--npb-primary-dark); }
@media (max-width: 960px) {
  .npb-brand-logo { min-width: 210px; }
  .npb-brand-logo img { width: 240px; max-height: 62px; }
  .main-navigation { top: 126px; }
}
@media (max-width: 640px) {
  .top-bar { display:none; }
  .npb-brand-logo { min-width: 0; }
  .npb-brand-logo img { width: 198px; max-height: 56px; }
  .header-inner { min-height: 76px; }
  .main-navigation { top: 88px; }
}

/* =========================================================
   Nous Pas Bouger - V3 accueil président + logo amélioré
   ========================================================= */
.npb-brand-logo { min-width: 248px; }
.npb-brand-logo img {
  width: min(292px, 29vw);
  max-height: 78px;
  object-fit: contain;
}
.president-section {
  background:
    linear-gradient(90deg, rgba(11,122,59,.05), rgba(246,198,0,.07), rgba(206,17,38,.045)),
    #fff;
  padding-top: 72px;
  padding-bottom: 72px;
}
.president-panel {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 42px;
  align-items: stretch;
}
.president-photo-card {
  position: relative;
  min-height: 410px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--npb-border);
  box-shadow: 0 24px 60px rgba(11,45,26,.11);
}
.president-photo-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 9px;
  background: linear-gradient(90deg, #0B7A3B 0 33.33%, #F6C600 33.33% 66.66%, #CE1126 66.66% 100%);
  z-index: 2;
}
.president-photo-card::after {
  content: '';
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(246,198,0,.42), rgba(206,17,38,.16), transparent 68%);
  pointer-events: none;
}
.president-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  display: block;
  object-fit: cover;
}
.president-photo-placeholder {
  height: 100%;
  min-height: 410px;
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  color: var(--npb-primary-dark);
  background:
    radial-gradient(circle at 25% 20%, rgba(11,122,59,.14), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(246,198,0,.28), transparent 32%),
    #F7FAF5;
  font-weight: 900;
}
.president-photo-placeholder i { font-size: 72px; color: var(--npb-primary); }
.president-message-card {
  background: #fff;
  border: 1px solid var(--npb-border);
  border-radius: 30px;
  padding: clamp(30px, 5vw, 58px);
  box-shadow: 0 24px 60px rgba(11,45,26,.08);
  position: relative;
  overflow: hidden;
}
.president-message-card::before {
  content: '“';
  position: absolute;
  right: 34px;
  top: 8px;
  color: rgba(11,122,59,.08);
  font-size: 170px;
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 700;
}
.president-message-card h2 {
  margin: 8px 0 18px;
  color: var(--npb-primary-dark);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.04em;
}
.president-message-text {
  position: relative;
  color: var(--npb-muted);
  font-size: 18px;
  line-height: 1.85;
  max-width: 780px;
}
.president-signature {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--npb-border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.president-signature strong { color: var(--npb-primary-dark); font-size: 20px; }
.president-signature span { color: var(--npb-primary); font-weight: 800; }
.page .site-main, .single .site-main, .archive .site-main, .blog .site-main, .search .site-main {
  background: #fff;
}
.page-hero, .archive-hero {
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, #0B7A3B, #F6C600, #CE1126) 1;
}
@media (max-width: 960px) {
  .president-panel { grid-template-columns: 1fr; }
  .president-photo-card, .president-photo-card img, .president-photo-placeholder { min-height: 340px; }
}
@media (max-width: 640px) {
  .npb-brand-logo img { width: 190px; max-height: 58px; }
  .president-section { padding-top: 52px; padding-bottom: 52px; }
  .president-message-card { border-radius: 22px; }
  .president-photo-card { border-radius: 22px; }
}

/* =========================================================
   Nous Pas Bouger - V6 corrections menu, liens et accueil aéré
   ========================================================= */
.main-navigation .nav-menu,
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.president-section {
  padding-top: 54px;
  padding-bottom: 54px;
}
.president-panel {
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 32px;
  align-items: center;
}
.president-photo-card,
.president-photo-card img,
.president-photo-placeholder {
  min-height: 315px;
}
.president-message-card {
  padding: clamp(26px, 4vw, 42px);
}
.president-message-card h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 14px;
}
.president-message-excerpt {
  font-size: 17px;
  line-height: 1.75;
  max-width: 760px;
}
.president-actions {
  margin-top: 20px;
}
.president-signature {
  margin-top: 22px;
  padding-top: 18px;
}
.professional-home .president-section + .section {
  padding-top: 70px;
}
@media (max-width: 960px) {
  .president-panel { grid-template-columns: 1fr; }
  .president-photo-card,
  .president-photo-card img,
  .president-photo-placeholder { min-height: 300px; }
}
@media (max-width: 640px) {
  .president-section { padding-top: 42px; padding-bottom: 42px; }
  .president-message-excerpt { font-size: 16px; line-height: 1.7; }
}

/* =========================================================
   Nous Pas Bouger - V8 pages institutionnelles visuelles
   ========================================================= */
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
  gap: 36px;
  align-items: center;
}
.visual-page-hero p {
  margin: 14px 0 0;
  max-width: 760px;
  color: #405166;
  font-size: clamp(17px, 1.7vw, 21px);
}
.hero-mini-card {
  background: #fff;
  border: 1px solid rgba(11, 122, 59, .16);
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, #0B7A3B, #F6C600, #CE1126) 1;
  box-shadow: 0 22px 60px rgba(11,45,26,.08);
  border-radius: 22px;
  padding: 24px;
}
.hero-mini-card span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--npb-primary);
  font-weight: 900;
  margin-bottom: 8px;
}
.hero-mini-card strong { color: var(--npb-primary-dark); font-size: 22px; line-height: 1.2; }
.intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}
.intro-highlight-card,
.values-panel,
.quote-panel,
.team-intro-card,
.resource-filter-note,
.process-band {
  background: #fff;
  border: 1px solid rgba(11,45,26,.10);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(11,45,26,.07);
}
.intro-highlight-card {
  padding: clamp(28px, 4vw, 46px);
  background: linear-gradient(135deg, rgba(11,122,59,.06), rgba(246,198,0,.10) 58%, rgba(206,17,38,.05));
}
.intro-highlight-card h2,
.values-panel h2,
.process-band h2 { color: var(--npb-primary-dark); font-size: clamp(28px, 3vw, 42px); line-height: 1.1; margin: 8px 0 16px; }
.intro-highlight-card p { font-size: 18px; color: #405166; max-width: 820px; }
.identity-facts {
  display: grid;
  gap: 14px;
}
.identity-facts div {
  background: #fff;
  border-left: 5px solid var(--npb-primary);
  padding: 22px 24px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(11,45,26,.07);
}
.identity-facts strong { display:block; font-size: 30px; line-height:1; color: var(--npb-primary-dark); margin-bottom: 8px; }
.identity-facts span { color:#526171; font-weight: 700; }
.pro-content-grid { display: grid; gap: 24px; margin: 28px 0; }
.pro-content-grid.three-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pro-card {
  background: #fff;
  border: 1px solid rgba(11,45,26,.11);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 56px rgba(11,45,26,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pro-card:hover { transform: translateY(-4px); box-shadow: 0 24px 70px rgba(11,45,26,.10); }
.pro-card i {
  width: 54px; height:54px; display:grid; place-items:center;
  color: var(--npb-primary); background: rgba(11,122,59,.09);
  border-radius: 18px; font-size:22px; margin-bottom: 18px;
}
.pro-card h3 { color: var(--npb-primary-dark); font-size: 22px; margin-bottom: 10px; }
.pro-card p { color:#526171; margin:0; }
.values-panel {
  margin: 34px 0;
  padding: clamp(26px, 4vw, 44px);
  display:grid;
  grid-template-columns: minmax(220px, .65fr) 1fr;
  gap: 28px;
  align-items:center;
}
.values-list {
  list-style:none; display:flex; flex-wrap:wrap; gap: 12px; margin:0; padding:0;
}
.values-list li {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(11,122,59,.08);
  color: var(--npb-primary-dark);
  font-weight: 800;
  border: 1px solid rgba(11,122,59,.12);
}
.quote-panel {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  background: linear-gradient(135deg, #082A18, #0B7A3B);
  color: #fff;
  overflow:hidden;
}
.quote-panel::after { content:""; position:absolute; right:-80px; bottom:-80px; width:220px; height:220px; border-radius:50%; background:rgba(246,198,0,.18); }
.quote-panel i { color:#F6C600; font-size:28px; margin-bottom:14px; }
.quote-panel blockquote { margin:0; font-size: clamp(22px, 3vw, 36px); line-height:1.28; font-weight:900; max-width: 920px; }
.quote-panel cite { display:block; margin-top:18px; color:rgba(255,255,255,.78); font-style:normal; font-weight:800; }
.expandable-content {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(11,45,26,.08);
  box-shadow: 0 20px 60px rgba(11,45,26,.05);
}
.action-showcase-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.action-showcase-card {
  position:relative; padding: 34px; border-radius: 28px; background:#fff; overflow:hidden;
  border: 1px solid rgba(11,45,26,.10); box-shadow: 0 24px 70px rgba(11,45,26,.07);
}
.action-showcase-card::before { content:""; position:absolute; inset:0 0 auto 0; height:6px; background: linear-gradient(90deg,#0B7A3B,#F6C600,#CE1126); }
.action-showcase-card span { position:absolute; top:18px; right:22px; font-weight:900; font-size:52px; color:rgba(11,45,26,.06); }
.action-showcase-card i { color: var(--npb-primary); font-size:34px; margin-bottom: 22px; }
.action-showcase-card h2 { color: var(--npb-primary-dark); font-size: clamp(22px,2.2vw,29px); line-height:1.16; }
.action-showcase-card p { color:#526171; }
.process-band { margin-top: 30px; padding: 32px; }
.process-steps { display:flex; flex-wrap:wrap; gap:12px; margin-top: 20px; }
.process-steps span { background: var(--npb-primary-dark); color:#fff; padding: 12px 18px; border-radius:999px; font-weight:800; }
.process-steps span:nth-child(2) { background:#0B7A3B; }
.process-steps span:nth-child(3) { background:#947600; }
.process-steps span:nth-child(4) { background:#B31224; }
.process-steps span:nth-child(5) { background:#173923; }
.team-intro-card,
.resource-filter-note { display:flex; gap:20px; align-items:center; padding: 28px; margin-bottom: 28px; }
.team-intro-card i,
.resource-filter-note i { width:62px; height:62px; display:grid; place-items:center; border-radius:20px; background:rgba(11,122,59,.09); color:var(--npb-primary); font-size:28px; flex:none; }
.team-intro-card h2 { margin:0 0 6px; color:var(--npb-primary-dark); }
.resource-filter-note p,
.team-intro-card p { margin:0; color:#526171; }
.auth-back-link { display:inline-flex; align-items:center; gap:8px; color:#fff; text-decoration:none; font-weight:800; margin-top:24px; }
@media (max-width: 900px) {
  .page-hero-grid, .intro-split, .values-panel, .pro-content-grid.three-cols, .action-showcase-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-mini-card { display:none; }
  .team-intro-card, .resource-filter-note { align-items:flex-start; }
}

/* =========================================================
   Nous Pas Bouger - V9 menu compact et pages plus visuelles
   ========================================================= */
.header-inner { gap: 18px; }
.site-branding { min-width: 180px; }
.npb-brand-logo img { max-width: 160px; max-height: 72px; object-fit: contain; }
.main-navigation { flex: 1 1 auto; }
.nav-menu { justify-content: center; gap: 6px; }
.nav-menu a {
  white-space: nowrap;
  font-size: 13.5px;
  padding: 10px 12px;
}
.header-cta { white-space: nowrap; padding-inline: 18px; }
.institutional-details summary {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--npb-primary);
  color: #fff;
  font-weight: 900;
  list-style: none;
  box-shadow: 0 14px 34px rgba(11,122,59,.22);
}
.institutional-details summary::-webkit-details-marker { display:none; }
.institutional-details summary::after { content: '+'; font-size: 20px; line-height: 1; }
.institutional-details[open] summary::after { content: '–'; }
.institutional-details .details-content { margin-top: 28px; }
.contact-form-placeholder .btn { margin-top: 16px; }
@media (max-width: 1100px) {
  .header-inner { gap: 12px; }
  .npb-brand-logo img { max-width: 140px; }
  .nav-menu a { font-size: 12.5px; padding: 9px 10px; }
  .header-cta { padding-inline: 14px; }
}
@media (max-width: 920px) {
  .npb-brand-logo img { max-width: 180px; }
  .nav-menu a { white-space: normal; }
}

/* V10 — Cartes et médias institutionnels uniformes */
.npb-card-team_member .card-image img { aspect-ratio: 4 / 5; object-fit: cover; width:100%; height:auto; }
.npb-card-position { display:block; color:var(--npb-primary); margin-bottom:8px; }
.npb-video-thumb { position:relative; display:block; overflow:hidden; }
.npb-video-thumb img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.npb-video-thumb span { position:absolute; inset:0; display:grid; place-items:center; background:rgba(0,0,0,.22); color:#fff; font-size:42px; }
.npb-video-embed { position:relative; aspect-ratio:16/9; border-radius:22px; overflow:hidden; box-shadow:0 24px 70px rgba(0,0,0,.16); margin:24px 0; background:#000; }
.npb-video-embed iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.npb-gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:18px; }
.npb-gallery-grid img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:16px; box-shadow:0 14px 34px rgba(0,0,0,.08); }
.npb-logo-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:18px; }
.npb-logo-grid div { min-height:110px; border:1px solid rgba(11,122,59,.14); border-radius:16px; display:grid; place-items:center; padding:18px; background:#fff; }
.npb-logo-grid img { max-width:100%; max-height:80px; object-fit:contain; }
.npb-document-download { margin:26px 0; }
@media(max-width:768px){ .npb-gallery-grid,.npb-logo-grid{ grid-template-columns:1fr 1fr; } }

/* =========================================================
   Nous Pas Bouger — V11 finalisation professionnelle
   ========================================================= */
:root {
  --npb-green: #0B7A3B;
  --npb-deep: #062D1B;
  --npb-yellow: #F6C600;
  --npb-red: #CE1126;
  --npb-soft: #F7FAF5;
}
.header-inner { min-height: 82px; align-items:center; }
.site-branding { flex: 0 0 auto; min-width: 150px; }
.npb-brand-logo img { max-width: 136px; max-height: 72px; object-fit: contain; }
.nav-menu { gap: 4px; align-items:center; }
.nav-menu a { white-space: nowrap !important; line-height: 1; font-size: 13px; letter-spacing: -.01em; padding: 11px 11px; }
.header-cta { white-space: nowrap; min-width: 112px; justify-content:center; }
.visual-page-hero { position:relative; overflow:hidden; }
.visual-page-hero::after { content:""; position:absolute; right:-90px; top:-70px; width:260px; height:260px; border-radius:50%; background: radial-gradient(circle, rgba(246,198,0,.28), transparent 68%); }
.page-hero-grid { position:relative; z-index:1; }
.pro-card, .intro-highlight-card, .team-intro-card, .resource-filter-note, .process-band, .contact-card, .contact-content .pro-card { border-radius: 28px; border: 1px solid rgba(11,122,59,.13); background: #fff; box-shadow: 0 22px 70px rgba(6,45,27,.07); }
.pro-card { padding: 28px; }
.pro-card i { width:54px; height:54px; display:grid; place-items:center; border-radius:18px; background:rgba(11,122,59,.09); color:var(--npb-green); font-size:24px; margin-bottom:18px; }
.placeholder-card { background: linear-gradient(180deg,#fff,#fbfdf9); }
.npb-empty-state { max-width: 760px; margin: 0 auto; text-align:center; padding: 46px 28px; border-radius: 28px; background:#fff; border: 1px solid rgba(11,122,59,.12); box-shadow: 0 24px 70px rgba(6,45,27,.07); }
.npb-empty-state h2 { color: var(--npb-deep); margin: 10px 0; }
.footer-bottom-inner div:last-child { font-weight: 700; color: rgba(255,255,255,.82); }
.npb-dashboard-standalone-body #wpadminbar,
.npb-auth-body #wpadminbar { display:none !important; }
.npb-dashboard-standalone-body,
.npb-auth-body { padding-top:0 !important; }
.dashboard-sidebar { position: sticky; top: 18px; align-self:flex-start; }
.dashboard-menu a[href*="home"], .dashboard-menu a[href*="/"]:not(.logout-link) { pointer-events:auto; }
.publication-panel .npb-fieldset { border:1px solid rgba(11,122,59,.16); border-radius:22px; padding:22px; margin:20px 0; background:rgba(247,250,245,.72); }
.publication-panel .npb-fieldset legend { padding:0 10px; color:var(--npb-deep); font-weight:900; }
.content-card { overflow:hidden; }
.content-card .card-image img { transition: transform .35s ease; }
.content-card:hover .card-image img { transform: scale(1.035); }
@media (max-width: 1180px) {
  .npb-brand-logo img { max-width: 118px; }
  .nav-menu a { font-size: 12.2px; padding: 10px 8px; }
  .header-cta { min-width:auto; padding-inline: 14px; }
}
@media (max-width: 980px) {
  .top-bar { display:none; }
  .site-branding { min-width: 120px; }
  .npb-brand-logo img { max-width: 108px; }
  .nav-menu a { font-size: 11.5px; padding: 9px 7px; }
}
@media (max-width: 768px) {
  .npb-brand-logo img { max-width: 150px; }
  .nav-menu a { white-space: nowrap !important; font-size: 16px; line-height:1.2; }
  .header-cta { display:none; }
  .dashboard-sidebar { position:static; }
}

/* =========================================================
   NPB V13 — Expérience institutionnelle premium
   ========================================================= */
:root {
    --npb-green: #123f2b;
    --npb-green-2: #1d5a3e;
    --npb-green-3: #2c7753;
    --npb-yellow: #f3c541;
    --npb-red: #c93b36;
    --npb-ink: #10221a;
    --npb-muted: #607067;
    --npb-cream: #f7f6f0;
    --npb-white: #ffffff;
    --npb-border: rgba(18, 63, 43, .12);
    --npb-shadow-soft: 0 18px 55px rgba(16, 34, 26, .10);
    --npb-shadow-hover: 0 28px 72px rgba(16, 34, 26, .18);
    --npb-radius-lg: 28px;
    --npb-radius-md: 20px;
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; color: var(--npb-ink); }
body.menu-open { overflow: hidden; }

.npb-scroll-progress {
    position: fixed; inset: 0 auto auto 0; z-index: 99999; width: 100%; height: 3px;
    transform: scaleX(0); transform-origin: left center;
    background: linear-gradient(90deg, var(--npb-yellow), var(--npb-red));
    will-change: transform;
}

.professional-header { transition: background-color .28s ease, box-shadow .28s ease, transform .28s ease; }
.professional-header.scrolled { background: rgba(255,255,255,.94); box-shadow: 0 10px 35px rgba(12,45,30,.10); backdrop-filter: blur(18px); }
.professional-header .header-inner { transition: min-height .28s ease; }
.professional-header.scrolled .header-inner { min-height: 76px; }
.main-navigation a { position: relative; }
.main-navigation a::after { content:""; position:absolute; left:50%; bottom:-8px; width:0; height:2px; background:var(--npb-yellow); transition:width .25s ease,left .25s ease; }
.main-navigation a:hover::after, .main-navigation .current-menu-item > a::after { left:0; width:100%; }

.npb-premium-hero {
    position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden;
    background:
      radial-gradient(circle at 78% 18%, rgba(243,197,65,.22), transparent 26%),
      radial-gradient(circle at 12% 82%, rgba(201,59,54,.13), transparent 28%),
      linear-gradient(135deg, #0a2e20 0%, #123f2b 48%, #1c583d 100%);
    color: #fff;
}
.npb-premium-hero::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(5,28,19,.22),transparent 60%); pointer-events:none; }
.npb-hero-noise { position:absolute; inset:0; opacity:.22; pointer-events:none; background-image:url('../images/pattern-dots.svg'); background-size:210px; mask-image:linear-gradient(to bottom,black,transparent 90%); }
.npb-hero-grid { position:relative; z-index:2; grid-template-columns:minmax(0,1.08fr) minmax(430px,.92fr); gap:72px; align-items:center; padding-top:72px; padding-bottom:92px; }
.npb-hero-copy { max-width:760px; }
.npb-hero-copy .eyebrow { color:#fff; display:inline-flex; align-items:center; gap:10px; padding:8px 13px; border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.08); border-radius:999px; backdrop-filter:blur(10px); }
.eyebrow-dot { width:8px; height:8px; border-radius:50%; background:var(--npb-yellow); box-shadow:0 0 0 6px rgba(243,197,65,.15); }
.npb-hero-copy h1 { max-width:790px; margin:24px 0 22px; color:#fff; font-size:clamp(3.2rem,6vw,6.2rem); line-height:.98; letter-spacing:-.055em; }
.npb-hero-copy .hero-lead { max-width:720px; color:rgba(255,255,255,.82); font-size:clamp(1.08rem,1.7vw,1.35rem); line-height:1.72; }
.btn-with-icon { display:inline-flex; align-items:center; gap:12px; }
.btn-with-icon i { transition:transform .25s ease; }
.btn-with-icon:hover i { transform:translateX(4px); }
.btn-glass { color:#fff; border:1px solid rgba(255,255,255,.24); background:rgba(255,255,255,.08); backdrop-filter:blur(12px); display:inline-flex; gap:10px; align-items:center; }
.btn-glass:hover { color:var(--npb-ink); background:#fff; border-color:#fff; }
.hero-trust-line { display:flex; flex-wrap:wrap; gap:22px; margin-top:34px; color:rgba(255,255,255,.70); font-size:.91rem; }
.hero-trust-line span { display:inline-flex; align-items:center; gap:8px; }
.hero-trust-line i { color:var(--npb-yellow); }

.npb-hero-visual { --hero-x:0px; --hero-y:0px; position:relative; min-height:560px; transform:translate(var(--hero-x),var(--hero-y)); transition:transform .18s ease-out; }
.hero-visual-core { position:absolute; z-index:3; left:50%; top:50%; width:290px; height:290px; transform:translate(-50%,-50%); border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; background:rgba(255,255,255,.96); color:var(--npb-ink); box-shadow:0 35px 100px rgba(0,0,0,.28), inset 0 0 0 12px rgba(18,63,43,.04); }
.hero-visual-core::after { content:""; position:absolute; inset:-20px; border:1px solid rgba(255,255,255,.22); border-radius:50%; }
.hero-visual-core img { width:118px; height:118px; object-fit:contain; margin-bottom:14px; }
.hero-visual-core strong { font-size:1.25rem; }
.hero-visual-core span { margin-top:4px; color:var(--npb-muted); font-size:.82rem; }
.hero-orbit { position:absolute; left:50%; top:50%; border:1px solid rgba(255,255,255,.18); border-radius:50%; transform:translate(-50%,-50%); }
.hero-orbit-one { width:430px; height:430px; animation:npb-spin 26s linear infinite; }
.hero-orbit-two { width:535px; height:535px; border-style:dashed; animation:npb-spin-reverse 34s linear infinite; }
.hero-orbit::before, .hero-orbit::after { content:""; position:absolute; width:11px; height:11px; border-radius:50%; background:var(--npb-yellow); box-shadow:0 0 24px rgba(243,197,65,.85); }
.hero-orbit::before { top:12%; left:14%; } .hero-orbit::after { right:8%; bottom:22%; background:var(--npb-red); }
.hero-floating-card { position:absolute; z-index:4; display:flex; align-items:center; gap:13px; min-width:210px; padding:15px 17px; color:var(--npb-ink); background:rgba(255,255,255,.94); border:1px solid rgba(255,255,255,.7); border-radius:18px; box-shadow:0 20px 45px rgba(0,0,0,.17); backdrop-filter:blur(14px); animation:npb-float 5.5s ease-in-out infinite; }
.hero-floating-card strong,.hero-floating-card small { display:block; } .hero-floating-card small { margin-top:3px; color:var(--npb-muted); font-size:.77rem; }
.floating-icon { width:42px; height:42px; flex:0 0 42px; display:grid; place-items:center; border-radius:13px; color:#fff; background:var(--npb-green-2); }
.hero-card-peace { top:9%; left:1%; } .hero-card-rights { top:34%; right:-3%; animation-delay:-1.5s; } .hero-card-citizen { left:8%; bottom:7%; animation-delay:-3s; }
.hero-card-rights .floating-icon { background:var(--npb-red); } .hero-card-citizen .floating-icon { color:var(--npb-ink); background:var(--npb-yellow); }
.hero-scroll-cue { position:absolute; z-index:4; left:50%; bottom:24px; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(255,255,255,.65); font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; }
.hero-scroll-cue span { width:1px; height:34px; background:linear-gradient(to bottom,var(--npb-yellow),transparent); animation:npb-scroll-cue 1.8s ease-in-out infinite; }

.impact-strip { position:relative; z-index:5; margin-top:-34px; }
.impact-grid { display:grid; grid-template-columns:repeat(4,1fr); background:#fff; border:1px solid var(--npb-border); border-radius:22px; box-shadow:var(--npb-shadow-soft); overflow:hidden; }
.impact-card { display:flex; align-items:center; gap:15px; padding:24px 28px; border-right:1px solid var(--npb-border); }
.impact-card:last-child { border-right:0; }
.impact-icon { width:48px; height:48px; flex:0 0 48px; display:grid; place-items:center; border-radius:15px; color:var(--npb-green); background:rgba(18,63,43,.08); }
.impact-card strong { display:block; font-size:1.9rem; line-height:1; color:var(--npb-green); }
.impact-card span:not(.impact-icon) { display:block; margin-top:6px; color:var(--npb-muted); font-size:.82rem; }

.npb-intro-section { padding-top:130px; }
.npb-intro-grid { display:grid; grid-template-columns:minmax(0,.86fr) minmax(520px,1.14fr); gap:90px; align-items:center; }
.section-heading-left { text-align:left; margin:0; }
.section-heading-left h2 { max-width:680px; }
.text-link-strong { margin-top:18px; font-weight:800; }
.institutional-card-stack { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.institutional-card { position:relative; min-height:238px; padding:30px; overflow:hidden; border:1px solid var(--npb-border); border-radius:var(--npb-radius-md); background:#fff; box-shadow:0 14px 36px rgba(16,34,26,.06); transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease; }
.institutional-card-main { grid-row:span 2; min-height:494px; display:flex; flex-direction:column; justify-content:flex-end; color:#fff; background:linear-gradient(160deg,var(--npb-green),var(--npb-green-3)); }
.institutional-card:hover { transform:translateY(-8px); box-shadow:var(--npb-shadow-hover); border-color:rgba(18,63,43,.24); }
.institutional-card > i { width:54px; height:54px; display:grid; place-items:center; margin-bottom:28px; border-radius:17px; color:var(--npb-green); background:rgba(18,63,43,.08); font-size:1.25rem; }
.institutional-card-main > i { color:var(--npb-ink); background:var(--npb-yellow); }
.institutional-number { position:absolute; top:18px; right:22px; color:rgba(18,63,43,.18); font-size:3.2rem; font-weight:900; }
.institutional-card-main .institutional-number { color:rgba(255,255,255,.13); }
.institutional-card h3 { margin:0 0 10px; font-size:1.45rem; }
.institutional-card p { margin:0; color:var(--npb-muted); line-height:1.7; }
.institutional-card-main p { color:rgba(255,255,255,.76); }

.npb-president-panel { position:relative; gap:0; overflow:visible; }
.npb-president-panel .president-photo-card { min-height:560px; border-radius:28px 0 0 28px; overflow:hidden; }
.npb-president-panel .president-photo-card img { width:100%; height:100%; object-fit:cover; transition:transform .7s ease; }
.npb-president-panel:hover .president-photo-card img { transform:scale(1.035); }
.president-photo-accent { position:absolute; right:-15px; bottom:-15px; width:120px; height:120px; border-radius:24px; background:var(--npb-yellow); z-index:-1; }
.npb-president-panel .president-message-card { display:flex; flex-direction:column; justify-content:center; padding:68px; border-radius:0 28px 28px 0; background:#fff; box-shadow:var(--npb-shadow-soft); }
.npb-president-panel blockquote { position:relative; margin:24px 0 28px; padding-left:28px; border-left:4px solid var(--npb-yellow); }
.npb-president-panel blockquote p { margin:0; color:#33473d; font-size:1.17rem; line-height:1.85; }
.npb-president-panel .btn { align-self:flex-start; margin-top:28px; }

.feature-grid-four { grid-template-columns:repeat(4,1fr); }
.npb-domains-section .feature-card { position:relative; min-height:330px; padding:34px 30px; overflow:hidden; border-radius:var(--npb-radius-md); transition:transform .32s ease, box-shadow .32s ease, background-color .32s ease, color .32s ease; }
.npb-domains-section .feature-card::before { content:""; position:absolute; inset:auto -30% -55% -30%; height:75%; border-radius:50%; background:var(--npb-green); transition:transform .42s ease; transform:translateY(100%); }
.npb-domains-section .feature-card > * { position:relative; z-index:1; }
.npb-domains-section .feature-card:hover { color:#fff; transform:translateY(-10px); box-shadow:var(--npb-shadow-hover); }
.npb-domains-section .feature-card:hover::before { transform:translateY(0) scale(1.8); }
.npb-domains-section .feature-card:hover p,.npb-domains-section .feature-card:hover .feature-index { color:rgba(255,255,255,.75); }
.npb-domains-section .feature-card:hover > i { color:var(--npb-ink); background:var(--npb-yellow); }
.feature-index { display:block; margin-bottom:25px; color:rgba(18,63,43,.35); font-size:.78rem; font-weight:900; letter-spacing:.16em; }
.card-arrow { position:absolute!important; right:24px; bottom:24px; width:38px; height:38px; display:grid; place-items:center; border-radius:50%; color:var(--npb-green); background:rgba(18,63,43,.08); opacity:0; transform:translate(-8px,8px); transition:.28s ease; }
.feature-card:hover .card-arrow { opacity:1; transform:none; color:var(--npb-ink); background:#fff; }

.section-dark { position:relative; color:#fff; background:linear-gradient(145deg,#0b2c1f,#123f2b); overflow:hidden; }
.section-dark::before { content:""; position:absolute; width:520px; height:520px; right:-220px; top:-240px; border-radius:50%; background:rgba(243,197,65,.10); }
.section-heading-on-dark h2 { color:#fff; }
.section-heading-on-dark .eyebrow { color:var(--npb-yellow); }
.text-link-light { color:#fff; }
.cards-grid-premium .content-card { border:0; border-radius:22px; overflow:hidden; box-shadow:0 18px 48px rgba(0,0,0,.14); transition:transform .32s ease,box-shadow .32s ease; }
.cards-grid-premium .content-card:hover { transform:translateY(-10px); box-shadow:0 30px 72px rgba(0,0,0,.22); }
.cards-grid-premium .card-thumbnail { overflow:hidden; }
.cards-grid-premium .card-thumbnail img { transition:transform .7s ease; }
.cards-grid-premium .content-card:hover .card-thumbnail img { transform:scale(1.07); }
.section-dark .placeholder-card { color:var(--npb-ink); background:#fff; }

.npb-premium-cta { position:relative; overflow:hidden; background:linear-gradient(105deg,var(--npb-red),#9e2f2b); }
.cta-pattern { position:absolute; inset:0; opacity:.16; background-image:radial-gradient(circle at 1px 1px,#fff 1px,transparent 0); background-size:24px 24px; }
.npb-premium-cta .cta-inner { position:relative; z-index:2; }

.npb-back-to-top { position:fixed; z-index:90; right:22px; bottom:22px; width:48px; height:48px; display:grid; place-items:center; border:0; border-radius:50%; color:#fff; background:var(--npb-green); box-shadow:0 14px 32px rgba(16,34,26,.24); cursor:pointer; opacity:0; visibility:hidden; transform:translateY(12px); transition:.25s ease; }
.npb-back-to-top.is-visible { opacity:1; visibility:visible; transform:none; }
.npb-back-to-top:hover { color:var(--npb-ink); background:var(--npb-yellow); transform:translateY(-3px); }

.js-enabled .npb-reveal { opacity:0; transform:translateY(26px); transition:opacity .65s ease var(--reveal-delay,0ms),transform .65s cubic-bezier(.2,.75,.25,1) var(--reveal-delay,0ms); }
.js-enabled .npb-reveal.is-revealed { opacity:1; transform:none; }

@keyframes npb-spin { to { transform:translate(-50%,-50%) rotate(360deg); } }
@keyframes npb-spin-reverse { to { transform:translate(-50%,-50%) rotate(-360deg); } }
@keyframes npb-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes npb-scroll-cue { 0%,100%{opacity:.35;transform:scaleY(.65);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

@media (max-width: 1180px) {
    .npb-hero-grid { grid-template-columns:1fr 430px; gap:36px; }
    .npb-hero-copy h1 { font-size:clamp(3rem,5.5vw,4.8rem); }
    .hero-card-rights { right:0; }
    .npb-intro-grid { gap:50px; }
    .feature-grid-four { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 900px) {
    .npb-premium-hero { min-height:auto; }
    .npb-hero-grid { grid-template-columns:1fr; padding-top:92px; padding-bottom:110px; }
    .npb-hero-copy { text-align:center; margin-inline:auto; }
    .npb-hero-copy .eyebrow,.hero-actions,.hero-trust-line { justify-content:center; }
    .npb-hero-visual { min-height:500px; max-width:620px; width:100%; margin:0 auto; }
    .impact-grid { grid-template-columns:repeat(2,1fr); }
    .impact-card:nth-child(2) { border-right:0; } .impact-card:nth-child(-n+2){border-bottom:1px solid var(--npb-border);}
    .npb-intro-grid { grid-template-columns:1fr; }
    .npb-president-panel { grid-template-columns:1fr; }
    .npb-president-panel .president-photo-card { min-height:480px; border-radius:28px 28px 0 0; }
    .npb-president-panel .president-message-card { border-radius:0 0 28px 28px; }
}
@media (max-width: 640px) {
    .top-bar { display:none; }
    .npb-hero-grid { padding-top:72px; }
    .npb-hero-copy h1 { font-size:clamp(2.65rem,13vw,4rem); }
    .hero-actions { flex-direction:column; align-items:stretch; }
    .hero-actions .btn { justify-content:center; }
    .hero-trust-line { gap:12px 18px; }
    .npb-hero-visual { min-height:430px; transform:none!important; }
    .hero-visual-core { width:220px; height:220px; }
    .hero-visual-core img { width:88px; height:88px; }
    .hero-orbit-one { width:315px; height:315px; } .hero-orbit-two { width:390px; height:390px; }
    .hero-floating-card { min-width:170px; padding:11px 12px; }
    .hero-card-peace { top:4%; left:0; } .hero-card-rights { top:41%; right:-8px; } .hero-card-citizen { left:1%; bottom:4%; }
    .impact-strip { margin-top:-20px; }
    .impact-grid { grid-template-columns:1fr; }
    .impact-card { border-right:0; border-bottom:1px solid var(--npb-border)!important; }
    .impact-card:last-child { border-bottom:0!important; }
    .institutional-card-stack { grid-template-columns:1fr; }
    .institutional-card-main { grid-row:auto; min-height:330px; }
    .feature-grid-four { grid-template-columns:1fr; }
    .npb-president-panel .president-message-card { padding:36px 25px; }
    .npb-president-panel .president-photo-card { min-height:390px; }
    .npb-back-to-top { right:15px; bottom:15px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior:auto; }
    *,*::before,*::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
    .js-enabled .npb-reveal { opacity:1; transform:none; }
}

/* ==========================================================
   V14 — Heritage Edition: hero photographique authentique de Gao
   ========================================================== */
.npb-heritage-hero {
    position: relative;
    min-height: min(820px, calc(100vh - 90px));
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #173d2a;
    isolation: isolate;
}
.npb-heritage-media {
    position: absolute;
    inset: 0;
    z-index: -4;
    background-image: url('../images/gao-hero-authentique.jpg');
    background-size: cover;
    background-position: center 43%;
    transform: scale(1.015);
    animation: npb-heritage-breathe 18s ease-in-out infinite alternate;
}
.npb-heritage-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
      linear-gradient(90deg, rgba(4,35,22,.96) 0%, rgba(6,49,30,.86) 37%, rgba(7,52,32,.42) 63%, rgba(7,39,26,.14) 100%),
      linear-gradient(0deg, rgba(2,24,15,.54), transparent 55%);
}
.npb-sahel-pattern {
    position: absolute;
    right: -80px;
    top: 38px;
    z-index: -2;
    width: 520px;
    height: 520px;
    opacity: .16;
    background-image:
      linear-gradient(45deg, transparent 46%, rgba(255,255,255,.9) 47%, rgba(255,255,255,.9) 53%, transparent 54%),
      linear-gradient(-45deg, transparent 46%, rgba(246,198,0,.85) 47%, rgba(246,198,0,.85) 53%, transparent 54%);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle, #000 0 44%, transparent 73%);
}
.npb-heritage-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 690px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    padding-top: 78px;
    padding-bottom: 110px;
}
.npb-heritage-copy { max-width: 780px; }
.npb-heritage-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(7,47,29,.42);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}
.npb-heritage-copy h1 {
    max-width: 800px;
    margin: 25px 0 22px;
    color: #fff;
    font-size: clamp(3.5rem, 6.8vw, 6.8rem);
    line-height: .96;
    letter-spacing: -.058em;
    text-wrap: balance;
}
.npb-heritage-copy .hero-lead {
    max-width: 690px;
    color: rgba(255,255,255,.88);
    font-size: clamp(1.08rem, 1.55vw, 1.32rem);
    line-height: 1.72;
}
.btn-heritage-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.66);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(9px);
}
.btn-heritage-outline:hover { color: var(--npb-ink); background: #fff; border-color: #fff; }
.npb-heritage-note {
    align-self: flex-end;
    max-width: 300px;
    margin-bottom: 52px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    color: #fff;
    border-left: 1px solid rgba(255,255,255,.28);
    background: rgba(4,35,22,.24);
    backdrop-filter: blur(10px);
}
.npb-note-line { width: 34px; height: 3px; margin-top: 8px; flex: 0 0 34px; background: var(--npb-yellow); }
.npb-heritage-note small,
.npb-heritage-note strong { display: block; }
.npb-heritage-note small { margin-bottom: 6px; color: rgba(255,255,255,.68); font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; }
.npb-heritage-note strong { font-size: 1.04rem; line-height: 1.45; }
.npb-heritage-hero .hero-scroll-cue { bottom: 28px; }
.npb-heritage-hero + .impact-strip { margin-top: -36px; }
.npb-heritage-hero .hero-actions { margin-top: 32px; }
.npb-heritage-hero .hero-trust-line { margin-top: 32px; }

/* Photo du Président V14 : cadrage plus institutionnel, sans espace excessif. */
.npb-president-panel .president-photo-card img {
    object-position: center 24%;
}

@keyframes npb-heritage-breathe {
    from { transform: scale(1.015); }
    to { transform: scale(1.055); }
}

@media (max-width: 1100px) {
    .npb-heritage-inner { min-height: 650px; }
    .npb-heritage-note { display: none; }
    .npb-heritage-copy { max-width: 740px; }
    .npb-heritage-overlay {
        background: linear-gradient(90deg, rgba(4,35,22,.96), rgba(6,49,30,.77) 58%, rgba(7,39,26,.28));
    }
}
@media (max-width: 760px) {
    .npb-heritage-hero { min-height: 720px; }
    .npb-heritage-media { background-position: 58% center; animation: none; }
    .npb-heritage-overlay {
        background: linear-gradient(180deg, rgba(4,35,22,.78), rgba(4,35,22,.91) 62%, rgba(3,28,18,.98));
    }
    .npb-sahel-pattern { width: 310px; height: 310px; opacity: .10; }
    .npb-heritage-inner { min-height: 650px; padding-top: 68px; padding-bottom: 100px; align-items: flex-end; }
    .npb-heritage-copy h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
    .npb-heritage-copy .hero-lead { font-size: 1.04rem; }
    .npb-heritage-hero .hero-actions { flex-direction: column; align-items: stretch; }
    .npb-heritage-hero .hero-actions .btn { justify-content: center; }
    .npb-heritage-hero .hero-trust-line { gap: 12px 18px; }
}
@media (prefers-reduced-motion: reduce) {
    .npb-heritage-media { animation: none; transform: none; }
}

/* ======================================================================
   NPB 15.0 — Final Institutional Identity & Interaction Corrections
   ====================================================================== */

:root {
  --npb-tricolor: linear-gradient(115deg, #0b7a3f 0 33.333%, #f2c500 33.333% 66.666%, #c81f32 66.666% 100%);
  --npb-card-border: 2px;
}

/* Hero: preserve the authentic Gao photograph while keeping every message readable. */
.npb-heritage-hero {
  min-height: clamp(660px, 82vh, 860px);
  display: flex;
  align-items: center;
  padding-bottom: 120px;
}
.npb-heritage-overlay {
  background: linear-gradient(90deg, rgba(4,55,35,.94) 0%, rgba(4,55,35,.80) 39%, rgba(4,55,35,.38) 67%, rgba(4,55,35,.12) 100%);
}
.npb-heritage-inner {
  width: 100%;
  align-items: center;
}
.npb-heritage-copy {
  max-width: 720px;
  padding-top: 20px;
}
.npb-heritage-copy h1,
.npb-heritage-copy .hero-lead,
.npb-heritage-copy .hero-trust-line,
.npb-heritage-eyebrow {
  text-shadow: 0 2px 18px rgba(0,0,0,.34);
}
.npb-heritage-note {
  position: absolute;
  left: max(24px, calc((100vw - 1200px)/2));
  right: auto;
  bottom: 42px;
  width: min(520px, calc(100% - 48px));
  display: flex !important;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  background: rgba(5,52,34,.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  z-index: 5;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.npb-heritage-note small,
.npb-heritage-note strong { color:#fff; }
.npb-heritage-note small { opacity:.78; }
.npb-note-line {
  width: 4px;
  min-width: 4px;
  height: 42px;
  border-radius: 999px;
  background: var(--npb-tricolor);
}
.hero-scroll-cue { bottom: 18px; }

/* Domain cards: no opaque green wave. The content always remains visible. */
.npb-domains-section .feature-card {
  min-height: 330px;
  color: var(--npb-ink);
  background:
    linear-gradient(#fff,#fff) padding-box,
    var(--npb-tricolor) border-box;
  border: var(--npb-card-border) solid transparent;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.npb-domains-section .feature-card::before { display:none !important; content:none !important; }
.npb-domains-section .feature-card:hover {
  color: var(--npb-ink);
  background:
    linear-gradient(#fff,#fff) padding-box,
    var(--npb-tricolor) border-box;
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(7,67,43,.14);
}
.npb-domains-section .feature-card:hover p,
.npb-domains-section .feature-card:hover .feature-index,
.npb-domains-section .feature-card:hover h3 { color: inherit; }
.npb-domains-section .feature-card:hover > i {
  transform: scale(1.07);
  color: var(--npb-green);
  background: rgba(11,122,63,.10);
}
.npb-domains-section .feature-card:nth-child(2):hover > i { color:#826900; background:rgba(242,197,0,.18); }
.npb-domains-section .feature-card:nth-child(3):hover > i { color:var(--npb-red); background:rgba(200,31,50,.10); }
.npb-domains-section .feature-card:nth-child(4):hover > i { color:var(--npb-green); background:rgba(11,122,63,.10); }
.feature-card .card-arrow {
  opacity:1;
  transform:none;
  color:var(--npb-green);
  background:#fff;
  border:1px solid rgba(11,122,63,.22);
}
.feature-card:hover .card-arrow {
  color:#fff;
  background:var(--npb-green);
  border-color:var(--npb-green);
}

/* A single, strong identity for all internal pages: coloured frames, never loose bars. */
body:not(.home) .page-hero,
body:not(.home) .archive-hero,
body:not(.home) .visual-page-hero {
  background:
    linear-gradient(135deg, rgba(247,249,246,.98), rgba(255,252,240,.98)) padding-box,
    var(--npb-tricolor) border-box;
  border: 0;
  border-bottom: 3px solid transparent;
}
body:not(.home) .entry-page,
body:not(.home) .pro-card,
body:not(.home) .content-card,
body:not(.home) .action-showcase-card,
body:not(.home) .team-intro-card,
body:not(.home) .resource-filter-note,
body:not(.home) .contact-card,
body:not(.home) .notice-card,
body:not(.home) .process-band,
body:not(.home) .wp-block-column,
body:not(.home) .wp-block-quote {
  background:
    linear-gradient(#fff,#fff) padding-box,
    var(--npb-tricolor) border-box;
  border: 2px solid transparent;
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(10,57,39,.08);
}
body:not(.home) .entry-page { padding: clamp(24px,4vw,48px); }
body:not(.home) .pro-card,
body:not(.home) .content-card,
body:not(.home) .action-showcase-card,
body:not(.home) .team-intro-card,
body:not(.home) .resource-filter-note,
body:not(.home) .contact-card,
body:not(.home) .notice-card {
  transition: transform .26s ease, box-shadow .26s ease;
}
body:not(.home) .pro-card:hover,
body:not(.home) .content-card:hover,
body:not(.home) .action-showcase-card:hover,
body:not(.home) .contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(10,57,39,.13);
}

/* Remove decorative free-standing bars; colour belongs to framed components. */
body:not(.home) .section-heading::after,
body:not(.home) .page-hero-copy::after,
body:not(.home) .entry-content h2::after,
body:not(.home) .entry-content h3::after,
body:not(.home) .title-bar,
body:not(.home) .decorative-line,
body:not(.home) .section-line { display:none !important; content:none !important; }

@media (max-width: 900px) {
  .npb-heritage-hero { min-height: 760px; padding-bottom: 140px; }
  .npb-heritage-overlay { background:linear-gradient(90deg,rgba(4,55,35,.94),rgba(4,55,35,.72)); }
  .npb-heritage-note { left:20px; bottom:48px; width:calc(100% - 40px); }
  .hero-scroll-cue { display:none; }
}
@media (max-width: 620px) {
  .npb-heritage-hero { min-height: 820px; }
  .npb-heritage-copy h1 { font-size:clamp(2.45rem,12vw,4rem); }
  .hero-trust-line { gap:8px; }
  .npb-heritage-note { font-size:.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .npb-domains-section .feature-card,
  body:not(.home) .pro-card,
  body:not(.home) .content-card,
  body:not(.home) .action-showcase-card { transition:none !important; transform:none !important; }
}

/* ================================================================
   NPB THEME PREMIUM 14.1 — FINAL HARMONISATION
   ================================================================ */

/* Homepage hero: stable visual hierarchy, no overlap at any viewport. */
.home .npb-heritage-hero {
  min-height: clamp(700px, 88vh, 900px);
  padding: clamp(76px, 9vh, 118px) 0 180px;
  align-items: flex-start;
}
.home .npb-heritage-inner {
  position: relative;
  display: block;
  min-height: 500px;
}
.home .npb-heritage-copy {
  max-width: 690px;
  padding-top: 0;
}
.home .npb-heritage-copy h1 {
  max-width: 690px;
  font-size: clamp(3.25rem, 6.2vw, 6.3rem);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 26px 0 22px;
}
.home .npb-heritage-copy .hero-lead {
  max-width: 650px;
  margin: 0;
  line-height: 1.62;
}
.home .npb-heritage-hero .hero-actions {
  margin-top: 28px;
  gap: 14px;
}
.home .npb-heritage-hero .hero-trust-line {
  margin-top: 26px;
  padding-right: 0;
  max-width: 720px;
  row-gap: 10px;
}
.home .npb-heritage-note {
  left: max(24px, calc((100vw - 1200px)/2));
  bottom: 92px;
  width: min(510px, calc(100% - 48px));
  margin: 0;
}
.home .hero-scroll-cue { display: none; }
.home .npb-heritage-hero + .impact-strip {
  position: relative;
  z-index: 8;
  margin-top: -72px;
}
.home .impact-grid {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(7,54,37,.22);
  border: 1px solid rgba(255,255,255,.66);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Cards: full continuous tricolour frame — never decorative bars. */
:root { --npb-frame: linear-gradient(135deg,#0b7a3f 0 34%,#f2c500 48% 66%,#c81f32 80% 100%); }
body:not(.home) .pro-card,
body:not(.home) .action-showcase-card,
body:not(.home) .intro-highlight-card,
body:not(.home) .identity-facts > div,
body:not(.home) .team-intro-card,
body:not(.home) .resource-filter-note,
body:not(.home) .process-band,
body:not(.home) .values-panel,
body:not(.home) .quote-panel,
body:not(.home) .institutional-details,
body:not(.home) .entry-page,
body:not(.home) .contact-card,
body:not(.home) .content-card {
  position: relative;
  border: 2px solid transparent !important;
  border-radius: 22px !important;
  background: linear-gradient(#fff,#fff) padding-box, var(--npb-frame) border-box !important;
  box-shadow: 0 14px 38px rgba(10,57,39,.08);
  overflow: hidden;
}
body:not(.home) .action-showcase-card::before,
body:not(.home) .pro-card::before,
body:not(.home) .intro-highlight-card::before,
body:not(.home) .identity-facts > div::before,
body:not(.home) .team-intro-card::before,
body:not(.home) .resource-filter-note::before,
body:not(.home) .process-band::before,
body:not(.home) .values-panel::before,
body:not(.home) .quote-panel::before,
body:not(.home) .institutional-details::before {
  display: none !important;
  content: none !important;
  height: 0 !important;
  background: none !important;
}
body:not(.home) .action-showcase-card {
  padding: 30px;
  min-height: 280px;
}
body:not(.home) .action-showcase-card > span {
  top: 24px;
  right: 24px;
  color: rgba(11,45,26,.055);
}
body:not(.home) .identity-facts > div {
  padding: 20px 24px;
}
body:not(.home) .pro-card:hover,
body:not(.home) .action-showcase-card:hover,
body:not(.home) .identity-facts > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(10,57,39,.13);
}

/* Internal page hero: frame identity without loose horizontal colour bars. */
body:not(.home) .page-hero,
body:not(.home) .archive-hero,
body:not(.home) .visual-page-hero {
  border: 0 !important;
  background: radial-gradient(circle at 92% 18%,rgba(242,197,0,.18),transparent 23%),linear-gradient(135deg,#f7faf6,#fffaf0) !important;
}
body:not(.home) .page-hero::before,
body:not(.home) .page-hero::after,
body:not(.home) .archive-hero::before,
body:not(.home) .archive-hero::after,
body:not(.home) .visual-page-hero::before,
body:not(.home) .visual-page-hero::after {
  pointer-events: none;
}
body:not(.home) .hero-mini-card {
  border: 2px solid transparent;
  border-radius: 18px;
  background: linear-gradient(#fff,#fff) padding-box,var(--npb-frame) border-box;
  box-shadow: 0 16px 42px rgba(10,57,39,.08);
}

/* Domain cards on homepage: discreet premium hover only. */
.home .npb-domains-section .feature-card {
  background: #fff;
  border: 1px solid rgba(8,77,49,.12);
  box-shadow: 0 14px 38px rgba(10,57,39,.07);
}
.home .npb-domains-section .feature-card:hover {
  background: #fff;
  border-color: rgba(11,122,63,.34);
  box-shadow: 0 24px 58px rgba(10,57,39,.13);
}
.home .npb-domains-section .feature-card::before { display:none!important;content:none!important; }
.home .npb-domains-section .feature-card:hover p,
.home .npb-domains-section .feature-card:hover h3,
.home .npb-domains-section .feature-card:hover .feature-index { color: inherit!important; }

/* Mobile/tablet hero and statistics. */
@media (max-width: 1024px) {
  .home .npb-heritage-hero { min-height: 820px; padding: 82px 0 210px; }
  .home .npb-heritage-overlay { background: linear-gradient(90deg,rgba(4,55,35,.96),rgba(4,55,35,.76) 68%,rgba(4,55,35,.42)); }
  .home .npb-heritage-note { bottom: 112px; }
  .home .npb-heritage-hero + .impact-strip { margin-top: -86px; }
}
@media (max-width: 760px) {
  .home .npb-heritage-hero { min-height: 930px; padding: 68px 0 250px; }
  .home .npb-heritage-media { background-position: 58% center; }
  .home .npb-heritage-overlay { background: linear-gradient(180deg,rgba(4,55,35,.95) 0%,rgba(4,55,35,.82) 62%,rgba(4,55,35,.58) 100%); }
  .home .npb-heritage-copy h1 { font-size: clamp(2.7rem,13.5vw,4.2rem); }
  .home .npb-heritage-hero .hero-actions { flex-direction: column; align-items: stretch; }
  .home .npb-heritage-hero .hero-actions .btn { justify-content: center; width: 100%; }
  .home .npb-heritage-hero .hero-trust-line { display:grid; grid-template-columns:1fr; }
  .home .npb-heritage-note { left:18px; bottom:126px; width:calc(100% - 36px); }
  .home .npb-heritage-hero + .impact-strip { margin-top: -100px; }
  .home .impact-grid { grid-template-columns: 1fr 1fr; }
  .home .impact-card { min-width:0; padding:18px 16px; }
}
@media (max-width: 470px) {
  .home .npb-heritage-hero { min-height: 1030px; padding-bottom: 300px; }
  .home .npb-heritage-note { bottom: 174px; }
  .home .npb-heritage-hero + .impact-strip { margin-top: -142px; }
  .home .impact-grid { grid-template-columns:1fr; }
  .home .impact-card { border-right:0!important; border-bottom:1px solid var(--npb-border)!important; }
  .home .impact-card:last-child { border-bottom:0!important; }
}

/* ================================================================
   NPB THEME PREMIUM 14.2 — HERO FINAL, COMPACT ET SANS CHEVAUCHEMENT
   ================================================================ */
.home .npb-heritage-hero {
  min-height: calc(100svh - 88px);
  max-height: 940px;
  padding: 0;
  display: block;
}
.home .npb-heritage-inner {
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(44px, 6vh, 72px);
  padding-bottom: 190px;
}
.home .npb-heritage-copy {
  max-width: 670px;
  padding: 0;
}
.home .npb-heritage-copy h1 {
  max-width: 650px;
  margin: 18px 0 16px;
  font-size: clamp(3.05rem, 5.35vw, 5.6rem);
  line-height: .97;
}
.home .npb-heritage-copy .hero-lead {
  max-width: 610px;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}
.home .npb-heritage-hero .hero-actions {
  margin-top: 20px;
  gap: 12px;
}
.home .npb-heritage-note {
  position: static;
  width: min(490px, 100%);
  margin: 18px 0 0;
  padding: 13px 16px;
  display: flex !important;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 16px;
  background: rgba(4,48,31,.56);
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}
.home .npb-note-emblem {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: linear-gradient(90deg,#159447 0 33.33%,#f4ca16 33.33% 66.66%,#d92735 66.66% 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.32);
}
.home .npb-heritage-note small { margin-bottom: 4px; }
.home .npb-heritage-note strong { font-size: 1rem; line-height: 1.35; }
.home .npb-heritage-hero .hero-trust-line {
  margin-top: 14px;
  gap: 12px 20px;
  font-size: .85rem;
}
.home .hero-impact-panel {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 48px));
}
.home .hero-impact-panel .impact-grid {
  margin: 0;
  background: linear-gradient(110deg,rgba(5,68,43,.86),rgba(92,83,54,.66));
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.home .hero-impact-panel .impact-card {
  min-height: 108px;
  padding: 20px 28px;
  color: #fff;
  border-right-color: rgba(255,255,255,.22);
}
.home .hero-impact-panel .impact-card strong,
.home .hero-impact-panel .impact-card span { color: #fff; }
.home .hero-impact-panel .impact-card > div > span { color: rgba(255,255,255,.82); }
.home .hero-impact-panel .impact-icon {
  background: rgba(239,255,244,.94);
  color: var(--npb-green);
}
.home .npb-heritage-hero + .npb-intro-section { padding-top: 86px; }

@media (max-width: 1024px) {
  .home .npb-heritage-hero { min-height: auto; max-height: none; }
  .home .npb-heritage-inner { padding-top: 62px; padding-bottom: 32px; }
  .home .hero-impact-panel {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(100% - 36px, 1200px);
    margin: 0 auto;
    padding-bottom: 26px;
  }
  .home .hero-impact-panel .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .home .hero-impact-panel .impact-card:nth-child(2) { border-right: 0; }
  .home .npb-heritage-hero + .npb-intro-section { padding-top: 70px; }
}
@media (max-width: 760px) {
  .home .npb-heritage-inner { padding-top: 44px; padding-bottom: 24px; }
  .home .npb-heritage-copy h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .home .npb-heritage-note { width: 100%; }
  .home .npb-heritage-hero .hero-trust-line { grid-template-columns: 1fr; }
  .home .hero-impact-panel .impact-grid { grid-template-columns: 1fr 1fr; }
  .home .hero-impact-panel .impact-card { min-height: 96px; padding: 15px 14px; }
}
@media (max-width: 470px) {
  .home .hero-impact-panel .impact-grid { grid-template-columns: 1fr; }
  .home .hero-impact-panel .impact-card { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.18) !important; }
  .home .hero-impact-panel .impact-card:last-child { border-bottom: 0 !important; }
}

/* ================================================================
   NPB THEME PREMIUM 14.3 — FINITIONS VISUELLES VALIDÉES
   ================================================================ */

/* Hero : cadrage qui met le bâtiment en banco au premier plan. */
.home .npb-heritage-media {
  background-position: 38% 43%;
  transform: scale(1.01);
}
.home .npb-heritage-overlay {
  background:
    linear-gradient(90deg, rgba(4,35,22,.96) 0%, rgba(6,49,30,.83) 34%, rgba(7,52,32,.30) 57%, rgba(7,39,26,.08) 100%),
    linear-gradient(0deg, rgba(2,24,15,.45), transparent 54%);
}

/* Statistiques : pictogrammes SVG forts, homogènes et lisibles. */
.home .hero-impact-panel .impact-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(4,91,52,.12);
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}
.home .hero-impact-panel .impact-icon svg {
  width: 27px;
  height: 27px;
  display: block;
  fill: #075f36;
}
.home .hero-impact-panel .impact-card:nth-child(2) .impact-icon svg { fill: #0b6840; }
.home .hero-impact-panel .impact-card:nth-child(3) .impact-icon svg { fill: #075f36; }
.home .hero-impact-panel .impact-card:nth-child(4) .impact-icon svg { fill: #075f36; }

/* Page Mouvement : la citation ne doit jamais ressembler à un carton vide. */
body:not(.home) .quote-panel {
  min-height: 0 !important;
  padding: 34px 42px !important;
  display: block !important;
  color: var(--npb-deep) !important;
  background: linear-gradient(#fff,#fff) padding-box, var(--npb-frame) border-box !important;
}
body:not(.home) .quote-panel::after {
  width: 116px;
  height: 116px;
  right: -34px;
  bottom: -42px;
  background: rgba(246,198,0,.14);
}
body:not(.home) .quote-panel i {
  color: #f1bd00 !important;
  font-size: 26px;
  margin: 0 0 12px;
}
body:not(.home) .quote-panel blockquote {
  color: var(--npb-deep) !important;
  font-size: clamp(1rem, 1.25vw, 1.18rem) !important;
  line-height: 1.7 !important;
  font-weight: 500 !important;
  max-width: 980px;
}
body:not(.home) .quote-panel cite {
  display: none !important;
}

/* Signature compacte des pages internes. */
body:not(.home) .page-hero-grid {
  grid-template-columns: minmax(0,1fr) auto;
  gap: clamp(28px,5vw,74px);
  align-items: center;
}
body:not(.home) .hero-mini-card {
  width: auto;
  min-width: 300px;
  max-width: 390px;
  padding: 22px 26px;
  white-space: nowrap;
}
body:not(.home) .hero-mini-card span {
  margin-bottom: 7px;
  font-size: .72rem;
  letter-spacing: .12em;
}
body:not(.home) .hero-mini-card strong {
  display: block;
  white-space: nowrap;
  font-size: clamp(1rem,1.45vw,1.22rem);
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .home .npb-heritage-media { background-position: 42% center; }
  body:not(.home) .hero-mini-card { min-width: 270px; padding: 19px 22px; }
}
@media (max-width: 760px) {
  .home .npb-heritage-media { background-position: 46% center; }
  .home .hero-impact-panel .impact-icon { width: 47px; height: 47px; min-width: 47px; }
  .home .hero-impact-panel .impact-icon svg { width: 24px; height: 24px; }
  body:not(.home) .page-hero-grid { grid-template-columns: 1fr; }
  body:not(.home) .hero-mini-card {
    display: block !important;
    min-width: 0;
    width: fit-content;
    max-width: 100%;
    padding: 17px 20px;
  }
  body:not(.home) .hero-mini-card strong { white-space: normal; }
  body:not(.home) .quote-panel { padding: 27px 25px !important; }
}

/* ======================================================================
   NPB 14.5 RC1 — Hero fusionné, ressources officielles fournies par NPB
   ====================================================================== */
.npb-brand-logo-official {
    display: flex;
    align-items: center;
    width: min(285px, 30vw);
    height: 68px;
}
.npb-brand-logo-official img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.npb-fused-hero {
    position: relative;
    min-height: clamp(760px, calc(100vh - 86px), 930px);
    overflow: hidden;
    isolation: isolate;
    background: #d9c29a;
}
.npb-fused-hero-photo {
    position: absolute;
    inset: 0;
    z-index: -4;
    background-image: url('../images/gao-hero-officiel.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 12% 46%;
    transform: scale(1.13);
    transform-origin: 22% 48%;
}
.npb-fused-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(9,41,27,.02) 0%, rgba(9,41,27,.00) 42%, rgba(9,41,27,.13) 59%, rgba(5,30,19,.34) 100%),
        linear-gradient(0deg, rgba(58,36,17,.20), transparent 38%);
    pointer-events: none;
}
.npb-fused-hero-layout {
    min-height: inherit;
    display: grid;
    grid-template-columns: minmax(0, 1.07fr) minmax(560px, .93fr);
    align-items: center;
    gap: 0;
    padding-top: 34px;
    padding-bottom: 92px;
}
.npb-fused-hero-space { min-height: 1px; }
.npb-fused-hero-card {
    position: relative;
    width: min(100%, 700px);
    justify-self: end;
    padding: clamp(34px, 3.25vw, 54px);
    color: #17271f;
    border: 1px solid rgba(255,255,255,.70);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,250,241,.88)),
        rgba(255,255,255,.88);
    box-shadow: 0 34px 90px rgba(36,26,15,.25), inset 0 1px 0 rgba(255,255,255,.95);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
    backdrop-filter: blur(18px) saturate(1.08);
}
.npb-fused-hero-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: -1;
    border: 1px solid rgba(15,92,60,.08);
    border-radius: 22px;
    pointer-events: none;
}
.npb-fused-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #135e43;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .075em;
    line-height: 1.25;
    text-transform: uppercase;
}
.npb-fused-eyebrow i {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #ae7c00;
    border-radius: 50%;
    background: rgba(218,166,27,.12);
}
.npb-fused-hero-card h1 {
    margin: 0;
    color: #0c5037;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3.05rem, 4.65vw, 5.45rem);
    font-weight: 700;
    line-height: .94;
    letter-spacing: -.052em;
    text-wrap: balance;
}
.npb-fused-hero-card h1 span { color: #b78412; }
.npb-fused-lead {
    max-width: 610px;
    margin: 24px 0 0;
    color: #405048;
    font-size: clamp(1rem, 1.15vw, 1.14rem);
    line-height: 1.65;
}
.npb-fused-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}
.npb-fused-actions .btn {
    min-height: 52px;
    border-radius: 15px;
    box-shadow: none;
}
.npb-fused-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 22px;
    color: #0c5037;
    border: 1px solid rgba(12,80,55,.72);
    background: rgba(255,255,255,.34);
}
.npb-fused-secondary:hover {
    color: #fff;
    background: #0c5037;
    border-color: #0c5037;
}
.npb-fused-location {
    display: grid;
    grid-template-columns: 48px minmax(0,1fr) 124px;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 15px 18px;
    border: 1px solid rgba(140,105,42,.12);
    border-radius: 20px;
    background: rgba(245,240,229,.74);
}
.npb-location-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    border-radius: 50%;
    background: #0c5b3e;
    box-shadow: 0 10px 25px rgba(12,91,62,.20);
}
.npb-location-copy strong {
    display: block;
    color: #15573e;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.28rem;
}
.npb-location-copy p {
    margin: 4px 0 0;
    color: #4d5b54;
    font-size: .86rem;
    line-height: 1.45;
}
.npb-fused-location img {
    display: block;
    width: 124px;
    height: 72px;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
}
.npb-fused-impact {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 10px;
    margin-top: 14px;
}
.npb-fused-stat {
    min-width: 0;
    padding: 15px 8px 14px;
    text-align: center;
    border: 1px solid rgba(12,80,55,.08);
    border-radius: 17px;
    background: rgba(255,255,255,.70);
    box-shadow: 0 10px 25px rgba(59,44,24,.07);
}
.npb-stat-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0 auto 8px;
    color: #0c5b3e;
    border-radius: 50%;
    background: rgba(12,91,62,.09);
}
.npb-fused-stat strong {
    display: block;
    color: #0b5137;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.5rem, 2vw, 2.05rem);
    line-height: 1;
}
.npb-fused-stat > span:last-child {
    display: block;
    margin-top: 7px;
    color: #415149;
    font-size: .72rem;
    line-height: 1.25;
}
.npb-fused-wave {
    position: absolute;
    right: -3%;
    bottom: -58px;
    left: -3%;
    z-index: 2;
    height: 100px;
    border-radius: 50% 50% 0 0 / 60% 60% 0 0;
    background: #fff;
    transform: rotate(-1.2deg);
    transform-origin: center;
    pointer-events: none;
}

@media (max-width: 1280px) {
    .npb-fused-hero-layout { grid-template-columns: minmax(0,.88fr) minmax(540px,1.12fr); }
    .npb-fused-hero-photo { background-position: 5% 46%; transform: scale(1.18); }
}
@media (max-width: 1020px) {
    .npb-fused-hero { min-height: auto; padding: 370px 0 70px; }
    .npb-fused-hero-photo {
        height: 610px;
        background-size: cover;
        background-position: 22% 44%;
        transform: scale(1.05);
        transform-origin: left top;
    }
    .npb-fused-hero-shade { background: linear-gradient(0deg, rgba(28,20,12,.34), transparent 45%); }
    .npb-fused-hero-layout { display: block; min-height: 0; padding-top: 0; padding-bottom: 0; }
    .npb-fused-hero-card { width: min(100%, 760px); margin-inline: auto; }
    .npb-fused-wave { bottom: -70px; }
}
@media (max-width: 700px) {
    .npb-brand-logo-official { width: min(220px, 64vw); height: 56px; }
    .npb-fused-hero { padding-top: 285px; padding-bottom: 60px; }
    .npb-fused-hero-photo { height: 440px; background-position: 18% 42%; transform: scale(1.08); }
    .npb-fused-hero-layout { padding-inline: 14px; }
    .npb-fused-hero-card { padding: 27px 22px; border-radius: 24px; }
    .npb-fused-hero-card h1 { font-size: clamp(2.65rem, 14vw, 4.15rem); }
    .npb-fused-actions { flex-direction: column; }
    .npb-fused-actions .btn { width: 100%; justify-content: center; }
    .npb-fused-location { grid-template-columns: 44px minmax(0,1fr); }
    .npb-fused-location img { grid-column: 1 / -1; width: 100%; height: 100px; margin-top: 2px; }
    .npb-fused-impact { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .npb-fused-stat { padding-block: 14px; }
    .npb-fused-wave { height: 82px; bottom: -58px; }
}
@media (max-width: 420px) {
    .npb-fused-hero { padding-top: 250px; }
    .npb-fused-hero-photo { height: 380px; background-position: 15% 42%; }
    .npb-fused-eyebrow { font-size: .7rem; letter-spacing: .045em; }
    .npb-fused-hero-card h1 { font-size: 2.55rem; }
    .npb-fused-location { padding: 14px; }
}

/* ================================================================
   NPB PREMIUM 14.6 RC2 — HARMONISATION COMPLÈTE DES SECTIONS
   ================================================================ */
.home .professional-home {
    --npb-section-space: clamp(82px, 8vw, 126px);
    --npb-section-radius: 30px;
    --npb-card-radius: 22px;
    --npb-line: rgba(16, 74, 50, .12);
    --npb-surface: #ffffff;
    --npb-surface-warm: #f8f5ed;
    --npb-surface-green: #0c5138;
}
.home .professional-home > .section {
    position: relative;
    padding-block: var(--npb-section-space);
}
.home .professional-home > .section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1180px, calc(100% - 40px));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14,83,56,.12), transparent);
    transform: translateX(-50%);
}
.home .professional-home > .npb-intro-section::before { display:none; }
.home .professional-home .container { width:min(1180px, calc(100% - 40px)); }

/* Titres de sections unifiés */
.home .professional-home .section-heading {
    max-width: 780px;
    margin: 0 auto clamp(42px, 5vw, 62px);
}
.home .professional-home .section-heading-left { margin:0; }
.home .professional-home .section-heading .eyebrow,
.home .professional-home .president-message-card .eyebrow,
.home .professional-home .cta-inner .eyebrow {
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    color:#9a720b;
    font-size:.76rem;
    font-weight:800;
    letter-spacing:.13em;
    text-transform:uppercase;
}
.home .professional-home .section-heading .eyebrow::before,
.home .professional-home .president-message-card .eyebrow::before,
.home .professional-home .cta-inner .eyebrow::before {
    content:"";
    width:30px;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg,var(--npb-green),var(--npb-yellow));
}
.home .professional-home .section-heading h2,
.home .professional-home .president-message-card h2,
.home .professional-home .cta-inner h2 {
    margin:0;
    color:#123426;
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(2.15rem,3.5vw,3.65rem);
    line-height:1.08;
    letter-spacing:-.035em;
    text-wrap:balance;
}
.home .professional-home .section-heading p {
    max-width:690px;
    margin:18px auto 0;
    color:#5b6b63;
    font-size:1.04rem;
    line-height:1.78;
}
.home .professional-home .section-heading-left p { margin-left:0; }
.home .professional-home .split-heading {
    max-width:none;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
}

/* Intro / raison d'être */
.home .npb-intro-section {
    overflow:hidden;
    background:
      radial-gradient(circle at 5% 10%, rgba(219,169,35,.08), transparent 30%),
      linear-gradient(180deg,#fff 0%,#fbfaf6 100%);
}
.home .npb-intro-grid { gap:clamp(48px,7vw,92px); }
.home .institutional-card-stack { gap:16px; }
.home .institutional-card {
    min-height:232px;
    padding:30px;
    border:1px solid var(--npb-line);
    border-radius:var(--npb-card-radius);
    background:rgba(255,255,255,.96);
    box-shadow:0 18px 48px rgba(29,52,39,.075);
}
.home .institutional-card::after {
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    width:68px;
    height:5px;
    border-radius:8px 0 0 0;
    background:linear-gradient(90deg,var(--npb-green),var(--npb-yellow),var(--npb-red));
    opacity:.9;
}
.home .institutional-card-main {
    min-height:480px;
    border-color:transparent;
    background:
      linear-gradient(160deg,rgba(255,255,255,.04),transparent 45%),
      linear-gradient(145deg,#0b4c34,#146747);
    box-shadow:0 28px 70px rgba(10,68,46,.22);
}
.home .institutional-card h3 { font-family:Georgia,'Times New Roman',serif;font-size:1.52rem; }
.home .institutional-number { font-size:3.6rem;font-weight:800;letter-spacing:-.06em; }

/* Président */
.home .president-section {
    background:linear-gradient(180deg,#f6f2e8 0%,#fbfaf7 100%);
}
.home .npb-president-panel {
    border:1px solid rgba(18,83,57,.10);
    border-radius:var(--npb-section-radius);
    background:#fff;
    box-shadow:0 30px 80px rgba(40,55,46,.10);
}
.home .npb-president-panel .president-photo-card {
    min-height:590px;
    border-radius:var(--npb-section-radius) 0 0 var(--npb-section-radius);
}
.home .npb-president-panel .president-photo-card::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(0deg,rgba(8,45,31,.28),transparent 48%);
    pointer-events:none;
}
.home .npb-president-panel .president-message-card {
    padding:clamp(45px,6vw,78px);
    border-radius:0 var(--npb-section-radius) var(--npb-section-radius) 0;
    box-shadow:none;
}
.home .npb-president-panel blockquote {
    margin:28px 0 26px;
    padding:24px 0 24px 30px;
    border-left:3px solid var(--npb-yellow);
}
.home .npb-president-panel blockquote p { font-size:1.12rem;line-height:1.9; }
.home .president-signature { padding-top:20px;border-top:1px solid rgba(17,76,52,.10); }
.home .president-signature strong { color:#0d5339;font-family:Georgia,'Times New Roman',serif;font-size:1.17rem; }

/* Domaines d'intervention */
.home .npb-domains-section { background:#fff; }
.home .feature-grid-four { gap:18px; }
.home .npb-domains-section .feature-card {
    min-height:338px;
    padding:34px 30px 30px;
    border:1px solid var(--npb-line);
    border-radius:var(--npb-card-radius);
    background:linear-gradient(180deg,#fff,#fbfaf7);
    box-shadow:0 16px 42px rgba(24,48,34,.065);
}
.home .npb-domains-section .feature-card::after {
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:4px;
    background:linear-gradient(90deg,var(--npb-green) 0 33.33%,var(--npb-yellow) 33.33% 66.66%,var(--npb-red) 66.66%);
    transform:scaleX(.28);
    transform-origin:left;
    transition:transform .32s ease;
}
.home .npb-domains-section .feature-card:hover::after { transform:scaleX(1); }
.home .npb-domains-section .feature-card:hover {
    transform:translateY(-7px);
    border-color:rgba(15,89,60,.20);
    background:#fff;
    box-shadow:0 26px 60px rgba(25,57,39,.13);
}
.home .npb-domains-section .feature-card > i {
    width:58px;height:58px;border-radius:18px;font-size:1.32rem;
}
.home .npb-domains-section .feature-card h3 {
    margin-top:30px;
    font-family:Georgia,'Times New Roman',serif;
    font-size:1.38rem;
}
.home .feature-index { color:rgba(13,83,57,.34);font-size:.78rem;font-weight:800;letter-spacing:.12em; }
.home .feature-card .card-arrow { bottom:24px;right:24px; }

/* Projets */
.home .npb-projects-section {
    overflow:hidden;
    background:
      radial-gradient(circle at 90% 15%,rgba(215,165,31,.12),transparent 31%),
      linear-gradient(145deg,#092f22,#0b4b34 58%,#0d5a3d);
}
.home .npb-projects-section::after {
    content:"";
    position:absolute;
    inset:0;
    opacity:.08;
    background-image:radial-gradient(rgba(255,255,255,.55) 1px,transparent 1px);
    background-size:23px 23px;
    pointer-events:none;
}
.home .npb-projects-section .container { position:relative;z-index:1; }
.home .section-heading-on-dark h2 { color:#fff; }
.home .section-heading-on-dark p { color:rgba(255,255,255,.70); }
.home .cards-grid-premium { gap:22px; }
.home .cards-grid-premium .content-card,
.home .cards-grid-premium .placeholder-card {
    height:100%;
    border:1px solid rgba(255,255,255,.12);
    border-radius:var(--npb-card-radius);
    background:#fff;
    box-shadow:0 22px 58px rgba(0,0,0,.16);
}
.home .cards-grid-premium .card-image { aspect-ratio:16/10;overflow:hidden; }
.home .cards-grid-premium .card-image img { width:100%;height:100%;object-fit:cover; }
.home .cards-grid-premium .card-body { display:flex;flex-direction:column;min-height:265px;padding:28px; }
.home .cards-grid-premium .card-body h3 { font-family:Georgia,'Times New Roman',serif;font-size:1.45rem;line-height:1.25; }
.home .cards-grid-premium .card-body p { color:#65726b;line-height:1.72; }
.home .cards-grid-premium .card-body .text-link { margin-top:auto;padding-top:17px;border-top:1px solid rgba(13,82,56,.09); }
.home .card-label {
    display:inline-flex;
    align-self:flex-start;
    margin-bottom:15px;
    padding:6px 10px;
    border-radius:999px;
    color:#0b5a3c;
    background:rgba(13,92,62,.08);
    font-size:.7rem;
    font-weight:800;
    letter-spacing:.09em;
    text-transform:uppercase;
}

/* Actualités */
.home .npb-news-section {
    background:
      radial-gradient(circle at 12% 85%,rgba(16,94,63,.055),transparent 32%),
      #f8f6f0;
}
.home .npb-news-section .content-card {
    border-color:rgba(17,81,55,.10);
    box-shadow:0 16px 44px rgba(30,52,40,.07);
}
.home .npb-news-section .content-card:hover { box-shadow:0 26px 62px rgba(29,57,41,.13); }
.home .notice-card {
    grid-column:1/-1;
    padding:34px;
    border:1px solid var(--npb-line);
    border-radius:var(--npb-card-radius);
    background:#fff;
    box-shadow:0 18px 46px rgba(31,51,39,.07);
}

/* CTA finale */
.home .npb-premium-cta {
    position:relative;
    padding:clamp(64px,7vw,96px) 0;
    background:
      radial-gradient(circle at 85% 10%,rgba(255,213,79,.16),transparent 30%),
      linear-gradient(120deg,#0a4b34,#0d6544);
}
.home .npb-premium-cta::before {
    content:"";
    position:absolute;
    inset:14px;
    border:1px solid rgba(255,255,255,.11);
    border-radius:28px;
    pointer-events:none;
}
.home .npb-premium-cta .cta-inner {
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:50px;
}
.home .npb-premium-cta .eyebrow { color:#f3ca4c; }
.home .npb-premium-cta .eyebrow::before { background:#f3ca4c; }
.home .npb-premium-cta h2 { max-width:820px;color:#fff; }
.home .npb-premium-cta p { max-width:720px;margin:18px 0 0;color:rgba(255,255,255,.76);font-size:1.04rem;line-height:1.75; }
.home .npb-premium-cta .btn-light {
    min-width:190px;
    min-height:54px;
    color:#0b5137;
    border-radius:15px;
    background:#fff;
    box-shadow:0 16px 38px rgba(0,0,0,.15);
}
.home .npb-premium-cta .btn-light:hover { transform:translateY(-3px);background:#f8d95a; }

/* Liens et boutons cohérents */
.home .professional-home .text-link {
    display:inline-flex;
    align-items:center;
    gap:9px;
    font-weight:750;
    text-decoration:none;
}
.home .professional-home .text-link i { transition:transform .25s ease; }
.home .professional-home .text-link:hover i { transform:translateX(4px); }
.home .professional-home .btn { font-weight:750;letter-spacing:-.01em; }

@media (max-width: 1020px) {
    .home .professional-home .split-heading { align-items:flex-start; }
    .home .npb-president-panel .president-photo-card { border-radius:var(--npb-section-radius) var(--npb-section-radius) 0 0; }
    .home .npb-president-panel .president-message-card { border-radius:0 0 var(--npb-section-radius) var(--npb-section-radius); }
    .home .npb-premium-cta .cta-inner { grid-template-columns:1fr;gap:30px; }
    .home .npb-premium-cta .btn-light { justify-self:start; }
}
@media (max-width: 760px) {
    .home .professional-home { --npb-section-space:72px; }
    .home .professional-home .container { width:min(100% - 28px,1180px); }
    .home .professional-home .section-heading { margin-bottom:38px; }
    .home .professional-home .split-heading { display:block; }
    .home .professional-home .split-heading .text-link { margin-top:18px; }
    .home .institutional-card-main { min-height:330px; }
    .home .npb-president-panel .president-photo-card { min-height:420px; }
    .home .npb-president-panel .president-message-card { padding:38px 25px; }
    .home .feature-grid-four { grid-template-columns:1fr; }
    .home .npb-domains-section .feature-card { min-height:auto;padding-bottom:74px; }
    .home .cards-grid-premium .card-body { min-height:auto; }
    .home .npb-premium-cta { padding-block:68px; }
    .home .npb-premium-cta::before { inset:9px; }
}
@media (prefers-reduced-motion: reduce) {
    .home .institutional-card,
    .home .feature-card,
    .home .content-card,
    .home .text-link i,
    .home .btn { transition:none!important; }
}

/* ========================================================================== 
   RC3 — Responsive, animations et finitions
   ========================================================================== */

/* Finitions globales et accessibilité */
html { scroll-padding-top: 96px; }
body { overflow-x: clip; }
img { max-width: 100%; height: auto; }
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
    outline: 3px solid rgba(219,169,35,.72);
    outline-offset: 4px;
}
::selection { color:#fff; background:#0b5b3d; }
.home .professional-home .btn,
.home .professional-home .text-link,
.site-header a,
.site-footer a { -webkit-tap-highlight-color: transparent; }

/* Animations d'entrée plus naturelles et moins mécaniques */
.js-enabled .npb-reveal {
    opacity:0;
    transform:translate3d(0,24px,0);
    filter:blur(2px);
    transition:
      opacity .72s cubic-bezier(.2,.7,.2,1) var(--reveal-delay,0ms),
      transform .72s cubic-bezier(.2,.7,.2,1) var(--reveal-delay,0ms),
      filter .72s ease var(--reveal-delay,0ms);
    will-change:opacity,transform;
}
.js-enabled .npb-reveal.is-revealed { opacity:1;transform:none;filter:none; }

/* Hero : fusion maîtrisée, profondeur et lisibilité */
.home .npb-fused-hero { isolation:isolate; }
.home .npb-fused-hero-photo {
    transform:scale(1.015);
    transition:transform 9s cubic-bezier(.2,.55,.2,1);
    will-change:transform;
}
.home .npb-fused-hero.is-in-view .npb-fused-hero-photo { transform:scale(1.055); }
.home .npb-fused-hero-card {
    backdrop-filter:blur(15px) saturate(108%);
    -webkit-backdrop-filter:blur(15px) saturate(108%);
    transition:transform .45s cubic-bezier(.2,.75,.25,1),box-shadow .45s ease;
}
@media (hover:hover) and (pointer:fine) {
    .home .npb-fused-hero-card:hover { transform:translateY(-4px);box-shadow:0 38px 95px rgba(25,43,33,.21); }
}
.home .npb-fused-stat,
.home .npb-fused-location {
    transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
@media (hover:hover) and (pointer:fine) {
    .home .npb-fused-stat:hover { transform:translateY(-4px);box-shadow:0 14px 34px rgba(24,54,38,.10); }
    .home .npb-fused-location:hover { transform:translateY(-2px);box-shadow:0 16px 34px rgba(24,54,38,.09); }
}

/* Cartes : interaction limitée aux appareils disposant d'un vrai survol */
@media (hover:none), (pointer:coarse) {
    .home .institutional-card:hover,
    .home .npb-domains-section .feature-card:hover,
    .home .content-card:hover,
    .home .cards-grid-premium .content-card:hover,
    .home .npb-president-panel:hover .president-photo-card img,
    .home .npb-premium-cta .btn-light:hover,
    .home .professional-home .btn:hover { transform:none; }
}

/* Tablettes larges et petits ordinateurs */
@media (max-width: 1180px) {
    .home .professional-home .container { width:min(100% - 48px,1120px); }
    .home .npb-fused-hero-layout { grid-template-columns:minmax(38%,.72fr) minmax(560px,1.08fr); }
    .home .npb-fused-hero-card { padding:clamp(34px,4vw,48px); }
    .home .npb-fused-hero-card h1 { font-size:clamp(3.1rem,5.3vw,4.75rem); }
    .home .npb-fused-impact { gap:10px; }
    .home .npb-fused-stat { min-width:0;padding:17px 10px; }
    .home .feature-grid-four { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .home .npb-domains-section .feature-card { min-height:300px; }
}

/* Tablettes portrait */
@media (max-width: 960px) {
    html { scroll-padding-top:78px; }
    .site-header { position:sticky;top:0; }
    .home .npb-fused-hero { min-height:auto;padding:42px 0 54px; }
    .home .npb-fused-hero-photo { inset:0;transform:none;background-position:27% center; }
    .home .npb-fused-hero-shade {
        background:linear-gradient(180deg,rgba(7,40,29,.06) 0%,rgba(7,40,29,.12) 32%,rgba(7,40,29,.44) 100%);
    }
    .home .npb-fused-hero-layout { display:block; }
    .home .npb-fused-hero-space { min-height:400px; }
    .home .npb-fused-hero-card {
        width:min(100%,720px);
        margin:-74px auto 0;
        border-radius:28px;
        background:rgba(255,253,247,.95);
    }
    .home .npb-fused-impact { grid-template-columns:repeat(4,minmax(0,1fr)); }
    .home .npb-intro-grid { grid-template-columns:1fr; }
    .home .institutional-card-stack { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .home .institutional-card-main { grid-row:auto;grid-column:1/-1;min-height:300px; }
    .home .npb-president-panel { grid-template-columns:1fr; }
    .home .npb-president-panel .president-photo-card { min-height:520px; }
    .home .cards-grid-premium,
    .home .posts-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

/* Téléphones et petites tablettes */
@media (max-width: 720px) {
    html { scroll-padding-top:70px; }
    body.menu-open { overflow:hidden; }
    .site-header { backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px); }
    .main-navigation {
        position:fixed;
        inset:70px 14px auto;
        max-height:calc(100dvh - 84px);
        border:1px solid rgba(15,73,51,.11);
        border-radius:20px;
        background:rgba(255,255,255,.98);
        box-shadow:0 26px 70px rgba(9,42,30,.20);
    }
    .nav-menu a { border-radius:12px; }
    .home .professional-home { --npb-section-space:66px; }
    .home .professional-home .container { width:min(100% - 28px,1180px);padding-inline:0; }
    .home .npb-fused-hero { padding:0 0 42px; }
    .home .npb-fused-hero-space { min-height:52svh;max-height:480px; }
    .home .npb-fused-hero-photo { background-position:22% center; }
    .home .npb-fused-hero-card {
        margin:-42px 14px 0;
        width:auto;
        padding:30px 22px 24px;
        border-radius:24px;
    }
    .home .npb-fused-eyebrow { font-size:.68rem;letter-spacing:.075em; }
    .home .npb-fused-hero-card h1 { margin-block:18px 17px;font-size:clamp(2.45rem,12vw,3.65rem);line-height:.98; }
    .home .npb-fused-lead { font-size:1rem;line-height:1.7; }
    .home .npb-fused-actions { display:grid;grid-template-columns:1fr;gap:11px; }
    .home .npb-fused-actions .btn { width:100%;justify-content:center;min-height:50px; }
    .home .npb-fused-location { grid-template-columns:auto 1fr;padding:17px; }
    .home .npb-fused-location img { grid-column:1/-1;width:min(100%,250px);max-height:145px;margin:10px auto 0;object-fit:contain; }
    .home .npb-fused-impact { grid-template-columns:repeat(2,minmax(0,1fr));gap:10px; }
    .home .npb-fused-stat { min-height:132px;padding:16px 10px; }
    .home .npb-fused-stat strong { font-size:1.7rem; }
    .home .npb-fused-stat > span:last-child { font-size:.72rem;line-height:1.25; }
    .home .professional-home .section-heading h2,
    .home .professional-home .split-heading h2 { font-size:clamp(2rem,9vw,2.8rem); }
    .home .institutional-card-stack { grid-template-columns:1fr; }
    .home .institutional-card-main { grid-column:auto;min-height:300px; }
    .home .npb-president-panel .president-photo-card { min-height:390px; }
    .home .npb-president-panel .president-message-card { padding:34px 22px; }
    .home .npb-president-panel blockquote { padding:18px 0 18px 20px; }
    .home .npb-president-panel blockquote p { font-size:1rem;line-height:1.75; }
    .home .feature-grid-four,
    .home .cards-grid-premium,
    .home .posts-grid { grid-template-columns:1fr; }
    .home .npb-domains-section .feature-card { min-height:auto;padding:28px 24px 70px; }
    .home .cards-grid-premium .card-image { aspect-ratio:16/9; }
    .home .cards-grid-premium .card-body { padding:24px 22px; }
    .home .npb-premium-cta .cta-inner { gap:26px; }
    .home .npb-premium-cta .btn-light { width:100%;justify-content:center; }
    .home .npb-premium-cta::before { border-radius:20px; }
}

/* Très petits téléphones */
@media (max-width: 420px) {
    .home .npb-fused-hero-space { min-height:47svh; }
    .home .npb-fused-hero-card { margin-inline:8px;padding:26px 18px 20px; }
    .home .npb-fused-hero-card h1 { font-size:clamp(2.2rem,12vw,3rem); }
    .home .npb-fused-impact { gap:8px; }
    .home .npb-fused-stat { min-height:120px;border-radius:15px; }
    .home .npb-location-copy strong { font-size:1.15rem; }
    .home .institutional-card,
    .home .notice-card { padding:24px 20px; }
    .home .npb-president-panel .president-photo-card { min-height:330px; }
}

/* Paysage mobile : préserver le contenu sans bloquer la hauteur */
@media (max-width: 900px) and (max-height: 520px) and (orientation: landscape) {
    .home .npb-fused-hero-space { min-height:78vh; }
    .home .npb-fused-hero-card { margin-top:-28px; }
    .main-navigation { max-height:calc(100dvh - 78px); }
}

/* Réduction des mouvements et économie de ressources */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior:auto!important; }
    *,*::before,*::after {
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        transition-duration:.01ms!important;
        scroll-behavior:auto!important;
    }
    .js-enabled .npb-reveal { opacity:1!important;transform:none!important;filter:none!important; }
    .home .npb-fused-hero-photo { transform:none!important; }
}

/* Contraste renforcé demandé par le système */
@media (prefers-contrast: more) {
    .home .npb-fused-hero-card,
    .home .institutional-card,
    .home .feature-card,
    .home .content-card { border-width:2px; }
    .home .professional-home p { color:#24362d; }
}

/* NPB 15.0.1 — contenus enrichis compatibles NPB Core 2.4.2 */
.npb-publication-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:0 0 32px;padding:18px;border:1px solid rgba(15,94,74,.14);border-radius:18px;background:linear-gradient(135deg,#f7fbf9,#fffaf0)}
.npb-publication-fact{display:flex;flex-direction:column;gap:5px;padding:4px 8px}.npb-publication-fact-label{font-size:.76rem;line-height:1.2;text-transform:uppercase;letter-spacing:.1em;color:#497064;font-weight:700}.npb-publication-fact strong{color:#0b493a;font-size:1rem}
.npb-rich-section{margin-top:48px}.npb-rich-section-heading{margin-bottom:20px}.npb-rich-section h2{margin:0;color:#0b493a}.npb-gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.npb-gallery-item{display:block;overflow:hidden;border-radius:18px;background:#edf4f0;box-shadow:0 14px 34px rgba(11,73,58,.10);transition:transform .28s ease,box-shadow .28s ease}.npb-gallery-item:hover{transform:translateY(-4px);box-shadow:0 22px 44px rgba(11,73,58,.16)}.npb-gallery-item img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover;transition:transform .5s ease}.npb-gallery-item:hover img{transform:scale(1.035)}
.npb-video-embed{position:relative;overflow:hidden;border-radius:20px;aspect-ratio:16/9;background:#061f18;box-shadow:0 18px 45px rgba(6,31,24,.16)}.npb-video-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0}.npb-document-download{margin-top:42px}.npb-logo-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;align-items:center}.npb-logo-grid>div{display:flex;align-items:center;justify-content:center;min-height:130px;padding:20px;border:1px solid rgba(15,94,74,.12);border-radius:16px;background:#fff}.npb-logo-grid img{max-width:100%;max-height:90px;width:auto;height:auto;object-fit:contain}
@media(max-width:900px){.npb-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.npb-logo-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.npb-publication-facts,.npb-gallery-grid{grid-template-columns:1fr}.npb-rich-section{margin-top:36px}.npb-logo-grid{grid-template-columns:1fr 1fr}}
