@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --red: #9B1C2C;
    --red-dark: #6F1320;
    --red-deep: #3F0B14;
    --cream: #F7F3EE;
    --paper: #FBF9F6;
    --sand: #E8E0D4;
    --gold: #C4A35A;
    --gold-soft: #E9D9B0;
    --ink: #1A1413;
    --muted: #5E5752;
    --line: #E4DCD3;
    --white: #FFFFFF;
    --header-h: 76px;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(26, 20, 19, 0.08);
    --font: 'Outfit', sans-serif;
    --serif: 'Cormorant Garamond', Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    font-family: var(--font);
    scroll-padding-top: 100px;
    color: var(--ink);
    background: var(--paper);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 200;
    padding: 0.7rem 1.1rem;
    background: var(--red);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
}

.skip-link:focus {
    top: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.wrap {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0.4rem 0 0.85rem;
}

.section-lead {
    color: var(--muted);
    max-width: 38rem;
    margin: 0;
    font-size: 1.05rem;
}

.section-head {
    margin-bottom: 3rem;
}

.step-audience {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.section-head.center {
    text-align: center;
}

.section-head.center .kicker,
.section-head.center .section-lead {
    margin-left: auto;
    margin-right: auto;
}

.section-head.center .kicker {
    justify-content: center;
}

/* ========== Topbar + Header ========== */
.topbar {
    background: var(--red-deep);
    color: #f3e6e4;
    font-size: 0.8rem;
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    flex-wrap: wrap;
}

.topbar span,
.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.92;
}

.topbar a:hover {
    color: var(--gold-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(251, 249, 246, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    overflow: visible;
}

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(26, 20, 19, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-h);
    padding-block: 0.4rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    flex: 0 0 auto;
    min-width: auto;
}

.brand img {
    display: block;
    width: 56px;
    height: 56px;
    aspect-ratio: 1 / 1;
    max-width: none;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
}

.brand-text strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.28rem;
    line-height: 1;
    letter-spacing: 0.04em;
}

.brand-text small {
    display: block;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    margin-top: 0.15rem;
    max-width: 16rem;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 1.6rem;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 0.35rem 0;
}

.main-nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--red);
    transition: width 0.25s ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: white !important;
    padding: 0.72rem 1.15rem !important;
    border-radius: 999px;
    font-weight: 600 !important;
    box-shadow: 0 10px 24px rgba(155, 28, 44, 0.28);
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

button.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--red);
    color: white;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
    display: block;
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 2px;
    position: relative;
}

.menu-bars::before,
.menu-bars::after {
    content: '';
    position: absolute;
    left: 0;
}

.menu-bars::before { top: -6px; }
.menu-bars::after { top: 6px; }

@media (min-width: 980px) {
    .main-nav { display: flex; }
    button.menu-toggle { display: none; }
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.95rem 1.5rem;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 12px 28px rgba(155, 28, 44, 0.28);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
    background: transparent;
    color: var(--red);
    border: 1px solid var(--red);
}

.btn-outline:hover {
    background: var(--red);
    color: white;
}

.btn-dark {
    background: var(--ink);
    color: white;
}

.btn-dark:hover {
    background: #000;
}

/* ========== Hero / Slider ========== */
.slider {
    position: relative;
    width: 100%;
    height: min(88vh, 760px);
    min-height: 560px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26, 10, 12, 0.82) 0%, rgba(26, 10, 12, 0.55) 48%, rgba(26, 10, 12, 0.25) 100%),
        linear-gradient(180deg, rgba(26, 10, 12, 0.18) 0%, rgba(26, 10, 12, 0.45) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-copy {
    max-width: 720px;
    color: white;
    padding: 2rem 0 4rem;
    margin-inline: auto;
}

.hero-copy .kicker {
    color: var(--gold-soft);
    justify-content: center;
}

.hero-copy h1 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 6vw, 5.1rem);
    font-weight: 600;
    line-height: 1.05;
    margin: 0.7rem 0 1rem;
    letter-spacing: -0.03em;
}

