:root {
    --vc: #a04e98;
    --vf: #652682;
    --vh: #4a1570;
    --mv: #c0c3e4;
    --mp: #ede9f6;
    --nr: #1d1d1b;
    --gc: #f7f5fb;
    --or: #c9952a;
    --oc: #f0d080;
    --mu: #6b6880;
    --bd: #ddd8ec;
    --tr: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Nunito", sans-serif;
    color: var(--nr);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    font-family: inherit;
    cursor: pointer;
}
svg {
    flex-shrink: 0;
}

/* ── ALERT ── */
.alert-band {
    background: var(--vf);
    color: #fff;
    font-size: 12px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    flex-wrap: wrap;
}
.alert-band a {
    color: var(--oc);
    font-weight: 700;
    text-decoration: underline;
}

/* ── TOP BAR ── */
.top-bar {
    background: var(--gc);
    border-bottom: 1px solid var(--bd);
    font-size: 12px;
    color: var(--mu);
    padding: 6px 0;
    display: none;
}
@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}
.tbi {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.tbi-info {
    display: flex;
    align-items: center;
    gap: 18px;
}
.tbi-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.tbi-soc {
    display: flex;
    gap: 8px;
}
.tbi-soc a {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--vc);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
}
.tbi-soc a:hover {
    background: var(--vf);
}
.tbi-soc svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 14px rgba(101, 38, 130, 0.1);
    border-bottom: 3px solid var(--vc);
}
.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
@media (min-width: 768px) {
    .nav-inner {
        padding: 0 24px;
        height: 72px;
    }
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--vf);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .logo-badge {
        width: 48px;
        height: 48px;
    }
}
.logo-badge svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 1.6;
    fill: none;
}
.logo-text .abbr {
    font-size: 14px;
    font-weight: 800;
    color: var(--vf);
    line-height: 1;
}
@media (min-width: 768px) {
    .logo-text .abbr {
        font-size: 16px;
    }
}
.logo-text .full {
    font-size: 9px;
    color: var(--mu);
    line-height: 1.3;
    max-width: 155px;
    display: none;
}
@media (min-width: 900px) {
    .logo-text .full {
        display: block;
    }
}
.nav-menu {
    display: none;
    list-style: none;
    align-items: center;
    gap: 2px;
}
@media (min-width: 960px) {
    .nav-menu {
        display: flex;
    }
}
.nav-menu > li {
    position: relative;
}
.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--nr);
    transition: var(--tr);
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    background: var(--mp);
    color: var(--vf);
}
.chev {
    transition: transform 0.2s;
    display: inline-block;
}
.nav-menu li:hover .chev {
    transform: rotate(180deg);
}
.dd {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid var(--bd);
    border-radius: 10px;
    box-shadow: 0 14px 36px rgba(101, 38, 130, 0.13);
    min-width: 205px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--tr);
    z-index: 200;
}
.nav-menu li:hover .dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dd a {
    display: block;
    padding: 8px 13px;
    border-radius: 6px;
    font-size: 12.5px;
    color: var(--mu);
    transition: var(--tr);
}
.dd a:hover {
    background: var(--mp);
    color: var(--vf);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-cnx {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--vf);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
}
@media (min-width: 768px) {
    .btn-cnx {
        padding: 9px 18px;
    }
}
.btn-cnx:hover {
    background: var(--vh);
}
.btn-cnx svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.ham {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 4px;
}
@media (min-width: 960px) {
    .ham {
        display: none;
    }
}
.ham span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--vf);
    border-radius: 2px;
    transition: var(--tr);
}
.ham.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.ham.open span:nth-child(2) {
    opacity: 0;
}
.ham.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── DRAWER ── */
.drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(74, 21, 112, 0.55);
    backdrop-filter: blur(4px);
}
.drawer.open {
    display: block;
}
.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(290px, 85vw);
    height: 100%;
    background: #fff;
    box-shadow: -8px 0 28px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--bd);
}
.drawer-head .abbr {
    font-weight: 800;
    font-size: 14px;
    color: var(--vf);
}
.drawer-close {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    border: none;
    background: var(--gc);
    display: flex;
    align-items: center;
    justify-content: center;
}
.drawer-close svg {
    width: 17px;
    height: 17px;
    stroke: var(--nr);
    stroke-width: 2;
    fill: none;
}
.drawer-links {
    padding: 10px 10px 24px;
    flex: 1;
}
.drawer-links a {
    display: flex;
    align-items: center;
    padding: 11px 13px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--nr);
    transition: var(--tr);
}
.drawer-links a:hover {
    background: var(--mp);
    color: var(--vf);
}
.drawer-links .sub {
    padding-left: 12px;
    border-left: 2px solid var(--bd);
    margin: 2px 0 7px;
}
.drawer-links .sub a {
    font-size: 12.5px;
    color: var(--mu);
    padding: 7px 11px;
}
.drawer-links .d-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding: 11px;
    border-radius: 8px;
    background: var(--vf);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.drawer-links .d-btn svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

