/* =====================================================
   Questionnaire 10 ans = 10 questions & résultats
   ===================================================== */
/* =====================================================
   Layout — 2 colonnes desktop, stack mobile
   ===================================================== */
.layout {
    display: grid;
    grid-template-columns: minmax(380px, 5fr) minmax(560px, 7fr);
    min-height: 100vh;
}

.poster-col {
    background: var(--red);
    color: var(--paper);
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 28px 32px 28px;
    overflow: hidden;
}
.poster-col::before {
    /* Halo radial pour adoucir le rouge plat */
    content: "";
    position: absolute;
    inset: -20% -20% auto auto;
    width: 80%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 60%);
    pointer-events: none;
}

.poster-col__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper);
    z-index: 1;
}
.poster-col__brand::before {
    content: "✊";
    font-size: 18px;
    line-height: 1;
}

.poster-col__image {
    flex: 1 1 auto;
    min-height: 0;            /* indispensable pour que le flex item se contraigne */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
    z-index: 1;
    overflow: hidden;
}
.poster-col__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 32px rgba(0,0,0,0.28));
}

.poster-col__foot {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 1;
}
.poster-col__foot strong {
    font-family: var(--display);
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.02em;
}

.form-col {
    background: var(--paper);
    padding: 56px clamp(24px, 5vw, 72px) 140px;
    min-width: 0;
}

@media (max-width: 1024px) {
    .layout { grid-template-columns: 1fr; }
    .poster-col {
        position: relative;
        height: auto;
        min-height: 70vh;
        padding: 24px 24px 32px;
    }
    .poster-col__image { margin: 12px 0 18px; max-height: 60vh; }
}
@media (max-width: 640px) {
    .poster-col { min-height: auto; padding: 20px 18px 28px; }
    .poster-col__image img { max-height: 50vh; }
    .form-col { padding: 40px 20px 100px; }
}

/* =====================================================
   Masthead (colonne formulaire)
   ===================================================== */
.masthead { margin-bottom: 56px; }

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 4px;
    margin-bottom: 28px;
    font-family: var(--body);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: -0.005em;
}
.tag { color: var(--ink); }
.tag .hash { color: var(--red); }
.tag .accent { color: var(--ink); }
.tag + .tag { margin-left: 8px; }

.masthead h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(56px, 8vw, 96px);
    line-height: 0.9;
    letter-spacing: 0.005em;
    margin: 0;
    color: var(--ink);
    text-transform: uppercase;
}
.masthead h1 .eq {
    color: var(--red);
    display: inline-block;
    margin: 0 0.04em;
}
.masthead h1 .nb {
    color: var(--red);
}

.masthead .lede {
    margin-top: 28px;
    max-width: 58ch;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.masthead .lede strong { color: var(--ink); font-weight: 700; }

.masthead .meta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.masthead .meta span { display: inline-flex; align-items: center; gap: 6px; }
.masthead .meta span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--red);
    display: inline-block;
}

/* =====================================================
   Sections & questions
   ===================================================== */
.section-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 64px 0 8px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ink);
}
.section-head .hash {
    font-family: var(--body);
    font-weight: 800;
    font-size: 14px;
    color: var(--red);
}
.section-head h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0;
    color: var(--ink);
}
.section-head .count {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
}

