/* ============================================================
 * CURSOR-DOT — curseur custom (desktop only, fine pointer)
 * Chargé sur tout le site via base.html.
 * Grossit au hover sur les éléments interactifs et .cursor-grow.
 * ============================================================ */
@media (hover: hover) and (pointer: fine) {
    .has-custom-cursor {
        cursor: none;
    }

    .has-custom-cursor a,
    .has-custom-cursor button,
    .has-custom-cursor [role="button"],
    .has-custom-cursor input,
    .has-custom-cursor textarea,
    .has-custom-cursor select {
        cursor: none;
    }

    .cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #5a1224;
        pointer-events: none;
        z-index: 9999;
        transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                    height 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                    opacity 0.2s ease,
                    background 0.25s ease,
                    mix-blend-mode 0.25s ease;
        will-change: transform;
        mix-blend-mode: normal;
    }

    .cursor-dot.is-hover {
        width: 48px;
        height: 48px;
        background: rgba(90, 18, 36, 0.2);
        mix-blend-mode: multiply;
    }

    .cursor-dot.is-hidden {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cursor-dot {
        animation: none !important;
        transform: none !important;
    }
}
