 .siteFooter {
            padding: 4rem 1rem;
        }

        .wrap {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footerGrid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        /* Au cas où un parent mettrait une couleur de texte bizarre */
        .siteFooter,
        .siteFooter * {
            color: white;
        }

        .siteFooterInner {
            padding: 28px 18px;
            text-align: center;
            color: var(--muted);
            font-size: 13px;
        }

        .footerNav h4,
        .footerPayments h4 {
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .footerNav ul,
        .footerPayments p {
            margin: 0;
        }

        .footerNav li+li {
            margin-top: 0.4rem;
        }

        .paymentIcons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 0.75rem;
        }

        .paymentIcons img {
            height: 28px;
            object-fit: contain;
        }

        @media (min-width: 768px) {
            .footerGrid {
                grid-template-columns: repeat(4, 1fr);
                align-items: start;
            }
        }

        /* Brand block */
        .footerBrand {
            max-width: 42ch;
        }

        .footerLogo {
            height: 42px;
            width: auto;
            margin-bottom: 12px;
        }

        .footerBaseline {
            color: var(--muted);
            line-height: 1.6;
            font-size: 14px;
            margin: 0 0 14px;
        }

        .footerCopy {
            font-size: 13px;
            color: var(--muted2);
            margin: 0;
        }

        /* Nav */
        .footerNav h4,
        .footerPayments h4 {
            font-size: 14px;
            font-weight: 650;
            margin: 0 0 12px;
            letter-spacing: -0.01em;
        }

        .footerNav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 8px;
        }

        .footerNav a {
            font-size: 14px;
            color: var(--muted);
            text-decoration: none;
            transition: color .15s ease;
        }

        .footerNav a:hover {
            color: var(--text);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        /* Payments */
        .footerPayments {
            max-width: 36ch;
        }

        .footerMuted {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
            margin: 0 0 14px;
        }

        .paymentIcons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .paymentIcons img {
            height: 48px;
            /* taille homogène */
            width: auto;
            opacity: .9;
            transition: opacity .15s ease, transform .15s ease;
        }

        .paymentIcons img:hover {
            opacity: 1;
            transform: translateY(-1px);
        }