/* Identity block */
.identity {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
    margin: 32px 0 16px;
}
.identity .field-courriel { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field > label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
}
.field > label .opt {
    color: var(--muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.04em;
    font-family: var(--body);
    font-size: 12px;
    font-style: italic;
    margin-left: 6px;
}
.field > label .req {
    color: var(--red);
    margin-left: 6px;
}
/* Question block */
.question {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 36px 0;
    border-top: 1px solid var(--border);
}
.question:first-of-type { border-top: none; }

.question .num {
    font-family: var(--display);
    font-weight: 400;
    font-size: 56px;
    line-height: 0.85;
    color: var(--red);
    letter-spacing: 0.01em;
    position: relative;
}
.question .num::after {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    background: var(--ink);
    margin-top: 10px;
}

.question .prompt {
    font-family: var(--body);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.35;
    color: var(--ink);
    margin: 0 0 6px;
    letter-spacing: -0.005em;
}
.question .prompt em {
    font-style: normal;
    background: var(--yellow);
    padding: 0 4px;
}
.question .hint {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 18px;
}

.question .rules-box {
    margin: 14px 0 20px;
    padding: 14px 18px;
    background: var(--surface);
    border-left: 4px solid var(--red);
    font-size: 14px;
    color: var(--ink-soft);
    border-radius: 2px;
}
.question .rules-box strong { color: var(--ink); font-weight: 700; }
.question .rules-box ul { margin: 6px 0 0; padding-left: 18px; }
.question .rules-box li + li { margin-top: 3px; }

.question .followup {
    margin-top: 16px;
}
.question .followup .followup-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.question .followup .followup-label::before {
    content: "↳";
    color: var(--red);
    font-family: var(--body);
    font-size: 14px;
}

@media (max-width: 640px) {
    .question { grid-template-columns: 1fr; gap: 4px; padding: 28px 0; }
    .question .num { font-size: 44px; }
    .question .num::after { display: none; }
    .question .prompt { font-size: 18px; }
    .identity { grid-template-columns: 1fr; }
    .section-head h2 { font-size: 22px; }
}

/* =====================================================
   Choix Oui/Non — boutons "switch"
   ===================================================== */
.choices {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
}
.choices input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.choices label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--paper);
    border: 2px solid var(--ink);
    cursor: pointer;
    user-select: none;
    transition: all 140ms ease;
    border-radius: 2px;
}
.choices label::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--paper);
    transition: all 140ms ease;
    flex-shrink: 0;
}
.choices label:hover {
    background: var(--ink);
    color: var(--paper);
}
.choices label:hover::before {
    border-color: var(--paper);
    background: transparent;
}
.choices input[type="radio"]:checked + label {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    box-shadow: 3px 3px 0 var(--red);
    transform: translate(-1px, -1px);
}
.choices input[type="radio"]:checked + label::before {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 0 2px var(--ink) inset;
}
.choices input[type="radio"]:focus-visible + label {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}

/* Q5 trio */
.choices--trio label { padding: 11px 16px; }

/* Variante "boutons textuels longs" — Q1, etc. */
.choices--labelled label {
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: 14px;
    padding: 11px 18px;
    line-height: 1.25;
}

/* =====================================================
   Cases à cocher (multi-sélection) — Q2
   ===================================================== */
.checkbox-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}
.checkbox-row input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.checkbox-row label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    font-family: var(--body);
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 2px;
    cursor: pointer;
    user-select: none;
    transition: all 140ms ease;
}
.checkbox-row label::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid var(--ink);
    background: var(--paper);
    flex-shrink: 0;
    transition: all 140ms ease;
}
.checkbox-row label:hover {
    background: var(--ink);
    color: var(--paper);
}
.checkbox-row label:hover::before {
    border-color: var(--paper);
    background: transparent;
}
.checkbox-row input[type="checkbox"]:checked + label {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    box-shadow: 3px 3px 0 var(--red);
    transform: translate(-1px, -1px);
}
.checkbox-row input[type="checkbox"]:checked + label::before {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 0 2px var(--ink) inset;
}
.checkbox-row input[type="checkbox"]:focus-visible + label {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}

/* =====================================================
   Q8 — liste des supports
   ===================================================== */
