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

:root {
    --navy: #0d2c54;
    --navy-l: #1a3f6f;
    --red: #b11226;
    --gold: #c9a24d;
    --gold-l: #e8c97a;
    --cream: #f7f4ee;
    --white: #ffffff;
    --ink: #1a1a2e;
    --muted: #6b7280;
    --border: #e2ddd4;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--ink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ─── HEADER ─────────────────────────────────── */
.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.tricolor-bar {
    height: 3px;
    background: linear-gradient(
        to right,
        #002395 33.33%,
        #fff 33.33% 66.66%,
        #ed2939 66.66%
    );
}
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}
.orplf-logo {
    width: 75px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-seal {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
    letter-spacing: -0.02em;
    border: 2px solid var(--gold);
    line-height: 1;
    padding: 2px;
    text-align: center;
}
.logo-text {
    color: white;
}
.logo-text .org-name {
    font-family: "Playfair Display", serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.logo-text .org-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.header-nav {
    display: flex;
    gap: 4px;
}
.nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.18s;
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
}
.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}
.nav-link.active {
    color: white;
}
.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.nav-link.nav-cta {
    background: var(--red);
    color: white;
    border-radius: 6px;
    padding: 8px 16px;
}
.nav-link.nav-cta:hover {
    background: #920f1e;
}
.nav-link.nav-cta.active::after {
    display: none;
}

/* ─── FOOTER ────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 80px;
}
.footer-top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 32px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand .org-name-f {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
}
.footer-col h4 {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
    transition: color 0.15s;
}
.footer-col a:hover {
    color: white;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

/* ─── SECTION BASE ─────────────────────────── */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 32px;
}
.section-header {
    margin-bottom: 48px;
}
.section-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}
.section-title em {
    font-style: italic;
    color: var(--red);
}
.divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 16px;
}

/* ─── BOUTONS ───────────────────────────────── */
.btn-primary {
    background: var(--gold);
    color: #1a1a2e;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.18s;
    display: inline-block;
}
.btn-primary:hover {
    background: var(--gold-l);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.18s;
    text-decoration: none;
    display: inline-block;
}
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* ─── HOME : HERO ─────────────────────────── */
.hero {
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 32px 72px;
}
.hero::before {
    content: "«";
    position: absolute;
    font-family: "Playfair Display", serif;
    font-size: 400px;
    color: rgba(255, 255, 255, 0.03);
    top: -60px;
    left: -20px;
    line-height: 1;
    pointer-events: none;
}
.hero-accent {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        to bottom,
        #002395 33%,
        #fff 33% 66%,
        #ed2939 66%
    );
}
.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 77, 0.15);
    border: 1px solid rgba(201, 162, 77, 0.3);
    color: var(--gold-l);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-l);
}
.hero-lead {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
}
.stat-item {
    margin-bottom: 24px;
}
.stat-item:last-child {
    margin-bottom: 0;
}
.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-number span {
    color: var(--gold-l);
}
.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── HOME : MISSIONS ─────────────────────── */
.missions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mission-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
}
.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}
.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 44, 84, 0.1);
}
.mission-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 44, 84, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}
.mission-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}
.mission-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

/* ─── HOME : BANDE ÉDITORIALE ─────────────── */
.editorial-band {
    background: var(--navy);
    color: white;
    padding: 64px 32px;
    position: relative;
    overflow: hidden;
}
.editorial-band::after {
    content: "ORPLF";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Playfair Display", serif;
    font-size: 160px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    white-space: nowrap;
}
.editorial-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 48px;
    align-items: center;
}
.editorial-sep {
    background: rgba(255, 255, 255, 0.12);
    align-self: stretch;
}
.editorial-quote {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}
.editorial-quote::before {
    content: "« ";
    color: var(--gold-l);
}
.editorial-quote::after {
    content: " »";
    color: var(--gold-l);
}
.editorial-text p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}
.editorial-text p:last-child {
    margin: 0;
}