/* ── LAYOUT ── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}
.section {
    padding: 52px 0;
}
@media (min-width: 768px) {
    .section {
        padding: 76px 0;
    }
}
.ey {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vc);
    margin-bottom: 8px;
}
.dvd {
    width: 42px;
    height: 3px;
    background: var(--vc);
    border-radius: 2px;
}
.sh {
    text-align: center;
    margin-bottom: 44px;
}
.sh h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(23px, 3.5vw, 35px);
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 10px;
}
.sh p {
    color: var(--mu);
    font-size: 14.5px;
    max-width: 500px;
    margin: 0 auto;
}

/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(
        135deg,
        var(--vh) 0%,
        var(--vf) 55%,
        var(--vc) 100%
    );
    padding: 48px 0 56px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M20 20h4v4h-4zm-4-4h4v4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
@media (min-width: 768px) {
    .page-hero {
        padding: 68px 0 76px;
    }
}
.ph-inner {
    position: relative;
    z-index: 2;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: #fff;
}
.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.3);
}
.breadcrumb .cur {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}
.ph-inner h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
}
.ph-inner .lead {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    line-height: 1.65;
}
@media (min-width: 768px) {
    .ph-inner .lead {
        font-size: 16px;
    }
}

/* Anchor nav */
.anchor-nav {
    display: flex;
    gap: 0;
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    flex-wrap: wrap;
}
.an-item {
    flex: 1;
    min-width: 120px;
    padding: 11px 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: var(--tr);
}
.an-item:last-child {
    border-right: none;
}
.an-item:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
@media (max-width: 480px) {
    .an-item {
        min-width: 50%;
    }
    .an-item:nth-child(2n) {
        border-right: none;
    }
    .an-item:nth-child(1),
    .an-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
}

/* ── HISTOIRE ── */
.history-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}
@media (min-width: 768px) {
    .history-layout {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 28px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--bd);
    border-radius: 2px;
}
.tl-item {
    position: relative;
    margin-bottom: 28px;
}
.tl-item:last-child {
    margin-bottom: 0;
}
.tl-dot {
    position: absolute;
    left: -24px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--vc);
    box-shadow: 0 0 0 3px var(--mp);
    z-index: 1;
}
.tl-dot.active {
    background: var(--or);
    box-shadow: 0 0 0 3px rgba(201, 149, 42, 0.25);
}
.tl-year {
    font-size: 11px;
    font-weight: 800;
    color: var(--vc);
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.tl-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 4px;
}
.tl-item p {
    font-size: 13px;
    color: var(--mu);
    line-height: 1.65;
}

/* Stats cards */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.stat-card {
    padding: 18px 16px;
    border-radius: 12px;
    text-align: center;
}
.stat-card.purple {
    background: var(--mp);
}
.stat-card.gold {
    background: linear-gradient(
        135deg,
        rgba(201, 149, 42, 0.15),
        rgba(240, 208, 128, 0.25)
    );
    border: 1px solid rgba(201, 149, 42, 0.2);
}
.stat-card .n {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--vf);
    line-height: 1;
}
.stat-card.gold .n {
    color: var(--or);
}
.stat-card .l {
    font-size: 11px;
    color: var(--mu);
    margin-top: 4px;
}

/* Histoire image */
.history-img {
    border-radius: 14px;
    overflow: hidden;
    height: 280px;
}
@media (min-width: 768px) {
    .history-img {
        height: 360px;
    }
}
.history-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── MISSIONS ── */
.missions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 600px) {
    .missions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .missions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
.mc {
    background: #fff;
    border-radius: 13px;
    padding: 24px 22px;
    border: 1.5px solid var(--bd);
    transition: var(--tr);
}
.mc:hover {
    border-color: var(--vc);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(101, 38, 130, 0.12);
}
.mc-ico {
    width: 50px;
    height: 50px;
    border-radius: 11px;
    background: var(--mp);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.mc-ico svg {
    width: 24px;
    height: 24px;
    stroke: var(--vf);
    stroke-width: 1.7;
    fill: none;
}
.mc h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--nr);
}
.mc p {
    color: var(--mu);
    font-size: 13px;
    line-height: 1.7;
}

/* ── ORGANIGRAMME ── */
.org-section {
    background: var(--gc);
}
.org-chart {
    max-width: 760px;
    margin: 0 auto;
}

/* Top card */
.org-top {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}
.org-card {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    position: relative;
    transition: var(--tr);
}
.org-card:hover {
    border-color: var(--vc);
    box-shadow: 0 8px 24px rgba(101, 38, 130, 0.12);
}
.org-card.head {
    background: linear-gradient(135deg, var(--vh), var(--vf));
    border-color: transparent;
    min-width: 220px;
}
.org-card.head .role {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}
.org-card.head .name {
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.org-card.head .sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
}
.org-card .role {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--vc);
    margin-bottom: 3px;
}
.org-card .name {
    font-size: 14px;
    font-weight: 700;
    color: var(--nr);
}
.org-card .sub {
    font-size: 11px;
    color: var(--mu);
    margin-top: 2px;
}