.hero-copy p {
    font-size: 1.12rem;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 auto 1.8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.hero-actions .btn-primary {
    min-width: 220px;
}

.slider-nav {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.slider-dot.active {
    width: 28px;
    background: white;
}

/* ========== Stats ========== */
.stats-bar {
    background: var(--red-deep);
    color: white;
    padding: 1.4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-soft);
    line-height: 1;
}

.stat span {
    font-size: 0.82rem;
    opacity: 0.8;
}

@media (min-width: 800px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        text-align: center;
    }
}

/* ========== Gateway (mettre en valeur Demander du sang) ========== */
.gateway {
    padding: 4.5rem 0 2rem;
}

.gateway-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 860px) {
    .gateway-grid {
        grid-template-columns: 1fr 1.15fr;
        align-items: stretch;
    }
}

.gateway-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 2.2rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    border: 1px solid var(--line);
    background: white;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gateway-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(26, 20, 19, 0.12);
}

.gateway-card.featured {
    background:
        radial-gradient(circle at 100% 0%, rgba(196, 163, 90, 0.18), transparent 32%),
        linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
    color: white;
    border: 0;
}

.gateway-card .tag {
    display: inline-flex;
    width: fit-content;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--cream);
    color: var(--red);
}

.gateway-card.featured .tag {
    background: rgba(255, 255, 255, 0.14);
    color: var(--gold-soft);
}

.gateway-card h3 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 1rem 0 0.5rem;
    line-height: 1.1;
}

.gateway-card p {
    margin: 0 0 1.4rem;
    color: var(--muted);
}

.gateway-card.featured p {
    color: rgba(255, 255, 255, 0.86);
}

.gateway-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gateway-card.featured .gateway-link {
    color: white;
}

/* ========== Generic sections ========== */
.section {
    padding: 5rem 0;
}

.section-cream {
    background: var(--cream);
}

.section-white {
    background: white;
}

.reason-grid,
.tips-grid,
.docs-grid {
    display: grid;
    gap: 1.2rem;
}

@media (min-width: 800px) {
    .reason-grid,
    .tips-grid,
    .docs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.soft-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.7rem;
}

.soft-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #F4E7E8;
    color: var(--red);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.soft-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
}

.soft-card p {
    margin: 0;
    color: var(--muted);
}

.cta-panel {
    margin-top: 2.2rem;
    background: var(--red-deep);
    color: white;
    border-radius: 28px;
    padding: 2rem;
    display: grid;
    gap: 1.4rem;
    align-items: center;
}

@media (min-width: 800px) {
    .cta-panel {
        grid-template-columns: 1.4fr 0.8fr;
        padding: 2.5rem 3rem;
    }
}

.cta-panel h3 {
    font-family: var(--serif);
    font-size: 2.1rem;
    margin: 0 0 0.5rem;
}

.cta-panel p {
    margin: 0 0 1.2rem;
    color: rgba(255, 255, 255, 0.82);
}

.blood-drop {
    font-size: 6rem;
    color: #f3b4b8;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Process */
.process-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 800px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.donation-process-step {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--line);
    text-align: center;
}

.step-num {
    width: 46px;
    height: 46px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--red);
    color: white;
    font-weight: 700;
}

.prep-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto 1.5rem;
    padding: 0.85rem 1.2rem;
    background: white;
    border: 1px solid #ebc9c9;
    border-radius: 999px;
    color: var(--ink);
    font-weight: 500;
    text-align: center;
}

.prep-note i {
    color: var(--red);
    flex-shrink: 0;
}

.prep-note span {
    min-width: 0;
    overflow-wrap: break-word;
}

.conditions {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
}

@media (min-width: 860px) {
    .conditions {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: stretch;
    }
}