.supports {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.support {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 2px;
    transition: border-color 160ms ease, background 160ms ease;
}
.support:hover { border-color: var(--ink); background: var(--paper); }
.support .letter {
    font-family: var(--display);
    font-size: 28px;
    line-height: 1;
    color: var(--red);
    letter-spacing: 0;
    text-transform: uppercase;
}
.support .label {
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    font-size: 15px;
}
.support .label small {
    display: block;
    color: var(--ink-soft);
    font-weight: 400;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.45;
}
.support .choices label { padding: 8px 14px; font-size: 11px; }

@media (max-width: 700px) {
    .support {
        grid-template-columns: 32px 1fr;
        gap: 8px 12px;
    }
    .support .choices { grid-column: 1 / -1; margin-top: 4px; }
}

/* =====================================================
   Submit
   ===================================================== */
.submit-block {
    margin-top: 56px;
    padding: 32px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}
.submit-block::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 32px;
    width: 60px;
    height: 4px;
    background: var(--red);
}
.submit-note {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    max-width: 56ch;
    margin: 0;
}
.submit-note strong { color: var(--yellow); font-weight: 700; }

button[type="submit"] {
    font-family: var(--body);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--yellow);
    border: none;
    padding: 16px 32px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 2px;
    transition: all 200ms ease;
    box-shadow: 0 0 0 0 var(--red);
}
button[type="submit"]:hover {
    background: var(--paper);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 -2px var(--red);
}
button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 0 0 0 var(--red);
}
button[type="submit"] .arrow {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0;
    transition: transform 200ms ease;
}
button[type="submit"]:hover .arrow { transform: translateX(4px); }

/* =====================================================
   Footer (intra-form-col)
   ===================================================== */
.foot-note {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

/* =====================================================
   Reveal au chargement
   ===================================================== */
.poster-col__image  { animation: rise 700ms 100ms both ease-out; }
.poster-col__brand,
.poster-col__foot   { animation: rise 600ms 250ms both ease-out; }
.masthead .tag-row  { animation: rise 600ms 150ms both ease-out; }
.masthead h1        { animation: rise 700ms 250ms both ease-out; }
.masthead .lede     { animation: rise 700ms 400ms both ease-out; }
.masthead .meta     { animation: rise 700ms 550ms both ease-out; }
/* =====================================================
   PAGE RÉSULTATS
   ===================================================== */
.results-page { min-height: 100vh; background: var(--surface); }

.results-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px clamp(20px, 4vw, 56px);
    background: var(--ink);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 3px solid var(--red);
}
.results-top .brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.results-top .brand::before { content: "✊"; font-size: 16px; }
.results-top a {
    color: var(--paper);
    text-decoration: none;
    padding: 6px 14px;
    background: transparent;
    border: 1.5px solid var(--paper);
    transition: all 160ms ease;
}
.results-top a:hover { background: var(--paper); color: var(--ink); }

.results-content {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px clamp(20px, 4vw, 56px) 100px;
}

.results-hero { margin-bottom: 56px; }
.results-hero h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(56px, 7vw, 92px);
    line-height: 0.92;
    text-transform: uppercase;
    margin: 16px 0 28px;
    color: var(--ink);
}
.results-hero h1 .eq { color: var(--red); }