/* Connector lines */
.org-connector {
    width: 2px;
    height: 28px;
    background: var(--bd);
    margin: 0 auto;
}
.org-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.org-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.org-branch-line {
    width: 2px;
    height: 20px;
    background: var(--bd);
}

/* Commission cards */
.com-card {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    min-width: 130px;
    transition: var(--tr);
}
.com-card:hover {
    border-color: var(--vc);
}
.com-card .cr {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mu);
    margin-bottom: 3px;
}
.com-card .cn {
    font-size: 13px;
    font-weight: 700;
    color: var(--nr);
}

/* Council grid */
.council-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 40px;
}
@media (min-width: 600px) {
    .council-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.council-card {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    transition: var(--tr);
}
.council-card:hover {
    border-color: var(--vc);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(101, 38, 130, 0.1);
}
.c-av {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    overflow: hidden;
}
.c-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.c-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 3px;
}
.c-role {
    font-size: 11px;
    color: var(--vc);
    font-weight: 600;
}

/* ── TEXTES ── */
.textes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 600px) {
    .textes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .textes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
.tc {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: var(--tr);
}
.tc:hover {
    border-color: var(--vc);
    box-shadow: 0 8px 24px rgba(101, 38, 130, 0.1);
}
.tc-ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--mp);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tc-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--vf);
    stroke-width: 1.7;
    fill: none;
}
.tc h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 5px;
    line-height: 1.4;
}
.tc p {
    font-size: 12px;
    color: var(--mu);
    line-height: 1.6;
    margin-bottom: 10px;
}
.dl-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--vf);
}
.dl-link svg {
    width: 13px;
    height: 13px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
}
.dl-link:hover {
    color: var(--vc);
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--vh);
    padding: 52px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -80px;
    right: -40px;
    pointer-events: none;
}
.cta-band h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 4vw, 36px);
    color: #fff;
    margin-bottom: 9px;
}
.cta-lead {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    max-width: 420px;
    margin: 0 auto 24px;
}
.cta-acts {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--or);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
}
.btn-gold:hover {
    background: #a87820;
}
.btn-gold svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.btn-ow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: var(--tr);
}
.btn-ow:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ── FOOTER ── */
.footer {
    background: var(--nr);
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}
.ft {
    max-width: 1240px;
    margin: 0 auto;
    padding: 44px 16px 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 600px) {
    .ft {
        grid-template-columns: repeat(2, 1fr);
        padding: 44px 24px 32px;
    }
}
@media (min-width: 960px) {
    .ft {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}
.fb .abbr {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
}
.fb .desc {
    font-size: 12px;
    line-height: 1.7;
    margin: 9px 0 16px;
}
.fsoc {
    display: flex;
    gap: 7px;
}
.fsoc a {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
}
.fsoc a:hover {
    background: var(--vc);
}
.fsoc svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.fc h5 {
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.fc a {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12.5px;
    transition: color 0.2s;
}
.fc a:hover {
    color: var(--vc);
}
.fbot {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 11.5px;
}
@media (min-width: 600px) {
    .fbot {
        padding: 14px 24px;
    }
}

/* ── ANIM ── */
.au {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}
.au.vis {
    opacity: 1;
    transform: translateY(0);
}
.d1 {
    transition-delay: 0.08s !important;
}
.d2 {
    transition-delay: 0.16s !important;
}
.d3 {
    transition-delay: 0.24s !important;
}
.d4 {
    transition-delay: 0.32s !important;
}

/* ── CONSEIL NATIONAL ── */
.bureau-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 32px;
}
@media (max-width: 768px) {
    .bureau-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .bureau-grid {
        grid-template-columns: 1fr;
    }
}

.council-card {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    transition: var(--tr);
}
.council-card:hover {
    border-color: var(--vc);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(101, 38, 130, 0.12);
}
.council-card.featured {
    background: linear-gradient(135deg, var(--vh), var(--vf));
    border-color: transparent;
}
.council-card.featured .c-name,
.council-card.featured .c-role,
.council-card.featured .c-sub {
    color: #fff;
}
.council-card.featured .c-av {
    border: 2px solid #fff;
}
.c-av {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--mp);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--vf);
    margin: 0 auto 12px;
    overflow: hidden;
}
.c-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.c-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--nr);
}
.c-role {
    font-size: 13px;
    color: var(--vc);
    font-weight: 600;
}
.c-sub {
    font-size: 12px;
    color: var(--mu);
    margin-top: 4px;
}
/* Grille pour les autres membres : 5 colonnes */
.council-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 10px;
}
@media (max-width: 1024px) {
    .council-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .council-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 400px) {
    .council-grid {
        grid-template-columns: 1fr;
    }
}