.conditions-copy {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.conditions ul {
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.conditions li {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}

.conditions li i {
    color: #2f8a52;
    margin-top: 0.25rem;
}

.conditions-visual {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    background: #f4e7e8;
}

@media (min-width: 860px) {
    .conditions-visual {
        height: 100%;
        min-height: 0;
    }
}

.conditions-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% 62%;
    display: block;
}

/* Centres */
.centres-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cnts-card {
    display: grid;
    gap: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #fdf6f6 100%);
    border: 1px solid #ebc9c9;
    border-radius: 24px;
    padding: 1.6rem;
}

@media (min-width: 800px) {
    .cnts-card {
        grid-template-columns: 1.3fr 0.9fr;
        padding: 2rem;
        align-items: center;
        gap: 2.5rem;
    }
}

.cnts-card-main h3 {
    margin: 0.45rem 0 0.5rem;
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.15;
}

.cnts-card-main p {
    margin: 0 0 1.1rem;
    color: var(--muted);
    max-width: 28rem;
}

.cnts-card-infos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cnts-card-infos li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.cnts-card-infos i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #F4E7E8;
    color: var(--red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.cnts-card-infos small {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cnts-card-infos strong {
    font-size: 0.98rem;
}

.sites-lists {
    display: grid;
    gap: 1rem;
}

@media (min-width: 800px) {
    .sites-lists {
        grid-template-columns: 1.15fr 1fr 0.9fr;
        align-items: start;
    }
}

.site-group {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.2rem 1.3rem;
}

.site-group h3 {
    margin: 0 0 0.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
}

.site-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-group li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line);
}

.site-group li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.site-group strong {
    font-size: 0.95rem;
}

.site-group span {
    color: var(--muted);
    font-size: 0.88rem;
}

.badge {
    width: fit-content;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--red);
    color: white;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.centre-meta {
    color: var(--muted);
    font-size: 0.92rem;
    display: flex;
    gap: 0.55rem;
    align-items: center;
    margin: 0;
}

.centre-meta i {
    color: var(--red);
    width: 16px;
}

.centre-map {
    margin-top: 0.8rem;
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.92rem;
}

.centre-map:hover {
    text-decoration: underline;
}

.centres-hidden {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.centres-hidden:not(.hidden) {
    opacity: 1;
    transform: none;
}

.more-wrap {
    text-align: center;
    margin-top: 2rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    gap: 1.1rem;
}

@media (min-width: 860px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.6rem;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F4E7E8;
    color: var(--red);
    display: grid;
    place-items: center;
    font-weight: 700;
}

.stars {
    color: #d4a017;
    margin-top: 0.8rem;
}

/* FAQ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    width: 100%;
    background: none;
    border: 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    padding: 1.15rem 0;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.faq-question i {
    color: var(--red);
    transition: transform 0.25s ease;
}

.faq-answer {
    color: var(--muted);
    padding-bottom: 1rem;
}

.faq-answer p + p {
    margin-top: 0.7rem;
}

.faq-answer ul {
    margin: 0.6rem 0 0.8rem 1.1rem;
    color: var(--muted);
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 1.2rem;
}

@media (min-width: 800px) {
    .contact-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.contact-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.8rem;
}

.contact-row {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}

.contact-row i {
    color: var(--red);
    margin-top: 0.3rem;
}

.socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    display: grid;
    place-items: center;
    text-decoration: none;
}

.socials a:hover {
    background: var(--red-dark);
}

.map-placeholder {
    min-height: 280px;
    border-radius: 24px;
    background:
        linear-gradient(160deg, rgba(111, 19, 32, 0.75), rgba(26, 10, 12, 0.55)),
        url('images/don_sang.jpg') center/cover;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.6rem;
}

/* Footer */
.site-footer {
    background: #140c0d;
    color: #d9d0c8;
    padding: 3rem 0 1.2rem;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 800px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

.site-footer a {
    color: #d9d0c8;
    text-decoration: none;
}

.site-footer a:hover {
    color: white;
}

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

.site-footer li {
    margin: 0.45rem 0;
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #8e857e;
}

/* Floating buttons */
.back-to-top,
.whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.back-to-top {
    bottom: 20px;
    right: 20px;
    background: var(--red);
}

.whatsapp {
    bottom: 20px;
    left: 20px;
    background: #0c9f8e;
}

.back-to-top.show,
.whatsapp.show,
.text-whatsapp.show {
    opacity: 1;
    visibility: visible;
}

.text-whatsapp {
    position: fixed;
    bottom: 26px;
    left: 78px;
    background: #eee;
    width: 100px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

/* Mobile menu - carte centrée, fond entièrement flou */
.mobile-menu-container {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2000 !important;
    display: none;
    place-items: center;
    padding: 2rem 1.5rem;
    background: rgba(20, 12, 13, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mobile-menu-container.is-open {
    display: grid !important;
}

body.menu-open {
    overflow: hidden !important;
}

body.menu-open > *:not(.mobile-menu-container) {
    filter: blur(14px) !important;
    pointer-events: none !important;
}

.mobile-menu-content {
    position: relative;
    width: min(86vw, 320px) !important;
    height: auto !important;
    max-height: 72vh !important;
    margin: 0 auto !important;
    background: #3F0B14;
    color: white;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    transform: none !important;
}

.mobile-menu-container.is-open .mobile-menu-content {
    transform: none !important;
}

.mobile-menu-header {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 2;
    padding: 0;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 1.15rem 1.25rem 1.4rem;
    overflow-y: auto;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.12);
    border: 0;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95rem;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem;
    color: white;
    text-decoration: none;
    padding: 0.85rem 1rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
}

.mobile-menu-item i {
    width: 22px;
    text-align: center;
    color: #E9D9B0;
}

.mobile-menu-item:active,
.mobile-menu-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-item.featured-mobile {
    margin-top: 0.8rem;
    justify-content: center;
    background: white;
    color: var(--red);
    font-weight: 700;
}

.mobile-menu-item.featured-mobile i {
    color: var(--red);
}

.mobile-menu-item.featured-mobile:hover,
.mobile-menu-item.featured-mobile:active {
    background: #f7ecec;
}

@media (min-width: 980px) {
    .mobile-menu-container {
        display: none !important;
    }
}

/* ========== Page Demander du sang ========== */
.page-hero {
    background:
        linear-gradient(100deg, rgba(63, 11, 20, 0.92), rgba(155, 28, 44, 0.72)),
        url('images/don_bras.jpeg') center/cover;
    color: white;
    padding: 4.5rem 0 3.5rem;
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    margin: 0.4rem 0 0.8rem;
    line-height: 1.08;
}

.page-hero p {
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
}

.breadcrumb {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.8rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.notice {
    background: #fff7e8;
    border: 1px solid #efd7a2;
    border-radius: 18px;
    padding: 1.2rem 1.3rem;
    display: flex;
    gap: 0.9rem;
    margin: -2.4rem auto 1rem;
    position: relative;
    z-index: 3;
    box-shadow: var(--shadow);
}

.notice i {
    color: #b45309;
    margin-top: 0.2rem;
}

.time-strip {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.4rem;
}

@media (min-width: 700px) {
    .time-strip {
        grid-template-columns: 1fr 1fr;
    }

    .time-strip.three {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 0;
    }
}

.time-strip.three {
    margin-bottom: 0;
}

.results-pickup {
    margin-top: 2.5rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 2rem 1.4rem 1.6rem;
}

.results-pickup .section-head {
    margin-bottom: 1.4rem;
}

.time-strip.three .time-box {
    text-align: center;
}

.time-strip.three .time-box strong {
    font-size: clamp(1.45rem, 2.6vw, 2.05rem);
}

.time-box {
    background: var(--red-deep);
    color: white;
    border-radius: 20px;
    padding: 1.3rem 1.4rem;
}

.time-box small {
    display: block;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: var(--gold-soft);
}

.time-box strong {
    display: block;
    font-family: var(--serif);
    font-size: 2.4rem;
    line-height: 1.1;
    margin: 0.25rem 0 0.35rem;
}

.time-box span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.alert-danger {
    display: flex;
    gap: 1rem;
    background: #fdecec;
    border: 1px solid #f0b6b6;
    border-radius: 18px;
    padding: 1.3rem 1.4rem;
    margin-bottom: 1.4rem;
}

.alert-danger i {
    color: var(--red);
    font-size: 1.4rem;
    margin-top: 0.15rem;
}

.alert-danger h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}

.alert-danger p {
    margin: 0;
    color: var(--muted);
}

.recover-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 800px) {
    .recover-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .recover-grid.two {
        grid-template-columns: 1fr 1fr;
    }
}

.soft-card.highlight-tip {
    border: 1px solid #ebc9c9;
    background: linear-gradient(180deg, #fff 0%, #fdf6f6 100%);
}

.result-hours {
    list-style: none;
    margin: 0.75rem 0 1rem;
    padding: 0;
}

.result-hours li {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.35rem 0;
    font-size: 0.92rem;
    color: var(--ink);
}

.result-hours li + li {
    border-top: 1px solid var(--line);
}

.centres-jump {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 1.15rem;
    max-width: 38rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.45;
    text-decoration: none;
}

.centres-jump > i {
    margin-top: 0.22rem;
    flex-shrink: 0;
}

.centres-jump span {
    min-width: 0;
}

.centres-jump:hover span {
    text-decoration: underline;
}

.centres-jump .fa-arrow-right {
    display: inline-block;
    margin-left: 0.3rem;
    font-size: 0.85em;
    transition: transform 0.2s ease;
}

.centres-jump:hover .fa-arrow-right {
    transform: translateX(4px);
}

.path-grid {
    display: grid;
    gap: 1.1rem;
}

@media (min-width: 800px) {
    .path-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.path-card {
    background: white;
    border-radius: 24px;
    padding: 1.7rem;
    border: 1px solid var(--line);
}

.path-card.cnts {
    border-color: #ebc9c9;
    background: linear-gradient(180deg, #fff, #fdf6f6);
}

.path-card h3 {
    font-family: var(--serif);
    font-size: 1.7rem;
    margin: 0.5rem 0;
}

a.path-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a.path-card:hover {
    border-color: #ebc9c9;
    box-shadow: var(--shadow);
}

.path-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.95rem;
}

.path-card-link .path-cta i {
    transition: transform 0.2s ease;
}

a.path-card:hover .path-cta i {
    transform: translateX(4px);
}

.step-list {
    counter-reset: docs;
    display: grid;
    gap: 1rem;
}

@media (min-width: 800px) {
    .step-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .step-list.three {
        grid-template-columns: repeat(3, 1fr);
    }
}

.doc-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.4rem 1.4rem 1.4rem 4.4rem;
    position: relative;
}

.doc-card::before {
    counter-increment: docs;
    content: counter(docs);
    position: absolute;
    left: 1.1rem;
    top: 1.3rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.doc-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.doc-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.warn {
    color: var(--red);
    font-weight: 600;
    font-size: 0.86rem;
    margin-top: 0.6rem !important;
}

.tag {
    display: inline-flex;
    width: fit-content;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--cream);
    color: var(--red);
}

.ratio {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1.2rem;
}

@media (max-width: 640px) {
    .ratio {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.ratio-box {
    background: var(--cream);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
}

.ratio-box strong {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--red);
}

.free-banner {
    background: var(--red-deep);
    color: white;
    border-radius: 28px;
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

@media (min-width: 800px) {
    .free-banner {
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
    }
}

.free-banner h3 {
    font-family: var(--serif);
    font-size: 2.3rem;
    margin: 0 0 0.4rem;
}

.checklist {
    background: white;
    color: var(--ink);
    border-radius: 18px;
    padding: 1.2rem 1.3rem;
}

.checklist li {
    margin: 0.4rem 0;
}

.help-band {
    background: var(--cream);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    margin-top: 2.5rem;
}

.help-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.help-actions .btn {
    min-width: 240px;
    width: 100%;
    max-width: 280px;
}

.hidden {
    display: none !important;
}

.section-animate,
.section-animate.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 979px) {
    .brand-text small {
        display: none;
    }

    .brand img {
        width: 48px;
        height: 48px;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .slider {
        height: 78vh;
        min-height: 520px;
    }

    .hero-copy {
        text-align: center;
        margin-inline: auto;
    }

    .hero-copy h1 {
        font-size: 2.15rem;
        overflow-wrap: break-word;
    }

    .hero-copy p {
        margin-inline: auto;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .notice {
        margin-top: -1.5rem;
    }

    .topbar .wrap {
        justify-content: center;
        text-align: center;
    }

    .header-inner {
        min-height: 68px;
        padding-block: 0.3rem;
    }
}

.site-header .brand img {
    width: 56px !important;
    height: 56px !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center !important;
}

.mobile-menu-header .brand img {
    width: 48px !important;
    height: 48px !important;
    max-width: none !important;
}

.site-footer .brand img {
    width: 56px !important;
    height: 56px !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center !important;
}

@media (max-width: 979px) {
    .site-header .brand img {
        width: 48px !important;
        height: 48px !important;
    }
}