/* ─── ORGANISATION ──────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
    padding: 64px 32px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold) 0%, transparent 70%);
}
.page-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    color: white;
}
.page-hero-inner .section-tag {
    color: var(--gold-l);
}
.page-hero-inner h1 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 700;
    margin: 12px 0 12px;
}
.page-hero-inner p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    max-width: 600px;
}

.org-tree {
    max-width: 800px;
    margin: 0 auto;
}
.org-level {
    display: flex;
    justify-content: center;
}
.org-connector-v {
    width: 2px;
    height: 40px;
    background: var(--border);
    margin: 0 auto;
}
.org-connector-h-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}
.org-connector-h-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(25% + 60px);
    right: calc(25% + 60px);
    height: 2px;
    background: var(--border);
}
.org-branch {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.org-branch-v {
    width: 2px;
    height: 30px;
    background: var(--border);
}
.member-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    width: 200px;
    transition: all 0.25s;
}
.member-card:hover {
    box-shadow: 0 12px 32px rgba(13, 44, 84, 0.1);
    transform: translateY(-3px);
}
.member-card.president {
    width: 240px;
    border-top: 4px solid var(--gold);
}
.member-card.regular {
    border-top: 4px solid var(--navy);
}
.member-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-l));
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.member-role {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.member-name {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

/* ─── GLOSSAIRE ─────────────────────────── */
.glossaire-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 32px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}
.glossaire-table-wrap {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: white;
}
.glossaire-table {
    width: 100%;
    border-collapse: collapse;
}
.glossaire-table thead th {
    background: var(--navy);
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 24px;
    text-align: left;
}
.glossaire-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.glossaire-table tbody tr:last-child {
    border: none;
}
.glossaire-table tbody tr:hover {
    background: rgba(13, 44, 84, 0.03);
}
.glossaire-table td {
    padding: 16px 24px;
    font-size: 14px;
}
.td-anglais {
    font-weight: 600;
    color: var(--navy);
}
.badge-prop {
    display: inline-block;
    background: rgba(201, 162, 77, 0.15);
    color: #a07820;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
}
.contribution-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: sticky;
    top: 88px;
}
.contribution-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.contribution-card > p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}
.form-group {
    margin-bottom: 16px;
}
.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.form-input {
    width: 100%;
    padding: 11px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: white;
    transition: border-color 0.15s;
    outline: none;
}
.form-input:focus {
    border-color: var(--navy);
}
.btn-submit {
    width: 100%;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 13px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s;
    margin-top: 8px;
}
.btn-submit:hover {
    background: var(--navy-l);
}
.alert-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #065f46;
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
}

/* ─── COMMANDER ─────────────────────────── */
.commander-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 72px 32px;
    text-align: center;
}
.coming-soon-badge {
    display: inline-block;
    background: rgba(177, 18, 38, 0.08);
    border: 1px solid rgba(177, 18, 38, 0.2);
    color: var(--red);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 28px;
}
.commander-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 56px 48px;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}
.commander-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--navy), var(--gold));
}
.commander-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}
.commander-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 32px;
}
.commander-card .lead-notify {
    font-size: 13px;
    margin-bottom: 28px;
}
.email-capture {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}
.email-capture input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    outline: none;
}
.email-capture input:focus {
    border-color: var(--navy);
}
.email-capture button {
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s;
}
.email-capture button:hover {
    background: var(--navy-l);
}
.card-illustration {
    width: 120px;
    height: 76px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
    border-radius: 10px;
    margin: 0 auto 36px;
    position: relative;
    box-shadow: 0 8px 24px rgba(13, 44, 84, 0.25);
    overflow: hidden;
}
.card-illustration::before {
    content: "ORPLF";
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-family: "Playfair Display", serif;
    font-size: 11px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.08em;
}
.card-illustration::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(201, 162, 77, 0.4);
}
.card-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        #002395 33%,
        #fff 33% 66%,
        #ed2939 66%
    );
}