.stat-big {
    display: inline-flex;
    align-items: baseline;
    gap: 18px;
    padding: 26px 36px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 2px;
    position: relative;
}
.stat-big::before {
    content: "";
    position: absolute;
    inset: -1px auto -1px -1px;
    width: 8px;
    background: var(--red);
}
.stat-big__num {
    font-family: var(--display);
    font-size: 72px;
    line-height: 0.9;
    color: var(--yellow);
}
.stat-big__lab {
    font-family: var(--body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Empty state */
.empty-state {
    padding: 80px 40px;
    text-align: center;
    background: var(--paper);
    border: 2px dashed var(--border);
    color: var(--ink-soft);
    font-style: italic;
}

/* Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.result-card { grid-column: span 1; }
.result-card--wide { grid-column: span 2; }

@media (max-width: 900px) {
    .results-grid { grid-template-columns: 1fr; }
    .result-card, .result-card--wide { grid-column: span 1; }
}

/* Card */
.result-card {
    background: var(--paper);
    border: 1.5px solid var(--border);
    border-radius: 2px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: border-color 200ms ease, transform 200ms ease;
}
.result-card:hover { border-color: var(--ink); }
.result-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 60px;
    height: 4px;
    background: var(--red);
}

.result-card__head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: baseline;
}
.result-card__num {
    font-family: var(--display);
    font-size: 38px;
    line-height: 0.9;
    color: var(--red);
}
.result-card__prompt {
    font-family: var(--body);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.35;
    color: var(--ink);
    margin: 0;
}
.result-card__prompt em {
    font-style: normal;
    background: var(--yellow);
    padding: 0 4px;
}
.result-card__count {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.result-card__highlight {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 18px;
    background: var(--surface);
    border-left: 4px solid var(--red);
}
.result-card__highlight .pct {
    font-family: var(--display);
    font-size: 44px;
    line-height: 0.9;
    color: var(--ink);
}
.result-card__highlight .lab {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.chart-box {
    width: 100%;
    height: 240px;
}
.chart-box--tall { height: 340px; }

.result-card__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
}
.result-card__legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.result-card__legend span::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--swatch, var(--ink));
    display: inline-block;
}

/* Comments accordion */
.comments-block {
    margin-top: 4px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.comments-block > summary {
    cursor: pointer;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    list-style: none;
}
.comments-block > summary::-webkit-details-marker { display: none; }
.comments-block > summary::before {
    content: "+";
    font-family: var(--display);
    color: var(--red);
    font-size: 18px;
    width: 20px;
    text-align: center;
    transition: transform 200ms ease;
}
.comments-block[open] > summary::before { content: "−"; }
.comments-block > summary:hover { color: var(--ink); }
.comments-block > summary .count {
    margin-left: auto;
    background: var(--ink);
    color: var(--paper);
    padding: 3px 8px;
    border-radius: 2px;
    font-size: 10px;
}

.comments-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.comments-list li {
    padding: 10px 14px 10px 18px;
    background: var(--surface);
    border-left: 2px solid var(--red);
    font-style: italic;
    color: var(--ink);
    line-height: 1.5;
    font-size: 15px;
}
.comments-list li::before { content: "« "; color: var(--red); font-weight: 700; }
.comments-list li::after  { content: " »"; color: var(--red); font-weight: 700; }

/* Specific style for Q4 with twin lists */
.comments-twin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.comments-twin h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: var(--ink-soft);
}
.comments-twin h4 .pos { color: var(--ink); }
.comments-twin h4 .neg { color: var(--red); }
@media (max-width: 700px) { .comments-twin { grid-template-columns: 1fr; } }

.text-only-card { padding-top: 32px; }
.text-only-card .comments-list { max-height: 480px; overflow-y: auto; padding-right: 8px; }

/* Footer */
.results-foot {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}
.results-foot a { color: var(--ink); }

/* =====================================================
   Multi-sélection (Q2) — barres horizontales
   ===================================================== */
.multi-stats {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.multi-stats__row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.multi-stats__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.multi-stats__label {
    font-family: var(--display);
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--ink);
}
.multi-stats__value {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--ink-soft);
}
.multi-stats__value strong {
    font-family: var(--display);
    font-size: 22px;
    color: var(--ink);
    font-weight: 400;
    margin-right: 2px;
}
.multi-stats__pct {
    color: var(--red);
    font-weight: 700;
    margin-left: 4px;
}
.multi-stats__bar {
    height: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
}
.multi-stats__bar > span {
    display: block;
    height: 100%;
    background: var(--red);
    transition: width 360ms ease;
}

/* =====================================================
   Bandeau compact "Faire un don" — en haut de page
   ===================================================== */
.donate-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin: 0 0 28px;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--paper);
    border-left: 4px solid var(--red);
    border-radius: 2px;
}

.donate-strip__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--paper);
}
.donate-strip__label .fist {
    font-size: 14px;
    line-height: 1;
}

.donate-strip__links {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.donate-strip__links a {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: transparent;
    color: var(--paper);
    font-family: var(--body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 2px;
    transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.donate-strip__links a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--paper);
}
.donate-strip__links .donate-strip__featured {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink);
}
.donate-strip__links .donate-strip__featured:hover {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--ink);
}

/* Sur la page formulaire : aligné en haut de la colonne droite,
   un peu d'air avant le masthead. */
.form-col .donate-strip { margin-bottom: 36px; }

/* Mobile : empilé et resserré */
@media (max-width: 600px) {
    .donate-strip { padding: 10px 12px; gap: 10px; }
    .donate-strip__label { font-size: 10px; letter-spacing: 0.14em; }
    .donate-strip__links { width: 100%; gap: 6px; }
    .donate-strip__links a { flex: 1; justify-content: center; font-size: 11px; padding: 8px 6px; }
}

/* =====================================================
   Bloc de soutien (dons) — formulaire + résultats
   ===================================================== */
.donate {
    margin: 80px 0 0;
    padding: 48px clamp(20px, 4vw, 56px);
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.donate::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: var(--red);
}
.donate::after {
    /* Halo radial discret en haut à droite */
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 60%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(227,6,19,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.donate__head {
    position: relative;
    z-index: 1;
    max-width: 62ch;
    margin-bottom: 36px;
}
.donate__tag {
    display: inline-block;
    font-family: var(--body);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: -0.005em;
    color: var(--paper);
    margin-bottom: 18px;
}
.donate__tag .hash { color: var(--red); margin-right: 1px; }

.donate__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 0.92;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin: 0;
}
.donate__title .hl {
    color: var(--ink);
    background: var(--yellow);
    padding: 0 0.18em;
    display: inline-block;
}

.donate__lede {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
}

.donate__grid {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.donate-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 22px 22px;
    background: var(--paper);
    color: var(--ink);
    border-radius: 2px;
    min-height: 240px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.donate-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,0.22); }

.donate-card--featured {
    background: var(--yellow);
    color: var(--ink);
}
.donate-card--featured .donate-card__cta {
    background: var(--ink);
    color: var(--paper);
}
.donate-card--featured .donate-card__cta:hover {
    background: var(--red);
}

.donate-card__num {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--red);
}

.donate-card__badge {
    position: absolute;
    top: 18px;
    right: 16px;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--yellow);
    padding: 4px 8px;
    border-radius: 2px;
}

.donate-card__body { flex: 1; }

.donate-card__name {
    font-family: var(--display);
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.donate-card__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
}
.donate-card--featured .donate-card__desc { color: rgba(26,26,26,0.78); }

.donate-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px;
    background: var(--red);
    color: var(--paper);
    font-family: var(--body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 160ms ease;
}
.donate-card__cta:hover { background: var(--ink); color: var(--paper); }
.donate-card__cta span { font-family: var(--mono); font-size: 16px; }

.donate__legal {
    position: relative;
    z-index: 1;
    margin: 28px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* Variante sur la page formulaire : marge supérieure réduite et un peu de souffle après le submit */
.form-col .donate {
    margin-top: 72px;
    margin-bottom: 8px;
}

/* Tablette */
@media (max-width: 900px) {
    .donate { padding: 36px 22px; }
    .donate__grid { grid-template-columns: 1fr 1fr; }
    .donate-card--featured { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 600px) {
    .donate { margin-top: 56px; padding: 32px 18px; }
    .donate__grid { grid-template-columns: 1fr; gap: 14px; }
    .donate-card--featured { grid-column: auto; }
    .donate-card { min-height: 0; padding: 20px 18px; }
    .donate-card__name { font-size: 26px; }
    .donate__title { font-size: clamp(36px, 9vw, 52px); }
    .donate__legal { font-size: 9px; letter-spacing: 0.14em; }
}
